@charset "utf-8";

/* Preloader */
#preloader {
	position:absolute; z-index:999999;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#000; /* change if the mask should have another color then white */
	 /* makes sure it stays on top */
}

#status {
	width:40px;
	height:40px;
	position:absolute;
	left:50%; /* centers the loading animation horizontally one the screen */
	top:50%; /* centers the loading animation vertically one the screen */
	background-image:url(status.gif); /* path to your loading animation */
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	margin:-20px 0 0 -20px; /* is width and height divided by two */
}