@charset "UTF-8";

.loading {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;
	background: #000;
	z-index: 9999;
}

.animation {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
}

.animation,
.animation:before,
.animation:after {
	width: 1em;
	height: 4em;
	background: #ffffff;
	animation: load 1s infinite ease-in-out;
}

.animation:before,
.animation:after {
	position: absolute;
	top: 0;
	content: '';
}
 
.animation{
	animation-delay: -0.16s;
}

.animation:before {
	left: -1.5em;
	animation-delay: -0.32s;
}

.animation:after {
	left: 1.5em;
}
 
@keyframes load {
	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}