
body {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    background-color: transparent!important;
    counter-reset: top5-counter;
    font-size: 16px;
}
.player_bott {
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 90%);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
#album_bg {
    background-repeat: no-repeat;
    background-position: 50% 0;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
    position: relative; 
    height: 100vh;
}
.musesStyleReset {
    margin: 0 auto!important;
    font-family: 'Montserrat', sans-serif!important;
}
.song-info {
    font-size: 1.1em;
    font-weight: 500;
    color: #fff;
}

/** ON BOARD **/
.onboard_details {
    height: 340px;
    width: 100%;
    position: absolute;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 30%);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-bottom: 10px;
}
#onboard_bg {
    background-repeat: no-repeat;
    background-position: 50% 0;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    /* filter: blur(8px);
    -webkit-filter: blur(8px); */
    overflow: hidden;
    position: relative; 
    height: 340px;
}
#onboard-image {
    /* border: 15px solid rgba(0,0,0,0.2); */
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-top: 60px;
}
.rotate_disc {
  animation: rotate_disc 8s infinite linear;
}
@keyframes rotate_disc {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.onboard_poster_details {
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 80%);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-bottom: 10px;
}
#onboard_poster_bg {
    background-repeat: no-repeat;
    background-position: 50% 0;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
    position: relative; 
    height: 100vh;
}

/** Top Chatters **/
@-webkit-keyframes zoomtop1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
       transform: scale(1);
    }
}

@keyframes zoomtop1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
       transform: scale(1);
    }
}

ul.top-chatters {
    list-style-type: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.top-chatters li {
    display: block;
    padding: 2px;
    -webkit-transition: padding-left 0.2s ease-out;
    -moz-transition: padding-left 0.2s ease-out;
    -o-transition: padding-left 0.2s ease-out;
    transition: padding-left 0.2s ease-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.top-chatters li:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}
.top-chatters h3 {
    color: #fff;
    font-size: 18px;
    padding-top: -7px !important;
    margin-top: 7px;
    margin-bottom: 0px!important;
}

.top-chatters li span {
    font-weight: 400;
}
ul.top-chatters li:nth-child(1) .frame {
    -webkit-animation: zoomtop1 1s ease infinite;
     -moz-animation: zoomtop1 1s ease infinite;
     -o-animation: zoomtop1 1s ease infinite;
     animation: zoomtop1 1s ease infinite;
 }
 
 ul.top-chatters li:last-child {
     border-bottom: none !important;
 }
 
 ul.top-chatters li:hover {
     padding-left: 8px;
 }
 ul.top-chatters li:nth-child(1)::before {
     color: rgba(0,0,0,0.4);
 }
 ul.top-chatters li::before {
   counter-increment: top5-counter;
   content: counter(top5-counter);
   position: absolute;
   right: 0;
   color: rgba(0,0,0,0.1);
   font-size: 5.6em;
   top: -35px;
   font-weight: bolder;
 }
/** Online Users **/
ul#requested_songs {
    list-style-type: none;
    width: 98%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #333!important;
    font-size: 15px;
}
ul#requested_songs li {
    color: #333!important;
}
ul#requested_songs li:nth-child(even) {
    background: rgba(243, 243, 243,1)!important;
}
ul.online-user {
    list-style-type: none;
    width: 98%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.online-user li {
    display: block;
    padding: 2px;
    -webkit-transition: padding-left 0.2s ease-out;
    -moz-transition: padding-left 0.2s ease-out;
    -o-transition: padding-left 0.2s ease-out;
    transition: padding-left 0.2s ease-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.3);
}

.online-user li:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

.online-user li:last-child {
    margin-bottom: 0px;
}

.online-user .ol-thumb {
    float: left;
    width: 50px;
    height: 50px;
    margin-right: 7px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
}

.online-user h3 {
    color: #fff;
    font-size: 18px;
    padding-top: -7px !important;
    margin-top: 7px;
    margin-bottom: 0px!important;
}

.online-user li span {
    font-weight: 400;
}

/** Song Request **/

#songrequest_form input {
    font-size: 16px;
    background: #ffffff;
    padding: 7px 15px;
}
#songrequest_form span.input-group-text {
    font-size: 16px;
    width: 135px;
}

/** BxSlider **/

#bxslider, #bxslider img {
    width: 100%!important;
    height: 100vh!important;
}
.bx-wrapper {
    box-shadow: none!important;
    border: none!important;
    background: none!important;
}

/** Marquee Slider **/
:root {
    --marquee-width: 100%;
    --marquee-height: 300px;
    /* --marquee-elements: 12; */ /* defined with JavaScript */
    --marquee-elements-displayed: 5;
    --marquee-element-width: 300px;
    --marquee-animation-duration: calc(var(--marquee-elements) * 5s);
  }
  
  .marquee {
      width: 100%;
      height: 300px;
      background: transparent;
      color: #fff!important;
      overflow: hidden;
      position: relative;
  }
  .marquee:before, .marquee:after {
      position: absolute;
      top: 0;
      width: 10rem;
      height: 100%;
      content: "";
      z-index: 1;
  }
  .marquee-content {
      list-style: none;
      height: 100%;
      display: flex;
      animation: scrolling var(--marquee-animation-duration) linear infinite;
  }
  .marquee-content:hover {
    animation-play-state: paused;
  }
  @keyframes scrolling {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
  }
  .marquee-content li {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      width: var(--marquee-element-width);
      max-height: 100%;
      white-space: nowrap;
      padding-right: 10px;
  }
  
  .marquee-content li img {
      width: 100%;
      height: 300px;
      margin-right: 10px;
      border-radius: 10px;
  }
  
  @media (max-width: 600px) {
      html { font-size: 12px; }
      :root {
          --marquee-width: 100vw;
          --marquee-height: 16vh;
          --marquee-elements-displayed: 3;
      }
      .marquee:before, .marquee:after { 
          width: 5rem; 
      }
  }
-webkit-scrollbar {
    -webkit-appearance: none;
    width: 12px;
    background-color: transparent;
}

-webkit-scrollbar-thumb {
    border-radius: 12px;
    border: 5px solid rgba(255, 255, 255, 0);
    background-clip: content-box;
    background-color: #c7c7c7;
    -webkit-box-shadow: none;
}

-webkit-scrollbar-thumb:hover {
    border-radius: 12px;
    border: 5px solid rgba(255, 255, 255, 0);
    background-clip: content-box;
    background-color: #c7c7c7;
}
