.audio-element {
	position: relative;
	height: 48px;
	width: 465px;
	background-repeat: no-repeat;
	background-position: 50px 8px;
	
}
.audio-element * {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-o-user-select: none;
	user-select: none;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	
}
.audio-element > .__btn {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 36px;
	text-align: center;
	font-size: 12pt;
	padding-top: 18px;
	cursor: pointer;
}
.audio-element > .__btn > .__ico1 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: transparent;
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
	border-left-width: 14px;
	border-left-style: solid;
	border-left-color: rgba(0, 0, 0, 0.8);
	transform: translate(-4px, -10px) scale(.9999);
}
.audio-element > .__btn:hover > .__ico1 { border-left-color: black; }
.audio-element > .__btn > .__ico2 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 16px;
	border-style: solid;
	border-width: 0px 5px 0px 5px;
	border-color: rgba(0, 0, 0, 0.8);
	transform: translate(-50%, -50%);
}
.audio-element > .__btn:hover > .__ico2 { border-color: black; }
.audio-element > .__title {
	position: absolute;
	left: 42px;
	top: 16px;
	right: 0px;
	transition: top 0.3s;
	
	
	
}
.audio-element > .__progress {
	position: absolute;
	left: 42px;
	top: 32px;
	right: 16px;
	height: 4px;
	background-color: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s;
}
.audio-element > .__progress > .__line {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 0px;
	background-color: black;
}
.audio-element > .__progress > .__loading_line {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 0px;
	background-color: rgba(0, 0, 0, 0.4);
}
.audio-element > .__progress > .__handle {
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	background-color: black;
	transform: translate(-50%, -50%);
	cursor: pointer;
}
.audio-element.__active > .__title {
	top: 6px;
	transform: none;
}
.audio-element.__active > .__progress { opacity: 1; }
/* Styles */
/* Small */
.audio-element.audio-element-small {
	height: 36px;
	font-size: 12px;
}
.audio-element.audio-element-small > .__btn > .__ico1 {
	border-top-width: 8px;
	border-bottom-width: 8px;
	border-left-width: 12px;
	transform: translate(-4px, -8px) scale(.9999);
}
.audio-element.audio-element-small > .__btn > .__ico2 {
	width: 4px;
	height: 14px;
	border-style: solid;
	border-width: 0px 4px 0px 4px;
	transform: translate(-50%, -50%);
}
.audio-element.audio-element-small > .__title {
	left: 36px;
	top: 10px;
}
.audio-element.audio-element-small > .__progress {
	left: 36px;
	top: 24px;
}
.audio-element.audio-element-small.__active > .__title { top: 5px; }
/* Large */
.audio-element.audio-element-large {
	height: 64px;
	font-size: 16px;
}
.audio-element.audio-element-large > .__btn > .__ico1 {
	border-top-width: 10px;
	border-bottom-width: 10px;
	border-left-width: 14px;
	transform: translate(-4px, -10px) scale(.9999);
}
.audio-element.audio-element-large > .__btn > .__ico2 {
	width: 4px;
	height: 16px;
	border-style: solid;
	border-width: 0px 5px 0px 5px;
	transform: translate(-50%, -50%);
}
.audio-element.audio-element-large > .__title {
	top: 22px;
	left: 42px;
}
.audio-element.audio-element-large > .__progress {
	top: 44px;
	left: 42px;
}
.audio-element.audio-element-large.__active > .__title { top: 12px; }
/* translucent */
.audio-element.audio-element-translucent {
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
}
.audio-element.audio-element-translucent > .__btn {
	width: 48px;
	border-right-style: solid;
	border-right-width: 1px;
	border-right-color: rgba(255, 255, 255, 0.1);
}
.audio-element.audio-element-translucent > .__btn > .__ico1 { border-left-color: rgba(255, 255, 255, 0.8); }
.audio-element.audio-element-translucent > .__btn:hover > .__ico1 { border-left-color: white; }
.audio-element.audio-element-translucent > .__btn > .__ico2 { border-color: rgba(255, 255, 255, 0.8); }
.audio-element.audio-element-translucent > .__btn:hover > .__ico2 { border-color: white; }
.audio-element.audio-element-translucent > .__progress {
	left: 64px;
	background-color: rgba(255, 255, 255, 0.4);
}
.audio-element.audio-element-translucent > .__title { left: 64px; }
.audio-element.audio-element-translucent > .__progress > .__line { background-color: white; }
.audio-element.audio-element-translucent > .__progress > .__loading_line { background-color: rgba(255, 255, 255, 0.5); }
.audio-element.audio-element-translucent > .__progress > .__handle { background-color: white; }
.audio-element.audio-element-small.audio-element-translucent > .__btn { width: 36px; }
.audio-element.audio-element-small.audio-element-translucent > .__title { left: 48px; }
.audio-element.audio-element-small.audio-element-translucent > .__progress { left: 48px; }
.audio-element.audio-element-large.audio-element-translucent > .__btn { width: 64px; }
.audio-element.audio-element-large.audio-element-translucent > .__title { left: 84px; }
.audio-element.audio-element-large.audio-element-translucent > .__progress { left: 84px; }
/* Material */
.audio-element.audio-element-material {
	color: #212121;
	box-shadow: 1px 1px 2px 1px rgb(210, 210, 210);
}
.audio-element.audio-element-material > .__title { left: 52px; }
.audio-element.audio-element-material > .__progress { left: 52px; }
.audio-element.audio-element-material > .__progress > .__handle { border-radius: 50%; }
.audio-element.audio-element-material > .__btn {
	left: 8px;
	top: 8px;
	bottom: 8px;
	width: 32px;
	border-radius: 50%;
	background-color: black;
}
.audio-element.audio-element-material > .__btn > .__ico1 {
	border-top-width: 8px;
	border-bottom-width: 8px;
	border-left-width: 12px;
	border-left-color: white;
	transform: translate(-4px, -8px) scale(.9999);
}
.audio-element.audio-element-material > .__btn > .__ico2 {
	width: 4px;
	height: 14px;
	border-style: solid;
	border-width: 0px 4px 0px 4px;
	border-color: white;
	transform: translate(-50%, -50%);
}
.audio-element.audio-element-material.audio-element-small .__btn {
	top: 4px;
	bottom: 4px;
	width: 28px;
}
.audio-element.audio-element-material.audio-element-small > .__btn > .__ico1 {
	border-top-width: 6px;
	border-bottom-width: 6px;
	border-left-width: 10px;
	border-left-color: white;
	transform: translate(-3px, -6px) scale(.9999);
}
.audio-element.audio-element-material.audio-element-small > .__btn > .__ico2 {
	width: 4px;
	height: 10px;
	border-style: solid;
	border-width: 0px 3px 0px 3px;
	border-color: white;
	transform: translate(-50%, -50%);
}
.audio-element.audio-element-material.audio-element-small > .__title { left: 46px; }
.audio-element.audio-element-material.audio-element-small > .__progress { left: 46px; }
.audio-element.audio-element-material.audio-element-large .__btn {
	left: 12px;
	top: 12px;
	bottom: 12px;
	width: 40px;
}
.audio-element.audio-element-material.audio-element-large > .__title { left: 64px; }
.audio-element.audio-element-material.audio-element-large > .__progress { left: 64px; }
.audio-element.audio-element-material.audio-element-material-red > .__btn { background-color: #d23f31; }
.audio-element.audio-element-material.audio-element-material-red > .__progress { background-color: #f6d8d5; }
.audio-element.audio-element-material.audio-element-material-red > .__progress > .__line { background-color: #d64f43; }
.audio-element.audio-element-material.audio-element-material-red > .__progress > .__loading_line { background-color: #e89d96; }
.audio-element.audio-element-material.audio-element-material-red > .__progress > .__handle { background-color: #d23f31; }
.audio-element.audio-element-material.audio-element-material-blue > .__btn { background-color: #3c80f6; }
.audio-element.audio-element-material.audio-element-material-blue > .__progress { background-color: #cedffd; }
.audio-element.audio-element-material.audio-element-material-blue > .__progress > .__line { background-color: #5590f7; }
.audio-element.audio-element-material.audio-element-material-blue > .__progress > .__loading_line { background-color: #9ec0fa; }
.audio-element.audio-element-material.audio-element-material-blue > .__progress > .__handle { background-color: #3c80f6; }
.audio-element.audio-element-material.audio-element-material-green > .__btn { background-color: #33ac71; }
.audio-element.audio-element-material.audio-element-material-green > .__progress { background-color: #d8f3e6; }
.audio-element.audio-element-material.audio-element-material-green > .__progress > .__line { background-color: #35b175; }
.audio-element.audio-element-material.audio-element-material-green > .__progress > .__loading_line { background-color: #89dcb4; }
.audio-element.audio-element-material.audio-element-material-green > .__progress > .__handle { background-color: #33ac71; }
.audio-element.audio-element-material.audio-element-material-purple > .__btn { background-color: #9b59b6; }
.audio-element.audio-element-material.audio-element-material-purple > .__progress { background-color: #eadcef; }
.audio-element.audio-element-material.audio-element-material-purple > .__progress > .__line { background-color: #a05fb9; }
.audio-element.audio-element-material.audio-element-material-purple > .__progress > .__loading_line { background-color: #caa6d8; }
.audio-element.audio-element-material.audio-element-material-purple > .__progress > .__handle { background-color: #9b59b6; }
.audio-element.audio-element-material.audio-element-material-orange > .__btn { background-color: #e67e22; }
.audio-element.audio-element-material.audio-element-material-orange > .__progress { background-color: #fae4d1; }
.audio-element.audio-element-material.audio-element-material-orange > .__progress > .__line { background-color: #e88630; }
.audio-element.audio-element-material.audio-element-material-orange > .__progress > .__loading_line { background-color: #f2bc8c; }
.audio-element.audio-element-material.audio-element-material-orange > .__progress > .__handle { background-color: #e67e22; }
.audio-element.audio-element-material.audio-element-material-yellow > .__btn { background-color: #f1c40f; }
.audio-element.audio-element-material.audio-element-material-yellow > .__progress { background-color: #fcf3cf; }
.audio-element.audio-element-material.audio-element-material-yellow > .__progress > .__line { background-color: #f4cf3e; }
.audio-element.audio-element-material.audio-element-material-yellow > .__progress > .__loading_line { background-color: #f9e79f; }
.audio-element.audio-element-material.audio-element-material-yellow > .__progress > .__handle { background-color: #f1c40f; }
