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

.hu-css .ajs-controls {
  height: 47px; opacity: 0.95; color: #fff;
  background: #3A3835;
}
.hu-css.audio-js-box.ajs-controls-below .ajs-controls { background: #3A3835; }

.hu-css .ajs-controls > div {
  top: 0;
  background: none;
  -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;
  -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;
}

/* Top Level Items */
.hu-css .ajs-controls > div.ajs-play-control,
.hu-css .ajs-controls > div.ajs-volume-control {
  bottom: 20px; height: 27px;
}
/* Bottom Level Items */
.hu-css .ajs-controls > div.ajs-progress-control, .hu-css .ajs-controls > div.ajs-time-control {
  margin-top: 28px; height: 19px;
}

/* Placement of Control Items */
.hu-css .ajs-controls > div.ajs-play-control       { width: 33px; left: 0px; }
.hu-css .ajs-controls > div.ajs-progress-control   { left: 84px; right: 0px; }
.hu-css .ajs-controls > div.ajs-time-control       { width: 84px; left: 0px; }
.hu-css .ajs-controls > div.ajs-volume-control     { width: 43px; right: 0px; }

/* Play/Pause
-------------------------------------------------------------------------------- */
.hu-css.ajs-paused .ajs-play-control span { margin: 9px 0 0 12px; }
.hu-css.ajs-playing .ajs-play-control span { margin: 9px 0 0 12px; }
.hu-css .ajs-play-control:hover { background-color: #000; }

/* Progress
-------------------------------------------------------------------------------- */
.hu-css .ajs-progress-holder { /* Box containing play and load progresses */
  height: 19px; border: none;
  margin: 0px 0px 0 0px; /* Placement within the progress control item */
  background: #000;
  -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;
}
.hu-css .ajs-progress-holder div { height: 13px; margin-top: 3px; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; }
.hu-css .ajs-play-progress {
  /* Default */ background: #777;
  /* Webkit  */ background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
  /* Firefox */ background: -moz-linear-gradient(top,  #999,  #777);
}
.hu-css .ajs-load-progress { background: #555; }

/* Time Display
-------------------------------------------------------------------------------- */
.hu-css .ajs-controls .ajs-time-control { font-size: 11px; background: #000; }
.hu-css .ajs-controls .ajs-time-control span { line-height: 19px; /* Centering vertically */ }

/* Volume
-------------------------------------------------------------------------------- */
/*.hu-css .ajs-volume-control:hover { background-color: #000; }*/
.hu-css .ajs-volume-control div { margin: 0 5px 0 5px; padding: 9px 0 0 0; }
.hu-css .ajs-volume-control div span { /* Individual volume bars */
  margin: 0 2px 0 0; /* Space between */
  width: 3px; height: 0px; /* Total height is height + bottom border */
  border-bottom: 12px solid #555; /* Default (off) color and height of visible portion */
}
.hu-css .ajs-volume-control div span.ajs-volume-level-on { border-color: #fff; /* Volume on bar color */ }
/* Creating differnt bar heights through height (transparent) and bottom border (visible). */
.hu-css .ajs-volume-control div span:nth-child(1) { border-bottom-width: 2px; height: 10px; }
.hu-css .ajs-volume-control div span:nth-child(2) { border-bottom-width: 4px; height: 8px; }
.hu-css .ajs-volume-control div span:nth-child(3) { border-bottom-width: 6px; height: 6px; }
.hu-css .ajs-volume-control div span:nth-child(4) { border-bottom-width: 8px; height: 4px; }
.hu-css .ajs-volume-control div span:nth-child(5) { border-bottom-width: 10px; height: 2px; }

/* Big Play Button (at start)
---------------------------------------------------------*/
.hu-css div.ajs-big-play-button {
  width: 76px; height: 70px; margin: -35px 0 0 -38px;
  border: 1px solid #ccc; opacity: 0.8;
  -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px;

  background: rgba(50,50,50,0.8);

  /* CSS Shadows */
  -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;
}
.hu-css div.ajs-big-play-button:hover {
  -webkit-box-shadow: 0px 0px 80px #fff; -moz-box-shadow: 0px 0px 80px #fff; box-shadow: 0px 0px 80px #fff;
}
.hu-css div.ajs-big-play-button span {
  margin: 16px 0 0 21px;
  /* Drawing the play triangle with borders - http://www.infimum.dk/HTML/slantinfo.html */
  border-left: 40px solid #fff; /* Width & Color of play icon */
  /* Height of play icon is total top & bottom border widths. Color is transparent. */
  border-top: 20px solid rgba(0,0,0,0); border-bottom: 20px solid rgba(0,0,0,0);
}