@charset 'UTF-8';
/*
 * blueimp Gallery Audio Factory CSS 1.0.0
 * https://github.com/blueimp/Gallery
 *
 * Copyright 2013, Shoreham Fort
 * https://www.shorehamfort.co.uk
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

.blueimp-gallery > .slides > .slide > .audio-content > .audio-container  {
  position: absolute;
  top: 33%;
  right: 0;
  bottom: 0;
  left: 0;
  /* Prevent artifacts in Mozilla Firefox: */
  -moz-backface-visibility: hidden;
}
.blueimp-gallery > .slides > .slide > .audio-content > .audio-container > audio,
.blueimp-gallery > .slides > .slide > .audio-content > .audio-container > img {
  display: block;
  margin: auto;
}
.blueimp-gallery > .slides > .slide > .audio-content > a {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: -64px auto 0;
  width: 128px;
  height: 128px;
  background: url(../img/audio-play.png) center no-repeat;
  opacity: 0.8;
  cursor: pointer;
  display: none;
}
.blueimp-gallery > .slides > .slide > .audio-loading > a {
  background: url(../img/loading.gif) center no-repeat;
  background-size: 64px 64px;
  display: block;
}

/* Replace PNGs with SVGs for capable browsers (excluding IE<9) */
body:last-child .blueimp-gallery > .slides > .slide > .audio-content > a {
  background-image: url(../img/audio-play.svg);
}

/* IE7 fixes */
*+html .blueimp-gallery > .slides > .slide > .audio-content {
  height: 100%;
}
*+html .blueimp-gallery > .slides > .slide > .audio-content > a {
  left: 50%;
  margin-left: -64px;
}
