body{
	overflow: hidden;
}

#loading {
	position : fixed;
	width : 100%;
	height : 100vh;
	background-color: white;
	z-index : 100;
}

#progress {
	position : absolute;
	width : 100%;
	height : 1px;
	top : 50%;
	background: linear-gradient(95deg, rgba(255,255,255,0.3) 25%, #CCCCCC 30%,#CCCCCC 70%,rgba(255,255,255,0.3) 75%);
	background-size: 800% 100%;
	background-position:100% 50%;
}

.animateBar {
	animation-duration: 6s;
	animation-timing-function : linear;
	animation-fill-mode: both;
	animation-name: progressBar;
	animation-iteration-count : infinite;
}

@keyframes progressBar {
	0%		{background-position:100% 50%}
	100%	{background-position:0% 50%}
}