#divAppAlert
{
	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;
}

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

#divAppAlert #divAlertPopup
{
	background-color:#ffffff;
	box-shadow:2px 0px 10px 1px rgba(0, 0, 0, 0.2);
	left:calc(50% - 160px);
	padding:30px;
	position:absolute;
	text-align:right;
	top:30%;
	width:260px;
}

#divAppAlert .divAlertText
{
	font-size:14px;
	line-height:18px;
	margin-bottom:30px;
	text-align:left;
}

#divAppAlert #divAlertPopup button
{
	margin-left:10px;
}

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