@keyframes run {
	0%   { width: 1%; }
	100% { width: 100%; }
}
.slide-animate-container #status {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #fff;
	text-align: center;
	opacity: 0.7;
	display: none;
}
.slide-animate-container #status h1 {
	color: #000;
}
.slide-animate-container #status img {
	width: 30%;
	margin: 10%;
}
.slide-animate-container #status #line {
	position: absolute;
	top: 85%;
	left: 10%;
	width: 80%;
	height: 2vh;
	background: rgba(0,0,0,0.5); 
	z-index: 9999;
}
.slide-animate-container #status #line.display {
	position: absolute;
	top: 99%;
	left: 0%;
	width: 100%;
	height: 1vh;
}
.slide-animate-container #status #line .runner {
	position: absolute;
	top: 0;
	left: 0;
	width: 1%;
	height: 100%;
	background: #000;
	
	animation: run;
	animation-fill-mode: forwards;
	/*animation-duration: 7s;*/
	animation-timing-function: linear;
}