#ninja_forms_required_items, .nf-field-container {
	clear: both;
	position: relative;
	margin-bottom: 25px;
}

#ninja_forms_required_items:after, .nf-field-container:after {
	clear: both;
	content: "";
	display: block;
}

.ninja-forms-noscript-message {
	background: #f1f1f1;
	border: 4px dashed #ccc;
	color: #333;
	display: block;
	font-size: 20px;
	margin: 20px 0;
	padding: 40px;
	text-align: center;
}

.nf-loading-spinner {
	width: 40px;
	height: 40px;
	margin: 100px auto;
	background-color: hsla(0, 0%, 81.6%, .5);
	border-radius: 100%;
	animation: nf-scaleout 1s ease-in-out infinite;
}

@keyframes nf-scaleout {
	0% {
		transform: scale(0);
	}
	
	to {
		transform: scale(1);
		opacity: 0;
	}
}