.cloud_circle .preloader-animation {
	top: -70px;
}
.cloud-circle-container {
	width: 100px;
	height: 102px;
	border-radius: 100%;
	position: absolute;
	top: 45%;
	left: calc(50% - 50px);
}

.cloud-circle {
	width: 100%;
	height: 100%;
	position: absolute;
}
.cloud-circle .inner {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 5px solid #fff/*$color*/;
	border-right: none;
	border-top: none;
	/*noinspection CssUnknownProperty*/
	backgroudn-clip: padding;
	box-shadow: inset 0 0 10px rgba(0, 255, 170, 0.15);
}

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

@keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.cloud-circle:nth-of-type(0) {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}
.cloud-circle:nth-of-type(0) .inner {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}

.cloud-circle:nth-of-type(1) {
	-webkit-transform: rotate(70deg);
	-ms-transform: rotate(70deg);
	transform: rotate(70deg);
}
.cloud-circle:nth-of-type(1) .inner {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}

.cloud-circle:nth-of-type(2) {
	-webkit-transform: rotate(140deg);
	-ms-transform: rotate(140deg);
	transform: rotate(140deg);
}
.cloud-circle:nth-of-type(2) .inner {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}