@charset "utf-8";
/* CSS Document */

@font-face
{
	font-family:NexaLight;
	src:url(../fonts/Nexa%20Light.otf);
}
@font-face
{
	font-family:NexaBold;
	src:url(../fonts/Nexa%20Bold.otf);
}

body {
	background-color:rgba(255,255,255,1.00);
	font-family: NexaLight, sans-serif;
}

*
{
	-webkit-tap-highlight-color:transparent; /* Safari, Chrome */
	-moz-tap-highlight-color:transparent;  /* Firefox */
	tap-highlight-color:transparent; /* CSS3 */
	
	-webkit-user-select:none;  /* Safari, Chrome */
    -moz-user-select: none; /* Firefox */
    user-select: none; /* CSS3 */
	
	-webkit-touch-callout:none; /* Safari, Chrome */
	-moz-touch-callout:none;  /* Firefox */
	touch-callout:none; /* CSS3 */
}

.toolTip {
	color:rgba(255,255,255,1.00);
	background-color:rgba(65,65,65,1.00);
	position:absolute;
	left:50%;
	bottom:10%;
	width:200px;
	height:50px;
	margin-left:-100px;
	margin-top:-25px;
	z-index:90;
	font-size:14px;
	text-align:center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border:1px solid rgba(201,201,201,1.00);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	opacity:0;
	visibility:hidden;
}

.toolTip p{
	margin-top:18px;
}

.videoPanel {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	max-height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	opacity: 1;
	-ms-filter: none;
	filter: none;
	visibility: visible;
	transition: all 1200ms;
}

.videoPanel canvas {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(255,255,255,1.00);
	/*background-color:rgba(0,0,0,1.00);*/
}

.preloader {
	position:absolute;
	color:rgba(255,255,255,1.00);
	background-color:rgba(0,0,0,1.00);
	z-index:100;
	width:0%;
	height:100%;
	margin:0;
	padding:0;
	overflow:hidden;
	top:0;
	left:0;
}

.preload_holder {
	text-align:right;
	position:absolute;
	right:0;
	bottom:0;
	width:90px;
	height:40px;
	margin-right:10px;
}

.preloader_progress {
	font-family: NexaBold, sans-serif;

	font-size:32px;
}

@media (min-width: 1200px) {
	
.preload_holder {
	text-align:center;
	position:absolute;
	right:0;
	bottom:0;
	width:90px;
	height:90px;
	margin-right:40px;
}


.preloader_progress {

	font-size:52px;
}

.toolTip {
	width:200px;
	height:90px;
	margin-left:-100px;
	margin-top:-50px;
	font-size:18px;
}

.toolTip p{
	margin-top:20px;
}

}