/**
 * The following styles get applied both on the front of your site and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */
 
/* Conditional display */
.nfcf-condition-hide{
	display: none !important;
}
.nfcf-condition-hide.nfcf-condition-match{
	display: inherit !important;
}

/* Form Steps */
.nfcf-form-step{
	display: none !important;
}
.nfcf-form-step.nfcf-form-step-active{
	display: inherit !important;
}

/* Form Message */
.nfcf-form-msg{
	display: none !important;
}
.nfcf-form-msg.nfcf-form-msg-invalid, .nfcf-form-msg.nfcf-form-msg-valid{
	display: block !important;
}

/* Captcha Reload */
.nfcf-captcha-php-img-wrapper {
	display: inline-block;
}
.nfcf-captcha-php-img-wrapper > div {
	position: relative;
	display: inline-block;
}
.nfcf-captcha-php-img {
	display: block;
	width: 100%;
	height: auto;
}
.nfcf-captcha-php-btn {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.5);
	border: none;
	padding: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.nfcf-captcha-php-btn svg {
	width: 100%;
	height: 70%;
	display: block;
}
.nfcf-captcha-php-btn:hover {
	opacity: 1;
}
