﻿/* Modal screen */

#mask 
{
	position: fixed;    left:0;    top:0;    width:100%;    height:100%;    z-index:99000;    background-color:#000;
    cursor: wait;
}

#modal
{
	/* *BUG* position: fixed;*/
	/* *FIX* RB, 15/12/2017 - Corregge errori di centratura se il testo è più lungo di 220px... */
	position: relative;
	text-align: center;
	top: calc(50% - 67px);
	z-index: 99001;
	cursor: wait
}

#modal p
{
	text-align: center;
	color: #FFF;
	font-size: 15px;
}

/* Grid "Loading" message */

#gridProcessing {
	position: absolute;
	top: 50%;
	left: 50%;
	
	width: 240px;
	
	height: 30px;
	margin-left: -120px;
	margin-top: -25px;
	padding: 14px 0 2px 15px;
	border: 1px solid #3E94B4;
	color: #3E94B4;
	text-align: center;
	font-size: 14px;
	background: #FFF url('../images/loading.gif') 24px 14px no-repeat;
}
