.kjs-led{
position:fixed;
display:flex;
flex-basis:100%;
width:0px;
height:6vh;
bottom:-5.5vh;
background-color:#8d0011;
justify-content:center;
align-items:center;
color:#fff;
font-size:150%;
overflow:hidden;
white-space:nowrap;
z-Index:990;
animation-name:kjs-led;
animation-duration:7s;
animation-timing-function:linear;
animation-delay:0s;
animation-fill-mode:both;
}

.kjs-led::before{
content:'Загрузка происходит дольше обычного. Попробуйте обновить страницу (F5 или Ctrl+F5)';
}

.kjs-led.freeze{
animation:none;
width:auto;
bottom:0vh;
z-Index:995;
padding:0px 10px;
right:0px;
}

.kjs-led.freeze::before{
content:'Ошибка!!';
}

@keyframes kjs-led{
	0% {
		background-color:#438c00;
	}
	30% {
		background-color:#d1ca00;
		z-Index:990;
	}
	70% {
		background-color:#9e320d;
		z-Index:995;
	}
	99% {
		width:100%;
		bottom:-5.5vh;
	}
	to {
		background-color:#8d0011;
		width:100%;
		bottom:0vh;
		z-Index:995;
	}
}
