*{
  box-sizing: border-box;
  padding:0;
  margin:0;
  user-select: none;
  overflow: hidden;
  max-width:100vw;
}

html{
  height:100vh;
  max-width:100vw;
  width:100vw;
  overflow: hidden;
}

body{
  height:100vh;
  overflow:hidden;
  /* background: #301c24; */
  background: #000;
}

.radio_alert {
  width: 90vw;
  margin: auto;
  position: absolute;
  top: 2%;
  left: 5%;
  text-align: center;
  color: #fff;
  padding: 10px;
  box-shadow: #000 2px 2px 2px;
  z-index: 2000;
  border-radius: 5px;
  transition: .2s ease all;
  top: -20%;
  opacity: 0;
}

#success_alert {
  background: #68c783bd;
}

#bad_alert {
  background: #b93d3dbd;
}

#skip_button{
  width: 100%;
  margin-bottom: 5px;
  text-align: center;
}
#num_listeners {
  padding: 10px;
}

#top_right_container {
  color:#fff;
  text-shadow: #000000b8 0 0 9px;
  top: 0px;
  right: 0px;
  font-family:sans-serif;
  padding: 10px;
  position:fixed;
  z-index: 100;
  user-select: none;
  min-width: 220px;
}

#playing{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  user-select: text;
  z-index: 100;
  text-shadow: rgb(0 0 0 / 90%) 1px 1px 7px;
  padding: 20px;
}

#playingTrackName{
  font-family: sans-serif;
  text-align: center;
  margin-top: 30vh;
  color: #fff;
}

#background {
  position: absolute;
  width:100vw;
  height:100vh;
  /* background: linear-gradient(#00012596, #9419174d), url(/assets/background.jpg); */
  transform: scale(1.15);
  background-position: center;
  background-size: cover;
  filter: blur(10px);
}

#canvas {
  position: absolute;
  transform:translate(0, -100%);
  z-index: 100;
  max-width:100%;
}

#player_bar_holder{  
  position: fixed;
  top: 100%;
  left: 0;
  transform: translate(0, -100%);
  background: rgba(0, 0, 0, 0.583);
  max-width: 100vw;
  width: 100vw;
  padding: 10px
}



#controls i {  
  font-size: 3em;
  color: white;
  cursor: pointer;
}

#controls{
  text-align: center;
  margin-bottom: 5px;
}

#vote_btn{
  float:left;
  margin-left:10px;
}

#volume_btn{
  float:right;
  margin-right:10px;
}

#play_btn {
  transition: .05s ease all;
}

/*https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/*/
input[type=range] {
  -webkit-appearance: none;
  border-radius: 10px;
  width:130px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  border-radius: 10px;
}
input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 14px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  border-radius: 10px;
}
input[type=range]::-moz-range-thumb {
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
  border-radius: 10px;
}
input[type=range]::-ms-thumb {
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}




#volume_control_container {
  transform: rotate(-90deg);
  position: absolute;
  right: -39px;
  padding: 20px;
  background: #00000099;
  border-radius: 10px;
  display: none;
  opacity: 0;
  z-index: 100;
  transition: .2s ease all;
}

#volume_control_container input {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255,255,255,0.7) 75%, rgba(255,109,28,0.7) 75%, rgba(240,18,18,0.7) 100%);
}

#stations {
  position:relative;
  top:10px;
  left:10px;
}


#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  pointer-events: none;
  z-index: 1000;
}


.dropdown, .dropdown-menu, .dropdown-item {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.dropdown-menu.show {
  transform:translate(0, 50px);
  position: fixed !important;
}

.btn-secondary {
  text-shadow: #000000b8 0 0 9px;
  background: rgb(156 156 156 / 17%);
  border:none;
  padding: 10px 20px;
}

#modal_close {
  color: #fff;
}

.btn-secondary:hover, .btn-secondary:focus {
  background: #5c636a70;
  border:none;
  box-shadow: none;
}

.modal-header {
  border: 0;
}




#vote_audio_modal .modal-content {
  border: 0;
  background:rgba(100, 100, 100, 0.7);
}

#vote_tracks.modal-body{
  padding: 0;
}

#vote_audio_modal_label {
  color: #fff;
}

.vote_track_item{
  color:#fff;
  padding:10px;
  background:rgba(0, 0, 0, 0.4);
  margin: 10px;
  border-radius:5px;
  transition: .2s ease all;
}

.vote_track_item:hover{
  background:rgba(0, 0, 0, 0.6);
  border-radius:1px;
}

.vote_track_item:active{
  background:rgb(112 169 119 / 60%);
}

.voted_for{
  background:#277950;
  margin: 10px;
  border-radius:5px;
  color:#fff;
  padding:10px;
}

#vote_modal_header{
  background: #111111ed;
  border-radius: .2rem;
  visibility: visible;
  padding: 10px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

#vote_modal_header_items{
  position: relative;
  top: 10px;
}

#scrollbar_div {
  position:fixed;
  z-index:100;
  visibility: hidden;
}

#vote_audio_modal_label {
  float: left;
}

#modal_close {
  float: right;
}

@media (min-width: 576px) {
  #scrollbar_div {
    width: 500px;
  }
}

@media (max-width: 575px) {
  #scrollbar_div {
    overflow-y: scroll;
    top: 0;
    left: 0;
    width: 100%;
  }
}
