.audio {
	height: 100%;
	color: #fff;
	position: relative;
	z-index: 1;
}
	.audio-mini {
		width: 2.5em;
		margin: 0 auto;
	}
	.audio > div {
		position: absolute;
	}
	.audio-playpause {
		width: 2.5em;
		height: 100%;
		text-align: left;
		text-indent: -9999px;
		cursor: pointer;
		z-index: 10;
		top: 0;
		left: 0;
	}
		.audio-mini .audio-playpause {
			width: 100%;
		}
		.audio-playpause a {
			display: block;
		}
		.audio:not(.audio-playing) .audio-playpause a {
			width: 0;
			height: 0;
			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;
		}
		.audio-playing .audio-playpause a {
			width: 0.75em;
			height: 0.75em;
			position: absolute;
			top: 50%;
			left: 50%;
			margin: -0.375em 0 0 -0.375em;
		}
			.audio-playing .audio-playpause a:before,
			.audio-playing .audio-playpause a:after {
				width: 40%;
				height: 100%;
				background-color: #fff;
				content: '';
				position: absolute;
				top: 0;
			}
			.audio-playing .audio-playpause a:before {
				left: 0;
			}
			.audio-playing .audio-playpause a:after {
				right: 0;
			}
	.audio-time {
		height: 18px;
		text-align: center;
		z-index: 10;
		top: 0;
		bottom: 0;
		margin: auto;
		font-size: 13px;
		font-weight: 600;
	}
		.audio-time-current {
			left: 40px;
		}
		.audio-time-duration {
			display: none;
		}
			.audio-novolume .audio-time-duration {
				border-right: 0;
				right: 0;
			}
	.audio-bar {
		height: 100%;
		width: 100%;
		cursor: pointer;
		// z-index: 10;
		top: 0;
		right: 0;
		left: 0;
	}
		.audio-novolume .audio-bar {
			right: 4.375em;
		}
		.audio-bar div {
			width: 0;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
		}
		.audio-bar-loaded {
			z-index: -1;
		}
		.audio-bar-played {
			background: #f02f2f;
			z-index: -1;
		}

	.audio-volume {
		width: 50px;
		height: 100%;
		text-align: left;
		text-indent: -9999px;
		cursor: pointer;
		z-index: 99;
		top: 0;
		right: 0;
		// display: none;
	}
		.audio-volume:hover,
		.audio-volume:focus {
			background-color: #232a33;
		}
		.audio-volume-button {
			width: 100%;
			height: 100%;
		}
			.audio-volume-button a {
				width: 0.313em;
				height: 0.375em;
				background-color: #fff;
				display: block;
				position: relative;
				z-index: 1;
				top: 47%;
				left: 35%;
			}
				.audio-volume-button a:before,
				.audio-volume-button a:after {
					content: '';
					position: absolute;
				}
				.audio-volume-button a:before {
					width: 0;
					height: 0;
					border: 8px solid transparent;
					border-left: none;
					border-right-color: #fff;
					z-index: 2;
					top: 50%;
					right: -3px;
					margin-top: -8px;
				}
				.audio:not(.audio-mute) .audio-volume-button a:after {
					width: 5px;
					height: 5px;
					border: 1px double #fff;
					border-width: 7px 7px 0 0;
					left: 10px;
					top: -3px;
					-webkit-transform: rotate( 45deg );
					-moz-transform: rotate( 45deg );
					-ms-transform: rotate( 45deg );
					-o-transform: rotate( 45deg );
					transform: rotate( 45deg );
				}
		.audio-volume-adjust {
			height: 6.25em;
			cursor: default;
			position: absolute;
			left: 0;
			right: -1px;
			top: -9999px;
			background: #232a33;
		}
			.audio-volume:not(:hover) .audio-volume-adjust {
				opacity: 0;
			}
			.audio-volume:hover .audio-volume-adjust {
				top: auto;
				bottom: 100%;
			}
			.audio-volume-adjust > div {
				width: 40%;
				height: 80%;
				background-color: #323d4b;
				cursor: pointer;
				position: relative;
				z-index: 1;
				margin: 30% auto 0;
			}
				.audio-volume-adjust div div {
					width: 100%;
					height: 100%;
					position: absolute;
					bottom: 0;
					left: 0;
					background: #f02f2f;
				}
		.audio-novolume .audio-volume {
			display: none;
		}