:root {
	--dfb-primary-color: #004967;
	--dfb-modal-width: 920px;
	--dfb-text-color: #111827;
	--dfb-muted-color: #667085;
	--dfb-border-color: #004967;
	--dfb-surface-color: #ffffff;
	--dfb-surface-muted: #f7f7f8;
	--dfb-shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.dfb-modal[hidden], .dfb-step[hidden], .dfb-form-success[hidden], .dfb-button[hidden], .dfb-media-preview[hidden] {
	display: none !important;
}

.dfb-form-shell--steps .dfb-hcaptcha-field {
	display: none;
}

.dfb-form-shell--steps .dfb-step:not(.is-active) .dfb-hcaptcha-field, .dfb-modal .dfb-step:not(.is-active) .dfb-hcaptcha-field {
	display: none !important;
}

.dfb-form-shell--steps .dfb-step.is-active .dfb-hcaptcha-field.is-active {
	display: block;
}

.dfb-progress {
	margin: 0 auto 30px;
	max-width: 520px;
}

.dfb-progress__meta {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--dfb-progress-color, var(--dfb-primary-color));
}

.dfb-progress__track {
	height: 8px;
	background: #ececef;
	border-radius: var(--dfb-button-radius, 999px);
	overflow: hidden;
}

.dfb-progress__bar {
	height: 100%;
	background: var(--dfb-progress-color, var(--dfb-primary-color));
	border-radius: var(--dfb-button-radius, 999px);
	transition: width 0.25s ease;
}

.dfb-form-message.is-error {
	display: block;
	background: #fff1f0;
	color: #8e1d1a;
	border: 1px solid #f1b7b2;
}

.dfb-form {
	display: block;
}

.dfb-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.dfb-step__description {
	max-width: 620px;
	margin: 0 auto;
	color: var(--dfb-muted-color);
	font-size: 14px;
	line-height: 1.65;
}

.dfb-col {
	grid-column: span 12;
	min-width: 0;
}

.dfb-col--12 {
	grid-column: span 12;
}

.dfb-col--6 {
	grid-column: span 6;
}

.dfb-col--4 {
	grid-column: span 4;
}

.dfb-required {
	color: var(--dfb-progress-color, var(--dfb-primary-color));
}

.dfb-field__control input::placeholder, .dfb-field__control textarea::placeholder {
	color: #98a2b3;
}

.dfb-field__control textarea {
	min-height: 130px;
	resize: vertical;
}

.dfb-field__help {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--dfb-muted-color);
}

.dfb-choices {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dfb-choices--cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 16px;
}

.dfb-choice {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border: 1px solid var(--dfb-border-color);
	border-radius: 16px;
	cursor: pointer;
	background: var(--dfb-field-bg-color, #fff);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	box-sizing: border-box;
}

.dfb-choice:hover, .dfb-choice:focus-within {
	border-color: var(--dfb-border-hover-color, var(--dfb-primary-color));
	box-shadow: 0 0 0 4px rgba(194, 64, 52, 0.08);
}

.dfb-choice--card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dfb-choice__image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 78px;
	margin-bottom: 4px;
}

.dfb-choice__image img {
	max-width: 78px;
	max-height: 78px;
	height: auto;
	width: auto;
	display: block;
}

.dfb-choice__label {
	font-weight: 800;
	line-height: 1.35;
}

.dfb-content--heading h4 {
	margin: 0;
	font-size: 24px;
	font-style: italic;
	font-weight: 800;
	line-height: 1.14;
}

.dfb-content--paragraph, .dfb-content--html {
	color: #475467;
	font-size: 14px;
	line-height: 1.7;
}

.dfb-footer__note {
	font-size: 12px;
	font-weight: 600;
	color: var(--dfb-muted-color);
}

.dfb-footer__actions {
	display: flex;
	gap: 12px;
	margin-left: auto;
}

.dfb-button:hover, .dfb-trigger-button:hover {
	transform: translateY(-1px);
}

.dfb-button--secondary {
	background: #fff;
	color: var(--dfb-text-color);
	border-color: var(--dfb-border-color);
}

.dfb-button[disabled] {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.dfb-form-success {
	padding-top: 14px;
}

.dfb-success-card h3 {
	margin: 0 0 10px;
	font-size: 26px;
	font-style: italic;
	font-weight: 800;
}

.dfb-success-card p {
	margin: 0;
	color: #475467;
	line-height: 1.7;
}

.dfb-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
}

.dfb-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(3px);
}

.dfb-modal__dialog {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 32px), var(--dfb-modal-width));
	max-height: calc(100vh - 40px);
	margin: 20px auto;
	background: var(--dfb-form-bg-color, #fff);
	border-radius: 24px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
	padding: 24px;
	overflow: auto;
}

.dfb-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: var(--dfb-button-radius, 999px);
	background: transparent;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	color: #101828;
}

.dfb-modal__title {
	margin: 4px 0 20px;
	padding-right: 48px;
	font-size: clamp(28px, 3vw, 40px);
	font-style: italic;
	font-weight: 800;
	text-align: center;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

body.dfb-modal-open {
	overflow: hidden;
}

@media (max-width: 991px) {
	.dfb-inline {
		padding: 24px;
	}
}

@media (max-width: 991px) {
	.dfb-choice--card {
		min-height: 170px;
	}
}

@media (max-width: 767px) {
	.dfb-row {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 767px) {
	.dfb-col, .dfb-col--12, .dfb-col--6, .dfb-col--4 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.dfb-modal__dialog {
		padding: 22px;
		border-radius: 22px;
		width: min(calc(100% - 20px), var(--dfb-modal-width));
	}
}

@media (max-width: 767px) {
	.dfb-inline {
		padding: 22px;
		border-radius: 24px;
	}
}

@media (max-width: 767px) {
	.dfb-step__title {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.dfb-progress {
		margin-bottom: 24px;
	}
}

@media (max-width: 767px) {
	.dfb-choices--cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.dfb-choice--card {
		min-height: 160px;
		padding: 18px 14px;
	}
}

@media (max-width: 767px) {
	.dfb-button, .dfb-trigger-button {
		flex: 1 1 auto;
		width: 100%;
	}
}

@media (max-width: 540px) {
	.dfb-inline {
		padding: 18px;
	}
}

@media (max-width: 540px) {
	.dfb-modal__dialog {
		padding: 18px;
	}
}

@media (max-width: 540px) {
	.dfb-choices--cards {
		grid-template-columns: 1fr;
	}
}

.dfb-debug-notice {
	padding: 14px 16px;
	border: 1px solid #f5c2c0;
	border-radius: 14px;
	background: #fff4f3;
	color: #8c2d28;
	font-size: 14px;
	line-height: 1.6;
}

.dfb-field.is-condition-hidden {
	display: none !important;
}

.dfb-choices--standard {
	gap: 12px;
}

.dfb-choices--stacked {
	flex-direction: column;
}

.dfb-choices--inline {
	flex-direction: row;
	align-items: stretch;
}

.dfb-choices--inline .dfb-choice--control {
	min-width: 180px;
}

.dfb-choices--boxes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}

.dfb-choice--control input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dfb-choice--control.is-round .dfb-choice__control-indicator {
	border-radius: var(--dfb-button-radius, 999px);
}

.dfb-choice--control.is-selected .dfb-choice__control-indicator::after, .dfb-choice--control:has(input:checked) .dfb-choice__control-indicator::after {
	content: '';
	position: absolute;
	inset: 5px;
	background: #7a7a7a;
	border-radius: 4px;
}

.dfb-choice--control.is-round.is-selected .dfb-choice__control-indicator::after, .dfb-choice--control.is-round:has(input:checked) .dfb-choice__control-indicator::after {
	border-radius: var(--dfb-button-radius, 999px);
}

.dfb-choices--boxes .dfb-choice--card {
	min-height: 88px;
	padding: 20px 18px;
	justify-content: center;
	text-align: center;
	border-radius: 24px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.dfb-choices--boxes .dfb-choice__label {
	width: 100%;
	font-size: 18px;
	text-align: center;
}

.dfb-consent input {
	margin-top: 4px;
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dfb-consent--round .dfb-consent__control {
	border-radius: var(--dfb-button-radius, 999px);
}

.dfb-consent--square .dfb-consent__control {
	border-radius: 4px;
}

.dfb-consent--round.is-selected .dfb-consent__control::after, .dfb-consent--round:has(input:checked) .dfb-consent__control::after {
	border-radius: var(--dfb-button-radius, 999px);
}

@media (max-width: 767px) {
	.dfb-choices--boxes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 540px) {
	.dfb-choices--boxes {
		grid-template-columns: 1fr;
	}
}

.dfb-upload__input {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.dfb-upload.is-dragover .dfb-upload__dropzone, .dfb-upload__dropzone:hover {
	border-color: var(--dfb-primary-color);
	background: #fcfcfd;
	box-shadow: 0 0 0 4px rgba(194, 64, 52, 0.08);
}

.dfb-upload__icon {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d0d5dd;
	border-radius: 18px;
	font-size: 28px;
	font-weight: 700;
	color: #344054;
	background: #f8fafc;
}

.dfb-upload__text strong {
	font-size: 18px;
	line-height: 1.3;
	color: #344054;
}

.dfb-upload__text small, .dfb-upload__meta, .dfb-upload__empty {
	font-size: 14px;
	line-height: 1.6;
	color: #667085;
}

.dfb-upload__list {
	display: grid;
	gap: 12px;
}

.dfb-upload-file__main {
	min-width: 0;
	flex: 1;
}

.dfb-upload-file__name {
	font-size: 16px;
	font-weight: 700;
	color: #344054;
	word-break: break-word;
}

.dfb-upload-file__meta {
	margin-top: 2px;
	font-size: 14px;
	color: #667085;
}

.dfb-upload-file__remove {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border: 1px solid #d0d5dd;
	border-radius: 16px;
	background: #fff;
	font-size: 28px;
	line-height: 1;
	color: #344054;
	cursor: pointer;
}

@media (max-width: 767px) {
	.dfb-upload__dropzone, .dfb-upload-file {
		padding: 16px;
	}
}

@media (max-width: 767px) {
	.dfb-upload__text strong {
		font-size: 16px;
	}
}

.dfb-field--captcha {
	margin-top: 8px;
	margin-bottom: 8px;
}

.dfb-field--captcha .dfb-field__control {
	display: flex;
	justify-content: flex-start;
}

.dfb-field--captcha.is-invalid .h-captcha, .dfb-field--captcha.is-invalid .dfb-h-captcha {
	outline: 2px solid rgba(201, 62, 58, 0.25);
	outline-offset: 4px;
	border-radius: 12px;
}

.dfb-form-shell {
	color: var(--dfb-text-color);
	position: relative;
}

.dfb-upload__text {
	display: grid;
	gap: 6px;
}

.dfb-upload-file {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	border: 1px solid #d0d5dd;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.dfb-upload-file__remove:hover, .dfb-upload-file__remove:focus {
	border-color: var(--dfb-border-hover-color, var(--dfb-primary-color));
	box-shadow: 0 0 0 4px rgba(194, 64, 52, 0.08);
	outline: 0;
}

.dfb-hcaptcha-field .h-captcha, .dfb-hcaptcha-field iframe {
	max-width: 100%;
}

.dfb-consent.is-selected .dfb-consent__control::after, .dfb-consent:has(input:checked) .dfb-consent__control::after {
	content: '';
	position: absolute;
	background: #7a7a7a;
	border-radius: 2px;
	width: 10px;
	height: 10px;
	inset: 3px;
}

.dfb-consent__text {
	font-size: 13px;
	line-height: 1.55;
}

.dfb-form-message.is-success {
	display: block;
	background: #ecfdf3;
	color: #067647;
	border: 1px solid #abefc6;
}

.dfb-step__title {
	margin: 0 0 12px;
	font-size: clamp(26px, 3vw, 40px);
	font-style: italic;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.dfb-field__label {
	display: inline-block;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 10px;
	font-size: 14px;
	letter-spacing: -0.01em;
}

.dfb-field__control input[type="text"], .dfb-field__control input[type="email"], .dfb-field__control input[type="tel"], .dfb-field__control input[type="number"], .dfb-field__control input[type="date"], .dfb-field__control select, .dfb-field__control textarea {
	background: rgba(255, 255, 255, 0.94);
}

.dfb-suggestion-button {
	appearance: none;
	border: 1px solid #fdba74;
	background: #fff;
	color: #9a3412;
	border-radius: var(--dfb-button-radius, 999px);
	padding: 5px 10px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.dfb-suggestion-button:hover {
	background: #ffedd5;
}

.dfb-choice--card, .dfb-upload-file, .dfb-upload__dropzone {
	background: linear-gradient(180deg, #fff 0%, #fcfcfd 100%);
}

.dfb-choice--card {
	min-height: 176px;
	padding: 20px 16px;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-radius: 22px;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
	position: relative;
	width: 100%;
	border-width: 1px;
}

.dfb-choice--card .dfb-choice__label {
	font-size: 16px;
	letter-spacing: -0.01em;
}

.dfb-choice--control {
	position: relative;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	border-radius: 18px;
}

.dfb-hcaptcha-field {
	margin-top: 24px;
	margin-bottom: 12px;
}

.dfb-upload {
	position: relative;
	display: grid;
	gap: 16px;
}

.dfb-upload__meta {
	font-size: 13px;
	line-height: 1.6;
	color: #667085;
	margin-top: 4px;
	padding-inline: 2px;
}

.dfb-upload-file__remove:hover {
	border-color: var(--dfb-primary-color);
	color: var(--dfb-progress-color, var(--dfb-primary-color));
}

.dfb-success-card {
	padding: 28px;
	border-radius: 26px;
	background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
	box-shadow: var(--dfb-shadow-soft);
	text-align: center;
	border: 1px solid #e7ecf2;
}

@media (max-width: 767px) {
	.dfb-field__suggestion {
		display: flex;
		flex-wrap: wrap;
	}
}

.dfb-step__header {
	text-align: center;
	margin-bottom: 30px;
}

.dfb-form-message {
	display: none;
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 16px;
	font-size: 14px;
	line-height: 1.55;
	word-break: break-word;
	box-shadow: 0 12px 24px rgba(142, 29, 26, 0.08);
}

.dfb-choice--card, .dfb-choice--control, .dfb-upload-file, .dfb-upload__dropzone, .dfb-success-card {
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.dfb-choice--card:hover, .dfb-choice--control:hover {
	transform: translateY(-1px);
}

.dfb-choice__control-indicator {
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	width: 18px;
	height: 18px;
	border: 2px solid #98a2b3;
	border-radius: var(--dfb-button-radius, 999px);
	background: #fff;
	box-sizing: border-box;
	flex: 0 0 18px;
	position: relative;
}

.dfb-choice.is-square .dfb-choice__control-indicator {
	border-radius: 6px;
}

.dfb-choice input {
	margin: 0;
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dfb-choice:has(input:checked) .dfb-choice__control-indicator::after, .dfb-choice.is-selected .dfb-choice__control-indicator::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: inherit;
	background: var(--dfb-primary-color);
}

.dfb-upload__dropzone {
	display: flex;
	gap: 18px;
	min-height: 116px;
	padding: 22px 24px;
	border: 2px dashed #d0d5dd;
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
	border-radius: 26px;
	align-items: center;
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.dfb-upload__empty {
	font-size: 14px;
	line-height: 1.6;
	color: #667085;
	padding: 2px 0 0;
}

.dfb-upload-file:hover {
	border-color: var(--dfb-primary-color);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.dfb-upload-file__preview {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d0d5dd;
	border-radius: 16px;
	background: #f8fafc;
	font-size: 13px;
	font-weight: 800;
	color: #344054;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.dfb-consent {
	position: relative;
	display: flex;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.5;
	gap: 12px;
	padding: 2px 0;
	color: #475467;
	align-items: center;
}

.dfb-consent__control {
	position: relative;
	border: 2px solid #7a7a7a;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	border-width: 2px;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.02);
}

.dfb-footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 14px;
	padding-top: var(--dfb-field-spacing, 20px);
	margin-top: calc(var(--dfb-field-spacing, 20px) * 0.8);
	border-top: 1px solid #eaecf0;
	position: relative;
	align-items: flex-end;
}

.dfb-inline, .dfb-modal__dialog {
	font-family: inherit;
	color: var(--dfb-text-color);
	border: 1px solid rgba(17, 24, 39, 0.04);
	background: var(--dfb-form-bg-color, var(--dfb-surface-color));
}

.dfb-row {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: calc(var(--dfb-field-spacing, 20px) + 2px);
	margin-bottom: var(--dfb-field-spacing, 20px);
}

.dfb-field, .dfb-content {
	margin-bottom: var(--dfb-field-spacing, 20px);
}

.dfb-field__control input[type="text"], .dfb-field__control input[type="email"], .dfb-field__control input[type="tel"], .dfb-field__control input[type="number"], .dfb-field__control input[type="date"], .dfb-field__control input[type="file"], .dfb-field__control select, .dfb-field__control textarea, .dfb-choice, .dfb-upload__dropzone, .dfb-upload-file, .dfb-consent__control {
	border-radius: var(--dfb-field-radius, 18px);
}

.dfb-field__control input[type="text"], .dfb-field__control input[type="email"], .dfb-field__control input[type="tel"], .dfb-field__control input[type="number"], .dfb-field__control input[type="date"], .dfb-field__control input[type="file"], .dfb-field__control select, .dfb-field__control textarea {
	width: 100%;
	border: 1px solid var(--dfb-border-color);
	border-radius: var(--dfb-field-radius, 18px);
	padding: 13px 16px;
	box-sizing: border-box;
	font: inherit;
	color: var(--dfb-text-color);
	min-height: 52px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	background: var(--dfb-field-bg-color, #ffffff);
	border-color: var(--dfb-border-color, #d7dce3);
}

.dfb-field__control input:hover, .dfb-field__control select:hover, .dfb-field__control textarea:hover, .dfb-choice:hover, .dfb-choice:focus-within, .dfb-upload__dropzone:hover {
	border-color: var(--dfb-border-hover-color, var(--dfb-primary-color));
}

.dfb-choice:has(input:checked), .dfb-choice.is-selected {
	box-shadow: 0 0 0 4px rgba(194, 64, 52, 0.12), 0 16px 36px rgba(15, 23, 42, 0.10);
	transform: translateY(-1px);
	border-color: var(--dfb-border-focus-color, var(--dfb-primary-color));
}

.dfb-button, .dfb-trigger-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 20px;
	font: inherit;
	font-weight: 800;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
	transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	border-radius: var(--dfb-button-radius, 999px);
}

.dfb-button--primary, .dfb-trigger-button {
	background: var(--dfb-button-bg, var(--dfb-primary-color));
	color: var(--dfb-button-text, #ffffff);
	border: 1px solid var(--dfb-button-border, var(--dfb-button-bg, var(--dfb-primary-color)));
	box-shadow: none;
}

.dfb-button--primary:hover, .dfb-trigger-button:hover, .dfb-button--primary:focus-visible, .dfb-trigger-button:focus-visible {
	background: var(--dfb-button-bg-hover, var(--dfb-button-bg, var(--dfb-primary-color)));
	color: var(--dfb-button-text-hover, var(--dfb-button-text, #ffffff));
	border-color: var(--dfb-button-border-hover, var(--dfb-button-bg-hover, var(--dfb-button-bg, var(--dfb-primary-color))));
	box-shadow: none;
	transform: translateY(-1px);
}

.dfb-field__control input:hover, .dfb-field__control select:hover, .dfb-field__control textarea:hover, .dfb-choice:hover, .dfb-choice:focus-within, .dfb-upload__dropzone:hover, .dfb-upload-file:hover, .dfb-upload-file__remove:hover, .dfb-upload-file__remove:focus, .dfb-choice--card:hover, .dfb-choice--control:hover {
	box-shadow: none !important;
}

.dfb-field__control input:focus, .dfb-field__control select:focus, .dfb-field__control textarea:focus {
	outline: none;
	border-color: var(--dfb-border-focus-color, var(--dfb-primary-color));
	box-shadow: 0 0 0 1px var(--dfb-border-focus-color, var(--dfb-primary-color)) !important;
}

.dfb-field.is-invalid .dfb-field__control input, .dfb-field.is-invalid .dfb-field__control select, .dfb-field.is-invalid .dfb-field__control textarea {
	border-color: #c93e3a;
	box-shadow: 0 0 0 1px #c93e3a !important;
}

.dfb-field__control select::-ms-expand {
	display: none;
}

.dfb-inline {
	padding: 28px;
	border-radius: 26px;
	background: var(--dfb-form-bg-color, var(--dfb-surface-color));
	box-shadow: var(--dfb-shadow-soft);
	width: 100%;
	max-width: none;
	margin-inline: auto;
	box-sizing: border-box;
	overflow: hidden;
}

.dfb-field__error {
	font-size: 13px;
	line-height: 1.5;
	color: #8e1d1a;
	display: none;
	min-height: 0;
	margin-top: 8px;
}

.dfb-field__error:not(:empty) {
	display: block;
}

.dfb-field__suggestion[hidden], .dfb-field__suggestion:empty {
	display: none !important;
}

.dfb-field__suggestion {
	padding: 10px 12px;
	border-radius: 14px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--dfb-muted-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.dfb-choice:hover, .dfb-choice:focus-within, .dfb-upload__dropzone:hover, .dfb-upload-file:hover, .dfb-upload-file__remove:hover, .dfb-upload-file__remove:focus, .dfb-choice--card:hover, .dfb-choice--control:hover {
	box-shadow: none !important;
}

.dfb-field__control select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23667285' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 18px 18px;
	padding-right: 58px;
	background-position: right 18px center;
}

.dfb-form-shell, .dfb-inline, .dfb-modal__dialog {
	max-width: 100%;
	box-sizing: border-box;
}

.dfb-hcaptcha-field .dfb-field__control {
	display: flex;
	justify-content: flex-end;
	max-width: 100%;
	overflow: visible;
}

.dfb-hcaptcha-field .h-captcha {
	display: inline-flex;
	padding: 12px;
	border-radius: var(--dfb-field-radius, 18px);
	background: var(--dfb-field-bg-color, #fff);
	border: 1px solid var(--dfb-border-color);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
	max-width: 100%;
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.dfb-footer {
		align-items: stretch;
		gap: 14px;
	}
}

@media (max-width: 767px) {
	.dfb-footer__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.dfb-footer__actions .dfb-button {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 767px) {
	.dfb-hcaptcha-field .dfb-field__control {
		justify-content: center;
	}
}

@media (max-width: 380px) {
	.dfb-hcaptcha-field .h-captcha {
		transform: scale(0.86);
		transform-origin: center top;
		margin-bottom: -10px;
	}
}

@media (max-width: 340px) {
	.dfb-hcaptcha-field .h-captcha {
		transform: scale(0.78);
		margin-bottom: -16px;
	}
}
