body {
    background: #0F1421;
    color: white;
}

a:hover {
    text-decoration: none;
}

.section-nav {
    background: #5e79b5;
    text-align: left;
    height: 50px;
}

.section-nav div {
    display: inline-block;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.section-nav .logo {
    color: #ffffff;
}

.section-nav .menu {
    color: wheat;
}

#myPlayer {
    display: none;
}

.content {
    text-align: center;
}

.radio-root {
    display: flow-root;
    margin: 0 auto;
    width: 750px;
    color: white
}

#cast-button {
    width: 100px;
}

.radio-button {
    transition-duration: 0.3s;
    color: white;
    padding: 12px;
    background-color: #343c4e;
    border-radius: 0.75rem;
    margin-left: 10px;
    margin-top: 10px;

    display: inline-block;
    border: 0;
    font-size: 16px;
    width: 165px;
    height: 50px;
    text-align: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-user-select: none;
    cursor: default;
}

.radio-button:hover {
    cursor: pointer;
  }

.volume-wrap {
    text-align: center;
}

.volume-wrap .volume-text {
    font-weight: bold;
}

.volume-wrap .volume-bar {
    height: 10px;
}

.now-wrap {
    text-align: center;
}

.now-wrap #now {
    font-size: 17px;
    color: white;
    font-weight: bold;
    margin-right: 7px;
}

.now-wrap #now1 {
    font-size: 17px;
    color: #f3c316;
    font-weight: bold;
}

.now_active {
    color: #f3c316 !important;
    font-weight: bold !important;
    border: 1px solid #ffffff !important;
}

.btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-style {
    height: 50px;
    width: 120px;
    font-size: 18px;
    line-height: 50px;
    margin-left: 10px;

    background: #918CD2;
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    color: #fff;
    border-bottom: 2px solid #272850;
    transition: ba 12s ease;
}

.btn-style:hover {
    cursor: pointer;
    box-shadow: 0px 15px 25px -5px rgba(darken(dodgerblue, 40%));
    transform: scale(1.03);
}

.btn-style:active {
    box-shadow: 0px 4px 8px rgba(darken(dodgerblue, 30%));
    transform: scale(.98);
}

/* setting */

.setting-wrap #ipaddr {
    width: 130px;
    display: inline-block;
}

.search-list {
    color:yellow;
}

.search-item .search-name {
    color: wheat;
}

@media only screen and (min-height : 1500px) {
    .radio-button {
      height: 50px;
    }
  }

@media only screen and (max-width : 1200px) {
    .radio-button {
        height: 40px;
        padding: 8px;
    }

    .volume-bar {
        width: 40%;
        margin-bottom: 0px;
    }

    #now {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width : 767px) {
    .radio-root {
        width: 90%;
    }
}