﻿@charset "utf-8";
body {
	overflow: hidden;
}

/* Preloader */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff; /* change if the mask should be a color other than white */
	z-index:99; /* makes sure it stays on top */
}

#status {
	width:800px;
	height:800px;
	position:absolute;
	left:27%; /* centers the loading animation horizontally on the screen */
	top:10%; /* centers the loading animation vertically on the screen */
	background-image:url(../../log/img/preview2.gif); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
}
@media (max-width: 778px) {
#status {
	width:350px;
	height:350px;
	left:33%; /* centers the loading animation horizontally on the screen */
	top:40%; /* centers the loading animation vertically on the screen */

}
