﻿
body {
	overflow-x: hidden;
}

/* Preloader */
#preloader {
	 position:fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color:#fff; /* change if the mask should have another color then white */
    z-index:999; /* makes sure it stays on top */
	text-align: center;
}

#status {
	width:198px;
	height:42px;
	position:absolute;
	left:calc(50% - 99px); /* centers the loading animation horizontally on the screen */
	top:calc(50% - 21px); /* centers the loading animation vertically on the screen */
	background-image:url(../img/logo.gif); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
}
