@media (max-width: 768px) {
  .hide-small {
    visibility: hidden;
  }
}

.player-container {
    opacity: 1!important;
    z-index: 9001;
    width: 100%;
    height: 5rem;
    margin-bottom: .0625rem;
    box-shadow: 0 0.0625rem 0 rgb(0 0 0 / 40%);
    display: table;
    flex-direction: column;

}
.player-container .container-fluid {
    background: rgb(159,0,0);
    background: linear-gradient(180deg, rgba(159,0,0,1) 0%, rgba(98,0,0,1) 100%);
    opacity: 0.95;
}

#player-inner {
    height: 5rem;
    margin-right: 5rem;
    display: table-cell;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
	vertical-align: top;
}
.play-pause {
    height: 5rem;
    width: 5rem;
    display: block;
    background: rgb(150,29,29);
    background: linear-gradient(180deg, rgb(191 32 32) 0%, rgba(119,21,21,1) 100%);
    float: left;
}
.play-pause .player-pause-a {
    height: 100%;
    width: 100%;
    background-position: 50% 50%;
    background-size: 3rem 3rem;
    background-repeat: no-repeat;
    margin: auto;
}
.play {
    background-image: url(icons/player-play.svg);
}
.pause {
    background-image: url(icons/player-pause.svg);
}
.player-audio-content-title {
    color: #fff;
    font-size: 1rem;
    text-shadow: rgb(0 0 0 / 40%) 0.0625rem 0.0625rem 0.125rem;
    letter-spacing: 0;
    padding-top: 10px;
    padding-left: 15px;
    display: flex;
    overflow: hidden;
    align-items: center;
}
.player-audio-content-title #current-song {
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 10px;
}

.player-audio-content-title .player-audio-content-title-content {
    overflow: hidden;
    display: block;
}


.slider-cont {
    position: relative;
    display: block;
    padding-left: 15px;
    float: none;
    clear: both;
    padding-top: 4px;
}
.toggle-mute {
    height: 25px;
    width: 20px;
    display: block;
    float: left;
    padding-top: 3px;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.toggle-mute:hover {
    opacity: 1;
}
.toggle-mute .toggle-mute {
    height: 100%;
    width: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    margin: auto;
    position: absolute;
}
.mute {
  background-image: url(icons/volume-mute.svg);
}
.unmute {
  background-image: url(icons/volume-up.svg);
}

.slider {
  -webkit-appearance: none;
  width: 150px;
  height: 5px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  margin-left: 5px;
  margin-top: 9px;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #FFF;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #FFF;
  cursor: pointer;
}

.player-playlist {
    display: table-cell;
    height: 5rem;
    margin: auto;
    border-right: .0625rem solid rgba(255,255,255,.09);
    border-left: .0625rem solid rgba(255,255,255,.09);
}
.player-playlist .player-playlist-menu:hover {
    opacity: 1;
}

.player-playlist .player-playlist-menu {
    width: 5rem;
    height: 5rem;
    margin: auto;
    float: right;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    align-items: center;
    justify-content: center;
    display: flex;
}

.player-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #7e0e0e;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    float: right;
}
.player-dropdown-menu-content a:hover {
    background-color: #911616;
}
.player-dropdown-menu-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.julr-lds-webplayer {
    display: none;
    background: #0000006b;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
}
.julr-lds-webplayer div {
  animation: julr-lds-webplayer 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.julr-lds-webplayer div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.julr-lds-webplayer div:nth-child(1) {
  animation-delay: -0.036s;
}
.julr-lds-webplayer div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.julr-lds-webplayer div:nth-child(2) {
  animation-delay: -0.072s;
}
.julr-lds-webplayer div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.julr-lds-webplayer div:nth-child(3) {
  animation-delay: -0.108s;
}
.julr-lds-webplayer div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.julr-lds-webplayer div:nth-child(4) {
  animation-delay: -0.144s;
}
.julr-lds-webplayer div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.julr-lds-webplayer div:nth-child(5) {
  animation-delay: -0.18s;
}
.julr-lds-webplayer div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.julr-lds-webplayer div:nth-child(6) {
  animation-delay: -0.216s;
}
.julr-lds-webplayer div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.julr-lds-webplayer div:nth-child(7) {
  animation-delay: -0.252s;
}
.julr-lds-webplayer div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.julr-lds-webplayer div:nth-child(8) {
  animation-delay: -0.288s;
}
.julr-lds-webplayer div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes julr-lds-webplayer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.vote-buttons {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    gap: 5px;
}

.vote-buttons button {
    background: linear-gradient(white, lightgray);
    border-radius: 50%;
    border: none;
    outline: none;
    color: white !important;
    font-size: 1.2rem;
    cursor: pointer;
    float: right;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.vote-buttons button:hover {
    background: linear-gradient(#ffffff, #dcdcdc);
}

.vote-buttons button:active {
    animation: blink 0.5s;
}

.vote-buttons img {
    width: 60%;
    height: 60%;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

