.audio-player {
  display: flex;
  white-space: nowrap;
}
.audio-player .state-indicator {
  cursor: pointer;
}
.audio-player input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
  padding: 0;
  height: 20px;
  min-width: 40px;
}
.audio-player input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: var(--border-color);
  border-radius: 4px;
}
.audio-player input[type="range"]::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 999px;
  background-color: var(--brand-primary);
  cursor: pointer;
  margin: -4px 0 0 0;
}
.audio-player input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.2);
}
.audio-player input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: var(--border-color);
  border-radius: 4px;
}
.audio-player input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 999px;
  background-color: var(--brand-primary);
  cursor: pointer;
  border: 0;
}
.audio-player input[type="range"]:active::-moz-range-thumb {
  transform: scale(1.2);
}
.audio-border {
  border: 1px solid var(--border-color);
}

