#ajax{
	background: rgba(2,169,227,1);
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	display: flex;
}

#ajax .ajax_animation{
	display: flex;
	height: 100%;
	width: 100%;
	flex-direction: column;
	justify-content: center;
}

#ajax .logo{
	height: 42px;
	width: 180px;
	background: url(../images/logo_white.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin: 20px auto;
	display: flex;
}


#ajax .spinner{
	-webkit-animation: rotator 1.4s linear infinite;
	animation: rotator 1.4s linear infinite;
	width: 100%;
}

@-webkit-keyframes rotator{
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(270deg);
	}
}

@keyframes rotator {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(270deg);
	}
}
.path{
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	transform-origin: center;
	-webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
	animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors{
	0% {
		stroke: #4285F4;
	}
	25% {
		stroke: #DE3E35;
	}
	50% {
		stroke: #F7C223;
	}
	75% {
		stroke: #1B9A59;
	}
	100% {
		stroke: #4285F4;
	}
}

@keyframes colors{
	0%{
		stroke: #4285F4;
	}
	25%{
		stroke: #DE3E35;
	}
	50%{
		stroke: #F7C223;
	}
	75%{
		stroke: #1B9A59;
	}
	100%{
		stroke: #4285F4;
	}
}

@-webkit-keyframes dash{
	0%{
		stroke-dashoffset: 187;
	}
	
	50%{
		stroke-dashoffset: 46.75;
		transform: rotate(135deg);
	}
	
	100%{
		stroke-dashoffset: 187;
		transform: rotate(450deg);
	}
}

@keyframes dash{
	0%{
		stroke-dashoffset: 187;
	}
	
	50%{
		stroke-dashoffset: 46.75;
		transform: rotate(135deg);
	}
	
	100%{
		stroke-dashoffset: 187;
		transform: rotate(450deg);
	}
}