.bbd-audio-player {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 10px 15px 15px 15px;
  --progres: 0%;
}

.bbd-audio-player audio {
  display: none;
}

.bbd-audio-player__play-pause {
  transition: box-shadow 0.2s ease-in-out;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  border: 0;
  width: 25px;
  height: 25px;
  background-color: #3985E3;
  box-shadow: 0 0 0 0 #3985E3;
}

.bbd-audio-player__play-pause:hover {
  box-shadow: 0 0 0 1px #3985E3;
}

.bbd-audio-player__play-pause .icon {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.bbd-audio-player__play-pause .icon.play {
  left: 3px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid white;
  width: 0;
  height: 0;
}

.bbd-audio-player__play-pause .icon.pause {
  width: 8px;
  height: 12px;
  border-left: 3px solid white;
  border-right: 3px solid white;
  border-top: 0;
  border-bottom: 0;
}

.bbd-audio-player input[type="range"] {
  position: relative;
  width: 62% !important;
  height: 1px;
  background: #CCCCCC;
  padding: 0;
  float: left;
  outline: none;
  -webkit-appearance: none;
}

.bbd-audio-player input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #CCCCCC;
}

.bbd-audio-player input[type="range"]::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #CCCCCC;
}

.bbd-audio-player input[type="range"]::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #CCCCCC;
}

.bbd-audio-player input[type="range"]::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  width: var(--progress);
  height: 1px;
  background-color: #007db5;
  cursor: pointer;
}

.bbd-audio-player input[type="range"]::-moz-range-progress {
  height: 1px;
  background-color: #007db5;
}

.bbd-audio-player input[type="range"]::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #3985E3;
  cursor: pointer;
  margin: -4px 0 0 0;
}

.bbd-audio-player input[type="range"]::-moz-range-thumb {
  position: relative;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #3985E3;
  cursor: pointer;
  margin: -4px 0 0 0;
}

.bbd-audio-player input[type="range"]::-ms-thumb {
  position: relative;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #3985E3;
  cursor: pointer;
  margin: -4px 0 0 0;
}

.bbd-audio-player__time {
  width: 21%;
  font-size: 10px;
  font-weight: 400;
  color: #4D4D4D;
  text-align: left;
}
