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

	BY BASICS09
	
	http://www.basics09.de

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

.b09-player {
	position: relative;
	overflow: hidden;
	margin: 0;
	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 iframe {
	position: absolute;
	top: 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 {
	background-image: url("player-ui.png");
	background-repeat: no-repeat;
	background-position: 10px 7px;
	opacity: .8;
}
.b09-player .ui:hover {
	opacity: 1;
}
.b09-player .play-btn {
	position: absolute;
	left: 8px;
	top: 10px;
	width: 40px;
	height: 40px;
}
.b09-player.playing .play-btn {
	background-position: 10px -41px;
}

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

.b09-player .progress-container {
	position: relative;
	height: 100%;
	margin: 0 170px 0px 50px;
}
.b09-player .progress-container .wrap {
	position: relative;
	top: 29px;
	background: #393939;
	height: 2px;
	width: 100%;
}
.b09-player .progress-container .wrap div {
	position: absolute;
	width: 100%;
	height: 100%;
}
.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: #6e6e6e;
}
.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;
	background-position: 2px -80px;
}
.b09-player .volume-bar {
	position: relative;
	top: 29px;
	background: #6e6e6e;
	height: 2px;
	margin: 0 0 0 30px;
}
.b09-player .volume-inner {
	background: #fff;
	width: 100%;
	height: 100%;
}
.b09-player .fullscreen-btn {
	position: absolute;
	top: 0;
	right: 10px;
	width: 40px;
	height: 100%;
	background-position: 5px -183px;
}
.b09-player.is-fullscreen {
	max-width: none !important;
	max-height: none !important;
}
.b09-player.is-fullscreen .fullscreen-btn {
	background-position: 5px -247px;
}



