
/*preloader*/
.preloader {
	background: #fff;
	color: #db0133;
	width: 100vw;
	height: 100vh;
	z-index: 20000;
	position: fixed;
	left: 0;
	top:0;
}

.preloader__inner {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 165px;
	height: 45px;
	transform: translate(-50%, -50%);
}

.preloader__inner:after {
	position: absolute;
	content: '';
	height: 1px;
	bottom: -2px;
	left: 0px;
	right: 0;
	background: #db0133;
	opacity: 0.8;
}
.inner__box {
	position: absolute;
	width: 15px;
	height: 15px;
	background: #db0133;
	opacity: 1;
	bottom: 0px;
	animation: box-animation 3s infinite ease-in-out;
}

.inner__box.box1 {
	height: 30px;
	left:30px;
	animation-delay: 0.7s;
}
.inner__box.box2 {
	bottom: 0px;
	left:48px;
	animation-delay: 0.6s;
}

.inner__box.box3 {
	width:33px;
	left: 66px;
	animation-delay: 0.5s;
}

.inner__box.box4 {
	left: 72px;
	bottom: 17px;
	width: 3px;
	height: 8px;
	animation-delay: 0.5s;
}

.inner__box.box5 {
	left: 66px;
	top: 0px;
	width: 15px;
	height: 12px;
	animation-delay: 0.4s;
}
.inner__box.box6 {
	left: 84px;
	top: 0px;
	width: 15px;
	height: 12px;
	animation-delay: 0.3s;
}
.inner__box.box7 {
	left: 102px;
	animation-delay: 0.1s;
}

.inner__box.box8 {
	left: 102px;
	top: 0;
	height: 25px;
	animation-delay: 0.1s;
}

.inner__box.box9 {
	left: 120px;
	height: 45px;
}
.preloader__text {
	font-size: 14px;
	padding-top: 10px;
	position: absolute;
	line-height: 1.6em;
	top: 100%;
	left: 0;
	right: 0;
	text-align: center;
	letter-spacing: 0.1em;
	animation: text-animation 2s infinite;
}

@keyframes text-animation {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes box-animation {
	0% {
		opacity: 0;
		transform: translate(-20px, 0);
	}
	10% {
		opacity: 0;
		transform: translate(-20px, 0);
	}
	25% {
		opacity: 1;
		transform: translate(0, 0);
	}
	75% {
		opacity: 1;
		transform: translate(0, 0);
	}
	90% {
		opacity: 0;
		transform: translate(20px, 0);
	}
	100% {
		opacity: 0;
		transform: translate(20px, 0);
	}
}