.audio-player-wrap {
  margin-bottom: 30px;
}
.wavesurfer {
  position: relative;
  min-width: 290px;
}
.wavesurfer.loading {
  overflow: hidden;
}
.wavesurfer.loading .wavesurfer-preloader {
  display: block;
}
.wavesurfer-preloader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: #fff;
}
.wavesurfer-preloader:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  border: 5px solid #ccc;
  border-radius: 50%;
  border-top-color: #000;
  -webkit-animation-name: preloader;
          animation-name: preloader;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes preloader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.wavesurfer-close {
  float: right;
  font-size: 16px;
  color: #777;
  cursor: pointer;
}
.wavesurfer-close:hover {
  color: #e76c14;
}
.wavesurfer-error-msg {
  display: none;
  color: #ff0500;
}
.wavesurfer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wavesurfer-col-small {
  width: 110px;
  min-width: 110px;
  padding-right: 10px;
}
.wavesurfer-col-big {
  width: 100%;
}
.wavesurfer-cover {
  position: relative;
  width: 100%;
  text-align: center;
}
.wavesurfer-cover img {
  height: 90px;
}
.wavesurfer-wave-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wavesurfer-wave-inner {
  width: 100%;
}
.wavesurfer-time {
  position: relative;
  clear: both;
  height: 2px;
  width: 100%;
}
.wavesurfer-time-current,
.wavesurfer-time-end {
  position: absolute;
  top: 0;
  font-size: 12px;
  color: #777777;
}
.wavesurfer-time-current {
  left: 0;
}
.wavesurfer-time-end {
  right: 0;
}
.wavesurfer-ctrls {
  position: relative;
  padding-top: 10px;
}
.wavesurfer-ctrls .wavesurfer-col-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wavesurfer-ctrls .wavesurfer-col-small .wavesurfer-btn {
  margin: 0;
}
.wavesurfer-btn {
  float: left;
  height: 26px;
  padding: 4px 5px;
  margin-right: 10px;
  border: 1px solid #777777;
  border-radius: 5px;
  text-align: center;
  line-height: 16px;
  font-size: 16px;
  cursor: pointer;
  color: #777777;
}
.wavesurfer-btn:hover {
  color: #e76c14;
}
.wavesurfer-btn.active {
  border-color: #e76c14;
  color: #e76c14;
}
.wavesurfer-btn.disabled {
  border-color: #c7c7c7;
  color: #c7c7c7;
}
.wavesurfer-list {
  position: relative;
  margin-left: 15px;
}
.wavesurfer-list:after {
  content: '';
  display: none;
  position: absolute;
  top: 80%;
  left: 15%;
  z-index: 10;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid #777;
}
.wavesurfer-list.active:after {
  display: block;
}
.wavesurfer-volume {
  float: right;
  height: 30px;
}
.wavesurfer-volume-bar {
  float: left;
  width: 50px;
  height: 10px;
  margin: 7px 5px;
  background-color: #777777;
  cursor: pointer;
  overflow: hidden;
}
.wavesurfer-volume-bar > div {
  width: 100%;
  height: 100%;
  background-color: #e76c14;
}
.wavesurfer-volume-btn {
  float: left;
  height: 26px;
  margin: 0 0;
  padding: 4px;
  line-height: 16px;
  font-size: 16px;
  cursor: pointer;
  color: #777777;
}
.wavesurfer-volume-btn:hover {
  color: #e76c14;
}
.wavesurfer-volume-btn--mute {
  width: 30px;
  margin-left: 15px;
  padding-left: 0;
  padding-right: 0;
  border: 1px solid #777777;
  border-radius: 5px;
  text-align: center;
}
.wavesurfer-tracklist-popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: 300px;
  max-width: 100%;
  padding: 10px 20px 10px 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.wavesurfer-tracklist-popup.open {
  display: block;
}
.wavesurfer-tracklist-popup ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.wavesurfer-tracklist-popup li {
  padding: 5px 0;
}
.wavesurfer-tracklist-popup li.active .track-name {
  color: #333;
  cursor: default;
}
.wavesurfer-tracklist-popup li.active .track-name:hover {
  text-decoration: none;
}
.wavesurfer-tracklist-popup .track-name {
  display: inline-block;
  padding-left: 5px;
  color: #e76c14;
  cursor: pointer;
  font-size: 1rem;
}
.wavesurfer-tracklist-popup .track-name:hover {
  text-decoration: underline;
}
.wavesurfer-tracklist-popup-inner {
  max-height: 190px;
  overflow-y: auto;
}
.wavesurfer-tracklist-popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 16px;
  color: #777777;
  cursor: pointer;
}
.wavesurfer-tracklist-popup-close:hover {
  color: #e76c14;
}
@media screen and (max-width: 500px) {
  .wavesurfer-top {
    display: block;
  }
  .wavesurfer-top .wavesurfer-col-small {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .wavesurfer-top .wavesurfer-col-small img {
    width: 100px;
  }
  .wavesurfer-top .wavesurfer-col-big {
    width: 100%;
  }
  .wavesurfer-ctrls .wavesurfer-col-small {
    width: auto;
    min-width: auto;
  }
  .wavesurfer-ctrls._tracklist {
    display: block;
  }
  .wavesurfer-ctrls._tracklist .wavesurfer-col-small {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 380px) {
  .wavesurfer .panel-body {
    padding: 10px 5px;
  }
  .wavesurfer-btn {
    margin-right: 5px;
  }
  .wavesurfer-play {
    width: 50px;
  }
  .wavesurfer-repeat {
    margin-left: 7px;
  }
  .wavesurfer-download {
    margin-left: 7px;
  }
  .wavesurfer-volume-btn--mute {
    margin-left: 10px;
  }
  .wavesurfer-tracklist-popup {
    max-width: 280px;
  }
}
