#ajax-spinner {
	position:fixed;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	z-index:100;
	background:rgba(255,255,255,0.8);
}
#ajax-spinner:after {
	animation: loaderAnimation 1.5s ease-in-out infinite;
	clip: rect(0, 80px, 80px, 40px);
	content:"";
	border-radius: 50%;
	height: 80px;
	width: 80px;
	position: absolute;
	left: calc(50% - 40px);
	top: calc(50% - 40px);
}
@keyframes loaderAnimation {
	0% {
		box-shadow: inset var(--color_secondary, #00CD4B) 0 0 0 17px;
		transform: rotate(-180deg);
	}
	50% {
		box-shadow: inset var(--color_secondary, #00CD4B) 0 0 0 2px;
	}
	100% {
		box-shadow: inset var(--color_secondary, #00CD4B) 0 0 0 17px;
		transform: rotate(180deg);
	}
}
