.loaders {
	position: fixed;
	top: 40%;
	left: 0;
	width: 100%;
	z-index: 999;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
	opacity: 0;
	-webkit-transition: opacity .25s linear;
	transition: opacity .25s linear
}

.loaders.loaded {
	opacity: 1
}

.ball-pulse>div:nth-child(1) {
	-webkit-animation: scale .75s -0.24s infinite cubic-bezier(0.2,0.68,0.18,1.08);
	animation: scale .75s -0.24s infinite cubic-bezier(0.2,0.68,0.18,1.08)
}

.ball-pulse>div:nth-child(2) {
	-webkit-animation: scale .75s -0.12s infinite cubic-bezier(0.2,0.68,0.18,1.08);
	animation: scale .75s -0.12s infinite cubic-bezier(0.2,0.68,0.18,1.08)
}

.ball-pulse>div:nth-child(3) {
	-webkit-animation: scale .75s 0s infinite cubic-bezier(0.2,0.68,0.18,1.08);
	animation: scale .75s 0s infinite cubic-bezier(0.2,0.68,0.18,1.08)
}

@-webkit-keyframes scale {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	45% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: .7
	}

	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@keyframes scale {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	45% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: .7
	}

	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@keyframes scale {
	30% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3)
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

.ball-pulse>div {
	background-color: #ed5565;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	margin: 2px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	display: inline-block
}

.ball-clip-rotate>div {
	border-radius: 100%;
	margin: 2px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	border: 2px solid #ed5565;
	border-bottom-color: transparent;
	height: 25px;
	width: 25px;
	background: transparent!important;
	display: inline-block;
	-webkit-animation: rotate .75s 0s linear infinite;
	animation: rotate .75s 0s linear infinite
}

@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg) scale(1);
		transform: rotate(0deg) scale(1)
	}

	50% {
		-webkit-transform: rotate(180deg) scale(0.6);
		transform: rotate(180deg) scale(0.6)
	}

	100% {
		-webkit-transform: rotate(360deg) scale(1);
		transform: rotate(360deg) scale(1)
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg) scale(1);
		transform: rotate(0deg) scale(1)
	}

	50% {
		-webkit-transform: rotate(180deg) scale(0.6);
		transform: rotate(180deg) scale(0.6)
	}

	100% {
		-webkit-transform: rotate(360deg) scale(1);
		transform: rotate(360deg) scale(1)
	}
}