/* CSS Document */
.audio-player-wrapper {
  margin-bottom: 1rem;
}
.audio-player-wrapper .volume,
.audio-player-wrapper .mute {
  display: none !important;
}
.audio-player-wrapper .progressbar {
  width: 50% !important;
  margin-left: 15px;
}
@media screen and (min-width: 410px) {
  .audio-player-wrapper .progressbar {
    width: 60% !important;
  }
}
@media screen and (min-width: 500px) {
  .audio-player-wrapper .progressbar {
    width: 70% !important;
  }
}
.audio-player-wrapper .audio-player {
  height: 50px;
  width: 100%;
  max-width: 650px;
  min-width: 230px;
  overflow: hidden;
  background-color: #cbcfd0;
  color: white;
  position: relative;
  -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  -moz-user-select: none; /* mozilla browsers */
  -khtml-user-select: none; /* webkit (konqueror) browsers */
  -ms-user-select: none; /* IE10+ */
}
.audio-player-wrapper .controls {
  height: 50px;
  background-color: #cbcfd0;
  width: 75%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.audio-player-wrapper .time {
  font-size: 0.7rem;
  color: #333;
  position: relative;
  margin: 5px;
  white-space: nowrap;
}
.audio-player-wrapper .seperator {
  margin-left: 0;
  margin-right: 0;
}
.audio-player-wrapper .ui-progressbar {
  /*background: #000;*/
  background: #fff;
}
.audio-player-wrapper .ui-progressbar-value {
  background: #00c1ff;
  height: 100%;
}
.audio-player-wrapper .progressbar, .audio-player-wrapper .volume {
  height: 10px;
  display: inline-block;
  border-radius: 0px;
  border: none;
  position: relative;
}
.audio-player-wrapper .progressbar {
  width: 20%;
  margin-left: 15px;
}
@media screen and (min-width: 410px) {
  .audio-player-wrapper .progressbar {
    width: 40%;
  }
}
@media screen and (min-width: 500px) {
  .audio-player-wrapper .progressbar {
    width: 50%;
  }
}
.audio-player-wrapper .play, .audio-player-wrapper .mute {
  font-size: 16px;
  width: 20px;
  position: relative;
  top: 17px;
}
.audio-player-wrapper .play {
  top: 16px;
}
.audio-player-wrapper .volume {
  width: 10%;
}
@media screen and (min-width: 410px) {
  .audio-player-wrapper .volume {
    width: 12%;
  }
}
@media screen and (min-width: 500px) {
  .audio-player-wrapper .volume {
    width: 15%;
  }
}
.audio-player-wrapper .btn-box {
  width: 25%;
  display: inline-block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  color: white;
  box-sizing: border-box;
  background-color: #0072bc;
  box-shadow: inset 0 0 0 3px #0072bc;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.15s ease-out;
}
.audio-player-wrapper .btn-box:hover,
.audio-player-wrapper .btn-box:focus {
  /*background-color: transparent;*/
  background-color: #fff;
  box-shadow: inset 0 0 0 2px #0072bc;
  color: #0072bc;
  text-decoration: none;
  transition: background-color 0.15s ease-out;
}
.audio-player-wrapper .btn-box, .audio-player-wrapper .btn-box > * {
  cursor: pointer;
}

/*PRIMARY THEME*/
.primary .audio-player {
  background-color: #fff;
}
.primary .controls {
  background-color: #fff;
}
.primary .time {
  color: #000;
}
.primary .mute {
  color: #000;
}
.primary .ui-progressbar {
  background-color: #cbcfd0;
}
.primary .btn-box {
  border: 2px solid #fff;
  /*box-shadow: inset 0 0 0 3px #fff;*/
  box-shadow: none;
  overflow: hidden;
}
.primary .btn-box:hover,
.primary .btn-box:focus {
  border: 2px solid transparent;
  border: none;
  /*border-left: 2px solid vars.$color-primary;*/
  /*box-shadow: inset 0 0 0 2px vars.$color-primary;*/
}
.primary .btn-box:hover .fa,
.primary .btn-box:focus .fa {
  margin-top: 2px;
}
.primary .btn-box:hover:before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #0072bc;
  position: absolute;
  left: 0;
  top: 0;
}
/*# sourceMappingURL=mask_audioPlayer.css.map */
