html body .hidden {
  display: none !important;
}

body {
  overflow-x: hidden;
  width: 100%;  
}


#stream .hoverZoomLink.playing,
#stream .hoverZoomLink:hover {
  color: #33f5ff !important;
}
#stream.playing .hoverZoomLink:not(.playing) {
    opacity: 0.8;
}

.playback-controls {
    margin: auto;
    margin-left: 10px;
    color: white;
}
.playback-controls button {
    background: none;
    border: 0;
    outline: none;
    color: white;
}
.playback-controls .play,
.playback-controls .next,
.playback-controls .prev,
.playback-controls .pause,
.playback-controls .shuffle,
.playback-controls .download {
    margin: 0 2px 2px 2px;
    transform: scale(1.45);
    padding: 0;
}
.playback-controls .timecodes {
	display: none;
}
.playback-controls .shuffle {
    opacity: 0.5;
    top: 2px;
    padding-right: 3px;
}
.playback-controls .shuffle.shuffle-on {
  opacity: 1;
}

.playback-controls > button, 
.playback-controls > input, 
.playback-controls > div {
  height: 24px;
    color: white;
} 


.scrubber {
    max-width: 250px;
    display: inline-block !important;
    vertical-align: top;
    margin-top: 1px;
    margin-right: 5px;
    border: none;
    color: white;
}
@media only screen and (max-width: 360px) {
  .scrubber {
    max-width: 200px;
  }
}


.timecodes,
.timecodes > div {
    display: inline-block;
    color: white;
}



/* INPUT RANGE */
input[type=range] {
  height: 24px;
  -webkit-appearance: none;
  width: 100%;
  background: none;
  margin: 0;
  margin-left: 10px;
  margin-top: 2px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  animate: 0.2s;
  background: white;
  border-radius: 1px;
  border: 0px solid rgba(0,0,0,0.5);
}
input[type=range]::-webkit-slider-thumb {
  border: 0px solid rgba(0,0,0,0.5);
  height: 16px;
  width: 16px;
  border-radius: 16px;
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5.5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: white;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  animate: 0.2s;
  background: white;
  border-radius: 1px;
  border: 0px solid rgba(0,0,0,0.5);
}
input[type=range]::-moz-range-thumb {
  border: 0px solid rgba(0,0,0,0.5);
  height: 16px;
  width: 16px;
  border-radius: 16px;
  background: white;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: white;
  border: 0px solid rgba(0,0,0,0.5);
  border-radius: 2px;
}
input[type=range]::-ms-fill-upper {
  background: white;
  border: 0px solid rgba(0,0,0,0.5);
  border-radius: 2px;
}
input[type=range]::-ms-thumb {
  margin-top: 1px;
  border: 0px solid rgba(0,0,0,0.5);
  height: 16px;
  width: 16px;
  border-radius: 16px;
  background: white;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: white;
}
input[type=range]:focus::-ms-fill-upper {
  background: white;
}