.audioplayer {
  box-sizing: border-box;
  width: 100%;
  height: max-content;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.audioCls {
  display: none;
}
.audioplayer-playpause {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 29px;
  min-width: 29px;
  height: 29px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
}
.audioplayer-volume {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute;
  right: 2px;
  bottom: 6px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.audioplayer-volume .audioplayer-volume-button {
}
.audioplayer-volume a {
  /* background: url(../img/svg/volume-high.svg); */
  justify-content: center;
  position: relative;
  width: 26px;
  height: 26px;
  /* background-repeat: no-repeat;
  background-size: 26px 26px;
  background-position: left; */
  display: block;
}
/* .audioplayer-mute .audioplayer-volume {
  width: 11px;
  height: 13px;
} */
.audioplayer-mute .audioplayer-volume a {
  /* background: url(../img/svg/mute.svg); */
  font-size: 16px;
  width: 22px;
  height: 20px;
  /* background-size: 22px 20px;
  background-repeat: no-repeat;
  background-position: left; */
}
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.audioplayer-playing .audioplayer-playpause a {
  content: "";
  display: flex;
  justify-content: space-between;
  width: 10px;
  height: 14px;
}
.audioplayer-playing .audioplayer-playpause a span {
  display: none;
}
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a span {
  display: block;
  font-size: 32px;
}
.audioplayer-playing .audioplayer-playpause a::before,
.audioplayer-playing .audioplayer-playpause a::after {
  content: "";
  width: 3px;
  height: 14px;
}
.audioplayer-time {
  display: flex;
  width: max-content;
  justify-content: center;
  font-size: 14px;
}
.audioplayer-time-duration {
  left: 35px;
  padding: 0 10px;
}
.audioplayer-time-current {
  left: 11px;
  width: 70px;
  padding: 0 8px 0 5px;
  justify-content: flex-end;
}
.audioplayer-bar {
  position: relative;
  display: flex;
  margin: 0;
  /* width: calc(100% - 70px); */
  height: 8px;
  cursor: pointer;
}
.audioplayer-bar::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 1px;
  width: 100%;
  height: 8px;
  border-radius: 10px;
}
.audioplayer-bar > div {
  position: absolute;
  left: 0;
  top: 0px;
}
.audioplayer-bar-loaded {
  z-index: 1;
  border-radius: 10px;
}
.audioplayer-bar-played {
  flex-direction: row-reverse;
  z-index: 2;
  height: 8px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
