/**
 * Form Preloader CSS
 */
.gform-preloader {
	position: relative;
}

.gform-preloader::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 9998;
}

.gform-preloader::after {
	content: "";
	position: absolute;
	top: 5%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	border: 8px solid #f3f3f3;
	border-top: 8px solid #204ce5;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 9999;
}

@keyframes spin {

	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
