
.audio-player {
    margin: 40px 0;
    background: #ffffff0a;
    padding: 20px 0;
    border-radius: 10px;
}
.audio-player button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.audio-player input[type="range"] {
    max-width: 250px;
    width: 200px;
}


.audio-player svg {
    width: 16px !important;
    height: 16px !important;
    margin-right: 10px !important;
    position: relative;
    top: 2px;
}

.audio-timer {
    vertical-align: middle;
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #b3b3b3;
    /* position: relative;
    bottom: 5px; */
}
.audio-title{
  background: -webkit-linear-gradient(45deg, rgba(2, 0, 36, 1) 0%, rgb(255 51 125) 0%, rgba(0, 212, 255, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 22px !important;
}
        

@media (max-width:768px){
    .audio-player input[type="range"] {
    max-width: 200px;
    width: 150px;
   }
   .audio-player button {
    cursor: none;
}
.audio-player svg {
    width: 15px !important;
    height: 15px !important;
    margin-right: 5px !important;
}
}
input[type="range" i] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 0;
    vertical-align: middle;
    border-radius: 50px;
    outline: none;
    transition: white 0.3s;
}
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px; 
    background: #121212; 
    border-radius: 50px; 
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px; 
    height: 10px; 
    background: #fff;
    border-color: none;
    border-radius: 50%;
    cursor: pointer; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

