/************ B09 PLAYER **********

	BY BASICS09
	
	http://www.basics09.de

**********************************/

@font-face {
	font-family: 'b09player';
	src:url('fonts/b09player.eot?74thyy');
	src:url('fonts/b09player.eot?#iefix74thyy') format('embedded-opentype'),
		url('fonts/b09player.woff?74thyy') format('woff'),
		url('fonts/b09player.ttf?74thyy') format('truetype'),
		url('fonts/b09player.svg?74thyy#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

.b09-player .ui {
	font-family: 'b09player';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #fff;
	position: relative;
	font-size: 16px;
	display: table;
	text-align: center;
}
.b09-player .ui:before {
	display: table-cell;
	vertical-align: middle;
}
.b09-player .play-btn:before,
.icon-play:before {
	content: "\e600";
}
.b09-player.playing .play-btn:before,
.icon-pause:before {
	content: "\e601";
}
.volume-btn:before,
.icon-sound:before {
	content: "\e602";
}
.fullscreen-btn:before,
.icon-fullscreen-on:before {
	content: "\e603";
}
.b09-player.is-fullscreen .fullscreen-btn:before,
.icon-fullscreen-off:before {
	content: "\e604";
}




.b09-player {
	position: relative;
	overflow: hidden;
	z-index: 10;
	font-family: inherit;
}
.b09-player * {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.b09-player .overlayer {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 5;
	cursor: pointer;
	background-image: url("blank.gif");
}
.b09-player.started .overlayer {
	background-color: transparent;
}
.b09-player .inner-wrap {
	position: absolute;
	width: 100%;
	height: 100%;
}
.b09-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: 0px none;
}
.b09-player .poster {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
}
.b09-player .poster.is-loaded {
	opacity: 1;
}
.b09-player.started .poster {
	display: none;
}
.b09-player.is-fullscreen {
	position: fixed;
	top: 0px !important;
	left: 0px !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	z-index: 1000000 !important;
}

.b09-player.controls iframe {
	z-index: -1000000 !important;
}
.b09-player.controls.idle iframe {
	opacity: 0;
}

/*************** big play button *********/
.b09-player .big-play-btn {
	display: block;
	cursor: pointer;
}

.b09-player.started .big-play-btn,
.b09-player.loading .big-play-btn {
	display: none;
}

/************** Loader *******************/

.b09-player .loader {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -60px;
	margin-left: -60px;
	border-radius: 100%;
	background: rgba(0,0,0,0);
	*background: #000;
	display: none;
}

.b09-player .loader-inner {
	width: 48px;
	height: 48px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -24px;
	margin-left: -24px;
	background-image: url("loader-white-48x48.png");
	background-repeat: no-repeat;
}

.b09-player.loading .loader {
	display: block;
}

/************** layering *****************/

.b09-player {
	z-index: 1;
}
.b09-player iframe {
	z-index: 0;
}
.b09-player .overlayer {
	z-index: 2;
}
.b09-player .controls {
	z-index: 3;
}
.b09-player .poster {
	z-index: 4;
}
.b09-player .big-play-btn,
.b09-player .loader {
	z-index: 5;
}

/************** controls *****************/

.b09-player .controls {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60px;
	background: rgba(0,0,0,.8);
	
	opacity: 0;
	
	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
}
.b09-player .controls.visible {
	opacity: 1;
}
.b09-player.idle .controls {
	z-index: -1;
}
.b09-player .controls * {
	cursor: pointer;
}
.b09-player .ui {
	opacity: 1;
}
.b09-player .ui:hover {
	opacity: .8;
}
.b09-player .play-btn {
	position: absolute;
	left: 8px;
	top: 10px;
	width: 40px;
	height: 40px;
}

/*********** controls: progress ******************/

.b09-player .progress-container {
	position: relative;
	height: 100%;
	margin: 0 170px 0px 50px;
}
.b09-player .progress-container .wrap {
	position: relative;
	top: 29px;
	height: 2px;
	width: 100%;
}
.b09-player .progress-container .wrap div {
	position: absolute;
	width: 100%;
	height: 100%;
}
.b09-player .progress-container .wrap .background {
	background: #fff;
	opacity: .2;
	z-index: 0;
}
.b09-player .progress-container .buffer-inner,
.b09-player .progress-container .progress-inner {
	display: block;
	width: 0%;
	height: 100%;
}
.b09-player .progress-container .buffer-inner {
	background: #fff;
	opacity: .3;
}
.b09-player .progress-container .progress-inner {
	background: #fff;
}
/*********** controls: volume ******************/
.b09-player .volume-container {
	position: absolute;
	right: 60px;
	top: 0px;
	width: 100px;
	height: 100%;
}
.b09-player .volume-btn {
	width: 30px;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}
.b09-player .volume-bar {
	position: relative;
	top: 29px;
	height: 2px;
	margin: 0 0 0 30px;
}
.b09-player .volume-bar div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.b09-player .volume-bar .background {
	background: #fff;
	opacity: .3;
}
.b09-player .volume-bar .volume-inner {
	background: #fff;
}
.b09-player .fullscreen-btn {
	position: absolute;
	top: 0;
	right: 10px;
	width: 40px;
	height: 100%;
}
.b09-player.is-fullscreen {
	max-width: none !important;
	max-height: none !important;
}



