#loading {
	display: none;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 150px;
	text-align: center;
}

body.loading #loading {
	display: block;
}

body.loading header {
	display: none;
}

body.loading main {
	display: none;
}

body.loading footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

#loading-spinner {
	animation: clockwisespin 1s linear infinite;
	border: 5px solid #ddd;
	border-top: 5px solid #42a5f5;
	border-radius: 50%;
	height: 94px;
	width: 94px;
}

@keyframes clockwisespin { 
	from {
		transform: rotate( 0deg );
	}
	to {
		transform: rotate( 360deg );
	}
}