/* DJ NIKOLAS — Player fără Download v1.8.6 */

#audio-player{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  opacity:0!important;
  pointer-events:none!important;
  overflow:hidden!important;
}

.djn-audio-controls{
  display:grid;
  grid-template-columns:auto auto minmax(100px,1fr) auto minmax(110px,160px);
  align-items:center;
  gap:10px;
  width:100%;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  background:
    linear-gradient(180deg,rgba(5,10,20,.88),rgba(7,11,19,.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 12px 28px rgba(0,0,0,.20);
  user-select:none;
}

.djn-audio-play{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid rgba(108,229,255,.28);
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 30%,rgba(111,239,255,.20),transparent 40%),
    #0a1420;
  color:#eafcff;
  cursor:pointer;
  font-size:15px;
  box-shadow:0 0 18px rgba(76,214,255,.08);
}
.djn-audio-play:hover{
  border-color:rgba(108,229,255,.55);
}
.djn-audio-play.is-playing{
  color:#fff2a5;
  border-color:rgba(255,220,95,.38);
  box-shadow:0 0 18px rgba(255,210,65,.10);
}

.djn-audio-time{
  min-width:43px;
  color:#aebccc;
  font-size:11px;
  font-weight:800;
  font-variant-numeric:tabular-nums;
  text-align:center;
}

.djn-audio-seek,
.djn-audio-volume{
  appearance:none;
  -webkit-appearance:none;
  height:5px;
  border-radius:999px;
  background:#182536;
  outline:none;
  cursor:pointer;
}
.djn-audio-seek::-webkit-slider-thumb,
.djn-audio-volume::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:15px;
  height:15px;
  border-radius:50%;
  border:2px solid #07111b;
  background:#76e7ff;
  box-shadow:0 0 12px rgba(91,228,255,.30);
}
.djn-audio-seek::-moz-range-thumb,
.djn-audio-volume::-moz-range-thumb{
  width:13px;
  height:13px;
  border-radius:50%;
  border:2px solid #07111b;
  background:#76e7ff;
}

.djn-audio-volume-wrap{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:7px;
  min-width:0;
}
.djn-audio-volume-wrap>span{
  font-size:13px;
}

.djn-stream-note{
  margin-top:8px;
  text-align:center;
  color:#72859a;
  font-size:8px;
  font-weight:900;
  letter-spacing:.18em;
}

@media(max-width:700px){
  .djn-audio-controls{
    grid-template-columns:auto auto 1fr auto;
    gap:7px;
    padding:10px;
  }
  .djn-audio-volume-wrap{
    grid-column:1/-1;
    grid-template-columns:auto 1fr;
    padding:0 5px 2px;
  }
}

@media(max-width:430px){
  .djn-audio-controls{
    grid-template-columns:auto auto minmax(70px,1fr) auto;
  }
  .djn-audio-play{
    width:40px;
    height:40px;
  }
  .djn-audio-time{
    min-width:36px;
    font-size:10px;
  }
}
