/* PRELOADER STYLING */

#preloader {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:transparent; /* change if the mask should have another color then white */
	z-index:1; /* makes sure it stays on top */
	display: block;
}

#status {
	position:relative;
	width: 100%;
	height: 100vh;
	display: flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	background-image:url(../images/white-logo.png); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	opacity: 1;
}

.afterload {
	opacity: 0;
}

/* EOF STYLING */
