.tenweb-audio .tenweb-audio-parent {
  position: relative;
  line-height: 0;
}
.tenweb-audio .tenweb-audio-parent audio {
  margin: 0;
  display: none;
  z-index: 1;
  width: 100%;
}
.tenweb-audio .tenweb-audio-parent .tenweb-audio-play {
  background: url(../../../../images/icons/play_new.svg) no-repeat center;
  background-size: 20px !important;
  width: 20px;
  height: 20px;
}
.tenweb-audio .tenweb-audio-parent .duration {
  display: none;
}
.tenweb-audio .tenweb-audio-parent.audio-player .tenweb-audio-overlay {
  gap: 10px;
}
.tenweb-audio .tenweb-audio-parent.audio-player h4 {
  width: 90px;
}
.tenweb-audio .tenweb-audio-parent.audio-player .tenweb-audio-volume {
  width: 22px;
  height: 22px;
  background: url(../../../../images/icons/volume.svg) no-repeat center;
  background-size: cover;
}
.tenweb-audio .tenweb-audio-parent.audio-player .tenweb-audio-volume.muted {
  background: url(../../../../images/icons/mute.svg) no-repeat center;
  background-size: cover;
}
.tenweb-audio .tenweb-audio-parent.audio-player .duration {
  display: block;
}
.tenweb-audio .tenweb-audio-parent.pause .tenweb-audio-play {
  background: url(../../../../images/icons/pause.svg) no-repeat center;
}
.tenweb-audio .tenweb-audio-overlay {
  position: absolute;
  box-sizing: border-box;
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  align-items: center;
  width: 100%;
  border-radius: 6px;
  gap: 10px;
  z-index: 2;
  padding: 0 16px;
}
.tenweb-audio .tenweb-audio-overlay h4 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  display: flex;
}
.tenweb-audio input {
  flex-grow: 1;
  -webkit-appearance: none;
  margin-right: 5px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  background-image: linear-gradient(to right, #FFFFFF, #FFFFFF);
  background-size: 0 100%;
  background-repeat: no-repeat;
}
.tenweb-audio input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 6px;
  width: 6px;
  border-radius: 0 3px 3px 0;
  background: #ffffff;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.tenweb-audio input::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}