.loader {
	display:inline-block;
	font-size:0px;
	padding:0px;
}
.loader span {
	vertical-align:middle;
	border-radius:100%;
	
	display:inline-block;
	width:10px;
	height:10px;
	margin:3px 2px;
	-webkit-animation:loader 0.8s linear infinite alternate;
	animation:loader 0.8s linear infinite alternate;
}
.loader span:nth-child(1) {
	-webkit-animation-delay:-1s;
	animation-delay:-1s;
	background:rgba(245, 103, 115,0.6);
}
.loader span:nth-child(2) {
	-webkit-animation-delay:-0.8s;
	animation-delay:-0.8s;
	background:rgba(245, 103, 115,0.8);
}
.loader span:nth-child(3) {
	-webkit-animation-delay:-0.26666s;
	animation-delay:-0.26666s;
	background:rgba(245, 103, 115,1);
}
.loader span:nth-child(4) {
	-webkit-animation-delay:-0.8s;
	animation-delay:-0.8s;
	background:rgba(245, 103, 115,0.8);
}
.loader span:nth-child(5) {
	-webkit-animation-delay:-1s;
	animation-delay:-1s;
	background:rgba(245, 103, 115,0.4);
}
@keyframes loader {
	from {transform: scale(0, 0);}
	to {transform: scale(1, 1);}
}
@-webkit-keyframes loader {
	from {-webkit-transform: scale(0, 0);}
	to {-webkit-transform: scale(1, 1);}
}