.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #004977;
  /* opacity: 0.8; */
  height: 160px;
}

/*
			PLAYER
		*/

.audioplayer {
  /* height: 2.5em;  */
  height: 100%;
  color: #fff;
  /* text-shadow: 1px 1px 0 #000; */
  position: absolute;
  width: 100%;
  z-index: 1;
  /* background: #333; */
}

/* mini mode (fallback) */

.audioplayer-mini {
  width: 2.5em; /* 40 */
  margin: 0 auto;
}

/* player elements: play/pause and volume buttons, played/duration timers, progress bar of loaded/played */

.audioplayer > div {
  position: absolute;
}

/* play/pause button */

.audioplayer-playpause {
  width: 80px;
  height: 80px;
  text-align: center;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 2;
  bottom: 36px;
  left: 50%;
  margin-left: -40px;
}
.audioplayer:not(.audioplayer-mini) .audioplayer-playpause {
  /* border-right: 1px solid #555;
					border-right-color: rgba( 255, 255, 255, .1 ); */
}
.audioplayer-mini .audioplayer-playpause {
  width: 100%;
}
.audioplayer-playpause:hover,
.audioplayer-playpause:focus {
  /* background-color: #222; */
}
.audioplayer-playpause a {
  display: block;
}
.audioplayer-stopped .audioplayer-playpause a {
  width: 80px;
  height: 80px;
  /* border: 0.5em solid transparent;
					border-right: none;
					border-left-color: #fff;
					content: '';
					position: absolute;
					top: 50%;
					left: 50%;
					margin: -0.5em 0 0 -0.25em;  */
  background: url(play-btn.svg) no-repeat 0px 0px;
  background-size: 200%;
}
.audioplayer-playing .audioplayer-playpause a {
  width: 80px; /* 12 */
  height: 80px; /* 12 */
  /* position: absolute;
					top: 50%;
					left: 50%;
					margin: -0.375em 0 0 -0.375em;  */
  background: url(play-btn.svg) no-repeat 0px -80px;
  background-size: 200%;
}
/* .audioplayer-playing .audioplayer-playpause a:before,
					.audioplayer-playing .audioplayer-playpause a:after
					{
						width: 40%;
						height: 100%;
						background-color: #fff;
						content: '';
						position: absolute;
						top: 0;
					}
					.audioplayer-playing .audioplayer-playpause a:before
					{
						left: 0;
					}
					.audioplayer-playing .audioplayer-playpause a:after
					{
						right: 0;
					} */

/* timers */

.audioplayer-time {
  width: 4.375em; /* 70 */
  height: 100%;
  line-height: 2.375em; /* 38 */
  /* text-align: center; */
  z-index: 2;
  top: 40px;
  font-size: 12px;
}
.audioplayer-time-current {
  /* border-left: 1px solid #111;
					border-left-color: rgba( 0, 0, 0, .25 ); */
  left: 48px;
  text-align: left;
}
.audioplayer-time-duration {
  /* border-right: 1px solid #555;
					border-right-color: rgba( 255, 255, 255, .1 ); */
  right: 48px;
  text-align: right;
}
.audioplayer-novolume .audioplayer-time-duration {
  border-right: 0;
  right: 0;
}

/* progress bar of loaded/played */

.audioplayer-bar {
  height: 8px; /* 14 */
  background-color: #ffffff33;
  cursor: pointer;
  z-index: 1;
  top: 30px;
  right: 48px;
  left: 48px;
  margin-top: -0.438em; /* 7 */
}
.audioplayer-novolume .audioplayer-bar {
  right: 4.375em; /* 70 */
}
.audioplayer-bar div {
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.audioplayer-bar-loaded {
  background-color: #ffffff66;
  z-index: 1;
}
.audioplayer .audioplayer-bar-played {
  background: #aaa;
  z-index: 2;
  border-right: 8px solid #fff;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

/* volume button */
.audioplayer-volume {
  display: none;
}

/* CSS3 decorations */

.audioplayer-volume-adjust {
  -webkit-box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.15),
    2px -2px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.15),
    2px -2px 2px rgba(0, 0, 0, 0.15);
  box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.15),
    2px -2px 2px rgba(0, 0, 0, 0.15);
}
.audioplayer-bar,
.audioplayer-volume-adjust > div {
  /* -webkit-box-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 ), 1px 1px 0 rgba( 255, 255, 255, .1 );
				-moz-box-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 ), 1px 1px 0 rgba( 255, 255, 255, .1 );
				box-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 ), 1px 1px 0 rgba( 255, 255, 255, .1 ); */
}
.audioplayer-volume-adjust div div,
.audioplayer-bar-played {
  /* -webkit-box-shadow: inset 0 0 5px rgba( 255, 255, 255, .5 );
				-moz-box-shadow: inset 0 0 5px rgba( 255, 255, 255, .5 );
				box-shadow: inset 0 0 5px rgba( 255, 255, 255, .5 ); */
}
/* .audioplayer-playpause,
			.audioplayer-volume a
			{
				-webkit-filter: drop-shadow( 1px 1px 0 #000 );
				-moz-filter: drop-shadow( 1px 1px 0 #000 );
				-ms-filter: drop-shadow( 1px 1px 0 #000 );
				-o-filter: drop-shadow( 1px 1px 0 #000 );
				filter: drop-shadow( 1px 1px 0 #000 );
			} */
.audioplayer,
.audioplayer-volume-adjust {
  /* background: -webkit-gradient( linear, left top, left bottom, from( #444 ), to( #222 ) );
				background: -webkit-linear-gradient( top, #444, #222 );
				background: -moz-linear-gradient( top, #444, #222 );
				background: -ms-radial-gradient( top, #444, #222 );
				background: -o-linear-gradient( top, #444, #222 );
				background: linear-gradient( to bottom, #444, #222 ); */
}
.audioplayer-bar-played {
  /* background: -webkit-gradient( linear, left top, right top, from( #007fd1 ), to( #c600ff ) );
				background: -webkit-linear-gradient( left, #007fd1, #c600ff );
				background: -moz-linear-gradient( left, #007fd1, #c600ff );
				background: -ms-radial-gradient( left, #007fd1, #c600ff );
				background: -o-linear-gradient( left, #007fd1, #c600ff );
				background: linear-gradient( to right, #007fd1, #c600ff ); */
}
.audioplayer-volume-adjust div div {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#007fd1),
    to(#c600ff)
  );
  background: -webkit-linear-gradient(bottom, #007fd1, #c600ff);
  background: -moz-linear-gradient(bottom, #007fd1, #c600ff);
  background: -ms-radial-gradient(bottom, #007fd1, #c600ff);
  background: -o-linear-gradient(bottom, #007fd1, #c600ff);
  background: linear-gradient(to top, #007fd1, #c600ff);
}
.audioplayer-bar,
.audioplayer-bar div,
.audioplayer-volume-adjust div {
  /* -webkit-border-radius: 4px;
				-moz-border-radius: 4px;
				border-radius: 4px; */
}
.audioplayer {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.audioplayer-volume-adjust {
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.audioplayer *,
.audioplayer *:before,
.audioplayer *:after {
  -webkit-transition: color 0.25s ease, background-color 0.25s ease,
    opacity 0.5s ease;
  -moz-transition: color 0.25s ease, background-color 0.25s ease,
    opacity 0.5s ease;
  -ms-transition: color 0.25s ease, background-color 0.25s ease,
    opacity 0.5s ease;
  -o-transition: color 0.25s ease, background-color 0.25s ease,
    opacity 0.5s ease;
  transition: color 0.25s ease, background-color 0.25s ease, opacity 0.5s ease;
}

/* responsiveness */

@media only screen and (max-width: 32.5em) /* 520 */ {
  #wrapper {
    width: 100%;
    height: auto;
    position: static;
    padding: 1.25em; /* 20 */
    margin: 0;
  }
}
