.loading-out {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.bar {
	width: 6px;
	height: 60px;
	background: white;
	display: inline-block;
	transform-origin: bottom center;
	animation: animation_loading 1.5s ease-in-out infinite;
}

.bar1 {
	animation-delay: 0.1s;
}
.bar2 {
	animation-delay: 0.2s;
}
.bar3 {
	animation-delay: 0.3s;
}
.bar4 {
	animation-delay: 0.4s;
}
.bar5 {
	animation-delay: 0.5s;
}
.bar6 {
	animation-delay: 0.6s;
}
.bar7 {
	animation-delay: 0.7s;
}
.bar8 {
	animation-delay: 0.8s;
}
.bar9 {
	animation-delay: 0.9s;
}
.bar10 {
	animation-delay: 1s;
}
@keyframes animation_loading {
	0% {
		transform: scaleY(0.1);
		background: #f5b041;
	}
	50% {
		transform: scaleY(1);
		background: #2e86c1;
	}
	100% {
		transform: scaleY(0.1);
		background: transparent;
	}
}
