/*****************************************************
    Variables and Mixins
******************************************************/
/*****************************************************
    Audio Plugin
******************************************************/
.av-plugin {
  font-family: "Lato", sans-serif;
}

.audio-plugin,
.audio-plugin__genre,
.audio-plugin__plugin {
  min-height: 280px;
}

.audio-plugin__genre {
  background: #373737;
  text-align: center;
}

.audio-plugin .progress-bar {
  background-color: #907aba;
  bottom: -5px;
  height: 5px;
  left: 0;
  opacity: 0;
  position: absolute;
  -webkit-animation: ajax-load 3s ease-in-out infinite;
  animation: ajax-load 3s ease-in-out infinite;
}
.audio-plugin .progress-bar.loading {
  opacity: 0.8;
}

@-webkit-keyframes ajax-load {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes ajax-load {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.audio-plugin__header {
  border-bottom: 2px solid #fff;
  height: 70px;
  position: relative;
  text-align: center;
}
.audio-plugin__header h3 {
  font-size: 0.9em;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  line-height: 70px;
}

.audio-plugin__header--light {
  border-bottom: 1px solid #acacac;
  box-shadow: 0 2px 5px #acacac;
}
.audio-plugin__header--light h3 {
  color: inherit;
}

.audio-plugin__track {
  border-bottom: 1px solid #acacac;
  cursor: pointer;
  font-size: 0.8em;
  min-height: 70px;
  padding: 15px 50px;
}
.audio-plugin__track.active, .audio-plugin__track:hover {
  background: rgba(212, 212, 212, 0.5);
}

.track__title {
  text-transform: uppercase;
}

.track__media-type {
  color: #acacac;
}

.track__duration {
  text-align: right;
  text-transform: uppercase;
}

.genre__item {
  background: url("../images/bg-genre.jpg");
  border-bottom: 1px solid #acacac;
  color: #fff;
  cursor: pointer;
  height: 70px;
  padding: 15px 0;
}
.genre__item:nth-child(odd) {
  border-right: 1px solid #acacac;
}
.genre__item:nth-last-child(2), .genre__item:last-child {
  border-bottom: 0;
}
.genre__item.active::before, .genre__item:not(.genre__item--empty):hover::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #acacac;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
}
.genre__item.genre__item--empty {
  display: none;
}

.genre__name {
  font-size: 0.7em;
  line-height: 14px;
}

.genre__play-icon {
  font-size: 1.4em;
  line-height: 28px;
}

.my_player {
  background: #907aba;
  padding: 15px;
}
.my_player.inactive {
  opacity: 0;
}
.my_player .mejs__container,
.my_player .mejs__controls {
  background: #907aba;
}
.my_player .mejs__time-slider {
  background-color: #7459a6;
}
.my_player .mejs__button.mejs__playpause-button {
  position: relative;
  width: 80px;
}
.my_player .mejs__button.mejs__playpause-button > button {
  background: transparent url("../images/av-player-sprite.png");
  height: 32px;
  left: 50%;
  margin: 4px 0;
  width: 32px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.my_player .mejs__button.mejs__playpause-button > .button {
  background: transparent url("../images/av-player-sprite.png");
  cursor: pointer;
  height: 16px;
  position: absolute;
  top: 50%;
  width: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.my_player .mejs__button.mejs__playpause-button > .button.button__previous {
  background-position: -64px 0;
  left: 0;
}
.my_player .mejs__button.mejs__playpause-button > .button.button__next {
  background-position: -80px 0;
  right: 0;
}
.my_player .mejs__button.mejs__playpause-button > .button--disabled.button__previous {
  /* background-position: -64px -16px;*/
}
.my_player .mejs__button.mejs__playpause-button > .button--disabled.button__next {
  /*background-position: -80px -16px;*/
}
.my_player .mejs__button.mejs__pause > button {
  background-position: -32px 0;
}
.my_player .mejs__time {
  font-size: 0.7em;
  font-weight: normal;
  padding: 15px 0 0;
}
.my_player .mejs__time-slider,
.my_player .mejs__time-current,
.my_player .mejs__time-loaded {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.sound-theme .my_player {
  background: #df0e8d;
}
.sound-theme .my_player .mejs__container,
.sound-theme .my_player .mejs__controls {
  background: #df0e8d;
}
.sound-theme .my_player .mejs__time-slider,
.sound-theme .audio-plugin .progress-bar {
  background: #f176c1;
}

/*****************************************************
    Video Plugin
******************************************************/
.video-plugin {
  background: #000;
}

.mv-plugin__track {
  cursor: pointer;
  position: relative;
}
.mv-plugin__track::before {
  background: rgba(0, 0, 0, 0.4);
  content: ' ';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  visibility: hidden;
}
.mv-plugin__track::after {
  color: #fff;
  content: '\f16a';
  font-family: 'FontAwesome';
  font-size: 2.3em;
  left: 50%;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  visibility: hidden;
  -webkit-transform: translate(-50%, -80%);
  transform: translate(-50%, -80%);
}
.mv-plugin__track:last-child {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.mv-plugin__track.active::before, .mv-plugin__track.active::after, .mv-plugin__track:hover::before, .mv-plugin__track:hover::after {
  visibility: visible;
}
.mv-plugin__track.active .track__img::after {
  content: 'NOW PLAYING';
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 30%);
  transform: translate(-50%, 30%);
}

.mv_player .mejs__overlay {
  background: rgba(0, 0, 0, 0.4);
}
.mv_player .mejs__overlay:hover > .mejs__overlay-button,
.mv_player .mejs__overlay-button {
  background: none;
}
.mv_player .mejs__overlay:hover > .mejs__overlay-button {
  opacity: 0.8;
}
.mv_player .mejs__time {
  font-weight: normal;
}
.mv_player .mejs__time-current {
  background: rgba(54, 189, 237, 0.9);
}
.mv_player .mejs__time-slider {
  position: absolute;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -450%);
  transform: translate(-50%, -450%);
}
.mv_player .mejs__time-slider, .mv_player .mejs__time-buffering, .mv_player .mejs__time-loaded, .mv_player .mejs__time-current, .mv_player .mejs__time-handle {
  height: 5px;
}
.mv_player .mejs__time-rail {
  position: initial;
}
.mv_player .mejs__playpause-button {
  position: relative;
  width: 70px;
}
.mv_player .mejs__playpause-button button,
.mv_player .mejs__playpause-button .button {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.mv_player .mejs__playpause-button .button__next {
  background: url("../images/av-player-sprite.png") -80px -32px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-9px);
  transform: translateY(-9px);
}
.mv_player .mejs__playpause-button .button--disabled {
  /*opacity: 0.4;*/
}
.mv_player .mejs__fullscreen-button {
  float: right;
}
.mv_player .mejs__time-hovered {
  height: 4px;
}
.mv_player .mejs__time-handle {
  top: -2px;
}

.mejs__offscreen {
  clip: initial;
  overflow: visible;
  -webkit-clip-path: initial;
  clip-path: initial;
}
.my_player__wrapper > .mejs__offscreen {
  display: none;
}

/*****************************************************
    Responsive area
******************************************************/
/*****************************************************
    min-width 768px
******************************************************/
@media only screen and (min-width: 768px) {
  	/*****************************************************
         Audio Plugin
      ******************************************************/
  .my_player {
    padding-left: 25px;
    padding-right: 25px;
  }
  .my_player .mejs__button.mejs__playpause-button {
    width: 180px;
  }
  .my_player .mejs__button.mejs__playpause-button > button {
    left: 65px;
  }
  .my_player .mejs__button.mejs__playpause-button > .button.button__next {
    right: 50px;
  }
  .my_player .mejs__time {
    padding-left: 50px;
  }

  /*****************************************************
      Video Plugin
  ******************************************************/
}
/*****************************************************
    min-width 992px
******************************************************/
@media only screen and (min-width: 992px) {
  	/*****************************************************
         Audio Plugin
      ******************************************************/
  .genre__item.genre__item--empty {
    display: block;
  }

  .audio-plugin__track {
    padding-top: 0;
    padding-bottom: 0;
  }
  .audio-plugin__track .track__title,
  .audio-plugin__track .track__media,
  .audio-plugin__track .track__duration {
    height: 69px;
    line-height: 69px;
    overflow: hidden;
    font-size: 14px;
  }

  .audio-plugin__genre .audio-plugin__genre-list {
    max-height: none;
    overflow: visible;
  }

  .audio-plugin__tracks-wrapper {
    max-height: none;
    overflow: visible;
  }

  /*****************************************************
      Video Plugin
  ******************************************************/
}
/*****************************************************
    min-width 1200px
******************************************************/
@media only screen and (min-width: 1200px) {
  	/*****************************************************
         Audio Plugin
      ******************************************************/
  .audio-plugin__track .track__title,
  .audio-plugin__track .track__media,
  .audio-plugin__track .track__duration {
    font-size: 16px;
  }

  /*****************************************************
      Video Plugin
  ******************************************************/
}

/*# sourceMappingURL=av-plugin.css.map */
