/**
 * Public form builder styles.
 */

.afb {
	--afb-form-max-width: 529px;
	--afb-orange: #fa4616;
	--afb-orange-hover: #e43d10;
	--afb-navy: #051528;
	--afb-dark: #2f3341;
	--afb-text: #1e2430;
	--afb-muted: #667085;
	--afb-line: #d9dee7;
	--afb-line-soft: #e9edf3;
	--afb-white: #ffffff;
	--afb-error: #d92d20;
	--afb-success: #1f8f5f;
	--afb-shadow: 0 148px 41px rgba(0, 0, 0, 0), 0 95px 38px rgba(0, 0, 0, 0.01), 0 53px 32px rgba(0, 0, 0, 0.02), 0 24px 24px rgba(0, 0, 0, 0.03), 0 6px 13px rgba(0, 0, 0, 0.04);
	color: var(--afb-text);
	font-family: "Proxima Nova", Inter, Arial, Helvetica, sans-serif;
	position: relative;
	width: 100%;
}
@media (max-width: 768px) {
	.afb {
		width: calc(100% + 32px);
		margin-left: -16px;
	}
}

.afb-form {
	background: unset !important;
	padding: 0 !important;
}

.afb--horizontal {
	--afb-form-max-width: 680px;
}

/* Theme columns that default to 529px (e.g. ADV hero `.right`). */
.right:has(.afb--horizontal) {
	max-width: 680px;
}

.afb *,
.afb *::before,
.afb *::after {
	box-sizing: border-box;
}

.afb-card,
.afb-thanks {
	-webkit-backdrop-filter: blur(17.5px);
	backdrop-filter: blur(17.5px);
	background: rgba(255, 255, 255, 0.63);
	border: 3px solid rgba(255, 255, 255, 0.50);
	border-radius: 15px;
	box-shadow: var(--afb-shadow);
	max-width: 529px;
	/*overflow: hidden;*/
	width: 100%;
}
.afb--horizontal .afb-card,
.afb--horizontal .afb-thanks {
	max-width: 680px;
}

@media screen and (max-width: 768px) {
	.afb-card {
		padding: 0;
		max-width: 100%;
		background: rgba(229, 229, 229, 0.30);
	}
	.afb-thanks {
		padding: 30px 16px 30px;
		max-width: 100%;
		background: rgba(229, 229, 229, 0.30);
	}
}

.afb-card__head {
	background: linear-gradient(180deg, rgba(5, 21, 40, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
	border-bottom: 1px solid var(--afb-line-soft);
	padding: 16px 24px 14px;
}

.afb-card__kicker {
	color: var(--afb-orange);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0;
}

.afb-progress-meta {
	align-items: center;
	color: var(--afb-muted);
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 12px;
	justify-content: space-between;
	margin: 10px 0;
	margin-top: 40px;
}

.afb-progress-counter {
	line-height: normal;
	font-size: 14px;
	font-family: 'Inter', sans-serif;
}

.afb-progress-meta[hidden] {
	display: none;
}

.afb-progress-track {
	background: #eef2f7;
	border-radius: 999px;
	height: 8px;
	margin-bottom: 56px;
	overflow: hidden;
}

.afb-progress-fill {
	background: linear-gradient(90deg, var(--afb-orange), #ff7a52);
	border-radius: inherit;
	height: 100%;
	width: 100%;
	background: #FA4616;
    border-radius: 0;
	transition: width 0.4s ease;
}

.afb-card__body {
	padding: 29px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.afb-card__body {
		width: auto;
		padding: 16px 16px 32px;
	}
	.afb-progress-track {
		margin-bottom: 32px;
	}
}

/* ── Scroll mode ── */
.afb--scroll .afb-steps-scroll {
	max-height: 700px;
	overflow-y: auto;
	padding: 0 10px 0 2px;
}

.afb--scroll .afb-steps-scroll::-webkit-scrollbar {
	width: 6px;
}

.afb--scroll .afb-steps-scroll::-webkit-scrollbar-track {
	background: transparent;
}

.afb--scroll .afb-steps-scroll::-webkit-scrollbar-thumb {
	background: #d9dee7;
	border-radius: 10px;
}

.afb-step {
	display: none;
}

.afb-step.is-active {
	display: block;
	animation: afbFadeIn 0.35s ease forwards;
}

@keyframes afbFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.afb-back-button {
	align-items: center;
	background: transparent;
	border: unset;
	border-radius: 999px;
	color: #132858;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 18px;
	font-weight: 800;
	gap: 8px;
	height: fit-content;
	line-height: 24px;
	margin: 0 0 0;
	min-height: auto;
	padding: 7px 8px;
	transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, opacity 180ms ease;
	box-shadow: none;
}

.afb-back-button span {
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	font-family: 'Inter';
}

.afb-back-button__icon {
	border: solid currentColor;
	border-width: 0 0 3px 3px;
	display: inline-block;
	height: 9px;
	transform: rotate(45deg);
	width: 9px;
}

.afb-back-button svg,
.afb-back-button svg path {
	transition: 180ms ease all;
}
.afb-back-button:hover {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	color: #fa4616;
}
.afb-back-button:hover svg path {
	fill: #fa4616;
}

.afb-back-button:active,
.afb-back-button:active svg path {
	color: #051528;
	fill: #051528;
}

.afb-back-button:focus {
	background: rgba(255, 255, 255, 0.00);
	box-shadow: 0 0 0 2px #001E5B;
	border: unset;
	color: #132858;
}
.afb-back-button:focus svg path {
	fill: #132858;
}

.afb-back-button:disabled {
	color: #a6adbd;
	cursor: not-allowed;
	opacity: 1;
}

.afb-back-button[hidden],
.afb-skip-button[hidden] {
	display: none;
}

.afb-nav-buttons {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
@media (max-width: 768px) {
	.afb-nav-buttons {
		margin-bottom: 32px;
	}
}

.afb-nav-buttons[hidden] {
	display: none;
}

.afb-skip-button {
	align-items: center;
	background: transparent;
	border: unset;
	border-radius: 999px;
	color: #132858;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 18px;
	font-weight: 800;
	gap: 8px;
	line-height: 24px;
	margin: 0 0 16px;
	height: fit-content;
    min-height: auto;
	padding: 7.5px 8px 7.5px 8px;
	transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, opacity 180ms ease;
	box-shadow: none;
	margin-left: auto;
	margin-bottom: 0;
}

.afb-skip-button span {
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	font-family: 'Inter';
}

.afb-skip-button__icon {
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	display: inline-block;
	height: 9px;
	transform: rotate(-45deg);
	width: 9px;
}
.afb-skip-button svg,
.afb-skip-button svg path {
	transition: 180ms ease all;
}
.afb-skip-button:hover {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	color: #fa4616;
}
.afb-skip-button:hover svg path {
	fill: #fa4616;
}

.afb-skip-button:active {
	color: #051528;
}
.afb-skip-button:active svg path {
	fill: #051528;
}

.afb-skip-button:focus {
	background: rgba(255, 255, 255, 0.00);
    box-shadow: 0 0 0 2px #001E5B;
    border: unset;
	color: #132858;
}
.afb-skip-button:focus svg path {
	fill: #132858;
}

.afb-skip-button:disabled {
	color: #a6adbd;
	cursor: not-allowed;
	opacity: 1;
}

.afb-step__subtitle {
	font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    letter-spacing: 0.16px !important;
    color: #051528 !important;
	margin: 0;
    margin-top: 16px;
	max-width: 100%;
	margin-bottom: 16px;
}

.afb-step__title {
	font-size: 28px;
	font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.4px!important;
    color: #051528;
	margin: 0!important;
}

.afb-field-group {
	margin-top: 32px;
}

.afb--horizontal .afb-field-group {
	column-gap: 16px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.afb--horizontal .afb-field:not(.afb-field--half) {
	grid-column: 1 / -1;
}

.afb-field,
.afb-choice-group {
	margin-top: 16px;
}
.afb-field.afb-field--divider {
	margin-top: 16px;
}
.afb-field.afb-field--half:first-child,
.afb-field.afb-field--half:nth-child(2) {
	margin-top: 0;
}
.afb-field:first-child {
	margin-top: 0;
}
@media (max-width: 768px) {
	.afb-field.afb-field--half:nth-child(2) {
		margin-top: 16px;
	}

	.afb-step__title {
		font-size: 40px!important;
	}
}

.afb-label {
	font-weight: 600;
    color: #051528;
	font-size: 13px;
	line-height: 18px;
	margin-bottom: 8px;
	font-family: 'Inter', sans-serif;
}

.afb-input,
.afb-select,
.afb-textarea {
	align-items: center;
	align-self: stretch;
	background: var(--afb-white);
	color: #051528 !important;
	display: flex;
	font: inherit;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	gap: 8px;
	height: 48px;
	letter-spacing: 0.16px;
	line-height: 24px;
	min-height: 48px;
	outline: none;
	padding: 2px 16px;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
	white-space: nowrap;
	width: 100%;
}

.afb-input,
.afb-select {
	border: 1px solid #6c7284;
	border-radius: 8px;
}

.afb-textarea {
	height: auto;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-gutter: stable;
	resize: vertical;
	white-space: pre-wrap;
}

/* Keep default border + radius even if theme overrides form controls. */
.afb .afb-input,
.afb .afb-select {
	border: 1px solid #6c7284 !important;
	border-radius: 8px !important;
}

.afb .afb-textarea {
	border: none !important;
	background: #fff !important;
}

.afb-input::placeholder,
.afb-textarea::placeholder {
	color: #6c7284;
	opacity: 1;
}

.afb-input:hover,
.afb-select:hover,
.afb-textarea:hover {
	background: var(--afb-white);
	border-color: #6c7284;
}

.afb-input-shell--textarea:hover {
	border-color: #6c7284;
}

.afb .afb-input:hover,
.afb .afb-select:hover,
.afb .afb-textarea:hover {
	border-color: #6c7284 !important;
}

.afb .afb-input-shell--textarea:hover {
	border-color: #6c7284 !important;
}

.afb-input:focus,
.afb-select:focus,
.afb-textarea:focus {
	background: var(--afb-white);
	border-color: #6c7284;
	box-shadow: 0 0 0 2px #001e5b;
}

.afb-input-shell--textarea:focus-within {
	border-color: #6c7284;
	box-shadow: 0 0 0 2px #001e5b;
}

/* Extra specificity to survive theme-wide focus overrides. */
.afb .afb-input:focus,
.afb .afb-select:focus,
.afb .afb-textarea:focus {
	border-color: #6c7284 !important;
	box-shadow: 0 0 0 2px #001e5b !important;
}

.afb .afb-input-shell--textarea:focus-within {
	border-color: #6c7284 !important;
	box-shadow: 0 0 0 2px #001e5b !important;
}

.afb-input:disabled,
.afb-select:disabled,
.afb-textarea:disabled {
	background: #E5E5E5!important;
	color: #6c7284!important;
	cursor: not-allowed;
	opacity: 1;
}

.afb-textarea {
	min-height: 160px;
	white-space: normal;
	resize: vertical;
	padding: 16px;
}

.afb-character-count {
	color: #6c7284;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 17px;
    font-size: 12px;
    margin-top: 4px;
	font-family: 'Inter', sans-serif;
}

.afb-phone {
	display: grid;
	gap: 8px;
	grid-template-columns: 104px 1fr;
	position: relative;
}

.afb-phone .afb-input-shell {
	min-width: 0;
}


.afb-phone-country__button {
	align-items: center;
	background: var(--afb-white);
	border: 1px solid #6c7284;
	border-radius: 8px;
	color: #6c7284;
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 16px;
	font-weight: 400;
	gap: 8px;
	justify-content: space-between;
	letter-spacing: 0.16px;
	line-height: 24px;
	min-height: 48px;
	min-width: 104px;
	padding: 10px 15px;
	text-align: left;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
	white-space: nowrap;
	width: 100%;
}
.afb-phone-country__button span {
	text-overflow: ellipsis;
	max-width: 48px;
	overflow: hidden;
	width: 100%;
}
.afb-phone-country__button:disabled {
	background-color: #E5E5E5;
	pointer-events: none;
}

.afb-phone-country__button:focus,
.afb-phone-country.is-open .afb-phone-country__button {
	background: var(--afb-white);
	border-color: #6c7284;
	box-shadow: 0 0 0 2px #001e5b;
	color: #051528;
	outline: none;
}
.afb-phone-country .afb-phone-country__button svg {
	transition: .2s ease all;
}
.afb-phone-country.is-open .afb-phone-country__button svg {
	transform: rotate(180deg);
}
.afb-phone-country__button:focus svg path,
.afb-phone-country.is-open .afb-phone-country__button svg path {
	fill: #051528;
}

.afb-phone-country__button:hover {
	background: var(--afb-white);
	border-color: #6c7284;
	color: #051528;
	outline: none;
}

.afb-phone-country__chevron {
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	display: inline-block;
	height: 9px;
	margin-top: -4px;
	transform: rotate(45deg);
	width: 9px;
	transition: transform 0.2s ease, margin-top 0.2s ease;
}

.afb-phone-country.is-open .afb-phone-country__chevron {
	margin-top: 4px;
	transform: rotate(225deg);
}

.afb-phone-country__menu {
	background: rgba(246, 246, 246, 0.90);
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.40), 0 0 1.5px 0 rgba(0, 0, 0, 0.30), 0 7px 22px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(40px);
	border-radius: 8px;
	left: 0;
	right: 0;
	margin-top: 16px;
	max-height: 264px;
	overflow-y: auto;
	padding: 5px;
	position: absolute;
	top: 100%;
	z-index: 20;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	pointer-events: none;
}

.afb-phone-country.is-open .afb-phone-country__menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.afb-progress-label {
	font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.14px;
}

.afb-phone-country__option {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 16px;
	font-weight: 400;
	height: 28px;
	letter-spacing: 0.16px;
	line-height: 24px;
	padding: 2px 8px;
	text-align: left;
	width: 100%;
	font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.14px;
    color: #051528;
	box-shadow: none;
}

.afb-phone-country__option:hover,
.afb-phone-country__option:focus {
	background: #FA4616;
	outline: none;
}

.afb-phone-country__option.is-selected {
	background: #fa4616;
	color: #ffffff;
}

.afb-phone__country-select {
	align-items: center;
	appearance: none;
	background: var(--afb-white);
	border: 1px solid #6c7284;
	border-radius: 8px;
	color: #6c7284;
	display: inline-flex;
	font-size: 16px;
	font-weight: 400;
	height: 48px;
	letter-spacing: 0.16px;
	line-height: 24px;
	min-height: 48px;
	padding: 2px 16px;
	padding-right: 30px;
	white-space: nowrap;
	width: 100%;
	background-image: linear-gradient(45deg, transparent 50%, #6c7284 50%), linear-gradient(135deg, #6c7284 50%, transparent 50%);
	background-position: calc(100% - 22px) 21px, calc(100% - 15px) 21px;
	background-size: 7px 7px, 7px 7px;
	background-repeat: no-repeat;
}

.afb-phone__country-select:focus {
	background-color: var(--afb-white);
	border-color: #6c7284;
	box-shadow: 0 0 0 2px #001e5b;
	outline: none;
}

.afb-phone__country-select:hover {
	background-color: var(--afb-white);
	border-color: #6c7284;
	outline: none;
}

.afb-phone__country-select:focus {
	background-image: linear-gradient(45deg, transparent 50%, #051528 50%), linear-gradient(135deg, #051528 50%, transparent 50%);
	color: #051528;
}

.afb-phone__country-select option {
	background: #ffffff;
	color: #051528;
	font-size: 16px;
	line-height: 24px;
}

.afb-phone__country-select option:checked {
	background: #fa4616;
	color: #ffffff;
}

.afb-input-shell {
	position: relative;
	width: 100%;
}

.afb-input-shell--textarea {
	border: 1px solid #6c7284;
	border-radius: 8px;
	overflow: hidden;
}

.afb .afb-input-shell--textarea {
	border: 1px solid #6c7284 !important;
	border-radius: 8px !important;
}

.afb-input-shell__icon {
	display: none;
	height: 16px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	z-index: 1;
}

.afb-input-shell__icon--error {
	left: 16px;
}

.afb-input-shell__icon--success {
	right: 16px;
}

.afb-input-shell--textarea .afb-input-shell__icon {
	top: 16px;
	transform: none;
}

.afb-field.is-error .afb-input-shell__icon--error {
	display: block;
}

.afb-field.is-valid .afb-input-shell__icon--success,
.afb-field.is-validated .afb-input-shell__icon--success {
	display: block;
}

.afb-field.is-error::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 17px; 
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.38462 0C3.32308 0 0 3.32308 0 7.38462C0 11.4462 3.32308 14.7692 7.38462 14.7692C11.4462 14.7692 14.7692 11.4462 14.7692 7.38462C14.7692 3.32308 11.4462 0 7.38462 0ZM1.84618 7.38459C1.84618 4.33844 4.33848 1.84613 7.38464 1.84613C8.58464 1.84613 9.69233 2.21536 10.5846 2.86151L2.86156 10.5846C2.21541 9.69228 1.84618 8.58459 1.84618 7.38459ZM7.38449 12.9231C6.18449 12.9231 5.0768 12.5539 4.18449 11.9077L11.9076 4.18464C12.5537 5.07695 12.923 6.18464 12.923 7.38464C12.923 10.4308 10.4306 12.9231 7.38449 12.9231Z' fill='%23DA3003'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none; 
    z-index: 0;
}

.afb-field.is-validated:not(.is-error)::after,
.afb-field.is-valid:not(.is-error)::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 16px;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.0018 0.615234C3.9095 0.615234 0.617188 3.90754 0.617188 7.99985C0.617188 12.0922 3.9095 15.3845 8.0018 15.3845C12.0941 15.3845 15.3864 12.0922 15.3864 7.99985C15.3864 3.90754 12.0941 0.615234 8.0018 0.615234ZM12.125 6.154L7.41735 10.9232C7.23273 11.1078 6.92504 11.1078 6.74043 10.9232L4.15581 8.30784C3.9712 8.12323 3.9712 7.81554 4.15581 7.63092L4.83273 6.954C5.01735 6.76938 5.32504 6.76938 5.50966 6.954L6.8635 8.33861C6.98658 8.46169 7.20197 8.46169 7.32504 8.33861L10.7712 4.76938C10.9558 4.58477 11.2635 4.58477 11.4481 4.76938L12.125 5.44631C12.3404 5.63092 12.3404 5.93861 12.125 6.154Z' fill='%232D984A'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

.afb-field--select.is-validated:not(.is-error)::after {
	right: 35px;
}

.afb-field.is-error.afb-field--phone::after {
	left: 128px;
}

@media screen and (max-width: 768px) {
	.afb-field.is-error.afb-field--phone::after {
		left: 128px;
	}
}

.afb-field.is-error[data-afb-field="checkbox_field"]::after {
	display: none;
}

.afb-field.is-error[data-afb-field="chips_field"]::after {
	display: none;
}

.afb-field.is-error .afb-textarea {
	padding-left: 40px;
}

.afb-field.is-error[data-afb-field="textarea_field"]::after {
	top: 21px;
}

@media screen and (max-width: 768px) {
	.afb-field.is-error[data-afb-field="phone_number"]::after {
		left: 131px;
	}
}

.seo-block .afb-step__title {
	margin-top: 40px !important;
}

.afb-field.is-error .afb-custom-select .afb-custom-select__button {
	padding-left: 36px;
}
.afb-custom-select__button:disabled {
	background: #E5E5E5 !important;
}

.afb-field.is-error,
.afb-field.is-validated,
.afb-field.is-valid {
	position: relative;
}

.afb-field.is-error input {
	padding-left: 43px;
}

.afb-field.is-error .afb-input-shell .afb-input,
.afb-field.is-error .afb-input-shell .afb-select,
.afb-field.is-error .afb-input-shell .afb-textarea,
.afb-field.is-error .afb-input,
.afb-field.is-error .afb-select,
.afb-field.is-error .afb-textarea,
.afb-field.is-error .afb-phone__country-select,
.afb-field.is-error .afb-phone-country__button {
	background-color: rgba(250, 70, 22, 0.10);
	border-color: #da3003;
	box-shadow: none;
}

.afb-field.is-error .afb-input-shell--textarea {
	border-color: #da3003;
}

.afb-field.is-error .afb-input-shell .afb-input,
.afb-field.is-error .afb-input-shell .afb-select,
.afb-field.is-error .afb-input-shell .afb-textarea {
	padding-left: 40px;
}

.afb-field.is-valid .afb-input-shell .afb-input,
.afb-field.is-valid .afb-input-shell .afb-select,
.afb-field.is-valid .afb-input-shell .afb-textarea,
.afb-field.is-valid .afb-input,
.afb-field.is-valid .afb-select,
.afb-field.is-valid .afb-textarea,
.afb-field.is-validated .afb-input-shell .afb-input,
.afb-field.is-validated .afb-input-shell .afb-select,
.afb-field.is-validated .afb-input-shell .afb-textarea,
.afb-field.is-validated .afb-input,
.afb-field.is-validated .afb-select,
.afb-field.is-validated .afb-textarea {
	padding-right: 40px;
}

.afb-field.is-validated .afb-textarea {
	padding-right: 20px;
}

.afb-field.is-validated .afb-input-shell .afb-textarea {
	padding-right: 25px;
}

.afb-textarea {
	resize: none;
}

.afb .afb-field.is-error .afb-input-shell .afb-input,
.afb .afb-field.is-error .afb-input-shell .afb-select,
.afb .afb-field.is-error .afb-input-shell .afb-textarea,
.afb .afb-field.is-error .afb-input,
.afb .afb-field.is-error .afb-select,
.afb .afb-field.is-error .afb-textarea,
.afb .afb-field.is-error .afb-phone-country__button {
	border-color: #da3003 !important;
}

.afb .afb-field.is-error .afb-input-shell--textarea {
	border-color: #da3003 !important;
}

.afb-field.is-error .afb-input-shell .afb-input:hover,
.afb-field.is-error .afb-input-shell .afb-select:hover,
.afb-field.is-error .afb-input-shell .afb-textarea:hover,
.afb-field.is-error .afb-input:hover,
.afb-field.is-error .afb-select:hover,
.afb-field.is-error .afb-textarea:hover,
.afb-field.is-error .afb-input-shell .afb-input:focus,
.afb-field.is-error .afb-input-shell .afb-select:focus,
.afb-field.is-error .afb-input-shell .afb-textarea:focus,
.afb-field.is-error .afb-input:focus,
.afb-field.is-error .afb-select:focus,
.afb-field.is-error .afb-textarea:focus,
.afb .afb-field.is-error .afb-input-shell .afb-input:hover,
.afb .afb-field.is-error .afb-input-shell .afb-select:hover,
.afb .afb-field.is-error .afb-input-shell .afb-textarea:hover,
.afb .afb-field.is-error .afb-input:hover,
.afb .afb-field.is-error .afb-select:hover,
.afb .afb-field.is-error .afb-textarea:hover,
.afb .afb-field.is-error .afb-input-shell .afb-input:focus,
.afb .afb-field.is-error .afb-input-shell .afb-select:focus,
.afb .afb-field.is-error .afb-input-shell .afb-textarea:focus,
.afb .afb-field.is-error .afb-input:focus,
.afb .afb-field.is-error .afb-select:focus,
.afb .afb-field.is-error .afb-textarea:focus {
	background-color: rgba(250, 70, 22, 0.10);
	border-color: #da3003 !important;
	box-shadow: none !important;
}

.afb-field.is-error .afb-input-shell--textarea:hover,
.afb-field.is-error .afb-input-shell--textarea:focus,
.afb .afb-field.is-error .afb-input-shell--textarea:hover,
.afb .afb-field.is-error .afb-input-shell--textarea:focus {
	border-color: #da3003 !important;
}

.afb-feedback {
	color: #da3003;
	display: none;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	margin: 4px 0 0;
	padding: 0;
}

.afb-field.is-error .afb-feedback {
	display: block;
	font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    color: #DA3003;
	font-family: 'Inter', sans-serif;
}

.tabs-text {
	margin-top: 32px;
	margin-bottom: 8px;
	line-height: 18px;
    font-size: 13px;
    color: #051528;
	font-family: 'Inter';
}

.afb-request-type {
	background: transparent;
	border: 0;
	border-radius: 8px;
	display: inline-grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 0px;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.afb-request-type span {
	font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	font-family: 'Inter';
}

.afb--horizontal .afb-request-type {
	max-width: none;
}

.afb-request-type label {
	align-items: center;
	background: var(--afb-white);
	border: 1px solid #6c7284;
	border-left: 0;
	color: var(--afb-dark);
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	height: 32px;
	justify-content: center;
	line-height: 1.2;
	min-height: 32px;
	padding: 6px 10px;
	position: relative;
	text-align: center;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.afb-request-type label:first-child {
	border-left: 1px solid #6c7284;
	border-radius: 8px 0 0 8px;
}

.afb-request-type label:last-child {
	border-radius: 0 8px 8px 0;
}

.afb-request-type input,
.afb-choice input,
.afb-chip input {
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

.afb-request-type label.is-active {
	background: var(--afb-navy);
	border-color: var(--afb-navy);
	color: var(--afb-white);
}

.afb-choice-list {
	display: grid;
	gap: 8px;
	margin-top: 12px;
}

.afb-choice-list--cards {
	gap: 12px;
	padding: 0;
}

.afb-choice {
	align-items: flex-start;
	background: transparent;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	display: flex;
	gap: 8px;
	padding: 0;
	position: relative;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.afb-field[data-afb-field="checkbox_field"] .afb-choice__text {
	color: #051528;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.14px;
	font-family: 'Proxima Nova', sans-serif;
}

.afb-field[data-afb-field="radio_card_field"] .afb-choice input:checked + .afb-choice__mark {
	background: #FA4616;
}

.afb-choice:hover {
	border-color: #6c7284;
}

.afb-choice__mark {
	background: var(--afb-white);
	border: 1px solid #6c7284;
	border-radius: 999px;
	flex: 0 0 auto;
	height: 100%;
	margin-top: 2px;
	position: relative;
	width: 100%;
	max-width: 16px;
	max-height: 16px;
}

.afb-choice.is-active .afb-choice__mark,
.afb-choice input:checked + .afb-choice__mark {
	background: #132858;
	border-color: #6c7284;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25) inset, 0 0.5px 2px rgba(0, 0, 0, 0.50) inset, 2px 2px 5px rgba(0, 0, 0, 0.10) inset;
}

.afb-choice.is-active .afb-choice__mark::after,
.afb-choice input:checked + .afb-choice__mark::after {
	background: #fff;
	border-radius: inherit;
	content: "";
	inset: 3px;
	top: 3px;
	height: 8px;
	width: 8px;
	left: 3px;
	position: absolute;
}

.afb-choice:has(input[type="checkbox"]) .afb-choice__mark {
	border-radius: 3px;
}

.afb-choice:has(input[type="checkbox"]:checked) .afb-choice__mark {
	background: #001e5b;
	border-color: #001e5b;
	box-shadow: none;
}

.afb-choice.is-active:has(input[type="checkbox"]) .afb-choice__mark::after {
	background: transparent;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    content: "";
    height: 7px;
    inset: 3px auto auto 5px;
    position: absolute;
    transform: rotate(45deg);
    width: 4px;
}

.afb-choice:has(input[type="checkbox"]:checked) .afb-choice__mark::after {
	background: transparent;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    content: "";
    height: 7px;
    inset: 3px auto auto 5px;
    position: absolute;
    transform: rotate(45deg);
    width: 4px;
}

.afb-choice:has(input[type="checkbox"]:checked) .afb-choice__mark {
	border-radius: var(--radius-xs, 4px);
    border: 1px solid var(--ADV-Color-Gray, #6C7284);
    background: var(--ADV-Color-Blue-button, #132858);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.25) inset, 0 0.5px 2px 0 rgba(0, 0, 0, 0.50) inset, 2px 2px 5px 0 rgba(0, 0, 0, 0.10) inset;
}

.afb-choice--card {
	align-items: center;
	background: var(--afb-white);
	border: 1px solid #6c7284;
	border-radius: 8px;
	gap: 8px;
	min-height: 36px;
	padding: 6px 8px;
}

.afb-choice--card:hover {
	border-color: #6c7284;
	box-shadow: 0 0 0 2px #001e5b;
}
.afb-choice--card.is-disabled:hover {
	box-shadow: none;
}

.afb-choice--card:has(input:checked),
.afb-choice--card.is-active {
	background: linear-gradient(0deg, rgba(250, 70, 22, 0.10) 0%, rgba(250, 70, 22, 0.10) 100%), #fff;
	border-color: #da3003;
	box-shadow: 0 0 4px rgba(250, 70, 22, 0.50);
}

.afb-choice--card .afb-choice__mark {
	background: var(--afb-white);
	border-color: #6c7284;
	height: 100%;
	margin-top: 0;
	width: 100%;
	max-width: 16px;
	max-height: 16px;
}

.afb-choice--card.is-active .afb-choice__mark,
.afb-choice--card input:checked + .afb-choice__mark {
	background: #FA4616;
}

.afb-choice--card.is-active .afb-choice__mark::after,
.afb-choice--card input:checked + .afb-choice__mark::after {
	background: #fff;
	border-radius: inherit;
	content: "";
	inset: 3px;
	top: 3px;
	height: 8px;
	width: 8px;
	left: 3px;
	position: absolute;
}

.afb-choice input:checked + .afb-choice__mark {
	background: #FA4616;
	border-color: #6c7284;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25) inset, 0 0.5px 2px rgba(0, 0, 0, 0.50) inset, 2px 2px 5px rgba(0, 0, 0, 0.10) inset;
}

.afb-field--radio .afb-choice input:checked + .afb-choice__mark {
	background: #132858;
}
.afb-field--radio {
	margin-top: 40px;
}
.afb-field--divider+.afb-field--radio {
	margin-top: 16px;
}
.afb-field--radio_card {
	margin-top: 40px;
}
.afb-field--divider+.afb-field--radio_card {
	margin-top: 16px;
}
.afb-field--checkbox {
	margin-top: 40px;
}
.afb-field--divider+.afb-field--checkbox {
	margin-top: 16px;
}
.afb-field--chips {
	margin-top: 40px;
}
.afb-field--divider+.afb-field--chips {
	margin-top: 16px;
}
.afb-field--toggle {
	margin-top: 40px;
}
.afb-field--divider+.afb-field--toggle {
	margin-top: 16px;
}

.afb-choice.is-active .afb-choice__text {
	color: #051528;
}

.afb-choice input:checked + .afb-choice__mark::after {
	background: #fff;
    inset: 3px;
    height: 8px;
	top: 50%;
	transform: translate(-50%, -50%);
    width: 8px;
    left: 50%;
}

.afb-choice__text {
	color: #6C7284;
	font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.14px;
	font-family: 'Proxima Nova', sans-serif;
}

.afb-custom-select {
    position: relative;
    width: 100%;
    font-family: var(--jv-font-sans), sans-serif;
}

.afb-custom-select__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
	height: 48px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #6C7284;
    border-radius: 8px;
    color: #051528;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media screen and (max-width: 768px) {
	.afb-custom-select__button {
		min-height: 48px;
		height: 48px;
	}
}

.afb-custom-select__button:focus,
.afb-custom-select__button[aria-expanded="true"] {
    outline: none !important;
    border-color: #CBD5E1;
}

.afb-custom-select__button {
	padding: 14px 16px;
}

.afb-custom-select__button.has-value {
    color: #1A1A1A;
}

.afb-custom-select__button svg {
	width: 100%;
	transition: .2s ease all;
	height: 100%;
	max-width: 16px;
	max-height: 16px;
}
.afb-custom-select__button[aria-expanded="true"] svg {
	transform: rotate(180deg);
}
.afb-custom-select__button:hover svg path,
.afb-custom-select__button:focus svg path {
	color: #051528;
}
.afb-custom-select__chevron {
    width: 13px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s ease;
}

.afb-custom-select__button:hover .afb-custom-select__chevron,
.afb-custom-select__button:focus .afb-custom-select__chevron {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23001E5B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.afb-custom-select__button[aria-expanded="true"] .afb-custom-select__chevron {
    transform: rotate(180deg);
}

/* Выпадающее меню */
.afb-custom-select__menu {
	border-radius: 8px;
	background: rgba(246, 246, 246, 0.90);
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.40), 0 0 1.5px 0 rgba(0, 0, 0, 0.30), 0 7px 22px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(40px);
	left: 0;
	right: 0;
	margin-top: 12px;
	max-height: 264px;
	overflow-y: auto;
	padding: 5px;
	position: absolute;
	top: 100%;
	z-index: 20;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	pointer-events: none;
}

.afb-custom-select__menu.is-open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* Опции списка */
.afb-custom-select__option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 5px !important;
    color: #051528;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
	padding: 3px 7px;
	box-shadow: none;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.14px;
}

.main-banner-second form button.afb-custom-select__option {
	border-radius: 5px !important;
}

/* Твой кастомный Ховер #FA4616 */
.afb-custom-select__option:hover {
    background: #FA4616 !important;
    color: #ffffff !important; /* Белый текст для контраста на оранжевом */
}

/* Выбранный элемент в списке */
.afb-custom-select__option.is-selected {
    background: #FA4616 !important;
    color: #fff !important;
    font-weight: 400;
}

.afb-custom-select__button:focus {
	background: #fff;
	border-color: #6c7284;
    box-shadow: 0 0 0 2px #001e5b;
}
.afb-custom-select__button:hover {
	background: #fff;
	border-color: #6c7284;
}

.afb-custom-select__button span {
	color: #6C7284;
}

.afb-custom-select__button.has-value span {
	color: #051528;
}

/* Стилизация скроллбара */
.afb-custom-select__menu::-webkit-scrollbar {
    width: 6px;
}
.afb-custom-select__menu::-webkit-scrollbar-track {
    background: transparent;
}
.afb-custom-select__menu::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

.afb-phone-country__menu::-webkit-scrollbar {
	width: 6px;
}
.afb-phone-country__menu::-webkit-scrollbar-track {
	background: transparent;
}
.afb-phone-country__menu::-webkit-scrollbar-thumb {
	background: #CBD5E1;
	border-radius: 10px;
}


.afb-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.afb-chip {
	align-items: center;
	background: var(--afb-white);
	border: 1px solid #6c7284;
	border-radius: 8px;
	color: #051528;
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	height: 32px;
	justify-content: center;
	letter-spacing: 0.16px;
	line-height: 16px;
	min-height: 32px;
	padding: 0 16px;
	position: relative;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.afb-chip span {
	font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.24px;
	font-family: 'Inter';
}

.afb-chip:hover {
	border-color: #6c7284;
	box-shadow: 0 0 0 2px #001e5b;
}

.afb-chip.is-active {
	background: linear-gradient(0deg, rgba(250, 70, 22, 0.10) 0%, rgba(250, 70, 22, 0.10) 100%), #fff;
	border-color: #da3003;
	box-shadow: 0 0 4px rgba(250, 70, 22, 0.50);
	color: #051528;
}

.afb-chip.is-disabled,
.afb-chip:has(input:disabled) {
	background: #C9C9C9;
	border-color: transparent;
	box-shadow: none;
	color: #6c7284;
	cursor: not-allowed;
	opacity: 0.72;
}

.afb-nav {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: 24px;
	width: 100%;
}

.afb-nav--end {
	justify-content: flex-end;
	margin-top: 32px;
}

.afb-nav--stack {
	align-items: stretch;
	flex-direction: column;
	margin-top: 32px;
}

.afb-btn {
	align-items: center;
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 16px;
	font-weight: 800;
	height: fit-content;
	justify-content: center;
	letter-spacing: 0.32px;
	line-height: 24px;
	min-height: 48px;
	padding: 0 22px;
	text-align: center;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.afb-btn:disabled,
.afb-btn--disabled {
	cursor: not-allowed;
	opacity: 1;
}

.afb-btn--primary,
.afb-btn--orange-bg {
	background: var(--afb-orange);
	border: 0;
	color: var(--afb-white);
	outline: none;
}

.afb-btn--primary:hover,
.afb-btn--orange-bg:hover {
	background: #da3003;
	box-shadow: 0 2px 0 #b22904;
}

.afb-btn--primary:active,
.afb-btn--orange-bg:active {
	background: #fa4616;
	box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.08), inset 0 0.5px 2px rgba(0, 0, 0, 0.35);
}

.afb-btn--primary:focus,
.afb-btn--orange-bg:focus {
	background: #fa4616;
	box-shadow: 0 0 0 2px #da3003 inset, 0 0 0 4px #fff inset;
}

/*.afb-btn--primary:disabled,*/
/*.afb-btn--orange-bg:disabled {*/
/*	background: #C9C9C9;*/
/*	box-shadow: none;*/
/*	color: #6C7284;*/
/*}*/

.afb-btn--orange-border {
	background: #fff;
	border: 1px solid #fa4616;
	color: #fa4616;
}

.afb-btn--orange-border:hover {
	border-radius: 8px;
	border: 1px solid var(--ADV-Color-Dark-orange, #DA3003);
	background: var(--ADV-Color-White, #FFF);
	box-shadow: 0 1.5px 0 0 #B22904;
	color: #FA4616;
}

.afb-btn--orange-border:active {
	border-radius: 8px;
	border: 1px solid var(--ADV-Color-Dark-orange, #DA3003);
	background: var(--ADV-Color-White, #FFF);
	box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.08) inset, 0 0.5px 2px 0 rgba(0, 0, 0, 0.35) inset, 0 1px 0 0 rgba(0, 0, 0, 0.15) inset;
	color: #FA4616;
}

.afb-btn--orange-border:focus {
	border-radius: 8px;
	border: 3px solid var(--ADV-Color-Dark-orange, #DA3003);
	background: var(--ADV-Color-White, #FFF);
	color: #FA4616;
}

/*.afb-btn--orange-border:disabled {*/
/*	background: #fff;*/
/*	border-color: #9599A6;*/
/*	box-shadow: none;*/
/*	color: #9599A6;*/
/*}*/

.afb-btn--orange-inverse {
	background: #fa4616;
	border: 1px solid #fff;
	color: #fff;
}

.afb-btn--orange-inverse:hover {
	background: #fa4616;
	box-shadow: 0 1.5px 0 #b22904;
}

.afb-btn--orange-inverse:active {
	background: #fa4616;
	border-color: #fff;
	box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.15), inset 0 0.5px 2px rgba(0, 0, 0, 0.4);
}

.afb-btn--orange-inverse:focus {
	background: #fa4616;
	border: 3px solid #fff;
	box-shadow: none;
}

/*.afb-btn--orange-inverse:disabled {*/
/*	background: #b22904;*/
/*	border-color: #b22904;*/
/*	box-shadow: none;*/
/*	color: #da3003;*/
/*}*/

.afb-btn--blue-bg {
	background: #051528;
	border: 0;
	color: #fff;
	outline: none;
}

.afb-btn--blue-bg:hover {
	background: #132858;
	box-shadow: 0 2px 0 #6c7284;
}

.afb-btn--blue-bg:active {
	background: #051528;
	box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.08), inset 0 0.5px 2px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(0, 0, 0, 0.15);
}

.afb-btn--blue-bg:focus {
	background: #051528;
	box-shadow: 0 0 0 2px #051528 inset, 0 0 0 4px #fff inset;
}

/*.afb-btn--blue-bg:disabled {*/
/*	background: #C9C9C9;*/
/*	box-shadow: none;*/
/*	color: #6C7284;*/
/*}*/

.afb-btn--blue-border {
	background: #fff;
	border: 1px solid #051528;
	color: #051528;
}

.afb-btn--blue-border:hover {
	border-radius: 8px;
	border: 1px solid var(--ADV-Color-Blue-button, #132858);
	background: var(--ADV-Color-White, #FFF);
	box-shadow: 0 1.5px 0 0 #6C7284;
	color: #051528;
}

.afb-btn--blue-border:active {
	border-radius: 8px;
	border: 1px solid var(--ADV-Color-New-dark-blue, #0C2340);
	background: var(--ADV-Color-White, #FFF);
	box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.08) inset, 0 0.5px 2px 0 rgba(0, 0, 0, 0.35) inset, 0 1px 0 0 rgba(0, 0, 0, 0.15) inset;
	color: #051528;
}

.afb-btn--blue-border:focus {
	border-radius: 8px;
	border: 3px solid var(--ADV-Color-New-dark-blue, #0C2340);
	background: var(--ADV-Color-White, #FFF);
	color: #051528;
}

/*.afb-btn--blue-border:disabled {*/
/*	background: #fff;*/
/*	border-color: #9599A6;*/
/*	box-shadow: none;*/
/*	color: #9599A6;*/
/*}*/

.afb-btn--blue-inverse {
	background: #051528;
	border: 1px solid #fff;
	color: #fff;
}

.afb-btn--blue-inverse:hover {
	background: #051528;
	box-shadow: 0 1.5px 0 #6c7284;
}

.afb-btn--blue-inverse:active {
	background: #051528;
	border-color: #fff;
	box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.15), inset 0 0.5px 2px rgba(0, 0, 0, 0.4);
}

.afb-btn--blue-inverse:focus {
	background: #051528;
	border: 3px solid #fff;
	box-shadow: none;
}

/*.afb-btn--blue-inverse:disabled {*/
/*	background: #132858;*/
/*	border-color: #132858;*/
/*	box-shadow: none;*/
/*	color: #051528;*/
/*}*/

.afb-btn--secondary,
.afb-btn--ghost {
	background: var(--afb-white);
	border-color: var(--afb-navy);
	color: var(--afb-navy);
}

.afb-file-upload .afb-btn--secondary:hover {
	border-color: var(--ADV-Color-Blue-button, #132858);
	box-shadow: 0 1.5px 0 0 #6C7284;
}

.afb-file-upload:focus-within .afb-btn--secondary,
.afb-file-upload .afb-btn--secondary:active {
	border-color: var(--ADV-Color-New-dark-blue, #0C2340);
}

.afb-btn--back {
	border-color: var(--afb-line);
	font-size: 14px;
	font-weight: 700;
	height: 40px;
	min-height: 40px;
	padding: 0 16px;
}

.afb-btn--full {
	width: 100%;
	font-family: 'Inter';
	font-weight: 700;
}

.afb-privacy {
	color: var(--afb-muted);
	font-size: 12px;
	line-height: 1.55;
	margin-top: 14px;
}

.afb-privacy a {
	color: inherit;
	text-decoration: underline;
}

.afb-helper-text {
	color: #051528;
	font-size: 13px;
	font-style: normal;
	font-weight: 590;
	line-height: 18px;
	font-family: 'Inter', sans-serif;
}

.afb-field-support {
	align-items: center;
	display: flex;
	gap: 4px;
	margin-top: 8px;
}

.afb-field-support__icon {
	align-items: center;
	color: #6C7284;
	display: inline-flex;
	flex-shrink: 0;
	height: 12px;
	width: 12px;
	line-height: 17px;
}

.afb-field-support__icon svg,
.afb-field-support__icon img {
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.afb-field-support__text {
	color: #0C2340;
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
	font-family: 'Inter', sans-serif;
}

.afb-divider {
	border: 0;
	border-top: 2px solid #F3F7F9;
	margin: 0;
}

.afb-field--accordion {
	margin: 0 0 40px 0;
	padding: 0;
	border-radius: 8px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.50);
}
.afb-field--accordion:first-child {
	margin-top: 0;
}
.afb-field--accordion:last-child {
	margin-bottom: 0;
}
.afb-field--accordion.afb-field--accordion--bordered+.afb-field {
	margin-top: 0;
}
.afb-field:not(.afb-field--accordion)+.afb-field--accordion {
	margin-top: 16px;
}
.afb-field--accordion.afb-field--numbered + .afb-field--accordion.afb-field--numbered:not(.afb-field--accordion--bordered) {
	margin-top: 40px;
}
@media (max-width: 768px) {
	.afb-field--accordion.afb-field--numbered + .afb-field--accordion.afb-field--numbered:not(.afb-field--accordion--bordered) {
		margin-top: 32px;
	}
}
.afb-field--accordion.afb-field--numbered.afb-field--accordion--bordered:last-child {
	padding-bottom: 0;
}


.afb-field--accordion .afb-field--phone::after {
	left: 126px;
}

.afb-field.is-validated[data-afb-field="select_field"]::after {
	right: 38px;
}

.afb .afb-field-group .afb-field--content p {
	margin-bottom: 40px!important;
}
.afb .afb-field-group .afb-field--content:last-child p {
	margin-bottom: 8px!important;
}
.afb .afb-field-group .afb-field--content+* {
	margin-top: 0;
}

@media screen and (max-width: 768px) {
	.afb-accordion .afb-field[data-afb-field="phone_number_2"]::after {
		left: 114px;
	}
	.afb-accordion .afb-field--phone.is-validated::after {
		left: unset;
	}
	.afb-accordion .afb-field.is-validated[data-afb-field="phone_number_3"]::after {
		left: unset;
	}
	.afb-field--accordion {
		margin: 0 0 32px 0;
	}
}

.afb-accordion__trigger {
	align-items: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	color: var(--afb-orange);
	cursor: pointer;
	display: flex;
	font: inherit;
	gap: 16px;
	padding: 14px 0;
	text-align: left;
	width: 100%;
	padding-bottom: 40px;
    padding-top: 0;
	margin-top: 40px;
}
.afb-accordion .afb-accordion__trigger:first-child {
	margin-top: 0;
}

.afb-field--accordion.afb-field--accordion--bordered {
	margin-top: 0;
}


.afb-accordion {
	transition: .3s all;
}

.afb-accordion.is-open > .afb-accordion__trigger {
	padding-bottom: 24px;
}

.afb-accordion__trigger:hover,
.afb-accordion__trigger:active,
.afb-accordion__trigger:focus {
	background: transparent;
	box-shadow: none;
	color: var(--afb-orange);
	opacity: 1;
	outline: none;
	transition: .3s all;
}

.afb-accordion--numbered > .afb-accordion__head {
	align-items: center;
	display: flex;
	gap: 12px;
	padding: 14px 0;
}

.afb-accordion--numbered > .afb-accordion__panel {
	max-height: none;
	opacity: 1;
	overflow: visible;
	visibility: visible;
	padding: 0;
}

.afb-accordion--numbered.is-open > .afb-accordion__panel {
	padding: 2px 0 16px 52px;
}

.afb-accordion--numbered .afb-accordion__head {
	padding-bottom: 24px;
    padding-top: 0;
}

.afb-field--numbered {
	padding-bottom: 40px;
	margin-bottom: 0!important;
}

.afb-accordion__number {
	align-items: center;
	background: var(--afb-orange);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 40px;
	font-size: 24px;
	font-weight: 800;
	height: 40px;
	justify-content: center;
	line-height: 1;
	width: 40px;
}

.afb-accordion__title {
	flex: 1 1 auto;
	font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
	color: #FA4616;
}

.afb-accordion__icon {
	flex: 0 0 20.31px;
	height: 20.31px;
	position: relative;
	width: 20.31px;
}

.afb-accordion__icon::before,
.afb-accordion__icon::after {
	background: #051528;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	border-radius: 1px;
}

.afb-content-block p {
	font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.14px;
    color: #6C7284;
}

.afb-accordion__icon::before {
	height: 3px;
	transform: translate(-50%, -50%);
	width: 20.31px;
}

.afb-accordion__icon::after {
	height: 20.31px;
	transform: translate(-50%, -50%);
	width: 3px;
	transition: transform 0.3s ease;
}

.afb-accordion.is-open > .afb-accordion__trigger .afb-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.afb-accordion__trigger:hover .afb-accordion__icon::before,
.afb-accordion__trigger:hover .afb-accordion__icon::after,
.afb-accordion__trigger:active .afb-accordion__icon::before,
.afb-accordion__trigger:active .afb-accordion__icon::after,
.afb-accordion__trigger:focus .afb-accordion__icon::before,
.afb-accordion__trigger:focus .afb-accordion__icon::after {
	background: #051528;
}

.afb-accordion__panel {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	padding: 0;
	transition: max-height 0.35s ease, opacity 0.35s ease, visibility 0.35s ease, padding 0.35s ease;
	padding: 2px 2px 40px;
	padding-bottom: 0;
}

.afb-accordion.is-open > .afb-accordion__panel {
	max-height: 1000px;
	opacity: 1;
	visibility: visible;
	padding: 0 0 40px;
	overflow: visible;
	padding-bottom: 0;
}

.afb-accordion__panel > .afb-field:first-child {
	margin-top: 0;
}

.afb-accordion--bordered {
	border: 2px solid rgba(255, 255, 255, 0.50);
    border-radius: 8px;
	padding: 24px 22px;
}

.afb-field--checkbox.is-error::after {
	display: none;
}

.afb-field--accordion.afb-field--accordion--bordered .afb-accordion.is-open {
	padding-bottom: 24px;
}

.afb-accordion--bordered > .afb-accordion__trigger {
	padding: 0;
	margin-top: 0;
}

.afb-accordion--bordered.is-open > .afb-accordion__trigger {
	padding: 24px 0;
    padding-top: 0;
}

/* Toggle field */
.afb-toggle {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	gap: 10px;
}

.afb-field--phone.is-validated::after {
	left: unset;
}

.afb-toggle__input {
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.afb-toggle__track {
	background: #6C7284;
	border-radius: 999px;
	flex: 0 0 48px;
	height: 24px;
	position: relative;
	transition: background 180ms ease;
	width: 48px;
	overflow: hidden;
	/* border-color: #0C2340; */
	fill: var(--ADV-Color-Gray, #6C7284);
    stroke-width: 1px;
    stroke: var(--ADV-Color-Gray, #6C7284);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, -0.9) inset, 0 0.5px 2px 0 rgba(0, 0, 0, 0.10) inset, 2px 2px 5px 0 rgba(0, 0, 0, 0.10) inset;
	border: 1px solid #6C7284;
}
.afb-toggle.is-disabled .afb-toggle__track,
.afb-toggle.is-disabled .afb-toggle__input:checked + .afb-toggle__track {
	background: rgba(207, 207, 207, 0.40);
}
.afb-toggle.is-disabled .afb-toggle__track .afb-toggle__thumb,
.afb-toggle.is-disabled .afb-toggle__input:checked + .afb-toggle__track .afb-toggle__thumb {
	background: #6C7284;
}
.afb-toggle.is-disabled .afb-toggle__track .afb-toggle__thumb:after,
.afb-toggle.is-disabled .afb-toggle__input:checked + .afb-toggle__track .afb-toggle__thumb:after {
	border-color: #6C7284;
}

.afb-toggle__thumb {
	background: #fff;
    border-radius: 999px;
    left: 2px;
    position: absolute;
    top: 1px;
    transition: transform 180ms ease;
    width: 20px;
    height: 20px;
}

.afb-toggle__thumb::after {
	border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    content: "";
    height: 11px;
    left: -72%;
    position: absolute;
    top: 3px;
    transform: rotate(45deg);
    width: 6px;
}

.afb-toggle__label {
	color: var(--ADV-Color-Dark-blue, #051528);
    font-style: normal;
    font-weight: 590;
    line-height: 18px;
    font-size: 13px;
}

/* Style 1 — active state */
.afb-toggle__input:checked + .afb-toggle__track {
	border-color: #0C2340;
	background: #132858;
}

.afb-field--accordion.afb-field--accordion--bordered {
	margin-top: 0;
    margin-bottom: 24px;
	border-bottom: 0;
}
.afb-field--accordion.afb-field--accordion--bordered:last-child {
	margin-bottom: 0;
}

.afb-field--accordion .afb-accordion.is-open {
	padding-bottom: 40px;
}

.afb-toggle__input:checked + .afb-toggle__track .afb-toggle__thumb {
	transform: translateX(18px);
	left: 6px;
}

.afb-toggle__input:checked + .afb-toggle__track .afb-toggle__thumb::after {
	border-color: #fff;
	left: -75%;
}

/* Style 2 — muted */
.afb-toggle-wrap--muted .afb-toggle__track {
	background: #132858;
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.25) inset, 0 0.5px 2px 0 rgba(0, 0, 0, 0.50) inset, 2px 2px 5px 0 rgba(0, 0, 0, 0.10) inset;
}

.afb-toggle-wrap--muted .afb-toggle__input:checked + .afb-toggle__track {
	background: #132858;
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.25) inset, 0 0.5px 2px 0 rgba(0, 0, 0, 0.50) inset, 2px 2px 5px 0 rgba(0, 0, 0, 0.10) inset;
}

.afb-toggle-wrap--muted .afb-toggle__input:checked + .afb-toggle__track .afb-toggle__thumb::after {
	border-color: #6c7284;
}

.afb-field-title {
	color: #051528;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	letter-spacing: 0.1px;
	margin: 0;
}

.afb-back-wrap {
	display: flex;
	justify-content: flex-start;
	margin: 24px 0 20px;
}

.afb-upload {
	margin: 18px 0 4px;
}

.afb-file-name {
	color: var(--afb-muted);
	font-size: 13px;
	margin-top: 8px;
}

.afb-file-upload {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
}

.afb-file-upload .afb-file-name {
	margin-top: 0;
	font-family: 'Inter', sans-serif;
}

.afb-hp {
	height: 1px;
	left: -10000px;
	opacity: 0;
	position: absolute;
	top: auto;
	width: 1px;
}

.afb-thanks:not([hidden]) {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.afb-thanks {
	padding: 30px;
	animation: afbFadeIn 0.4s ease forwards;
}

.afb-thanks__badge {
	background: rgba(31, 143, 95, 0.10);
	border-radius: 999px;
	color: var(--afb-success);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 18px;
	min-height: 38px;
	padding: 0 14px;
	text-transform: uppercase;
	align-items: center;
}

.afb-thanks__title {
	color: var(--afb-orange);
	font-size: 40px;
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
}

.afb-thanks__text {
	color: #475467;
	font-size: 18px;
	line-height: 1.6;
	margin: 18px 0 0;
}

@media (max-width: 767px) {

	.afb--horizontal .afb-field-group {
		grid-template-columns: 1fr;
	}

	.afb--horizontal .afb-field--half {
		grid-column: 1 / -1;
	}

	.afb-phone {
		grid-template-columns: 1fr;
		display: flex;
	}

	.afb-phone-country__menu {
		padding: 5px;
	}

	.afb-request-type {
		max-width: none;
		display: flex;
	}

	.afb-request-type label {
		border-top: 1px solid #6c7284;
		border-bottom: 1px solid #6c7284;
		width: 100%;
	}

	.afb-request-type label:first-child {
		border-radius: 8px 0 0 8px;
        border: 1px solid #6c7284;
        width: 100%;
	}

	.afb-request-type label:last-child {
		border-radius: 0 8px 8px 0px;
	}

	.afb-nav {
		flex-direction: column-reverse;
	}

	.afb-nav .afb-btn,
	.afb-upload .afb-btn {
		width: 100%;
	}

	.afb-thanks__title {
		font-size: 34px;
	}
}

.grecaptcha-badge {
	display: none!important;
}