
.loading{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	min-height: 100vh;

}

.loader{
	position: relative;
	width: 180px;
	height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform-style: preserve-3d;
	transform: perspective(500px) rotateX(45deg);
}

.loader span{
	position: absolute;
	display: block;
	border: 15px solid #78d5ff ;
	box-sizing: border-box;
	border-radius: 50%;
	box-shadow: 0 10px 0 #78d5ff, inset 0 10px 0 #78d5ff ;
	animation: loading_animate 4.5s ease-in-out infinite;
}

.loader span:nth-child(1){
    animation-delay: 0s;
}
.loader span:nth-child(2){
    animation-delay: 1s;
}
.loader span:nth-child(3){
    animation-delay: 2s;
}



@keyframes loading_animate {
	0%{
		transform: translateZ(-100px);
		width: 100%;
		height: 100%;
	}
	25%{
		transform: translateZ(100px);
		width: 100%;
		height: 100%;
	}
	50%{
		transform: translateZ(100px);
		width: 35%;
		height: 35%;
	}
	75%{
		transform: translateZ(-100px);
		width: 35%;
		height: 35%;
	}
	100%{
		transform: translateZ(-100px);
		width: 100%;
		height: 100%;
	}

}


