.fdwd-live-chat-active #livechat-compact-container,
.fdwd-live-chat-active #chat-widget-container,
.fdwd-live-chat-active .lc-widget-container,
.fdwd-live-chat-active .livechat-widget {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

html.fdwd-live-chat-active body.no-mobile {
	display: block !important;
}

.fdwd-live-chat-root,
.fdwd-live-chat-root * {
	box-sizing: border-box;
	min-width: 0;
}

.fdwd-live-chat-root {
	--fdwd-lc-text: var(--fdwd-color-text, #1e1b1f);
	--fdwd-lc-surface: var(--fdwd-color-surface, #ffffff);
	--fdwd-lc-bg: var(--fdwd-color-bg-app, #f5f4f7);
	--fdwd-lc-border: var(--fdwd-color-border, #e6e5ea);
	--fdwd-lc-muted: var(--fdwd-color-muted, #6b6872);
	--fdwd-lc-link: var(--fdwd-color-link, #145f8c);
	--fdwd-lc-cta: var(--fdwd-color-cta, #fcf204);
	--fdwd-lc-cta-hover: var(--fdwd-color-cta-hover, #fbd25c);
	--fdwd-lc-launcher: #ff5a14;
	--fdwd-lc-launcher-hover: #e94f0f;
	--fdwd-lc-launcher-text: #ffffff;
	--fdwd-lc-success: #14804a;
	--fdwd-lc-success-bg: #e7f6ed;
	--fdwd-lc-warning: #b45309;
	--fdwd-lc-warning-bg: #fff7ed;
	--fdwd-lc-danger: #b42318;
	--fdwd-lc-danger-bg: #feeceb;
	--fdwd-lc-shadow: 0 22px 72px rgba(17, 17, 19, 0.22);
	--fdwd-lc-soft-shadow: 0 12px 30px rgba(17, 17, 19, 0.12);
	--fdwd-lc-agent-bg: #ffffff;
	--fdwd-lc-agent-border: rgba(20, 95, 140, 0.18);
}

.fdwd-live-chat {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 2147483000;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, Arial, sans-serif;
	color: var(--fdwd-lc-text);
	font-size: 14px;
	line-height: 1.45;
}

.fdwd-live-chat button,
.fdwd-live-chat input,
.fdwd-live-chat textarea {
	font-family: inherit;
}

.fdwd-live-chat__launcher {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 72px;
	height: 72px;
	min-height: 72px;
	flex: 0 0 auto;
	max-width: none;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--fdwd-lc-launcher);
	color: var(--fdwd-lc-launcher-text);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 18px 44px rgba(17, 17, 19, 0.24);
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fdwd-live-chat__launcher > span:not(.fdwd-live-chat__launcher-icon) {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.fdwd-live-chat__closed-composer {
	display: flex;
	align-items: center;
	width: min(452px, calc(100vw - 126px));
	min-height: 72px;
	padding: 8px 8px 8px 28px;
	border: 1px solid rgba(30, 27, 31, 0.12);
	border-radius: 999px;
	background: var(--fdwd-lc-surface);
	box-shadow: 0 16px 42px rgba(17, 17, 19, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.82);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fdwd-live-chat.is-open .fdwd-live-chat__closed-composer {
	display: none;
}

.fdwd-live-chat__closed-composer:focus-within {
	border-color: rgba(20, 95, 140, 0.42);
	box-shadow: 0 18px 46px rgba(17, 17, 19, 0.2);
	transform: translateY(-1px);
}

.fdwd-live-chat__closed-label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.fdwd-live-chat .fdwd-live-chat__closed-composer input {
	width: 100%;
	min-width: 0;
	min-height: 54px;
	height: auto;
	margin: 0 !important;
	padding: 0;
	border: 0 !important;
	border-radius: 0;
	background: transparent;
	box-shadow: none !important;
	color: var(--fdwd-lc-text);
	-webkit-appearance: none;
	appearance: none;
	font-size: 20px;
	font-weight: 500;
	line-height: 26px;
	outline: 0;
}

.fdwd-live-chat .fdwd-live-chat__closed-composer input:focus {
	border-color: transparent !important;
	box-shadow: none !important;
	outline: 0;
}

.fdwd-live-chat__closed-composer input::placeholder {
	color: var(--fdwd-lc-muted);
	opacity: 0.9;
}

.fdwd-live-chat__closed-send {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	min-width: 56px;
	border: 0;
	border-radius: 50%;
	background: #ececef;
	color: #5f5d64;
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.fdwd-live-chat__closed-send:hover,
.fdwd-live-chat__closed-send:focus {
	background: #e1e1e6;
	color: #202026;
	transform: translateY(-1px);
}

.fdwd-live-chat__closed-send:disabled {
	opacity: 0.68;
	cursor: wait;
}

.fdwd-live-chat__closed-send span,
.fdwd-live-chat__closed-send span::before,
.fdwd-live-chat__closed-send span::after {
	display: block;
	content: "";
}

.fdwd-live-chat__closed-send span {
	position: relative;
	width: 22px;
	height: 28px;
}

.fdwd-live-chat__closed-send span::before {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 3px;
	height: 18px;
	border-radius: 999px;
	background: currentColor;
	transform: translateX(-50%);
}

.fdwd-live-chat__closed-send span::after {
	position: absolute;
	top: 4px;
	left: 50%;
	width: 14px;
	height: 14px;
	border-top: 3px solid currentColor;
	border-left: 3px solid currentColor;
	border-radius: 2px 0 0 0;
	transform: translateX(-50%) rotate(45deg);
	transform-origin: center;
}

.fdwd-live-chat__launcher:hover,
.fdwd-live-chat__launcher:focus {
	background: var(--fdwd-lc-launcher-hover);
	box-shadow: 0 22px 50px rgba(17, 17, 19, 0.28);
	transform: translateY(-1px);
	outline: 2px solid transparent;
}

.fdwd-live-chat__launcher:hover .fdwd-live-chat__launcher-icon::after,
.fdwd-live-chat__launcher:focus .fdwd-live-chat__launcher-icon::after {
	background: var(--fdwd-lc-launcher-hover);
}

.fdwd-live-chat__launcher:active {
	transform: translateY(0);
}

.fdwd-live-chat__launcher:focus-visible,
.fdwd-live-chat__close:focus-visible,
.fdwd-live-chat__actions button:focus-visible,
.fdwd-live-chat__send:focus-visible,
.fdwd-live-chat__contact-save:focus-visible,
.fdwd-live-chat__closed-send:focus-visible,
.fdwd-live-chat__quick-replies button:focus-visible,
.fdwd-live-chat__next-step a:focus-visible,
.fdwd-live-chat__topic input:focus-visible + span,
.fdwd-live-chat input:focus-visible,
.fdwd-live-chat textarea:focus-visible,
.fdwd-live-chat__notice button:focus-visible {
	outline: 3px solid rgba(20, 95, 140, 0.34);
	outline-offset: 2px;
}

.fdwd-live-chat__launcher-icon {
	width: 30px;
	height: 24px;
	border: 4px solid currentColor;
	border-radius: 9px;
	position: relative;
	flex: 0 0 auto;
}

.fdwd-live-chat__launcher-icon::before {
	content: "";
	position: absolute;
	inset: 7px 7px auto;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 0 6px 0 currentColor;
	opacity: 0.9;
}

.fdwd-live-chat__launcher-icon::after {
	content: "";
	position: absolute;
	right: 1px;
	bottom: -8px;
	width: 9px;
	height: 9px;
	border-right: 4px solid currentColor;
	border-bottom: 4px solid currentColor;
	transform: skew(18deg);
	background: var(--fdwd-lc-launcher);
}

.fdwd-live-chat__panel {
	position: absolute;
	right: 0;
	bottom: 64px;
	display: none;
	width: min(452px, calc(100vw - 32px));
	height: min(690px, calc(100dvh - 96px));
	max-height: min(690px, calc(100dvh - 96px));
	background: var(--fdwd-lc-surface);
	border: 1px solid rgba(30, 27, 31, 0.12);
	border-radius: 12px;
	box-shadow: 0 26px 78px rgba(17, 17, 19, 0.22);
	overflow: hidden;
}

.fdwd-live-chat.is-open .fdwd-live-chat__panel {
	display: grid;
	grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.fdwd-live-chat__header {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 40px;
	gap: 12px;
	align-items: center;
	max-width: 100%;
	overflow-x: hidden;
	padding: 15px 16px 14px;
	border-bottom: 1px solid var(--fdwd-lc-border);
	background: #ffffff;
	color: var(--fdwd-lc-text);
}

.fdwd-live-chat__header::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--fdwd-lc-launcher);
}

.fdwd-live-chat__header strong {
	display: block;
	font-size: 16px;
	font-weight: 850;
	line-height: 21px;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.fdwd-live-chat__header span {
	display: block;
	margin-top: 3px;
	color: var(--fdwd-lc-muted);
	font-size: 12px;
	font-weight: 650;
	line-height: 17px;
	overflow-wrap: anywhere;
}

.fdwd-live-chat__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	border: 1px solid var(--fdwd-lc-border);
	border-radius: 8px;
	background: #f8f8fa;
	color: var(--fdwd-lc-text);
	cursor: pointer;
	flex: 0 0 auto;
}

.fdwd-live-chat__close:hover {
	background: #f0f0f3;
}

.fdwd-live-chat__close span,
.fdwd-live-chat__close span::after {
	display: block;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
}

.fdwd-live-chat__close span {
	transform: rotate(45deg);
}

.fdwd-live-chat__close span::after {
	transform: rotate(90deg);
}

.fdwd-live-chat__status {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	max-width: 100%;
	overflow-x: hidden;
	padding: 8px 14px;
	border-bottom: 1px solid var(--fdwd-lc-border);
	background: #fbfbfc;
	color: var(--fdwd-lc-muted);
	font-size: 12px;
	font-weight: 650;
	line-height: 17px;
}

.fdwd-live-chat__status span {
	overflow-wrap: anywhere;
}

.fdwd-live-chat__status span:first-child {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 9px;
	border: 1px solid #b8e3d7;
	border-radius: 999px;
	background: #edf8f5;
	color: #0f6b5c;
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
}

.fdwd-live-chat__status.is-working span:first-child {
	border-color: #b8dcec;
	background: #eaf5fb;
	color: var(--fdwd-lc-link);
}

.fdwd-live-chat__status.is-offline span:first-child,
.fdwd-live-chat__status.is-error span:first-child {
	border-color: #fecaca;
	background: var(--fdwd-lc-danger-bg);
	color: var(--fdwd-lc-danger);
}

.fdwd-live-chat__messages {
	display: grid;
	align-content: start;
	gap: 11px;
	min-height: 0;
	overflow: auto;
	overflow-x: hidden;
	padding: 16px 14px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 64px),
		var(--fdwd-lc-bg);
	scrollbar-width: thin;
}

.fdwd-live-chat__empty,
.fdwd-live-chat__notice {
	border: 1px solid var(--fdwd-lc-border);
	border-radius: 8px;
	background: #ffffff;
	color: var(--fdwd-lc-muted);
	font-size: 13px;
	line-height: 19px;
	padding: 12px;
	overflow-wrap: anywhere;
}

.fdwd-live-chat__empty {
	align-self: start;
	color: var(--fdwd-lc-text);
	box-shadow: 0 8px 22px rgba(17, 17, 19, 0.05);
}

.fdwd-live-chat__notice {
	margin: 10px 14px 0;
	border-color: #fbd25c;
	background: #fff8c5;
	color: var(--fdwd-lc-text);
}

.fdwd-live-chat__notice--error {
	border-color: #f1a6a2;
	background: #fff4f2;
	color: #7a271a;
}

.fdwd-live-chat__notice button {
	min-height: 36px;
	margin: 8px 0 0;
	border: 1px solid currentColor;
	border-radius: 8px;
	background: #ffffff;
	color: inherit;
	font-weight: 800;
	cursor: pointer;
	padding: 0 12px;
}

.fdwd-live-chat__message {
	position: relative;
	width: fit-content;
	max-width: min(88%, 34rem);
	border: 1px solid var(--fdwd-lc-border);
	border-radius: 13px;
	padding: 10px 12px;
	background: #ffffff;
	color: var(--fdwd-lc-text);
	font-size: 14px;
	line-height: 20px;
	box-shadow: 0 8px 22px rgba(17, 17, 19, 0.06);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.fdwd-live-chat__message--visitor {
	justify-self: end;
	border-radius: 13px 13px 5px 13px;
	background: var(--fdwd-lc-link);
	border-color: var(--fdwd-lc-link);
	color: #ffffff;
}

.fdwd-live-chat__message.is-optimistic {
	opacity: 0.92;
}

.fdwd-live-chat__message--system {
	justify-self: center;
	max-width: min(92%, 34rem);
	background: #fff8c5;
	border-color: #fbd25c;
	color: var(--fdwd-lc-text);
}

.fdwd-live-chat__message--progress {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border-color: #b8dcec;
	color: var(--fdwd-lc-link);
	animation: fdwd-lc-progress-in 0.22s ease-out both;
}

.fdwd-live-chat__typing-dots {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	width: 28px;
	height: 18px;
}

.fdwd-live-chat__typing-dots span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	animation: fdwd-lc-dot 1.05s infinite ease-in-out;
	opacity: 0.45;
}

.fdwd-live-chat__typing-dots span:nth-child(2) {
	animation-delay: 0.14s;
}

.fdwd-live-chat__typing-dots span:nth-child(3) {
	animation-delay: 0.28s;
}

@keyframes fdwd-lc-dot {
	0%,
	80%,
	100% {
		transform: translateY(0);
		opacity: 0.35;
	}
	40% {
		transform: translateY(-3px);
		opacity: 1;
	}
}

.fdwd-live-chat__message--staff,
.fdwd-live-chat__message--assistant {
	justify-self: start;
	max-width: min(92%, 36rem);
	border-color: var(--fdwd-lc-agent-border);
	border-radius: 13px 13px 13px 5px;
	background: var(--fdwd-lc-agent-bg);
	box-shadow: 0 10px 26px rgba(17, 17, 19, 0.07);
}

.fdwd-live-chat__message.is-live-reply {
	animation: fdwd-lc-reply-enter 0.34s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}

.fdwd-live-chat__message.is-live-reply::after {
	display: none;
}

@keyframes fdwd-lc-progress-in {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fdwd-lc-reply-enter {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fdwd-lc-stream-cursor {
	0%,
	45% {
		opacity: 1;
	}
	46%,
	100% {
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fdwd-live-chat__message--progress,
	.fdwd-live-chat__message.is-live-reply,
	.fdwd-live-chat__message.is-live-reply::after,
	.fdwd-live-chat__stream-cursor,
	.fdwd-live-chat__typing-dots span {
		animation: none;
	}
}

.fdwd-live-chat__message-label {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
	font-size: 11px;
	font-weight: 850;
	line-height: 15px;
	opacity: 0.74;
	overflow-wrap: anywhere;
}

.fdwd-live-chat__message--assistant .fdwd-live-chat__message-label span,
.fdwd-live-chat__message--staff .fdwd-live-chat__message-label span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.fdwd-live-chat__message--assistant .fdwd-live-chat__message-label span::before,
.fdwd-live-chat__message--staff .fdwd-live-chat__message-label span::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fdwd-lc-link);
}

.fdwd-live-chat__message-text {
	display: grid;
	gap: 4px;
	overflow-wrap: anywhere;
}

.fdwd-live-chat__message.is-streaming-reply .fdwd-live-chat__message-text {
	min-height: 24px;
}

.fdwd-live-chat__stream-text {
	display: inline;
	overflow-wrap: anywhere;
}

.fdwd-live-chat__stream-cursor {
	display: inline-block;
	width: 2px;
	height: 1em;
	margin-left: 2px;
	border-radius: 2px;
	background: currentColor;
	vertical-align: -0.14em;
	animation: fdwd-lc-stream-cursor 900ms steps(1, end) infinite;
}

.fdwd-live-chat-answer__paragraph {
	margin: 0;
}

.fdwd-live-chat-answer__spacer {
	height: 5px;
}

.fdwd-live-chat-answer__heading {
	margin-top: 5px;
	color: var(--fdwd-lc-text);
	font-size: 11px;
	font-weight: 850;
	line-height: 16px;
	text-transform: uppercase;
}

.fdwd-live-chat-answer__field,
.fdwd-live-chat-answer__bullet,
.fdwd-live-chat-answer__item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 7px;
	align-items: baseline;
	margin-top: 2px;
}

.fdwd-live-chat-answer__field {
	grid-template-columns: minmax(86px, auto) minmax(0, 1fr);
	border-top: 1px solid rgba(30, 27, 31, 0.08);
	padding-top: 5px;
}

.fdwd-live-chat-answer__field span,
.fdwd-live-chat-answer__item strong {
	color: var(--fdwd-lc-muted);
	font-size: 12px;
	font-weight: 800;
}

.fdwd-live-chat-answer__field strong,
.fdwd-live-chat-answer__item span,
.fdwd-live-chat-answer__bullet span:last-child {
	min-width: 0;
	font-weight: 650;
	overflow-wrap: anywhere;
}

.fdwd-live-chat__message-state {
	margin-top: 5px;
	font-size: 11px;
	font-weight: 800;
	line-height: 15px;
	opacity: 0.78;
}

.fdwd-live-chat__quick-replies {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 9px;
}

.fdwd-live-chat__quick-replies button {
	min-height: 44px;
	border: 1px solid var(--fdwd-lc-link);
	border-radius: 8px;
	background: #ffffff;
	color: var(--fdwd-lc-link);
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	padding: 0 13px;
	cursor: pointer;
}

.fdwd-live-chat__quick-replies button:first-child {
	background: var(--fdwd-lc-link);
	color: #ffffff;
}

.fdwd-live-chat__quick-replies button:disabled {
	opacity: 0.66;
	cursor: wait;
}

.fdwd-live-chat__portal-action,
.fdwd-live-chat__next-step {
		display: grid;
		gap: 10px;
		justify-self: stretch;
		width: 100%;
		max-width: 100%;
		border: 1px solid #b8e3d7;
		border-left: 4px solid var(--fdwd-lc-link);
		border-radius: 8px;
		background: #ffffff;
		padding: 12px;
		box-shadow: 0 12px 28px rgba(20, 95, 140, 0.12);
		overflow-wrap: anywhere;
		animation: fdwd-lc-progress-in 0.22s ease-out both;
	}

	.fdwd-live-chat__next-step {
		border-color: rgba(20, 95, 140, 0.2);
		background: #f8fbfa;
	}

	.fdwd-live-chat__portal-eyebrow {
		color: var(--fdwd-lc-link);
		font-size: 11px;
		font-weight: 850;
		line-height: 15px;
		text-transform: uppercase;
	}

	.fdwd-live-chat__portal-title {
		color: var(--fdwd-lc-text);
		font-size: 16px;
		font-weight: 850;
		line-height: 21px;
	}

	.fdwd-live-chat__portal-action p,
	.fdwd-live-chat__next-step p,
	.fdwd-live-chat__portal-help {
		margin: 0;
		color: var(--fdwd-lc-muted);
		font-size: 13px;
		line-height: 18px;
	}

	.fdwd-live-chat__next-step-buttons {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.fdwd-live-chat__next-step-buttons a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		border: 1px solid var(--fdwd-lc-link);
		border-radius: 8px;
		background: var(--fdwd-lc-link);
		color: #ffffff;
		font-size: 13px;
		font-weight: 850;
		line-height: 1.1;
		text-align: center;
		text-decoration: none;
		padding: 0 12px;
		overflow-wrap: anywhere;
	}

	.fdwd-live-chat__next-step-buttons a + a {
		background: #ffffff;
		color: var(--fdwd-lc-link);
	}

	.fdwd-live-chat__portal-items {
		display: grid;
		gap: 7px;
	}

	.fdwd-live-chat__portal-item {
		display: grid;
		gap: 2px;
		border: 1px solid var(--fdwd-lc-border);
		border-radius: 8px;
		background: #f8fbfa;
		padding: 9px 10px;
	}

	.fdwd-live-chat__portal-item strong {
		color: var(--fdwd-lc-text);
		font-size: 13px;
		font-weight: 850;
		line-height: 18px;
	}

	.fdwd-live-chat__portal-item span {
		color: var(--fdwd-lc-muted);
		font-size: 12px;
		font-weight: 650;
		line-height: 17px;
	}

	.fdwd-live-chat__portal-field {
		display: grid;
		gap: 5px;
	}

	.fdwd-live-chat__portal-buttons {
		display: grid;
		grid-template-columns: minmax(0, auto) minmax(128px, auto);
		align-items: center;
		justify-content: space-between;
		gap: 9px;
	}

	.fdwd-live-chat__portal-buttons button {
		min-height: 44px;
		border: 1px solid var(--fdwd-lc-text);
		border-radius: 8px;
		background: var(--fdwd-lc-text);
		color: #ffffff;
		font-size: 14px;
		font-weight: 850;
		line-height: 1;
		padding: 0 14px;
		cursor: pointer;
		white-space: nowrap;
	}

	.fdwd-live-chat__portal-buttons .fdwd-live-chat__portal-secondary {
		justify-self: start;
		border-color: var(--fdwd-lc-border);
		background: #ffffff;
		color: var(--fdwd-lc-link);
	}

	.fdwd-live-chat__portal-buttons button:disabled {
		opacity: 0.66;
		cursor: wait;
	}

.fdwd-live-chat__form {
	display: grid;
	gap: 9px;
	max-width: 100%;
	overflow-x: hidden;
	padding: 11px 14px 14px;
	background: #ffffff;
	border-top: 1px solid var(--fdwd-lc-border);
	box-shadow: 0 -10px 24px rgba(17, 17, 19, 0.06);
}

.fdwd-live-chat__topics {
	display: flex;
	gap: 7px;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 1px 1px 3px;
	scrollbar-width: thin;
}

.fdwd-live-chat__topic {
	display: block;
	margin: 0;
	flex: 0 0 auto;
}

.fdwd-live-chat__topic input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: 0;
	opacity: 0;
	pointer-events: none;
}

.fdwd-live-chat__topic span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	max-width: calc(100vw - 48px);
	border: 1px solid var(--fdwd-lc-border);
	border-radius: 999px;
	background: #ffffff;
	color: var(--fdwd-lc-text);
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
	padding: 0 11px;
	cursor: pointer;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fdwd-live-chat__topic.is-selected span,
.fdwd-live-chat__topic input:checked + span {
	border-color: var(--fdwd-lc-link);
	background: #eaf5fb;
	color: var(--fdwd-lc-link);
}

.fdwd-live-chat__contact {
	display: none;
	grid-template-columns: 1fr;
	gap: 9px;
	border: 1px solid rgba(20, 95, 140, 0.18);
	border-radius: 12px;
	background: #ffffff;
	padding: 11px;
	box-shadow: 0 10px 24px rgba(17, 17, 19, 0.06);
}

.fdwd-live-chat__contact.is-expanded {
	display: grid;
}

.fdwd-live-chat__contact-heading {
	display: grid;
	gap: 2px;
	margin: 0 0 1px;
}

.fdwd-live-chat__contact-heading strong {
	color: var(--fdwd-lc-text);
	font-size: 13px;
	font-weight: 850;
	line-height: 18px;
}

.fdwd-live-chat__contact-heading span {
	color: var(--fdwd-lc-muted);
	font-size: 12px;
	font-weight: 650;
	line-height: 17px;
}

.fdwd-live-chat__contact-summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 3px 8px;
	align-items: center;
	border: 1px solid rgba(20, 95, 140, 0.14);
	border-radius: 12px;
	background: #ffffff;
	padding: 9px 10px;
	color: var(--fdwd-lc-muted);
	font-size: 12px;
	line-height: 17px;
	box-shadow: 0 8px 20px rgba(17, 17, 19, 0.05);
}

.fdwd-live-chat__contact-summary span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fdwd-live-chat__contact-summary span:first-child {
	color: var(--fdwd-lc-text);
	font-weight: 800;
}

.fdwd-live-chat__contact-summary button {
	grid-row: 1 / span 3;
	grid-column: 2;
	min-height: 36px;
	border: 1px solid var(--fdwd-lc-border);
	border-radius: 8px;
	background: #ffffff;
	color: var(--fdwd-lc-link);
	font-weight: 800;
	cursor: pointer;
	padding: 0 10px;
}

.fdwd-live-chat label {
	display: grid;
	gap: 4px;
	margin: 0;
	color: var(--fdwd-lc-text);
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
}

.fdwd-live-chat input,
.fdwd-live-chat textarea {
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	margin: 0;
	border: 1px solid var(--fdwd-lc-border);
	border-radius: 8px;
	background: #ffffff;
	color: var(--fdwd-lc-text);
	font: inherit;
	font-size: 14px;
	line-height: 20px;
	padding: 10px 11px;
	overflow-wrap: anywhere;
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.fdwd-live-chat input:focus,
.fdwd-live-chat textarea:focus {
	border-color: var(--fdwd-lc-link);
	box-shadow: 0 0 0 3px rgba(20, 95, 140, 0.11);
	outline: 0;
}

.fdwd-live-chat textarea {
	min-height: 52px;
	max-height: 126px;
	resize: none;
}

.fdwd-live-chat .fdwd-live-chat__topic input {
	width: 1px;
	height: 1px;
	min-height: 1px;
	padding: 0;
	border: 0;
}

.fdwd-live-chat__contact > button {
	min-height: 44px;
	border: 1px solid var(--fdwd-lc-link);
	border-radius: 8px;
	background: var(--fdwd-lc-link);
	color: #ffffff;
	font-weight: 800;
	cursor: pointer;
	padding: 0 12px;
}

.fdwd-live-chat__composer-label {
	font-size: 0;
	line-height: 0;
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.fdwd-live-chat__composer-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(84px, auto);
	gap: 8px;
	align-items: end;
}

.fdwd-live-chat__composer-row textarea {
	border-radius: 12px;
	padding: 13px 12px;
}

.fdwd-live-chat__send,
.fdwd-live-chat__actions button {
	min-height: 44px;
	border: 1px solid var(--fdwd-lc-text);
	border-radius: 8px;
	background: var(--fdwd-lc-text);
	color: #ffffff;
	font-size: 14px;
	font-weight: 850;
	line-height: 1;
	padding: 0 16px;
	cursor: pointer;
	white-space: nowrap;
}

.fdwd-live-chat__send {
	align-self: stretch;
	min-width: 84px;
	border-color: var(--fdwd-lc-link);
	border-radius: 12px;
	background: var(--fdwd-lc-link);
	padding: 0 14px;
}

.fdwd-live-chat__actions {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	min-height: 34px;
}

.fdwd-live-chat__actions button {
	min-height: 34px;
	border-radius: 999px;
	background: transparent;
	padding: 0 10px;
}

.fdwd-live-chat__send:hover,
.fdwd-live-chat__actions button:hover {
	filter: brightness(1.05);
}

.fdwd-live-chat__actions .fdwd-live-chat__secondary {
	justify-self: start;
	border-color: rgba(20, 95, 140, 0.18);
	background: #f8fbfd;
	color: var(--fdwd-lc-link);
}

.fdwd-live-chat__send:disabled,
.fdwd-live-chat__actions button:disabled {
	opacity: 0.66;
	cursor: wait;
}

@media (min-width: 521px) {
	.fdwd-live-chat__contact.is-expanded {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.fdwd-live-chat__contact-heading,
	.fdwd-live-chat__contact-save {
		grid-column: 1 / -1;
	}
}

@media (max-width: 520px) {
	.fdwd-live-chat {
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
		align-items: center;
		padding: 0 max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
		pointer-events: none;
	}

	.fdwd-live-chat__closed-composer,
	.fdwd-live-chat__launcher,
	.fdwd-live-chat__panel {
		pointer-events: auto;
	}

	.fdwd-live-chat:not(.is-open) {
		grid-template-columns: minmax(0, 1fr) 62px;
		justify-content: stretch;
	}

	.fdwd-live-chat__closed-composer {
		width: 100%;
		min-width: 0;
		min-height: 62px;
		padding: 6px 6px 6px 20px;
		border-color: rgba(30, 27, 31, 0.1);
		box-shadow: 0 12px 30px rgba(17, 17, 19, 0.13), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
	}

	.fdwd-live-chat__launcher {
		width: 62px;
		height: 62px;
		min-height: 62px;
		max-width: none;
		margin: 0;
	}

	.fdwd-live-chat__launcher-icon {
		width: 25px;
		height: 20px;
		border-width: 3px;
		border-radius: 8px;
	}

	.fdwd-live-chat__launcher-icon::before {
		inset: 6px 6px auto;
		height: 2px;
		box-shadow: 0 5px 0 currentColor;
	}

	#fdwd-live-chat-root[data-fdwd-live-chat-source="floridas3pl"] .fdwd-live-chat:not(.is-open),
	.fdwd-live-chat-root[data-fdwd-live-chat-source="floridas3pl"] .fdwd-live-chat:not(.is-open) {
		padding-bottom: max(16px, env(safe-area-inset-bottom));
	}

	.fdwd-live-chat__launcher-icon::after {
		bottom: -7px;
		width: 8px;
		height: 8px;
		border-right-width: 3px;
		border-bottom-width: 3px;
	}

	.fdwd-live-chat .fdwd-live-chat__closed-composer input {
		min-height: 48px;
		font-size: 17px;
		font-weight: 560;
		line-height: 22px;
	}

	.fdwd-live-chat__closed-send {
		width: 48px;
		height: 48px;
		min-width: 48px;
	}

	.fdwd-live-chat__closed-send span {
		width: 20px;
		height: 26px;
	}

	.fdwd-live-chat__closed-send span::before {
		top: 8px;
		left: 50%;
		width: 3px;
		height: 17px;
	}

	.fdwd-live-chat__closed-send span::after {
		top: 4px;
		width: 13px;
		height: 13px;
		border-top-width: 3px;
		border-left-width: 3px;
	}

	.fdwd-live-chat__closed-composer:focus-within .fdwd-live-chat__closed-send,
	.fdwd-live-chat__closed-composer:has(input:not(:placeholder-shown)) .fdwd-live-chat__closed-send {
		background: var(--fdwd-lc-launcher);
		color: var(--fdwd-lc-launcher-text);
	}

	.fdwd-live-chat__panel {
		position: fixed;
		right: 0;
		left: 0;
		bottom: var(--fdwd-lc-keyboard-offset, 0px);
		width: 100vw;
		height: calc(var(--fdwd-lc-vvh, 100dvh) - 6px);
		max-height: calc(var(--fdwd-lc-vvh, 100dvh) - 6px);
		border-right: 0;
		border-bottom: 0;
		border-left: 0;
		border-radius: 14px 14px 0 0;
	}

	.fdwd-live-chat__panel::before {
		content: "";
		position: absolute;
		top: 7px;
		left: 50%;
		z-index: 1;
		width: 38px;
		height: 4px;
		border-radius: 999px;
		background: rgba(30, 27, 31, 0.22);
		transform: translateX(-50%);
	}

	.fdwd-live-chat.is-open .fdwd-live-chat__panel {
		grid-template-rows: auto auto minmax(0, 1fr) auto;
	}

	.fdwd-live-chat__header {
		padding: 18px 14px 12px;
	}

	.fdwd-live-chat__messages {
		padding: 12px;
	}

	.fdwd-live-chat__message,
	.fdwd-live-chat__message--assistant,
	.fdwd-live-chat__message--system {
		max-width: min(92%, 34rem);
	}

	.fdwd-live-chat__form {
		gap: 8px;
		width: 100%;
		max-width: 100vw;
		box-sizing: border-box;
		padding: 10px 14px max(14px, env(safe-area-inset-bottom));
	}

	.fdwd-live-chat input,
	.fdwd-live-chat textarea {
		font-size: 16px;
		line-height: 22px;
	}

	.fdwd-live-chat__contact {
		gap: 8px;
		padding: 11px;
	}

	.fdwd-live-chat__contact-heading {
		margin-bottom: 0;
	}

	.fdwd-live-chat__contact label {
		grid-template-columns: 72px minmax(0, 1fr);
		align-items: center;
		gap: 8px;
	}

	.fdwd-live-chat__contact label span {
		font-size: 12px;
		line-height: 15px;
	}

	.fdwd-live-chat__contact input {
		min-height: 44px;
		padding: 9px 10px;
	}

	.fdwd-live-chat__composer-row {
		width: 100%;
		max-width: calc(100vw - max(14px, env(safe-area-inset-left)) - max(14px, env(safe-area-inset-right)));
		grid-template-columns: minmax(0, 1fr) minmax(76px, 82px);
		gap: 7px;
		box-sizing: border-box;
		overflow: hidden;
	}

	.fdwd-live-chat__composer-row textarea {
		min-width: 0;
		font-size: 16px;
		line-height: 22px;
	}

	.fdwd-live-chat__send {
		width: 100%;
		min-width: 0;
		padding: 0 10px;
	}

	.fdwd-live-chat__send,
	.fdwd-live-chat__actions button,
	.fdwd-live-chat__contact > button,
	.fdwd-live-chat__contact-summary button,
	.fdwd-live-chat__quick-replies button,
	.fdwd-live-chat__next-step-buttons a,
	.fdwd-live-chat__portal-buttons button {
		min-height: 44px;
	}
}

@media (max-width: 340px) {
	.fdwd-live-chat:not(.is-open) {
		grid-template-columns: minmax(0, 1fr) 56px;
		gap: 8px;
		padding-right: max(8px, env(safe-area-inset-right));
		padding-left: max(8px, env(safe-area-inset-left));
	}

	.fdwd-live-chat__closed-composer {
		min-height: 58px;
		padding-left: 16px;
	}

	.fdwd-live-chat__launcher {
		width: 58px;
		height: 58px;
		min-height: 58px;
	}

	.fdwd-live-chat__panel {
		width: 100vw;
	}

	.fdwd-live-chat__next-step-buttons,
	.fdwd-live-chat__portal-buttons {
		grid-template-columns: 1fr;
	}

	.fdwd-live-chat__send,
	.fdwd-live-chat__actions button,
	.fdwd-live-chat__actions .fdwd-live-chat__secondary,
	.fdwd-live-chat__quick-replies button,
	.fdwd-live-chat__next-step-buttons a,
	.fdwd-live-chat__portal-buttons button,
	.fdwd-live-chat__portal-buttons .fdwd-live-chat__portal-secondary {
		justify-self: stretch;
		width: 100%;
	}

	.fdwd-live-chat__contact-summary {
		grid-template-columns: 1fr;
	}

	.fdwd-live-chat__contact-summary button {
		grid-row: auto;
		grid-column: auto;
		width: 100%;
	}

	@supports selector(.fdwd-live-chat__panel:has(.fdwd-live-chat__contact.is-expanded)) {
		.fdwd-live-chat__panel:has(.fdwd-live-chat__contact.is-expanded) .fdwd-live-chat__messages {
			display: none;
		}
	}
}
