.audio-container {
  border-top: 1px solid #d9e0e2;
  border-left: 3px solid #ee2737;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.audioplayer {
  position: relative;
  background: #f8f9fa;
  border-bottom: 1px solid #d9e0e2;
  border-right: 1px solid #d9e0e2;
  margin-right: -1px;
  font-size: 18px;
  height: 41px;
  overflow: hidden;
}
.audioplayer .audioplayer-playpause {
  float: left;
  height: 40px;
  width: 40px;
  border-right: 1px solid #d9e0e2;
  line-height: 40px;
  text-align: center;
  color: #59656e;
  cursor: pointer;
}
.audioplayer .audioplayer-playpause:hover {
  color: #ee2737;
}
.audioplayer .audioplayer-playpause:before {
  font-family: FontAwesome;
}
.audioplayer .audioplayer-playpause a {
  display: none;
}
.audioplayer .audioplayer-bar {
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  height: 40px;
  line-height: 40px;
  top: 0;
  left: 40px;
  right: 0;
  cursor: pointer;
}
.audioplayer .audioplayer-bar-played {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #d9e0e2;
  background: -webkit-linear-gradient(to left, #d9e0e2, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(to left, #d9e0e2, rgba(255, 255, 255, 0));
  background: -o-linear-gradient(to left, #d9e0e2, rgba(255, 255, 255, 0));
  background: linear-gradient(to left, #d9e0e2, rgba(255, 255, 255, 0));
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.audioplayer .audioplayer-title {
  position: relative;
  display: inline;
  z-index: 2;
  padding: 0 10px;
  font-weight: normal;
  font-size: 14px;
}
.audioplayer .audioplayer-download {
  float: right;
  display: flex;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-left: 1px solid #d9e0e2;
  color: #59656e;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.audioplayer .audioplayer-download:hover,
.audioplayer .audioplayer-download:active {
  color: #ee2737;
}
.audioplayer audio {
  visibility: hidden;
  position: absolute;
  overflow: hidden;
}
.audioplayer .audioplayer-time,
.audioplayer .audioplayer-volume {
  display: none;
}
.audioplayer-playpause {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.audioplayer .audioplayer-playpause::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 200%;
}
.audioplayer.audioplayer-stopped .audioplayer-playpause::before {
  background-image: url("../img/svg/button-pause-play.svg");
  background-position: left center;
}
.audioplayer.audioplayer-playing .audioplayer-playpause:before {
  background-image: url("../img/svg/button-pause-play.svg");
  background-position: right center;
}
.audioplayer.audioplayer-playing .audioplayer-title {
  color: #ee2737;
}
@media only screen and (min-width: 980px) {
  .audioplayer .audioplayer-title {
    font-size: 15px;
    padding: 0 15px;
  }
  .audioplayer {
    font-size: 20px;
  }
}
