
#fwfe-form-container > .elementor-widget,
#fwfe-form-container FORM.fwfe-form {
	height: 100%;
}

FORM.fwfe-form #fwfe-form-loader {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	height: 100%;
}

FORM.fwfe-form #fwfe-form-loader IMG {
	animation: fwfe-rotate-logo 5s linear infinite;
	margin-bottom: 20px;
	width: 80px;
}

P.form-submit-resultmessage.fwfe-success {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	color: #fff;
}

P.form-submit-resultmessage.fwfe-error {
	color: #f00;
}

@keyframes fwfe-rotate-logo {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}