*{
	margin: 0;
	padding: 0;
}
.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;           /* Non-prefixed version, currently not supported by any browser */
}


/*DEFAULT FRAME FOR VIDEO STYLING*/
video::-webkit-media-controls {
  display: none;
}
.video_player_placeholder{
	position: relative;
	display: block;
	/*width: 640px;*/
	width: 100%;
	height: 360px;
	background: black;
	margin: 0px auto;
	box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.video_player_placeholder .pw_video_placeholder{
	position: relative;
	display: block;
	width: 640px;
	height: 360px;
	overflow: hidden;
}
.video_player_placeholder .pw_video_placeholder img{
	position: absolute;
	width: 100%;
	height: auto;
}		
.video_player_placeholder .pw_video_placeholder video{
	cursor: default;
	object-fit: cover;
}
/*DEFAULT CONTROLE FRAME STYLING*/
.controle_placeholder{
	position: absolute;
	display: block;
	width: 100%;
	height: calc(32px + 2px + 8px);
	background: rgba(0,0,0,0.3);
	box-sizing: border-box;
	bottom: 0;

	overflow: hidden;
	transition: all 0.5s ease;
	transition-property: height, opacity;
	cursor: default;
	z-index: 2;
}

/*VIDEO SEEKER STYLING*/

.seeker_placeholder{
	position: relative;
	display: block;
	width: 100%;
	height: 8px;
	/*padding-bottom: 2px;*/
	top: 0;
	/*background: rgba(0,0,0,0.15);*/
}
.seeker_placeholder .seeker_track{
	position: relative;
	display: block;
	width: 100%;
	height: 4px;
	top: 50%;
	transform: translate(0, -50%);
	background: #888; 
	cursor: pointer;
}
.seeker_placeholder .seeker_track .seeker_viewed{
	position: absolute;
	display: block;
	width: 5px;
	height: 100%;
	background: -webkit-linear-gradient(45deg,  rgba(103,58,183,1) 1%,rgba(3,169,244,1) 100%); /* Chrome10-25,Safari5.1-6 */
}
.seeker_placeholder .seeker_track .seeker_mark{
	position: absolute;
	display: block;
	width: 6px;
	height: 6px;
	margin-top: -1px;
	margin-left: 0;
	cursor: pointer;
	background: #673AB7;
}

/*hovering*/
.seeker_placeholder:hover .seeker_track  {
	height: 6px !important;
}
.seeker_placeholder:hover .seeker_track .seeker_mark  {
	width: 8px ;
	height: 8px;
	margin-top: -1px;
}




/*VIDEO BUTTONS*/

.video_player_placeholder .button_section{
	position: relative;
	display: block;
	width: 100%;
	height: 32px;
	/*background: orange;*/
}
/*PLAY BUTTON*/
.video_player_placeholder .button_section .play_button{
	position: relative;
	display: block;
	float: left;
	width: 52px;
	height: 32px;
	cursor: pointer;
	/*background: red;*/
	box-sizing: border-box;
}
.video_player_placeholder .button_section .play_button img{
	position: absolute;
	width: 14px;
	height: 16px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*MUTE BUTTON*/
.video_player_placeholder .button_section .mute_button{
	position: relative;
	display: block;
	float: left;
	width: 32px;
	height: 32px;
	cursor: pointer;
	/*background: black;*/
	box-sizing: border-box;
}
.video_player_placeholder .button_section .mute_button img{
	position: absolute;
	width: 14px;
	height: 16px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*MUTE BUTTON SCALE*/
.video_player_placeholder .button_section .mute_button_scale{
	position: relative;
	display: block;
	float: left;
	width: 60px;
	height: 32px;
	/*background: magenta;*/
	transition: all 2.5s ease;
}
/*.video_player_placeholder .button_section .mute_button_scale:hover{
	width: 60px;
	transition: all 0.5s ease;
}*/
.video_player_placeholder .button_section .mute_button_scale .volume_bar{
	position: relative;
	display: block;
	width: 100%;
	height: 32px;
	outline: none;
	background: transparent;
}
input[type=range]::-webkit-slider-runnable-track {
	position: relative;
	width: 100%;
	height: 4px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	border-top: 2px solid transparent;
	/*border-bottom: 2px solid rgba(0,0,0,0.3);*/
	/*border-top: 2px solid rgba(0,0,0,0.3);*/
	box-sizing: border-box;
	/*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
	background: white;
	border-radius: 3px;
}
input[type=range]{
	-webkit-appearance: none;
}
input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background: #3071A9;
	cursor: pointer;
	margin-top: -5px; /*You need to specify a margin in Chrome, but in Firefox and IE it is automatic*/
	/*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
}

/*VIDEO TIME DISPLAY*/
.video_player_placeholder .button_section .video_time_display{
	position: relative;
	display: inline-block;
	width: auto;
	height: 32px;
	/*background: black;*/
	color: white;
	font-family: "Roboto", Arial;
	font-weight: 300;
	font-size: 12px;
	line-height: 32px;
	padding: 0 5px;
	margin-left: 15px;
	box-sizing: border-box;
	float: left;
}

.video_player_placeholder .button_section .video_time_display p{
	float: left;
	cursor: default;
}

/*FULL SCREEN BUTTON*/
.video_player_placeholder .button_section .fullscreen_button{
	position: relative;
	display: block;
	float: right;
	width: 32px;
	height: 32px;
	cursor: pointer;
	/*background: black;*/
	/*box-sizing: border-box;*/
}
.video_player_placeholder .button_section .fullscreen_button img{
	position: absolute;
	display: block;
	width: 21px;
	height: 21px;
	margin: 5px;
	transition: all 0.5s ease;
}




.video_player_placeholder .pw_video_play_cover{
	position: absolute;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.24);
	z-index: 1;

	justify-content: center;
	align-items: center;
	cursor: pointer;

	opacity: 0;
	-webkit-transition: opacity 500ms ease;
	-o-transition: opacity 500ms ease;
	transition: opacity 500ms ease;
}.video_player_placeholder .pw_video_play_cover.is_paused{
	opacity: 1;
	-webkit-transition: opacity 250ms ease;
	-o-transition: opacity 250ms ease;
	transition: opacity 250ms ease;
}
.video_player_placeholder .pw_video_play_cover .play_pause_badge{
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	width: 84px;
	height: 84px;
	background-color: rgba(0, 0, 0, 0.5);
	border: 4px solid #efefef;
	
	border-radius: 42px;
	justify-content: center;
	align-items: center;
}
.video_player_placeholder .pw_video_play_cover .play_pause_badge img{
	position: relative;
	display: inline-block;
	width: 32px;
	height: 32px;
	padding: 0;
	margin: 0 0 0 6px;
}