#divAppLoader
{
	background-color:rgba(0, 0, 0, 0.25);
	display:none;
	height:100%;
	left:0px;
	position:fixed;
	top:0px;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	width:100%;
	z-index:2;
}

#divAppLoader.show
{
	animation-duration:0.1s;
	animation-name:showLoader;
	display:block;
	opacity:1;
}

#divAppLoader .imgLoaderLogo
{
	animation:spin 1s linear infinite;
	height:80px;
	left:50%;
	margin:-40px 0px 0px -40px;
	position:absolute;
	top:50%;
	width:80px;
}

/* ANIMATIONS */
@keyframes showLoader
{
	0%   {opacity:0;}
	1%   {opacity:0;}
	100% {opacity:1;}
}

@keyframes spin
{
	100%
	{
		transform:rotate(360deg);
	}
}