.page-loaders {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1100;
	background-color: #2c5cda;
	height: 100vh;
	width: 100vw;
}

#loading-center {
	width: 100%;
	height: 100%;
	position: relative;
}

#loading-center-absolute {
	position: absolute;
	right: 50%;
	top: 50%;
	height: 10.7143rem;
	width: 8.9286rem;
	margin-top: -4.5rem;
	margin-right: -4.5rem;
}


.page-loaders .object {
	width: 1.4286rem;
	height: 1.4286rem;
	background-color: currentColor;
	float: right;
	margin: 0 0.7143rem;
	margin-top: 4.6429rem;
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
}

#object_one {
	-webkit-animation: object_one 1.5s infinite;
	animation: object_one 1.5s infinite;
}

#object_two {
	-webkit-animation: object_two 1.5s infinite;
	animation: object_two 1.5s infinite;
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

#object_three {
	-webkit-animation: object_three 1.5s infinite;
	animation: object_three 1.5s infinite;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;

}


@-webkit-keyframes object_one {
	75% {
		-webkit-transform: scale(0);
	}
}

@keyframes object_one {

	75% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

}





@-webkit-keyframes object_two {


	75% {
		-webkit-transform: scale(0);
	}


}

@keyframes object_two {
	75% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

}

@-webkit-keyframes object_three {

	75% {
		-webkit-transform: scale(0);
	}

}

@keyframes object_three {

	75% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

}
