/************************************** PRELOADER
*************************************************************************************
************************************************************************************/

#preloader {
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
width:100%;
height:100vh;
background-color:black; /* change if the mask should have another color then white */
opacity : 1;
z-index:999999; /* makes sure it stays on top */
}

#status {
position:absolute;
left:0%; /* centers the loading animation horizontally one the screen */
width : 100%; 
text-align : center;
top:50vh; /* centers the loading animation vertically one the screen */
}


@media only screen and (max-width: 767px) {
	#status {
	top:45vh; /* centers the loading animation vertically one the screen */
	}
}
