.spinner_1 {
	position: absolute;
	visibility: hidden;
	width: 64px;
	height: 18px;
	text-align: center;
	/*background-color: coral;*/
}

.spinner_1 > div {
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: #2272B1;
	-webkit-border-radius:100%; border-radius:100%;
	-webkit-animation: s1_bouncedelay 1.4s infinite ease-in-out both;
	        animation: s1_bouncedelay 1.4s infinite ease-in-out both;
}

.spinner_1 .bounce1 {
	-webkit-animation-delay: -0.32s;
	        animation-delay: -0.32s;
}
.spinner_1 .bounce2 {
	-webkit-animation-delay: -0.16s;
	        animation-delay: -0.16s;
}
@-webkit-keyframes s1_bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1.0);
		        transform: scale(1.0);
	}
}
@keyframes s1_bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1.0);
		        transform: scale(1.0);
	}
}