.loader_overlay{
	/* Do not display it on entry */
    display: none; 
	
	/* Display it on the layer with index 1001.
       Make sure this is the highest z-index value
       used by layers on that page */
    z-index:1001;
     
    /* make it cover the whole screen */
    position: fixed; 
    top: 0%; 
    left: 0%; 
    width: 100%; 
    height: 100%; 
 
    /* make it white but fully transparent */
    background-color: white; 
    opacity:.85; 
    filter: alpha(opacity=85);
}

.loader_content {
	width: 600px;
	min-height: 340px;
	padding: 30px;
	background-color: white;
	position: absolute;
	top: 50%;
	right: 50%;
	margin: -170px -330px 0 0;
	text-align: center;
}

.loader_content_mobile{
	width: 100%;
	position:fixed;
	text-align: center;
	top: 40%;
}