/* =========================================================
   Furniland — UI-компоненти
   Глобальні перевикористовувані елементи. Довідка: docs/ui-components.md
   ========================================================= */

/* ---- Кнопки ---- */
.fl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 17px 36px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease,
		box-shadow 0.15s ease, transform 0.15s ease;
}

.fl-btn:focus-visible {
	outline: 2px solid var(--fl-primary, #397063);
	outline-offset: 2px;
}

.fl-btn--primary {
	background-color: var(--fl-primary, #397063);
	color: #fff;
}

.fl-btn--primary:hover,
.fl-btn--primary:focus-visible {
	background-image: linear-gradient(rgba(12, 26, 22, 0.16), rgba(12, 26, 22, 0.16));
	color: #fff;
	box-shadow: 0 8px 20px rgba(57, 112, 99, 0.32);
	transform: translateY(-1px);
}

.fl-btn--primary:active {
	background-image: linear-gradient(rgba(12, 26, 22, 0.24), rgba(12, 26, 22, 0.24));
	box-shadow: 0 3px 10px rgba(57, 112, 99, 0.28);
	transform: translateY(0);
}

.fl-btn--ghost {
	padding: 16px 35px;
	border: 1px solid var(--fl-primary, #397063);
	background: transparent;
	color: var(--fl-primary, #397063);
}

.fl-btn--ghost:hover,
.fl-btn--ghost:focus-visible {
	background-color: var(--fl-primary-light, #e9f5ea);
	border-color: var(--fl-primary-dark, #387261);
	color: var(--fl-primary-dark, #387261);
	transform: translateY(-1px);
}

.fl-btn--ghost:active {
	transform: translateY(0);
}

.fl-btn--sm {
	padding: 12px 22px;
	font-size: 0.9rem;
}

.fl-btn--ghost.fl-btn--sm {
	padding: 11px 21px;
}

/* ---- Кругла іконочна кнопка ---- */
.fl-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.fl-icon-btn:hover,
.fl-icon-btn:focus-visible {
	background-color: rgba(27, 43, 39, 0.07);
}

/* ---- Іконка-маска ----
   mask-image задається інлайново:
   style="-webkit-mask-image:url(...);mask-image:url(...)"
   Колір — через color на елементі або батьку. */
.fl-mask-ico {
	display: inline-block;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	background-color: currentColor;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

/* ---- Тости ----
   Хост .fl-toasts створює JS; одночасно показується один тост. */
.fl-toasts {
	position: fixed;
	right: clamp(12px, 2vw, 24px);
	bottom: clamp(12px, 2vw, 24px);
	z-index: 140;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}

.fl-toast {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: min(400px, calc(100vw - 24px));
	padding: 12px 12px 12px 16px;
	border-radius: 14px;
	background: var(--fl-heading, #1b2b27);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
	box-shadow: 0 14px 36px rgba(20, 40, 30, 0.28);
	pointer-events: auto;
	animation: fl-toast-in 0.24s ease;
}

.fl-toast.is-out {
	animation: fl-toast-out 0.2s ease forwards;
}

.fl-toast__ico {
	display: inline-flex;
	flex: 0 0 auto;
	color: var(--fl-primary-light, #e9f5ea);
}

.fl-toast__text {
	flex: 1 1 auto;
}

.fl-toast__link {
	flex: 0 0 auto;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
}

.fl-toast__link:hover,
.fl-toast__link:focus-visible {
	color: var(--fl-primary-light, #e9f5ea);
}

.fl-toast__close {
	width: 28px;
	height: 28px;
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.65);
}

.fl-toast__close:hover,
.fl-toast__close:focus-visible {
	background-color: rgba(255, 255, 255, 0.14);
	color: #fff;
}

@keyframes fl-toast-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
}

@keyframes fl-toast-out {
	to {
		opacity: 0;
		transform: translateY(8px);
	}
}

/* Над нижньою таб-панеллю (див. .fl-actions у style.css) */
@media (max-width: 900px) {
	.fl-toasts {
		left: 12px;
		right: 12px;
		bottom: calc(66px + env(safe-area-inset-bottom, 0px) + 10px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.fl-toast,
	.fl-toast.is-out {
		animation: none;
	}
}

/* ---- Підвал ---- */

/* Горизонтальний padding — на обгортці, max-width — на __inner: та сама схема,
   що в блоках (.fl-hero, .fl-cats, .fl-bs, .fl-cta) і в шапці. Значення
   дорівнює root padding з theme.json, тому краї збігаються на всіх ширинах. */
.fl-footer,
.fl-fbottom {
	padding-left: clamp(16px, 4vw, 24px);
	padding-right: clamp(16px, 4vw, 24px);
}

.fl-footer__inner {
	box-sizing: border-box;
	max-width: 1720px;
	margin: 0 auto;
}

/* Вузький жолоб на мобільних — як у .fl-cats / .fl-bs / .fl-hero і в шапці */
@media (max-width: 700px) {
	.fl-footer,
	.fl-fbottom {
		padding-left: 12px;
		padding-right: 12px;
	}
}

/* ---- Смуга переваг ---- */
.fl-trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: clamp(32px, 3.4vw, 56px) 0;
	padding: clamp(20px, 2.4vw, 34px) clamp(20px, 2.6vw, 44px);
	background: var(--fl-surface, #f5f6f5);
	border-radius: 20px;
}

.fl-trust__item {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.fl-trust__ico {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	color: var(--fl-primary, #397063);
	box-shadow: 0 4px 14px rgba(20, 40, 30, 0.06);
}

.fl-trust__ico .fl-mask-ico {
	width: 26px;
	height: 26px;
}

.fl-trust__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.fl-trust__title {
	color: var(--fl-heading, #1b2b27);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.25;
}

.fl-trust__text {
	color: var(--fl-muted, #6b7280);
	font-size: 0.85rem;
	line-height: 1.35;
}

@media (max-width: 1100px) {
	.fl-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.fl-trust {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}
}

/* ---- Основна частина підвалу ---- */
.fl-fmain {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: clamp(28px, 3vw, 60px);
	padding: clamp(34px, 3.4vw, 58px) 0 clamp(30px, 3vw, 50px);
	border-top: 1px solid var(--fl-border, #e6e8e6);
}

.fl-fbrand {
	flex: 1 1 280px;
	min-width: 0;
}

.fl-fbrand__link {
	display: inline-flex;
	line-height: 0;
}

.fl-flogo {
	display: block;
	width: 240px;
	max-width: 100%;
	height: auto;
}

.fl-fbrand__text {
	margin: 20px 0 0;
	color: var(--fl-muted, #6b7280);
	font-size: 0.95rem;
	line-height: 1.7;
}

.fl-fsocials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.fl-fsocials__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--fl-primary, #397063);
	color: #fff;
	transition: background-image 0.15s ease, transform 0.15s ease;
}

.fl-fsocials__link svg {
	width: 17px;
	height: 17px;
}

/* Затемнення поверх фону — працює з будь-яким брендовим кольором (як .fl-btn) */
.fl-fsocials__link:hover,
.fl-fsocials__link:focus-visible {
	background-image: linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16));
	color: #fff;
	transform: translateY(-1px);
}

/* ---- Колонки посилань ---- */
.fl-fcol {
	flex: 1 1 165px;
	min-width: 0;
}

.fl-fcol__title {
	margin: 0 0 22px;
	color: var(--fl-heading, #1b2b27);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
}

.fl-fnav {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fl-fnav a {
	display: block;
	color: var(--fl-muted, #6b7280);
	font-size: 0.95rem;
	line-height: 1.4;
	text-decoration: none;
	transition: color 0.15s ease;
}

.fl-fnav a:hover,
.fl-fnav a:focus-visible,
.fl-fnav .current-menu-item > a {
	color: var(--fl-primary, #397063);
}

.fl-fcol__all {
	display: block;
	margin-top: 16px;
	color: var(--fl-primary, #397063);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
}

.fl-fcol__all:hover,
.fl-fcol__all:focus-visible {
	color: var(--fl-primary, #397063);
	text-decoration: underline;
}

/* Шеврон — лише у колонці «Каталог» */
.fl-fcol--catalog .fl-fnav a,
.fl-fcol--catalog .fl-fcol__all {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.fl-fcol--catalog .fl-fnav a::after,
.fl-fcol--catalog .fl-fcol__all::after {
	content: "";
	flex: 0 0 auto;
	width: 13px;
	height: 13px;
	background-color: currentColor;
	-webkit-mask: var(--fl-icon-chevron) center / contain no-repeat;
	mask: var(--fl-icon-chevron) center / contain no-repeat;
	opacity: 0.6;
}

/* ---- Підписка + контакти ---- */
.fl-fside {
	display: flex;
	flex: 1.35 1 360px;
	flex-direction: column;
	min-width: 0;
}

.fl-fnews__title {
	margin: 0 0 12px;
	color: var(--fl-heading, #1b2b27);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
}

.fl-fnews__text {
	margin: 0 0 20px;
	color: var(--fl-muted, #6b7280);
	font-size: 0.9rem;
	line-height: 1.6;
}

.fl-fnews__form {
	display: flex;
	align-items: stretch;
	gap: 12px;
}

.fl-fnews__input {
	flex: 1 1 auto;
	box-sizing: border-box;
	min-width: 0;
	height: 56px;
	padding: 0 18px;
	border: 1px solid var(--fl-border, #e6e8e6);
	border-radius: 12px;
	background: var(--wp--preset--color--base, #fff);
	color: inherit;
	font: inherit;
	font-size: 0.95rem;
}

.fl-fnews__input::placeholder {
	color: var(--fl-muted, #6b7280);
	opacity: 1;
}

.fl-fnews__input:focus {
	border-color: var(--fl-primary, #397063);
	outline: none;
	box-shadow: 0 0 0 3px rgba(57, 112, 99, 0.14);
}

.fl-fnews__btn {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 0;
	border-radius: 12px;
	background-color: var(--fl-primary, #397063);
	color: #fff;
	cursor: pointer;
	transition: background-image 0.15s ease, transform 0.15s ease;
}

.fl-fnews__btn svg {
	width: 19px;
	height: 19px;
}

.fl-fnews__btn:hover,
.fl-fnews__btn:focus-visible {
	background-image: linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16));
	transform: translateY(-1px);
}

.fl-fnews__btn[disabled] {
	opacity: 0.7;
	cursor: progress;
}

/* Пастка для ботів — прибрана з потоку й від скрін-рідерів. */
.fl-fnews__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.fl-fnews__status {
	margin: 10px 0 0;
	font-size: 0.85rem;
	line-height: 1.4;
}

.fl-fnews__status.is-error {
	color: #f2a6a6;
}

.fl-fnews__status.is-success {
	color: #a7dcb4;
}

.fl-fcontacts {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: clamp(26px, 2.4vw, 34px) 0 0;
	padding: clamp(22px, 2.2vw, 30px) 0 0;
	border-top: 1px solid var(--fl-border, #e6e8e6);
	list-style: none;
}

.fl-fcontact {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.fl-fcontact__ico {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	color: var(--fl-primary, #397063);
}

.fl-fcontact__text {
	color: var(--fl-heading, #1b2b27);
	font-size: 0.95rem;
	line-height: 1.4;
	text-decoration: none;
	overflow-wrap: anywhere;
}

a.fl-fcontact__text:hover,
a.fl-fcontact__text:focus-visible {
	color: var(--fl-primary, #397063);
}

/* ---- Нижня смуга ---- */
.fl-fbottom__card {
	position: relative;
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.6vw, 44px);
	padding: clamp(20px, 2.2vw, 28px) clamp(20px, 2.6vw, 44px);
	overflow: hidden;
	border-radius: 20px 20px 0 0;
	background: var(--fl-surface, #f5f6f5);
}

.fl-fbottom__card:has(.fl-fdecor) {
	padding-right: clamp(130px, 15vw, 280px);
}

.fl-fpay {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.fl-fpay__label {
	color: var(--fl-muted, #6b7280);
	font-size: 0.8rem;
	line-height: 1.3;
}

.fl-fpay__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fl-fpay__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fl-fpay__item--sep {
	padding-left: 18px;
	border-left: 1px solid var(--fl-border, #e6e8e6);
}

.fl-fpay__ico {
	display: block;
	width: auto;
	height: 26px;
	max-width: 100%;
}

.fl-fpay__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.fl-fpay__title {
	color: var(--fl-heading, #1b2b27);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.25;
}

.fl-fpay__sub {
	color: var(--fl-muted, #6b7280);
	font-size: 0.78rem;
	line-height: 1.25;
}

.fl-fbottom__copy {
	flex: 0 0 auto;
	margin: 0;
	padding-left: clamp(20px, 2.6vw, 44px);
	border-left: 1px solid var(--fl-border, #e6e8e6);
	color: var(--fl-muted, #6b7280);
	font-size: 0.85rem;
	line-height: 1.6;
	text-align: center;
}

.fl-fdecor {
	position: absolute;
	right: 0;
	bottom: 0;
	width: clamp(150px, 17vw, 320px);
	height: auto;
	pointer-events: none;
	user-select: none;
}

@media (max-width: 1200px) {
	.fl-fbottom__card,
	.fl-fbottom__card:has(.fl-fdecor) {
		flex-wrap: wrap;
		padding-right: clamp(20px, 2.6vw, 44px);
	}
	.fl-fbottom__copy {
		padding-left: 0;
		border-left: 0;
		text-align: left;
	}
	.fl-fdecor {
		display: none;
	}
}

@media (max-width: 560px) {
	.fl-fmain {
		gap: 32px;
	}
	.fl-fcol {
		flex-basis: 100%;
	}
	.fl-fcol--catalog .fl-fnav a,
	.fl-fcol--catalog .fl-fcol__all {
		justify-content: flex-start;
	}
	.fl-fcol--catalog .fl-fnav a::after,
	.fl-fcol--catalog .fl-fcol__all::after {
		margin-left: auto;
	}
}

/* ---- Скляна панель ---- */
.fl-glass {
	background: rgba(255, 255, 255, 0.72);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(20, 40, 30, 0.07);
}

/* =========================================================
   Модальні форми (консультація, опт) — спільна оболонка
   ========================================================= */
.fl-modal,
.fl-modal *,
.fl-modal *::before,
.fl-modal *::after {
	box-sizing: border-box;
}

.fl-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(14px, 4vw, 32px);
}

.fl-modal[hidden] {
	display: none;
}

.fl-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 28, 23, 0.5);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.fl-modal.is-open .fl-modal__overlay {
	opacity: 1;
}

.fl-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 460px;
	max-height: calc(100vh - 2 * clamp(14px, 4vw, 32px));
	overflow-y: auto;
	padding: clamp(24px, 3.4vw, 40px);
	background: var(--wp--preset--color--base, #fff);
	border: 1px solid var(--fl-border, #e6e8e6);
	border-radius: 20px;
	box-shadow: 0 30px 70px rgba(20, 40, 30, 0.24);
	opacity: 0;
	transform: translateY(12px) scale(0.98);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.fl-modal.is-open .fl-modal__dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.fl-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: var(--fl-muted, #6b7280);
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.fl-modal__close:hover,
.fl-modal__close:focus-visible {
	color: var(--fl-heading, #1b2b27);
	background: var(--fl-surface, #f3f5f3);
	outline: none;
}

.fl-modal__close svg {
	width: 20px;
	height: 20px;
}

.fl-modal__title {
	margin: 0 32px 0 0;
	color: var(--fl-heading, #1b2b27);
	font-size: clamp(1.25rem, 1rem + 0.8vw, 1.6rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.fl-modal__subtitle {
	margin: 8px 0 clamp(18px, 1.8vw, 24px);
	color: var(--fl-muted, #6b7280);
	font-size: 0.95rem;
	line-height: 1.5;
}

.fl-modal__field {
	position: relative;
	display: block;
	margin-bottom: 12px;
}

.fl-modal__ico {
	position: absolute;
	top: 15px;
	left: 15px;
	display: inline-flex;
	color: var(--fl-muted, #6b7280);
	pointer-events: none;
}

.fl-modal__ico svg {
	width: 18px;
	height: 18px;
}

.fl-modal__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.fl-modal__input {
	width: 100%;
	padding: 13px 16px 13px 44px;
	border: 1px solid var(--fl-border, #e6e8e6);
	border-radius: 12px;
	background: var(--wp--preset--color--base, #fff);
	color: var(--fl-heading, #1b2b27);
	font-family: inherit;
	font-size: 0.95rem;
	line-height: 1.4;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fl-modal__input::placeholder {
	color: var(--fl-muted, #6b7280);
}

.fl-modal__input:focus {
	outline: none;
	border-color: var(--fl-primary, #397063);
	box-shadow: 0 0 0 3px var(--fl-primary-light, #e9f5ea);
}

.fl-modal__input.is-invalid {
	border-color: #d9403a;
	box-shadow: 0 0 0 3px rgba(217, 64, 58, 0.14);
}

.fl-modal__textarea {
	min-height: 96px;
	resize: vertical;
}

.fl-modal__consent {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 14px 0 18px;
	cursor: pointer;
}

.fl-modal__check {
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.fl-modal__consent-box {
	flex: 0 0 auto;
	position: relative;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border: 1.5px solid var(--fl-border, #e6e8e6);
	border-radius: 6px;
	background: var(--wp--preset--color--base, #fff);
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.fl-modal__consent-box::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 6px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	transition: transform 0.15s ease;
}

.fl-modal__check:checked + .fl-modal__consent-box {
	border-color: var(--fl-primary, #397063);
	background: var(--fl-primary, #397063);
}

.fl-modal__check:checked + .fl-modal__consent-box::after {
	transform: rotate(45deg) scale(1);
}

.fl-modal__check:focus-visible + .fl-modal__consent-box {
	box-shadow: 0 0 0 3px var(--fl-primary-light, #e9f5ea);
}

.fl-modal__consent-text {
	color: var(--fl-muted, #6b7280);
	font-size: 0.9rem;
	line-height: 1.45;
}

.fl-modal__consent-text a {
	color: var(--fl-primary, #397063);
	font-weight: 600;
	text-decoration: underline;
}

.fl-modal__status {
	margin: 0 0 14px;
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 0.9rem;
	line-height: 1.45;
}

.fl-modal__status.is-error {
	background: #fdecec;
	color: #b42318;
}

.fl-modal__status.is-success {
	background: var(--fl-primary-light, #e9f5ea);
	color: var(--fl-primary-dark, #387261);
}

.fl-modal__submit {
	width: 100%;
}

.fl-modal__submit-ico {
	display: inline-flex;
	transition: transform 0.15s ease;
}

.fl-modal__submit-ico svg {
	width: 18px;
	height: 18px;
}

.fl-modal__submit:hover .fl-modal__submit-ico {
	transform: translateX(3px);
}

.fl-modal__submit.is-loading {
	opacity: 0.7;
	cursor: progress;
}

.fl-modal__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

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

@media (prefers-reduced-motion: reduce) {
	.fl-modal__overlay,
	.fl-modal__dialog,
	.fl-modal__input,
	.fl-modal__consent-box,
	.fl-modal__consent-box::after,
	.fl-modal__submit-ico {
		transition: none;
	}
}
