/* common stuff */
html, body {

}

/* main page loader */
.cssload-loader {
    z-index:3;
	width: 406px;
	height: 81px;
	line-height: 81px;
	text-align: center;
	position: absolute;
	top:5em;
	left: 50%;
	transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
	font-family: helvetica, arial, sans-serif;
	text-transform: uppercase;
	font-weight: 900;
	font-size:29px;
	color: rgb(0,123,255);
	letter-spacing: 0.2em;
}
.cssload-loader::before, .cssload-loader::after {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: rgb(40,167,70);
	position: absolute;
	animation: cssload-load 1.44s infinite alternate ease-in-out;
		-o-animation: cssload-load 1.44s infinite alternate ease-in-out;
		-ms-animation: cssload-load 1.44s infinite alternate ease-in-out;
		-webkit-animation: cssload-load 1.44s infinite alternate ease-in-out;
		-moz-animation: cssload-load 1.44s infinite alternate ease-in-out;
}
.cssload-loader::before {
	top: 0;
}
.cssload-loader::after {
	bottom: 0;
}



@keyframes cssload-load {
	0% {
		left: 0;
		height: 49px;
		width: 24px;
	}
	50% {
		height: 13px;
		width: 65px;
	}
	100% {
		left: 382px;
		height: 49px;
		width: 24px;
	}
}

@-o-keyframes cssload-load {
	0% {
		left: 0;
		height: 49px;
		width: 24px;
	}
	50% {
		height: 13px;
		width: 65px;
	}
	100% {
		left: 382px;
		height: 49px;
		width: 24px;
	}
}

@-ms-keyframes cssload-load {
	0% {
		left: 0;
		height: 49px;
		width: 24px;
	}
	50% {
		height: 13px;
		width: 65px;
	}
	100% {
		left: 382px;
		height: 49px;
		width: 24px;
	}
}

@-webkit-keyframes cssload-load {
	0% {
		left: 0;
		height: 49px;
		width: 24px;
	}
	50% {
		height: 13px;
		width: 65px;
	}
	100% {
		left: 382px;
		height: 49px;
		width: 24px;
	}
}

@-moz-keyframes cssload-load {
	0% {
		left: 0;
		height: 49px;
		width: 24px;
	}
	50% {
		height: 13px;
		width: 65px;
	}
	100% {
		left: 382px;
		height: 49px;
		width: 24px;
	}
}

/* Search spinner */

.overlay-loader {
	display: block;
	margin: auto;
	width: 175px;
	height: 175px;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.loader {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 175px;
	height: 175px;
	animation-name: rotateAnim;
		-o-animation-name: rotateAnim;
		-ms-animation-name: rotateAnim;
		-webkit-animation-name: rotateAnim;
		-moz-animation-name: rotateAnim;
	animation-duration: 0.4s;
		-o-animation-duration: 0.4s;
		-ms-animation-duration: 0.4s;
		-webkit-animation-duration: 0.4s;
		-moz-animation-duration: 0.4s;
	animation-iteration-count: infinite;
		-o-animation-iteration-count: infinite;
		-ms-animation-iteration-count: infinite;
		-webkit-animation-iteration-count: infinite;
		-moz-animation-iteration-count: infinite;
	animation-timing-function: linear;
		-o-animation-timing-function: linear;
		-ms-animation-timing-function: linear;
		-webkit-animation-timing-function: linear;
		-moz-animation-timing-function: linear;
}
.loader div {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid rgb(0,123,255);
	position: absolute;
	top: 4px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.loader div:nth-child(odd) {
	border-top: none;
	border-left: none;
}
.loader div:nth-child(even) {
	border-bottom: none;
	border-right: none;
}
.loader div:nth-child(2) {
	border-width: 4px;
	left: 0px;
	top: -7px;
	width: 21px;
	height: 21px;
}
.loader div:nth-child(3) {
	border-width: 4px;
	left: -2px;
	top: 5px;
	width: 32px;
	height: 32px;
}
.loader div:nth-child(4) {
	border-width: 5px;
	left: -2px;
	top: -7px;
	width: 42px;
	height: 42px;
}
.loader div:nth-child(5) {
	border-width: 5px;
	left: -2px;
	top: 7px;
	width: 56px;
	height: 56px;
}
.loader div:nth-child(6) {
	border-width: 7px;
	left: 0px;
	top: -7px;
	width: 70px;
	height: 70px;
}
.loader div:nth-child(7) {
	border-width: 7px;
	left: 0px;
	top: 11px;
	width: 88px;
	height: 88px;
}


@keyframes rotateAnim {
	from {
		transform: rotate(360deg);
	}
	to {
		transform: rotate(0deg);
	}
}

@-o-keyframes rotateAnim {
	from {
		-o-transform: rotate(360deg);
	}
	to {
		-o-transform: rotate(0deg);
	}
}

@-ms-keyframes rotateAnim {
	from {
		-ms-transform: rotate(360deg);
	}
	to {
		-ms-transform: rotate(0deg);
	}
}

@-webkit-keyframes rotateAnim {
	from {
		-webkit-transform: rotate(360deg);
	}
	to {
		-webkit-transform: rotate(0deg);
	}
}

@-moz-keyframes rotateAnim {
	from {
		-moz-transform: rotate(360deg);
	}
	to {
		-moz-transform: rotate(0deg);
	}
}

