.controlColorClass{color:#808080}
.textColorClass{color:#000}
.backColorClass{background-color:#FFF}
.sliderColorClass{background-color:#D9D9D9}
.progressColorClass{background-color:#808080}

.altControlColorClass{color:#1B1716}
.altTextColorClass{color:#F00}
.altBackColorClass{background-color: transparent}
.altSliderColorClass{background-color:#D9D9D9}
.altProgressColorClass{background-color:#1B1716}


/* Audio Player */
.audio-container {
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.333em;
  user-select: none;
  -webkit-user-select: none;
}

.audio-container .play-pause-btn {
  display: none;
  cursor: pointer;
  width: 1em;
}
.audio-container .play-pause-btns {
  display: block;
  cursor: pointer;
  width: 1em;
}
.audio-container .fa-2x {
  font-size: 2.5em;
} 
.audio-container .slider {
  flex-grow: 1;
  cursor: pointer;
  position: relative;
}
.audio-container .slider .progress {
  position: relative;
}
.audio-container .slider .progress .pin {
  height: 10px;
  width: 2px;
  border-radius: 1px;
  border-radius: 1px;
  position: absolute;
  pointer-events: all;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.32);
}
.audio-container .controls {
  font-size: 1.333em;
  line-height: 1.5em;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
}
.audio-container .controls .slider {
  margin-left: 1.333em;
  border-radius: 0.167em;
  height: 2px;
  width: 100%;
}
.audio-container .controls .slider .progress {
  width: 32.0513%;
  height: 2px;
  overflow: visible;
}
.audio-container .controls .slider .progress .pin {
  right: 0;
  top: -4px;
  background: #1B1716;
}
/* .audio-container span {
  color: #1B1716;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  cursor: default;
} */
.current-time{
  color: #545860;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
.total-time{
  color: #A39793;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.audio-container .volume {
  position: relative;
}
.audio-container .volume .volume-btn {
  cursor: pointer;
  width: 1em;
}
.audio-container .volume .volume-controls {
  width: 2.5em;
  height: 11.25em;
  background-color: rgba(0, 0, 0, 0.62);
  border-radius: 0.583em;
  position: absolute;
  left: -0.25em;
  bottom: 4.333em;
  flex-direction: column;
  align-items: center;
  display: flex;
}
.audio-container .volume .volume-controls.hidden {
  display: none;
}
.audio-container .volume .volume-controls .slider {
  margin: 1em;
  width: 0.5em;
  border-radius: 0.25em;
}
.audio-container .volume .volume-controls .slider .progress {
  bottom: 0;
  height: 100%;
  width: 0.5em;
}
.audio-container .volume .volume-controls .slider .progress .pin {
  left: -0.417em;
  top: -0.667em;
}