.audio-player {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* background: #f5f5f5; */
  padding: 10px 0px;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
}

.btn-play,
.btn-mute {
  color: #575757;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.progress-container {
  position: relative;
  flex: 1;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  cursor: pointer;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(88, 107, 125, 0.9);
  border-radius: 3px;
}

.time {
  font-family: monospace;
  font-size: 0.875rem;
}

.volume-slider {
  width: 80px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="range"] {
    /* overflow: hidden; */
    width: 80px;
    -webkit-appearance: none;
    background-color: #dddddd;
    position: relative;
    border-radius: 30px;
  }

  input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    -webkit-appearance: none;
    color: #13bba4;
    margin-top: -1px;
  }

  input[type="range"]::-webkit-slider-thumb {
    width: 15px;
    -webkit-appearance: none;
    height: 15px;
    border-radius: 100%;
    cursor: pointer;
    background: #11171c;
    border: solid 3px #fff;
    /* box-shadow: -80px 0 0 80px #e00e55; */
    position: relative;
    top: -3px;
  }
}
/** FF*/
input[type="range"]::-moz-range-progress {
  background-color: #473f42;
}
input[type="range"]::-moz-range-track {
  background-color: #0f0a0c;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
  background-color: #e00e55;
}
input[type="range"]::-ms-fill-upper {
  background-color: #e00e55;
}

[type="button"]:focus,
[type="button"]:hover,
[type="submit"]:focus,
[type="submit"]:hover,
button:focus,
button:hover {
  color: unset;
  background-color: unset;
  text-decoration: none;
}
