#js-alert {
	display:none;
}

#alert-overlay {
	/* make sure it appear behind the dialog box but above everything else */
	position:absolute; 
	top:0; left:0; 
	z-index:9998; 
	
	/* set it to fill the whil screen */
	width:100%; 
	height:100%;
	
	/* set overlay transparency */
	background: rgba(0, 0, 0, 0.6);
}

#alert-box, #loading-box {
	/* make sure it has the highest z-index */
	position:absolute; 
	z-index:9999; 
	
	/* center box horizontal and 30% vertical */
	top: 30%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	
	/* styling of the dialog box*/ 
	background:#fff;
	min-width: 200px;
    min-height: 50px;
    max-width: 75%;
    padding: 15px 20px;
}

#alert-content, #loading-content {
	/* style the content */
	font-size: 15px;
    color: #333;
    margin: 10px 0 20px 0;
    text-align: center;
}
#alert-footer {
	text-align:center;
}

#alert-footer button {
	display: block;
	background-color: #002d4f;
    border: 0 none;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
	padding: 10px 50px;
	
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	cursor:pointer;
	

    font-weight: bold;
    font-size: 11px;
    margin: 10px;
    
    margin: 0 auto;
    text-decoration: none;
}

#alert-footer button:hover {
	background-color: #001b3c62;
}