.loader {
		position: relative;
		z-index: 1;
}.loader:before {
	position: absolute;
	z-index: 130;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: #F4F4F4;}
	.loader:after {
	position: fixed;
	z-index: 130;
	top: 50%;
	left: calc(50% - 20px);
	display: block;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	content: '';
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-animation-name: load8;
	animation-name: load8;
	-webkit-animation-duration: .6s;
	animation-duration: .6s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	border: 4px solid #eee;
	border-top-color: #2A55A4;
	border-radius: 100%;
}

.loaderForm {
	position: relative;
	z-index: 1;
}.loaderForm:before {
	 position: absolute;
	 z-index: 130;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 content: '';
	 background-color: #F4F4F4;}
.loaderForm:after {
	position: absolute;
	z-index: 130;
	top: 50%;
	left: calc(50% - 20px);
	display: block;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	content: '';
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-animation-name: load8;
	animation-name: load8;
	-webkit-animation-duration: .6s;
	animation-duration: .6s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	border: 4px solid #eee;
	border-top-color: #2A55A4;
	border-radius: 100%;
}

@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg); }
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg); } }
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg); }
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg); } }
