.with_frm_style {
	--form-width: 100%;
	--form-align: left;
	--direction: ltr;
	--fieldset: 0px;
	--fieldset-color: #000;
	--fieldset-padding: 0 0 15px 0;
	--fieldset-bg-color: transparent;
	--title-size: 40px;
	--title-color: #444;
	--title-margin-top: 10px;
	--title-margin-bottom: 60px;
	--form-desc-size: 14px;
	--form-desc-color: #666;
	--form-desc-margin-top: 10px;
	--form-desc-margin-bottom: 25px;
	--form-desc-padding: 0;
	--font-size: 15px;
	--label-color: #7c7c7c;
	--weight: 500;
	--position: none;
	--align: left;
	--width: 150px;
	--required-color: #b94a48;
	--required-weight: bold;
	--label-padding: 0 0 3px 0;
	--description-font-size: 12px;
	--description-color: #666;
	--description-weight: normal;
	--description-style: normal;
	--description-align: left;
	--description-margin: 0;
	--field-font-size: 14px;
	--field-height: 32px;
	--line-height: 32px;
	--field-width: 100%;
	--auto-width: 100%;
	--field-pad: 6px 10px;
	--field-margin: 20px;
	--field-weight: normal;
	--text-color: #555;
	--border-color: #bfc3c8;
	--field-border-width: 1px;
	--field-border-style: solid;
	--bg-color: #fff;
	--bg-color-active: #fff;
	--border-color-active: #ceac91;
	--text-color-error: #444;
	--bg-color-error: #fff;
	--border-color-error: #b94a48;
	--border-width-error: 1px;
	--border-style-error: solid;
	--bg-color-disabled: #fff;
	--border-color-disabled: #e5e5e5;
	--text-color-disabled: #a1a1a1;
	--radio-align: block;
	--check-align: block;
	--check-font-size: 13px;
	--check-label-color: #444;
	--check-weight: normal;
	--section-font-size: 18px;
	--section-color: #444;
	--section-weight: bold;
	--section-pad: 15px 0 3px 0;
	--section-mar-top: 15px;
	--section-mar-bottom: 30px;
	--section-bg-color: transparent;
	--section-border-color: #e8e8e8;
	--section-border-width: 2px;
	--section-border-style: solid;
	--section-border-loc: -top;
	--collapse-pos: after;
	--repeat-icon-color: #fff;
	--submit-font-size: 15px;
	--submit-width: auto;
	--submit-height: auto;
	--submit-bg-color: #4a554b;
	--submit-border-color: #4a554b;
	--submit-border-width: 2px;
	--submit-text-color: #fff;
	--submit-weight: normal;
	--submit-border-radius: 0px;
	--submit-margin: 10px;
	--submit-padding: 10px 20px;
	--submit-shadow-color: #eee;
	--submit-hover-bg-color: #fcfdf8;
	--submit-hover-color: #4a554b;
	--submit-hover-border-color: #4a554b;
	--submit-active-bg-color: #8d5e51;
	--submit-active-color: #fcfdf8;
	--submit-active-border-color: #8d5e51;
	--border-radius: 4px;
	--error-bg: #f2dede;
	--error-border: #ebccd1;
	--error-text: #b94a48;
	--error-font-size: 14px;
	--success-bg-color: #dff0d8;
	--success-border-color: #d6e9c6;
	--success-text-color: #468847;
	--success-font-size: 14px;
	--progress-bg-color: #eaeaea;
	--progress-color: #3f4b5b;
	--progress-active-bg-color: #579af6;
	--progress-active-color: #fff;
	--progress-border-color: #e5e5e5;
	--progress-border-size: 2px;
	--progress-size: 24px;
	--base-font-size: 15px;
	--box-shadow: 0 1px 2px 0 rgba(18, 18, 23, .05);
}

.with_frm_style, .with_frm_style form, .with_frm_style .frm-show-form div.frm_description p {
	text-align: var(--form-align);
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 30px white inset;
}

.with_frm_style fieldset {
	min-width: 0;
	display: block;
}

.with_frm_style .frm_form_fields > fieldset {
	border-width: var(--fieldset);
	border-style: solid;
	border-color: var(--fieldset-color);
	margin: 0;
	padding: var(--fieldset-padding);
	background-color: var(--fieldset-bg-color);
}

.with_frm_style .frm_form_fields {
	opacity: 1;
	transition: opacity .1s linear;
}

.with_frm_style legend + h3, .with_frm_style h3.frm_form_title {
	font-size: var(--title-size);
	color: var(--title-color);
	margin-top: var(--title-margin-top);
	margin-bottom: var(--title-margin-bottom);
}

.with_frm_style .frm_required {
	color: var(--required-color);
	font-weight: var(--required-weight);
}

.with_frm_style input[type=text], .with_frm_style input[type=password], .with_frm_style input[type=email], .with_frm_style input[type=number], .with_frm_style input[type=url], .with_frm_style input[type=tel], .with_frm_style input[type=search], .with_frm_style select, .with_frm_style textarea, .with_frm_style .frm-card-element.StripeElement {
	font-family: var(--font);
	font-size: var(--field-font-size);
	margin-bottom: 0;
}

.with_frm_style textarea {
	vertical-align: top;
	height: auto;
}

.with_frm_style input[type=text], .with_frm_style input[type=password], .with_frm_style input[type=email], .with_frm_style input[type=number], .with_frm_style input[type=url], .with_frm_style input[type=tel], .with_frm_style input[type=phone], .with_frm_style input[type=search], .with_frm_style select, .with_frm_style textarea, .frm_form_fields_style, .with_frm_style .frm_scroll_box .frm_opt_container, .frm_form_fields_active_style, .frm_form_fields_error_style, .with_frm_style .frm-card-element.StripeElement, .with_frm_style .frm_slimselect.ss-main {
	color: var(--text-color);
	background-color: var(--bg-color);
	border-color: var(--border-color);
	border-width: var(--field-border-width);
	border-style: var(--field-border-style);
	border-radius: var(--border-radius);
	width: var(--field-width);
	max-width: 100%;
	font-size: var(--field-font-size);
	padding: var(--field-pad);
	box-sizing: border-box;
	outline: none;
	font-weight: var(--field-weight);
}

.with_frm_style input[type=radio], .with_frm_style input[type=checkbox] {
	border-color: var(--border-color);
	box-shadow: var(--box-shadow);
	float: none;
}

.with_frm_style input[type=radio]:after, .with_frm_style input[type=checkbox]:after {
	display: none;
}

.with_frm_style input[type=radio]:not(:checked):focus, .with_frm_style input[type=checkbox]:not(:checked):focus {
	border-color: var(--border-color) !important;
}

.with_frm_style input[type=radio]:focus, .with_frm_style input[type=checkbox]:focus {
	box-shadow: 0px 0px 0px 3px rgba(206, 172, 145, .4) !important;
}

.with_frm_style input[type=text], .with_frm_style input[type=password], .with_frm_style input[type=email], .with_frm_style input[type=number], .with_frm_style input[type=url], .with_frm_style input[type=tel], .with_frm_style input[type=file], .with_frm_style input[type=search], .with_frm_style select, .with_frm_style .frm-card-element.StripeElement {
	min-height: var(--field-height);
	line-height: 1.3;
}

.input[type=file].frm_transparent:focus, .with_frm_style input[type=file] {
	background-color: transparent;
	border: none;
	outline: none;
	box-shadow: none;
}

.with_frm_style input[type=file] {
	color: var(--text-color);
	padding: 0px;
	font-size: var(--field-font-size);
	display: initial;
}

.with_frm_style input[disabled], .with_frm_style select[disabled], .with_frm_style textarea[disabled], .with_frm_style input[readonly], .with_frm_style select[readonly], .with_frm_style textarea[readonly] {
	background-color: var(--bg-color-disabled);
	color: var(--text-color-disabled);
	border-color: var(--border-color-disabled);
}

.with_frm_style .frm_primary_label {
	max-width: 100%;
	font-size: var(--font-size);
	color: var(--label-color);
	font-weight: var(--weight);
	text-align: var(--align);
	padding: var(--label-padding);
	margin: 0;
	width: auto;
	display: block;
}

.with_frm_style .frm_top_container .frm_primary_label, .with_frm_style .frm_hidden_container .frm_primary_label, .with_frm_style .frm_pos_top {
	display: block;
	float: none;
	width: auto;
}

.with_frm_style .frm_none_container .frm_primary_label, .with_frm_style .frm_pos_none, .frm_pos_none, .frm_none_container .frm_primary_label {
	display: none;
}

.with_frm_style .frm_hidden_container .frm_primary_label, .with_frm_style .frm_pos_hidden, .frm_hidden_container .frm_primary_label {
	visibility: hidden;
	white-space: nowrap;
}

.with_frm_style input::placeholder, .with_frm_style textarea::placeholder {
	font-size: var(--field-font-size);
}

.with_frm_style .frm_description, .with_frm_style .frm_pro_max_limit_desc {
	clear: both;
}

.with_frm_style input[type=number][readonly] {
	-moz-appearance: textfield;
}

.with_frm_style .frm_submit {
	clear: both;
}

.with_frm_style .frm-edit-page-btn, .with_frm_style .frm_submit input[type=submit], .with_frm_style .frm_submit input[type=button], .with_frm_style .frm_submit button {
	-webkit-appearance: none;
	cursor: pointer;
}

.with_frm_style .frm_submit.frm_flex {
	align-items: center;
	gap: 2%;
}

.with_frm_style .frm_submit.frm_flex button.frm_button_submit ~ .frm_prev_page {
	order: -1;
}

.frm_forms.frm_style_formidable-style.with_frm_style {
	max-width: var(--form-width);
	direction: var(--direction);
}

.frm_style_formidable-style.with_frm_style .form-field {
	margin-bottom: var(--field-margin);
}

.frm_style_formidable-style.with_frm_style p.description, .frm_style_formidable-style.with_frm_style div.description, .frm_style_formidable-style.with_frm_style div.frm_description, .frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description, .frm_style_formidable-style.with_frm_style .frm_error, .frm_style_formidable-style.with_frm_style .frm_pro_max_limit_desc {
	margin-top: 6px;
	padding: 0;
	font-size: 12px;
	color: #666;
	font-weight: normal;
	text-align: left;
	font-style: normal;
	max-width: 100%;
}

.frm_style_formidable-style.with_frm_style .frm_none_container .frm_primary_label, .frm_style_formidable-style.with_frm_style .frm_pos_none {
	display: none;
}

.frm_style_formidable-style.with_frm_style input::placeholder, .frm_style_formidable-style.with_frm_style textarea::placeholder {
	color: var(--text-color-disabled);
}

.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):not([type=range]):not([readonly]):focus, .frm_style_formidable-style.with_frm_style select:focus, .frm_style_formidable-style.with_frm_style .form-field textarea:focus, .frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text], .frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password], .frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email], .frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number], .frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url], .frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel], .frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search], .frm_form_fields_active_style, .frm_style_formidable-style.with_frm_style .frm_focus_field .frm-card-element.StripeElement {
	background-color: var(--bg-color-active);
	border-color: var(--border-color-active);
	color: var(--text-color);
	box-shadow: 0px 0px 5px 0px rgba(206, 172, 145, .6);
}

.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message, .frm_style_formidable-style.with_frm_style input[type=submit], .frm_style_formidable-style.with_frm_style .frm_submit input[type=button], .frm_style_formidable-style.with_frm_style .frm_submit button, .frm_form_submit_style, .frm_style_formidable-style.with_frm_style .frm-edit-page-btn {
	width: auto;
	font-size: 15px;
	height: auto;
	line-height: normal;
	text-align: center;
	background: #4a554b;
	border-width: 2px;
	border-color: #4a554b;
	border-style: solid;
	color: #fff;
	cursor: pointer;
	font-weight: normal;
	border-radius: 0px;
	text-shadow: none;
	padding: 10px 20px;
	box-sizing: border-box;
	box-shadow: 0 1px 1px #eee;
	margin: 10px;
	margin-left: 0;
	margin-right: 0;
	vertical-align: middle;
}

.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:hover, .frm_style_formidable-style.with_frm_style input[type=submit]:hover, .frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover, .frm_style_formidable-style.with_frm_style .frm_submit button:hover {
	background: var(--submit-hover-bg-color);
	border-color: var(--submit-hover-border-color);
	color: var(--submit-hover-color);
}

.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:focus, .frm_style_formidable-style.with_frm_style input[type=submit]:focus, .frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus, .frm_style_formidable-style.with_frm_style .frm_submit button:focus, .frm_style_formidable-style.with_frm_style input[type=submit]:active, .frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active, .frm_style_formidable-style.with_frm_style .frm_submit button:active {
	background: var(--submit-active-bg-color);
	border-color: var(--submit-active-border-color);
	color: var(--submit-active-color);
	outline: none;
}

.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text], .frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password], .frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url], .frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel], .frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number], .frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email], .frm_style_formidable-style.with_frm_style .frm_blank_field input[type=checkbox], .frm_style_formidable-style.with_frm_style .frm_blank_field input[type=radio], .frm_style_formidable-style.with_frm_style .frm_blank_field textarea, .frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe, .frm_style_formidable-style.with_frm_style .frm_blank_field select:not(.ui-datepicker-month):not(.ui-datepicker-year), .frm_form_fields_error_style, .frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe, .frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe, .frm_style_formidable-style.with_frm_style .frm_blank_field .frm-card-element.StripeElement, .frm_style_formidable-style.with_frm_style .frm_form_field :invalid {
	color: var(--text-color-error);
	background-color: var(--bg-color-error);
	border-color: var(--border-color-error);
	border-width: var(--border-width-error);
	border-style: var(--border-style-error);
}

.with_frm_style :invalid, .with_frm_style :-moz-ui-invalid {
	box-shadow: none;
}

.frm_screen_reader {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.with_frm_style .frm_form_field {
	clear: both;
}

.frm_combo_inputs_container, .frm_grid_container, .frm_form_fields .frm_section_heading, .frm_form_fields .frm_fields_container {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: max-content;
	grid-gap: 0 2%;
}

.frm_combo_inputs_container > *, .frm_grid_container > *, .frm_section_heading > *, .frm_fields_container .frm_form_field, .frm_fields_container > * {
	grid-column: span 12/span 12;
}

.frm6, .frm_half, .frm_form_field.frm_three_fifths, .frm_form_field.frm6, .frm_submit.frm6, .frm_form_field.frm_left_half, .frm_form_field.frm_right_half, .frm_form_field.frm_first_half, .frm_form_field.frm_last_half, .frm_form_field.frm_half, .frm_submit.frm_half {
	grid-column: span 6/span 6;
}

.frm12, .frm_full, .frm_full .wp-editor-wrap, .frm_full > input:not([type='checkbox']):not([type='radio']):not([type='button']), .frm_full select, .frm_full textarea {
	width: 100% !important;
	grid-column: span 12/span 12;
	box-sizing: border-box;
}

.frm_first, .frm_form_field.frm_left_half, .frm_form_field.frm_left_third, .frm_form_field.frm_left_two_thirds, .frm_form_field.frm_left_fourth, .frm_form_field.frm_left_fifth, .frm_form_field.frm_left_inline, .frm_form_field.frm_first_half, .frm_form_field.frm_first_third, .frm_form_field.frm_first_two_thirds, .frm_form_field.frm_first_fourth, .frm_form_field.frm_first_fifth, .frm_form_field.frm_first_sixth, .frm_form_field.frm_first_seventh, .frm_form_field.frm_first_eighth, .frm_form_field.frm_first_inline, .frm_form_field.frm_first {
	grid-column-start: 1;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@media only screen and (max-width: 600px) {
	.frm_section_heading > .frm_form_field, .frm_fields_container > .frm_submit, .frm_grid_container > .frm_form_field, .frm_fields_container > .frm_form_field {
		grid-column: 1/span 12 !important;
	}
}

@media only screen and (max-width: 500px) {
	.frm_form_field input[type=file] {
		max-width: 220px;
	}
}