
#mute-icon {
    position:absolute; 
    bottom:0;
    left:120px; 
    border:none; 
}
		
			   				
 
#audio-player-container {
      --seek-before-width: 0%;
    --volume-before-width: 100%;
    --buffered-width: 0%;
    position: relative;
								 
    width: 548px;
					 
    height: 90px;
    background: transparent;
}


#play-icon {
    position:absolute;
    left:0; 
    z-index:2; 
    border:none;
    background:transparent; 
}

.elapsed-time {
    position:absolute; 
    right:0;
    bottom:0; 
}

#duration {
    float:left; 
    font-size:18px; 
    font-family: 'Futura Book BT';
    padding-left:5px; 
}
#current-time {
  float:left; 
    font-size:18px; 
    font-family: 'Futura Book BT';
}
.time {
 
}
output {
    display: inline-block;
    width: 32px;
    text-align: center;
    font-size: 20px;
    margin: 10px 2.5% 0 5%;
    float: left;
    clear: left;
}

#volume-slider::before {
    width: var(--volume-before-width);
}


#volume-slider::-webkit-slider-runnable-track {
    background: rgba(0, 125, 181, 0.6);
}

input[type="range"] {
    position: absolute; 
    top: 35px;
    border-radius:7px; 
    /* margin-top: auto; */
    /* margin-bottom: auto; */
    left: 66px;
    padding-left: 20px;
    -webkit-appearance:none;
    width:480px;
    background-color:#97999B;
    height: 16px;
    outline: none;
    z-index:1; 
}
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    background: #97999B;
}
input[type="range"]::before {
    position: absolute;
    content: "";
    top: 8px;
    left: 0;
    width: var(--seek-before-width);
    height: 3px;
    background-color: #007db5;
    cursor: pointer;
    z-index:4; 
}
input[type="range"]::-webkit-slider-thumb {
    position: relative;
    -webkit-appearance: none;
    box-sizing: content-box;						  
    height: 34px;
    width: 34px;
    border-radius: 50%;
    background-color: #526682;
    cursor: pointer;
    margin: -16px 0 0 0;
    border:none; 
}
input[type="range"]:active::-webkit-slider-thumb {
    transform: scale(1.2);
    background: #007db5;
    border:none; 
}
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    background: #97999B;
}

input[type="range"]::-moz-focus-outer {
    border: 0;
}
input[type="range"]::-moz-range-thumb {
    box-sizing: content-box;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    background-color: #526682;
    cursor: pointer;
    border:none; 
}
input[type="range"]:active::-moz-range-thumb {
    transform: scale(1.2);
    background: #007db5;
}
input[type="range"]::-ms-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    background: transparent;
    border: solid transparent;
    color: transparent;
}
input[type="range"]::-ms-fill-lower {
    background-color: #007db5;
}
input[type="range"]::-ms-fill-upper {
    background: linear-gradient(to right, rgba(0, 125, 181, 0.6) var(--buffered-width), rgba(0, 125, 181, 0.2) var(--buffered-width));
}
input[type="range"]::-ms-thumb {
    box-sizing: content-box;
    border: 1px solid #007db5;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}
input[type="range"]:active::-ms-thumb {
    transform: scale(1.2);
    background: #007db5;
}

@media (max-width:767.98px){
    input[type="range"] {
        position: absolute; 
        top: 35px;
        border-radius:7px; 
        /* margin-top: auto; */
        /* margin-bottom: auto; */
        left: 66px;
        padding-left: 20px;
        -webkit-appearance:none;
        width:90%;
        background-color:#97999B;
        height: 16px;
        outline: none;
        z-index:1; 
    }

    #audio-player-container {
        --seek-before-width: 0%;
      --volume-before-width: 100%;
      --buffered-width: 0%;
      position: relative;
                                   
      width: 90%;
                       
      height: 90px;
      background: transparent;
  }
}