/*
AudioJS VimCSS Skin (http://videojs.com)
Version 2.0.0
*/

.vim-css .ajs-controls {
  height: 60px; opacity: 0.9; color: #fff;
}
.vim-css .ajs-controls > div {
  height: 32px; top: 18px; padding: 0; text-align: center; background: rgba(53, 81, 79, 0.746094);
  -webkit-border-radius: 0; border-radius: 0;
  -webkit-box-shadow: none; box-shadow: none;
}
/* Placement of Control Items */
.vim-css .ajs-controls > div.ajs-play-control       { width: 65px; left: 10px; }
.vim-css .ajs-controls > div.ajs-progress-control   { left: 85px; right: 125px; }
.vim-css .ajs-controls > div.ajs-time-control       { width: 75px; right: 50px; }
.vim-css .ajs-controls > div.ajs-volume-control     { width: 52px; right: 0px; }

/* Play/Pause
-------------------------------------------------------------------------------- */
.vim-css .ajs-controls .ajs-play-control { top: 10px; margin: 0; height: 40px;  -webkit-border-radius: 5px; border-radius: 5px; }
.vim-css .ajs-play-control:hover { background: #00ADEF; }
.vim-css.ajs-paused .ajs-play-control span { border-left-color: #fff; border-top-width: 9px; border-left-width: 18px; border-bottom-width: 9px; margin: 11px 0 0 24px; }
.vim-css.ajs-playing .ajs-play-control span { width: 13px; height: 18px; margin: 5px auto 0; border-left: 5px solid #fff; border-right: 5px solid #fff; margin: 11px 0 0 24px; }

/* Progress
-------------------------------------------------------------------------------- */
.vim-css .ajs-controls .ajs-progress-control { -webkit-border-radius: 5px 0 0 5px; border-radius: 5px 0 0 5px; }
.vim-css .ajs-progress-control .ajs-progress-holder { height: 8px; padding: 1px; margin: 10px 5px 0 10px; border-color: #666666; -webkit-border-radius: 0; border-radius: 0; }
.vim-css .ajs-progress-control .ajs-play-progress { height: 8px; background: #00ADEF; -webkit-border-radius: 0; border-radius: 0; }
.vim-css .ajs-progress-control .ajs-load-progress { height: 8px; background: #898F8F; -webkit-border-radius: 0; border-radius: 0; }

/* Time Display
-------------------------------------------------------------------------------- */
.vim-css .ajs-controls .ajs-time-control { font-size: 11px; }
.vim-css .ajs-controls .ajs-time-control span { line-height: 32px; /* Centering vertically */ }

/* Volume
-------------------------------------------------------------------------------- */
.vim-css .ajs-controls .ajs-volume-control { -webkit-border-radius: 0 5px 5px 0; border-radius: 0 5px 5px 0; }
.vim-css .ajs-volume-control div span {
  float: left; margin: 0 2px 0 0; padding: 0; height: 3px; border-bottom: 12px solid #666666;
  -webkit-transition: all 100ms linear; -moz-transition: all 100ms linear;
}
.vim-css .ajs-volume-control div span.ajs-volume-level-on { border-color: #00ADEF; }
.vim-css .ajs-volume-control div span:hover { height: 0; border-bottom-width: 15px; }

/* Big Play Button (at start)
---------------------------------------------------------*/
.vim-css div.ajs-big-play-button {
  width: 130px; height: 80px; margin: -40px 0 0 -65px;
  border: none; opacity: 0.9;
  -webkit-border-radius: 10px; border-radius: 10px;

  background: rgba(23, 35, 34, 0.746094);

  /* CSS Shadows */
  -webkit-box-shadow: none; box-shadow: none;
}
.vim-css div.ajs-big-play-button:hover {
  background: #00ADEF;
  opacity: 1;
}
.vim-css div.ajs-big-play-button span {
  margin: 22px 0 0 48px;
  /* Drawing the play triangle with borders - http://www.infimum.dk/HTML/slantinfo.html */
  border-left: 36px solid #fff; /* Width & Color of play icon */
  /* Height of play icon is total top & bottom border widths. Color is transparent. */
  border-top: 18px solid rgba(0,0,0,0); border-bottom: 18px solid rgba(0,0,0,0);
}
