/* Spinner Wrapper */

.page-loader {

	width: 100vw;
	height: 100vw;
	/* background: #fff; */
	position: fixed;
	top: 0;
	left: 0;
}

.page-loader-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (min-width: 1281px) {
	.page-loader-inner {
		position: absolute;
		top: 20%;
		left: 20%;
		transform: translate(-50%, -50%);
	}

}

@media (min-width: 1025px) and (max-width: 1280px) {
	.page-loader-inner {
		position: absolute;
		top: 20%;
		left: 25%;
		transform: translate(-50%, -50%);
	}

}

@media (min-width: 768px) and (max-width: 1024px) {
	.page-loader-inner {
		position: absolute;
		top: 20%;
		left: 35%;
		transform: translate(-50%, -50%);
	}

}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

	.page-loader-inner {
		position: absolute;
		top: 20%;
		left: 30%;
		transform: translate(-50%, -50%);
	}

}

@media (min-width: 481px) and (max-width: 767px) {

	.page-loader-inner {
		position: absolute;
		top: 25%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

}

/* Spinner */

.page-roller {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}

.page-roller div {
	animation: page-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 32px 32px;
}

.page-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	margin: -3px 0 0 -3px;
}

.page-roller div:nth-child(1) {
	animation-delay: -0.036s;
}

.page-roller div:nth-child(1):after {
	top: 50px;
	left: 50px;
}

.page-roller div:nth-child(2) {
	animation-delay: -0.072s;
}

.page-roller div:nth-child(2):after {
	top: 54px;
	left: 45px;
}

.page-roller div:nth-child(3) {
	animation-delay: -0.108s;
}

.page-roller div:nth-child(3):after {
	top: 57px;
	left: 39px;
}

.page-roller div:nth-child(4) {
	animation-delay: -0.144s;
}

.page-roller div:nth-child(4):after {
	top: 58px;
	left: 32px;
}

.page-roller div:nth-child(5) {
	animation-delay: -0.18s;
}

.page-roller div:nth-child(5):after {
	top: 57px;
	left: 25px;
}

.page-roller div:nth-child(6) {
	animation-delay: -0.216s;
}

.page-roller div:nth-child(6):after {
	top: 54px;
	left: 19px;
}

.page-roller div:nth-child(7) {
	animation-delay: -0.252s;
}

.page-roller div:nth-child(7):after {
	top: 50px;
	left: 14px;
}

.page-roller div:nth-child(8) {
	animation-delay: -0.288s;
}

.page-roller div:nth-child(8):after {
	top: 45px;
	left: 10px;
}

@keyframes page-roller {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/* End of page loaders styles */
