.fba-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.fba-widget {
	--fba-offset-x: var(--fba-desktop-x, 20px);
	--fba-offset-y: var(--fba-desktop-y, 20px);
	--fba-viewport-height: 100vh;
	--fba-effective-y: min(max(var(--fba-offset-y), env(safe-area-inset-bottom)), max(8px, calc(var(--fba-viewport-height) - 200px)));
	--fba-ink: #182026;
	--fba-paper: #ffffff;
	--fba-rule: #d7dde1;
	--fba-muted: #5d6972;
	position: fixed;
	bottom: var(--fba-effective-y);
	z-index: 2147483000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.4;
}

@supports (height: 100dvh) { .fba-widget { --fba-viewport-height: 100dvh; } }
.fba-widget--right { right: max(var(--fba-offset-x), env(safe-area-inset-right)); }
.fba-widget--left { left: max(var(--fba-offset-x), env(safe-area-inset-left)); }
.fba-recovery { padding: 12px 110px; background: #fff; color: #182026; text-align: center; }
.fba-recovery button { font: 14px/1.5 Arial, Helvetica, sans-serif; text-transform: none; letter-spacing: normal; margin: 0; padding: 8px; min-height: 40px; border: 0; border-radius: 3px; background: #fff; color: #182026; text-decoration: underline; cursor: pointer; }
.fba-recovery button:hover, .fba-recovery button:active { background: #e9eef1; color: #182026; }
.fba-recovery button:focus-visible { outline: 3px solid #17212b; outline-offset: 2px; }
.fbc-root .fbc-footer-access.fba-shared-footer { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0 20px; padding: 8px 16px; }
.fba-shared-footer .fba-recovery { padding: 0; background: transparent; color: inherit; }
.fbc-root .fba-shared-footer .fbc-inline-settings,
.fbc-root .fba-shared-footer .fba-recovery button { display: inline-block; font: 400 12px/1.5 Arial, Helvetica, sans-serif !important; letter-spacing: normal; text-transform: none; min-height: 44px; margin: 0; padding: 8px 4px; border: 0; border-radius: 0; color: var(--fbc-text, #182026); background: transparent; text-align: center; text-decoration: underline; text-underline-offset: 3px; }
.fbc-root .fba-shared-footer button:hover,
.fbc-root .fba-shared-footer button:active { color: var(--fbc-text, #182026); background: transparent; text-decoration-thickness: 2px; }

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

.fba-launcher,
.fba-dismiss,
.fba-close,
.fba-control,
.fba-toggle,
.fba-reset {
	font: inherit;
	margin: 0;
	letter-spacing: normal;
	text-transform: none;
	cursor: pointer;
}

.fba-launcher {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 2px solid var(--fba-accent-foreground, #ffffff);
	border-radius: 50%;
	background: var(--fba-accent);
	color: var(--fba-accent-foreground, #ffffff);
	box-shadow: 0 10px 24px rgba(10, 25, 34, .28);
}

.fba-launcher:hover { filter: brightness(.92); }
.fba-widget[hidden] { display: none !important; }
.fba-dismiss { position: absolute; top: -6px; right: -6px; width: 24px; height: 24px; min-height: 24px; padding: 5px; border: 1px solid #66727a; border-radius: 50%; background: #fff; color: #182026; display: grid; place-items: center; box-shadow: 0 2px 6px #0002; }
.fba-dismiss svg { width: 12px; height: 12px; }
.fba-dismiss:focus-visible { outline: 3px solid #17212b; outline-offset: 3px; }
.fba-launcher:focus-visible,
.fba-close:focus-visible,
.fba-control:focus-visible,
.fba-toggle:focus-visible,
.fba-reset:focus-visible,
.fba-panel a:focus-visible { outline: 3px solid #17212b; outline-offset: 3px; }
.fba-launcher__icon { width: 27px; height: 27px; }

.fba-panel {
	position: absolute;
	bottom: 68px;
	width: min(360px, calc(100vw - var(--fba-offset-x) - var(--fba-offset-x)));
	max-height: min(640px, calc(var(--fba-viewport-height) - var(--fba-effective-y) - 88px));
	overflow: auto;
	border: 1px solid var(--fba-rule);
	border-radius: 14px;
	background: var(--fba-paper);
	color: var(--fba-ink);
	box-shadow: 0 20px 46px rgba(10, 25, 34, .24);
}

.fba-widget--right .fba-panel { right: 0; }
.fba-widget--left .fba-panel { left: 0; }
.fba-panel[hidden] { display: none; }

.fba-panel__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 20px 16px;
	border-bottom: 1px solid var(--fba-rule);
}

.fba-panel__header h2 { margin: 0; color: var(--fba-ink); font-size: 1.125rem; line-height: 1.25; }
.fba-panel__header p { margin: 7px 0 0; color: var(--fba-muted); font-size: .875rem; line-height: 1.45; }

.fba-close {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--fba-rule);
	border-radius: 8px;
	background: #ffffff;
	color: var(--fba-ink);
}

.fba-close:hover { background: #f3f5f6; }
.fba-close svg { width: 20px; height: 20px; }
.fba-panel__body { padding: 12px 20px 4px; }

.fba-tool,
.fba-toggle {
	border-bottom: 1px solid var(--fba-rule);
}

.fba-tool { padding: 14px 0; }
.fba-tool__label { margin: 0 0 10px; color: var(--fba-ink); font-size: .9375rem; font-weight: 700; letter-spacing: normal; text-transform: none; }
.fba-tool__actions { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; }

.fba-control {
	min-height: 44px;
	padding: 8px 11px;
	border: 1px solid var(--fba-rule);
	border-radius: 8px;
	background: #ffffff;
	color: var(--fba-ink);
	font-size: .875rem;
	font-weight: 700;
}

.fba-control span { margin-left: 4px; color: var(--fba-muted); }
.fba-control--large { font-size: 1rem; }
.fba-control:hover { border-color: var(--fba-accent); background: #f5fbfb; }
.fba-size-output { min-width: 58px; color: var(--fba-ink); font-size: .875rem; font-weight: 700; text-align: center; }

.fba-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	min-height: 52px;
	padding: 12px 0;
	border-top: 0;
	border-right: 0;
	border-left: 0;
	border-radius: 0;
	background: transparent;
	color: var(--fba-ink);
	font-size: .9375rem;
	font-weight: 700;
	text-align: left;
}

.fba-toggle:hover { color: var(--fba-accent); }
.fba-toggle__state { position: relative; width: 40px; height: 24px; flex: 0 0 auto; border-radius: 100px; background: #aab4ba; }
.fba-toggle__state::after { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--fba-accent-foreground, #ffffff); content: ''; transition: transform .16s ease-out; }
.fba-toggle[aria-pressed="true"] .fba-toggle__state { background: var(--fba-accent); }
.fba-toggle[aria-pressed="true"] .fba-toggle__state::after { transform: translateX(16px); }

.fba-panel__footer { position: sticky; bottom: 0; z-index: 1; padding: 12px 20px; background: #fff; border-top: 1px solid var(--fba-rule); }
.fba-reset { width: 100%; min-height: 44px; border: 1px solid var(--fba-ink); border-radius: 8px; background: #ffffff; color: var(--fba-ink); font-size: .875rem; font-weight: 700; }
.fba-reset:hover { background: var(--fba-ink); color: #ffffff; }
.fba-panel__links { display: grid; gap: 9px; margin-top: 16px; }
.fba-panel__links a { color: var(--fba-accent); font-size: .875rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.fba-live-region { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.fba-select { display: block; width: 100%; min-height: 44px; margin: 8px 0 0; padding: 8px; border: 1px solid #66727a; border-radius: 6px; background: #fff; color: #182026; font: 16px Arial, sans-serif; letter-spacing: normal; text-transform: none; }
.fba-select:focus-visible { outline: 3px solid #17212b; outline-offset: 3px; }
.fba-grayscale-layer { position: fixed; inset: 0; z-index: 2147482998; pointer-events: none; -webkit-backdrop-filter: grayscale(1); backdrop-filter: grayscale(1); }
html[data-fba-contrast="light"] { --fba-page-bg: #fff; --fba-page-ink: #111; --fba-page-link: #003a8c; }
html[data-fba-contrast="dark"] { --fba-page-bg: #111; --fba-page-ink: #fff; --fba-page-link: #ffe066; }
html:is([data-fba-contrast="light"], [data-fba-contrast="dark"]) body,
html:is([data-fba-contrast="light"], [data-fba-contrast="dark"]) body :not(.fba-widget, .fba-widget *, .fba-grayscale-layer, .fba-reading-guide, img, video, canvas, svg, svg *, iframe) {
	background-color: var(--fba-page-bg) !important; background-image: none !important; color: var(--fba-page-ink) !important; border-color: var(--fba-page-ink) !important; text-shadow: none !important;
}
html:is([data-fba-contrast="light"], [data-fba-contrast="dark"]) body a:not(.fba-widget *) { color: var(--fba-page-link) !important; text-decoration: underline !important; }
html[data-fba-contrast="dark"] img { background-color: #fff !important; }
html:is([data-fba-contrast="light"], [data-fba-contrast="dark"]) body :not(.fba-widget, .fba-widget *)::before,
html:is([data-fba-contrast="light"], [data-fba-contrast="dark"]) body :not(.fba-widget, .fba-widget *)::after { background: transparent !important; color: inherit !important; box-shadow: none !important; }
html:is([data-fba-contrast="light"], [data-fba-contrast="dark"]) :is(input, textarea)::placeholder { color: var(--fba-page-ink) !important; opacity: 1; }
html[data-fba-large-cursor="true"] body,
html[data-fba-large-cursor="true"] body * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M5 3 L5 38 L15 29 L23 44 L30 40 L22 26 L36 26 Z' fill='black' stroke='white' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E") 5 3, auto !important; }

html[data-fba-text-scale="112"] [data-fba-scalable] { font-size: calc(var(--fba-base-font) * 1.12) !important; }
html[data-fba-text-scale="125"] [data-fba-scalable] { font-size: calc(var(--fba-base-font) * 1.25) !important; }
html[data-fba-line-height="true"] body :is(h1,h2,h3,h4,h5,h6,p,li,a,button,input,select,textarea,label,span):not(.fba-widget *) { line-height: 1.8 !important; }
html[data-fba-letter-spacing="true"] body :is(h1,h2,h3,h4,h5,h6,p,li,a,button,input,select,textarea,label,span):not(.fba-widget *) { letter-spacing: .08em !important; }
html[data-fba-readable-font="true"] body,
html[data-fba-readable-font="true"] body button,
html[data-fba-readable-font="true"] body input,
html[data-fba-readable-font="true"] body select,
html[data-fba-readable-font="true"] body textarea { font-family: Arial, Helvetica, sans-serif !important; }
html[data-fba-underline-links="true"] body a { text-decoration: underline !important; text-underline-offset: .18em; text-decoration-thickness: max(1px, .08em); }
html[data-fba-focus-highlight="true"] body :focus-visible { outline: 3px solid #005fcc !important; outline-offset: 4px !important; }
html[data-fba-reduce-motion="true"] *,
html[data-fba-reduce-motion="true"] *::before,
html[data-fba-reduce-motion="true"] *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }

.fba-reading-guide { position: fixed; z-index: 2147482999; right: 0; left: 0; height: 2px; background: #005fcc; box-shadow: 0 0 0 9999px rgba(0, 95, 204, .04); pointer-events: none; transform: translateY(var(--fba-guide-y, -20px)); }

@media (prefers-reduced-motion: reduce) {
	.fba-toggle__state::after { transition: none; }
}

@media (max-width: 480px) {
	.fba-widget { --fba-offset-x: var(--fba-mobile-x, 14px); --fba-offset-y: var(--fba-mobile-y, 20px); }
	.fba-panel { bottom: 66px; }
}
