.audio-player,
.audio-player div,
.audio-player a,
.audio-player span,
.audio-player button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

div.audio-player {
  position: relative;
  width: 100%;
  height: 21px;
}


.mejs-controls .mejs-button button {
  cursor: pointer;
  display: block;
  position: absolute;
  text-indent: -9999px;
}

.mejs-controls .mejs-play button,
.mejs-controls .mejs-pause button {
  width: 12px;
  height: 17px;
  top: 2px;
  left: 0;
  background: transparent url('../images/play_button.svg') 0 0 no-repeat;
}

.mejs-controls .mejs-pause button {
  background: transparent url('../images/pause.png') 0 0 no-repeat;
}


.mejs-controls .mejs-mute button,
.mejs-controls .mejs-unmute button {
  width: 18px;
  height: 15px;
  top: 3px;
  right: 128px;
  background: transparent url('../images/volume_button.svg') 0 0;
}


.mejs-controls div.mejs-horizontal-volume-slider {
  position: absolute;
  top: 9px;
  right: 0;
  cursor: pointer;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  width: 115px;
  height: 3px;
  background: #212227;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  position: absolute;
  width: 0;
  height: 3px;
  top: 0;
  left: 0;
  background: #30b6cf;
}
 
.mejs-controls .mejs-time-rail span {
  position: absolute;
  display: block;
  width: calc(100% - 277px);
  height: 3px;
  top: 9px;
  left: 32px;
  cursor: pointer;
}

.mejs-controls .mejs-time-rail .mejs-time-loaded,
.mejs-controls .mejs-time-rail .mejs-time-current {
    left: 0 !important;
}
 
.mejs-controls .mejs-time-rail .mejs-time-total { 
  background: #000; 
  width: calc(100% - 277px) !important;
}
.mejs-controls .mejs-time-rail .mejs-time-loaded {
  top: 0;
  left: 0;
  width: 0;
  background: #000000;
}
.mejs-controls .mejs-time-rail .mejs-time-current {
  top: 0;
  left: 0;
  width: 0;
  background: #30b6cf;
}


.mejs-controls .mejs-time-rail .mejs-time-handle {
  position: absolute;
  display: block;
  width: 11px !important;
  height: 11px !important;
  left: -6px;
  top: -4px;
  background: #000000;
  border-radius: 50%;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
  position: absolute;
  display: block;
  width: 11px;
  height: 11px;
  top: -4px;
  background: #000000;
  border-radius: 50%;
}


.mejs-controls .mejs-time-rail .mejs-time-float {
  position: absolute;
  display: none !important;
  width: 33px;
  height: 23px;
  top: -26px;
  margin-left: -17px;
  z-index: 9999;
  background: url('../images/time-box.png');
}
 
.mejs-controls .mejs-time-rail .mejs-time-float-current {
  width: 33px;
  display: block;
  left: 0;
  top: 4px;
  font-family: 'CircularStd Book', sans-serif;
  font-size: 10px;
  font-weight: bold;
  color: #666;
  text-align: center;
  z-index: 9999;
}