button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
    width: 40px;
    height: 40px;
    float: left;
}
#audio-player-container {
  --seek-before-width: 0%;
    --volume-before-width: 100%;
    --buffered-width: 0%;
    position: relative;
    width: 100vw;
    background: transparent;
    display: inline-block;
}
#play-icon, #mute-icon, #download-icon {
    margin: 20px 2.5% 10px 2.5%;
}
#download-icon>img {
  position: relative;
  filter: invert(1);
  top: -5px;
  height: 40px;
  width: 40px;
}
svg path {
  stroke: white !important;
}
path {
    stroke: #007db5;
}
.time {
    display: inline-block;
    width: 37px;
    text-align: center;
    font-size: 20px;
    margin: 28.5px 0 18.5px 0;
    float: left;
}
output {
    display: none;
    width: 32px;
    text-align: center;
    font-size: 20px;
    margin: 10px 2.5% 0 5%;
    float: left;
}

#volume-slider {
    margin: 30px 0 20px 0;
    width: 10%;
    float: left;
}

#volume-slider::-webkit-slider-runnable-track {
    background: rgba(127, 127, 127, 0.6);
}
#volume-slider::-moz-range-track {
    background: rgba(127, 127, 127, 0.6);
}
#volume-slider::-ms-fill-upper {
    background: rgba(127, 127, 127, 0.6);
}
#volume-slider::before {
    width: var(--volume-before-width);
}
#mute-icon {
    float: left;
}
input[type="range"] {
    position: relative;
    -webkit-appearance: none;
    width: 40%;
    margin: 0;
    padding: 0;
    height: 19px;
    margin: 30px 2.5% 20px 2.5%;
    float: left;
    outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    background: linear-gradient(to right, var(--track-seeker) var(--buffered-width), rgba(127, 127, 127, 0.2) var(--buffered-width));
}
input[type="range"]::before {
    position: absolute;
    content: "";
    top: 8px;
    left: 0;
    width: var(--seek-before-width);
    height: 3px;
    background-color: white;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    position: relative;
    -webkit-appearance: none;
    box-sizing: content-box;
    border: 1px solid white;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    margin: -7px 0 0 0;
}
input[type="range"]:active::-webkit-slider-thumb {
    transform: scale(1.2);
    background: gray;
}
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    background: linear-gradient(to right, rgba(0, 255, 0, 0.5) var(--buffered-width), rgba(127, 127, 127, 0.2) var(--buffered-width));
}
input[type="range"]::-moz-range-progress {
    background-color: #007db5;
}
input[type="range"]::-moz-focus-outer {
    border: 0;
}
input[type="range"]::-moz-range-thumb {
    box-sizing: content-box;
    border: 1px solid white;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}
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: white;
}
input[type="range"]::-ms-fill-upper {
    background: linear-gradient(to right, rgba(127, 127, 127, 0.6) var(--buffered-width), rgba(127, 127, 127, 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 only screen and (max-width: 835px) {
    button {
        transform: scale(50%);
        padding-top: 5px;
        margin: 0px;
    }

    button#download-icon {
        transform: scale(30%);
        padding-top: 0;
    }

    .time {
        margin-top: 35px
    }

    input[type="range"] {
        width: 15vw;
    }
}
