
/* PLAYER */
.cs-audio-player{
  display:flex;
  align-items:center;
  gap:12px;
  background:#120a1f;
  border-radius:40px;
  padding:10px 14px;
  margin-top:14px;
  position:relative;
}

.play-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background:linear-gradient(90deg,#f5b301,#ff8c42);
}

/* PROGRESS */
.progress{
  position:absolute;
  bottom:0;
  left:0;
  height:3px;
  width:100%;
  background:rgba(255,255,255,.08);
}

.progress-bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#f5b301,#ff8c42);
}