﻿#loading{text-align:center}
.loader-ball-37 {
	display: inline-block;
	position: relative;
	width: 75px;
	height: 40px;
}
.loader-ball-37 div {
	position: absolute;
	top: 20px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loader-ball-37 div:nth-child(1) {
	background: red;
	left: 8px;
	animation: anm-BL37-dots1 0.6s infinite;
}
.loader-ball-37 div:nth-child(2) {
	background: orange;
	left: 8px;
	animation: anm-BL37-dots2 0.6s infinite;
}
.loader-ball-37 div:nth-child(3) {
	background: #037ffc;
	left: 32px;
	animation: anm-BL37-dots2 0.6s infinite;
}
.loader-ball-37 div:nth-child(4) {
	background: green;
	left: 56px;
	animation: anm-BL37-dots3 0.6s infinite;
}
@keyframes anm-BL37-dots1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes anm-BL37-dots2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}
@keyframes anm-BL37-dots3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
