/* Disable the browser focus highlighting. */
.jp-audio *:focus,
.jp-audio-stream *:focus,
.jp-video *:focus {
  outline: none;
}
/* Disable the browser CSS3 focus highlighting. */
.jp-audio button::-moz-focus-inner,
.jp-audio-stream button::-moz-focus-inner,
.jp-video button::-moz-focus-inner {
  border: 0;
}
.jp-jplayer audio,
.jp-jplayer {
  width: 0px;
  height: 0px;
}
.jp-jplayer {
  background-color: #000000;
}
/* @group NO SOLUTION error feedback */
.jp-no-solution {
  padding: 5px;
  font-size: .8em;
  background-color: #3a2a45;
  border-top: 2px solid #554461;
  border-left: 2px solid #554461;
  border-right: 2px solid #180a1f;
  border-bottom: 2px solid #180a1f;
  color: #FFF;
  display: none;
}
.jp-no-solution a {
  color: #FFF;
}
.jp-no-solution span {
  font-size: 1em;
  display: block;
  text-align: center;
  font-weight: bold;
}
.jp-audio.closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.jp-audio.closed .jp-details {
  opacity: 0;
}
.jp-audio.jp-state-playing .jp-interface .jp-controls-holder .jp-controls .jp-play {
  background-image: url(../img/icon_pause.svg);
}
@media only screen and (max-width: 1024px) {
  .jp-audio {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.jp-audio .jp-interface {
  position: relative;
  width: 100%;
  background-color: #eee;
  /* Required for the full screen */
}
.jp-audio .jp-interface .jp-volume-controls {
  display: none;
}
.jp-audio .jp-interface .jp-controls-holder .jp-controls {
  padding: 0;
  overflow: hidden;
  width: 80px;
  float: left;
}
.jp-audio .jp-interface .jp-controls-holder .jp-controls button {
  display: block;
  float: left;
  overflow: hidden;
  text-indent: -9999px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background-color: #eee;
}
.jp-audio .jp-interface .jp-controls-holder .jp-controls .jp-stop {
  display: none;
}
.jp-audio .jp-interface .jp-controls-holder .jp-controls .jp-play {
  -webkit-transition: background-color 300ms;
          transition: background-color 300ms;
  background-image: url(../img/icon_play.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 60px;
  border-right: 1px solid white;
}
.jp-audio .jp-interface .jp-controls-holder .jp-controls .jp-play:hover {
  background-color: #4c4c4c;
}
@media only screen and (max-width: 1024px) {
  .jp-audio .jp-interface .jp-controls-holder .jp-controls .jp-play {
    height: 50px;
  }
}
.jp-audio .jp-interface .jp-controls-holder .jp-progress {
  height: 60px;
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .jp-audio .jp-interface .jp-controls-holder .jp-progress {
    height: 50px;
  }
}
.jp-audio .jp-interface .jp-controls-holder .jp-progress .jp-seek-bar {
  background: #b1a377;
  width: 0px;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.jp-audio .jp-interface .jp-controls-holder .jp-progress .jp-seek-bar .jp-play-bar {
  background: #f0e6c3;
  width: 0px;
  height: 100%;
  overflow: hidden;
}
.jp-audio .jp-interface .jp-controls-holder .jp-current-time,
.jp-audio .jp-interface .jp-controls-holder .jp-duration {
  width: 70px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  position: absolute;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .jp-audio .jp-interface .jp-controls-holder .jp-current-time,
  .jp-audio .jp-interface .jp-controls-holder .jp-duration {
    font-size: 11px;
  }
}
.jp-audio .jp-interface .jp-controls-holder .jp-current-time {
  cursor: default;
  top: 33px;
  left: 92px;
}
@media only screen and (max-width: 1024px) {
  .jp-audio .jp-interface .jp-controls-holder .jp-current-time {
    top: 33px;
    left: 85px;
  }
}
.jp-audio .jp-interface .jp-controls-holder .jp-duration {
  text-align: right;
  cursor: pointer;
  top: 33px;
  right: 20px;
}
@media only screen and (max-width: 1024px) {
  .jp-audio .jp-interface .jp-controls-holder .jp-duration {
    top: 33px;
    right: 6px;
  }
}
.jp-audio .jp-interface .jp-controls-holder .jp-toggles .jp-repeat {
  display: none;
}
.jp-audio .jp-details {
  opacity: 1;
  -webkit-transition: opacity 300ms;
          transition: opacity 300ms;
}
.jp-audio .jp-details .jp-title {
  color: white;
  font-size: 16px;
  font-weight: 300;
  padding: 3px 3px 0px 10px;
  text-align: left;
  position: absolute;
  top: 6px;
  left: 101px;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .jp-audio .jp-details .jp-title {
    font-size: 12px;
    left: 78px;
  }
}