/*!
 * May Way Accessibility - front-end widget
 * Part 1: the widget UI. Part 2: the adjustments applied to the site.
 */

/* =========================================================================
 * 1. Widget shell
 * ====================================================================== */

:root {
	--mwa-btn-bg: #1a56db;
	--mwa-btn-fg: #ffffff;
	--mwa-accent: #1a56db;
	--mwa-size: 56px;
	--mwa-radius: 16px;
	--mwa-offset-x: 20px;
	--mwa-offset-y: 20px;
	--mwa-z: 999999;
}

.mwa-widget {
	--mwa-surface: #ffffff;
	--mwa-surface-2: #f4f6fb;
	--mwa-text: #16181d;
	--mwa-muted: #5b6270;
	--mwa-border: #e2e6ef;
	--mwa-shadow: 0 18px 48px rgba(16, 24, 40, 0.18), 0 2px 8px rgba(16, 24, 40, 0.08);

	position: fixed;
	z-index: var(--mwa-z);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans Hebrew", sans-serif;
	font-size: 15px;
	line-height: 1.45;
	color: var(--mwa-text);
	direction: ltr;
	-webkit-font-smoothing: antialiased;
}

.mwa-widget[dir="rtl"] {
	direction: rtl;
}

.mwa-widget.mwa-theme-dark {
	--mwa-surface: #171a21;
	--mwa-surface-2: #21252e;
	--mwa-text: #f2f4f8;
	--mwa-muted: #a6adbb;
	--mwa-border: #2f3540;
	--mwa-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Positions --------------------------------------------------------------- */

.mwa-widget.mwa-pos-bottom-right { bottom: var(--mwa-offset-y); right: var(--mwa-offset-x); }
.mwa-widget.mwa-pos-bottom-left  { bottom: var(--mwa-offset-y); left: var(--mwa-offset-x); }
.mwa-widget.mwa-pos-top-right    { top: var(--mwa-offset-y); right: var(--mwa-offset-x); }
.mwa-widget.mwa-pos-top-left     { top: var(--mwa-offset-y); left: var(--mwa-offset-x); }
.mwa-widget.mwa-pos-middle-right { top: 50%; right: var(--mwa-offset-x); transform: translateY(-50%); }
.mwa-widget.mwa-pos-middle-left  { top: 50%; left: var(--mwa-offset-x); transform: translateY(-50%); }

.mwa-widget.mwa-hide-mobile { display: block; }

@media (max-width: 600px) {
	.mwa-widget.mwa-hide-mobile { display: none; }
}

/* Toggle button ----------------------------------------------------------- */

.mwa-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--mwa-size);
	height: var(--mwa-size);
	padding: 0;
	margin: 0;
	border: 0;
	background: var(--mwa-btn-bg);
	color: var(--mwa-btn-fg);
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(16, 24, 40, 0.22);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.mwa-shape-circle  .mwa-toggle { border-radius: 50%; }
.mwa-shape-rounded .mwa-toggle { border-radius: 14px; }
.mwa-shape-square  .mwa-toggle { border-radius: 4px; }

.mwa-toggle:hover,
.mwa-toggle:focus-visible {
	transform: scale(1.06);
	box-shadow: 0 10px 26px rgba(16, 24, 40, 0.3);
}

.mwa-toggle:focus-visible {
	outline: 3px solid var(--mwa-btn-bg);
	outline-offset: 3px;
}

.mwa-toggle__icon {
	width: calc(var(--mwa-size) * 0.58);
	height: calc(var(--mwa-size) * 0.58);
}

.mwa-icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: none;
}

/* Panel ------------------------------------------------------------------- */

.mwa-panel {
	position: absolute;
	width: min(360px, calc(100vw - 24px));
	max-height: min(78vh, 640px);
	display: flex;
	flex-direction: column;
	background: var(--mwa-surface);
	border: 1px solid var(--mwa-border);
	border-radius: var(--mwa-radius);
	box-shadow: var(--mwa-shadow);
	overflow: hidden;
	opacity: 0;
	transform: translateY(8px) scale(0.985);
	transition: opacity 0.16s ease, transform 0.16s ease;
	pointer-events: none;
}

.mwa-panel[hidden] { display: none; }

.mwa-widget.is-open .mwa-panel {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.mwa-pos-bottom-right .mwa-panel,
.mwa-pos-bottom-left  .mwa-panel { bottom: calc(var(--mwa-size) + 14px); }
.mwa-pos-top-right    .mwa-panel,
.mwa-pos-top-left     .mwa-panel { top: calc(var(--mwa-size) + 14px); }
.mwa-pos-middle-right .mwa-panel,
.mwa-pos-middle-left  .mwa-panel { top: 50%; transform: translateY(-50%); }

.mwa-widget.mwa-pos-middle-right.is-open .mwa-panel,
.mwa-widget.mwa-pos-middle-left.is-open  .mwa-panel { transform: translateY(-50%); }

.mwa-pos-bottom-right .mwa-panel,
.mwa-pos-top-right    .mwa-panel,
.mwa-pos-middle-right .mwa-panel { right: 0; }

.mwa-pos-bottom-left .mwa-panel,
.mwa-pos-top-left    .mwa-panel,
.mwa-pos-middle-left .mwa-panel { left: 0; }

.mwa-pos-middle-right .mwa-panel { right: calc(var(--mwa-size) + 14px); }
.mwa-pos-middle-left  .mwa-panel { left: calc(var(--mwa-size) + 14px); }

/* Panel head -------------------------------------------------------------- */

.mwa-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--mwa-border);
	background: var(--mwa-surface);
}

.mwa-panel__title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--mwa-text);
}

.mwa-panel__head-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.mwa-lang,
.mwa-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 9px;
	border: 1px solid var(--mwa-border);
	border-radius: 9px;
	background: var(--mwa-surface-2);
	color: var(--mwa-text);
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.mwa-lang:hover,
.mwa-close:hover {
	background: var(--mwa-border);
}

.mwa-lang:focus-visible,
.mwa-close:focus-visible {
	outline: 3px solid var(--mwa-accent);
	outline-offset: 2px;
}

/* Panel body -------------------------------------------------------------- */

.mwa-panel__body {
	padding: 6px 14px 12px;
	overflow-y: auto;
	overscroll-behavior: contain;
	flex: 1 1 auto;
}

.mwa-group {
	margin-top: 12px;
}

.mwa-group__title {
	margin: 0 0 8px;
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--mwa-muted);
}

.mwa-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

/* Tool controls ----------------------------------------------------------- */

.mwa-tool {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	min-height: 84px;
	padding: 12px 8px 10px;
	border: 1px solid var(--mwa-border);
	border-radius: 12px;
	background: var(--mwa-surface-2);
	color: var(--mwa-text);
	font: inherit;
	font-size: 12.5px;
	line-height: 1.3;
	text-align: center;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

button.mwa-tool {
	-webkit-appearance: none;
	appearance: none;
}

.mwa-tool:hover {
	border-color: var(--mwa-accent);
}

.mwa-tool:focus-visible {
	outline: 3px solid var(--mwa-accent);
	outline-offset: 2px;
}

.mwa-tool__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--mwa-surface);
	border: 1px solid var(--mwa-border);
	color: var(--mwa-text);
}

.mwa-tool__icon .mwa-icon {
	width: 19px;
	height: 19px;
}

.mwa-tool__label {
	display: block;
	font-weight: 600;
	word-break: break-word;
}

.mwa-tool[aria-pressed="true"],
.mwa-tool.is-active {
	background: var(--mwa-accent);
	border-color: var(--mwa-accent);
	color: #fff;
}

.mwa-tool[aria-pressed="true"] .mwa-tool__icon,
.mwa-tool.is-active .mwa-tool__icon {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

/* Level dots */

.mwa-dots {
	display: flex;
	gap: 4px;
	margin-top: 1px;
}

.mwa-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--mwa-border);
	transition: background 0.15s ease;
}

.mwa-tool[aria-pressed="true"] .mwa-dot {
	background: rgba(255, 255, 255, 0.35);
}

.mwa-dot.is-on {
	background: var(--mwa-accent);
}

.mwa-tool[aria-pressed="true"] .mwa-dot.is-on {
	background: #fff;
}

/* Stepper ----------------------------------------------------------------- */

.mwa-tool--stepper {
	cursor: default;
}

.mwa-stepper {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 1px;
	/* Keep minus on the left and plus on the right in both directions. */
	direction: ltr;
}

.mwa-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 26px;
	padding: 0;
	border: 1px solid var(--mwa-border);
	border-radius: 8px;
	background: var(--mwa-surface);
	color: var(--mwa-text);
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.mwa-step:hover {
	border-color: var(--mwa-accent);
	color: var(--mwa-accent);
}

.mwa-step:focus-visible {
	outline: 3px solid var(--mwa-accent);
	outline-offset: 2px;
}

.mwa-step__value {
	min-width: 22px;
	font-size: 12px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--mwa-muted);
}

.mwa-tool--stepper.is-active {
	background: var(--mwa-accent);
	border-color: var(--mwa-accent);
	color: #fff;
}

.mwa-tool--stepper.is-active .mwa-step__value {
	color: #fff;
}

/* Panel foot -------------------------------------------------------------- */

.mwa-panel__foot {
	padding: 12px 14px 14px;
	border-top: 1px solid var(--mwa-border);
	background: var(--mwa-surface);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mwa-reset,
.mwa-statement {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 40px;
	padding: 9px 12px;
	border-radius: 10px;
	border: 1px solid var(--mwa-border);
	background: var(--mwa-surface-2);
	color: var(--mwa-text);
	font: inherit;
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.mwa-reset:hover,
.mwa-statement:hover {
	border-color: var(--mwa-accent);
	color: var(--mwa-accent);
}

.mwa-reset:focus-visible,
.mwa-statement:focus-visible {
	outline: 3px solid var(--mwa-accent);
	outline-offset: 2px;
}

.mwa-hint {
	margin: 0;
	font-size: 11.5px;
	line-height: 1.4;
	color: var(--mwa-muted);
	text-align: center;
}

/* Utility ----------------------------------------------------------------- */

.mwa-sprite {
	position: absolute !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden;
	pointer-events: none;
}

.mwa-sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (prefers-reduced-motion: reduce) {
	.mwa-widget *,
	.mwa-widget *::before,
	.mwa-widget *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* Skip links -------------------------------------------------------------- */

.mwa-skip-links {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2147483000;
}

.mwa-skip-link {
	position: absolute;
	top: -200px;
	left: 8px;
	display: inline-block;
	padding: 12px 18px;
	background: #101828;
	color: #fff;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.mwa-skip-links[dir="rtl"] .mwa-skip-link {
	left: auto;
	right: 8px;
}

.mwa-skip-link:focus {
	top: 0;
	outline: 3px solid #ffbf00;
	outline-offset: 2px;
}

/* =========================================================================
 * 2. Adjustments applied to the host site
 *    Every rule is scoped to a class set on <html> by the widget script and
 *    is reverted inside #mwa-widget with a higher-specificity selector.
 * ====================================================================== */

/* Readable font ----------------------------------------------------------- */

html.mwa-a-readable_font body,
html.mwa-a-readable_font body * {
	font-family: "Arial", "Helvetica", "Noto Sans Hebrew", "Segoe UI", sans-serif !important;
	letter-spacing: 0.01em;
}

html.mwa-a-readable_font #mwa-widget,
html.mwa-a-readable_font #mwa-widget * {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans Hebrew", sans-serif !important;
}

/* Highlight headings ------------------------------------------------------ */

html.mwa-a-highlight_titles body h1,
html.mwa-a-highlight_titles body h2,
html.mwa-a-highlight_titles body h3,
html.mwa-a-highlight_titles body h4,
html.mwa-a-highlight_titles body h5,
html.mwa-a-highlight_titles body h6 {
	outline: 2px dashed #b45309 !important;
	outline-offset: 2px;
	background-color: rgba(251, 191, 36, 0.16) !important;
}

html.mwa-a-highlight_titles #mwa-widget h1,
html.mwa-a-highlight_titles #mwa-widget h2,
html.mwa-a-highlight_titles #mwa-widget h3 {
	outline: 0 !important;
	background-color: transparent !important;
}

/* Highlight links --------------------------------------------------------- */

html.mwa-a-highlight_links body a[href] {
	outline: 2px solid #1d4ed8 !important;
	outline-offset: 1px;
	text-decoration: underline !important;
	text-underline-offset: 2px;
	background-color: rgba(59, 130, 246, 0.12) !important;
}

html.mwa-a-highlight_links #mwa-widget a[href],
html.mwa-a-highlight_links .mwa-skip-links a[href] {
	outline: 0 !important;
	background-color: transparent !important;
	text-decoration: none !important;
}

/* Spacing ----------------------------------------------------------------- */

html.mwa-a-letter_spacing-1 body { letter-spacing: 0.06em !important; }
html.mwa-a-letter_spacing-2 body { letter-spacing: 0.12em !important; }
html.mwa-a-letter_spacing-3 body { letter-spacing: 0.2em !important; }

html.mwa-a-word_spacing-1 body { word-spacing: 0.16em !important; }
html.mwa-a-word_spacing-2 body { word-spacing: 0.32em !important; }
html.mwa-a-word_spacing-3 body { word-spacing: 0.6em !important; }

html.mwa-a-line_height-1 body, html.mwa-a-line_height-1 body * { line-height: 1.7 !important; }
html.mwa-a-line_height-2 body, html.mwa-a-line_height-2 body * { line-height: 2.1 !important; }
html.mwa-a-line_height-3 body, html.mwa-a-line_height-3 body * { line-height: 2.6 !important; }

html[class*="mwa-a-letter_spacing-"] #mwa-widget,
html[class*="mwa-a-letter_spacing-"] #mwa-widget * { letter-spacing: normal !important; }

html[class*="mwa-a-word_spacing-"] #mwa-widget,
html[class*="mwa-a-word_spacing-"] #mwa-widget * { word-spacing: normal !important; }

html[class*="mwa-a-line_height-"] #mwa-widget,
html[class*="mwa-a-line_height-"] #mwa-widget * { line-height: 1.45 !important; }

/* Text alignment ---------------------------------------------------------- */

html.mwa-a-text_align-1 body :is(p, li, h1, h2, h3, h4, h5, h6, blockquote, td, dd, figcaption) { text-align: left !important; }
html.mwa-a-text_align-2 body :is(p, li, h1, h2, h3, h4, h5, h6, blockquote, td, dd, figcaption) { text-align: center !important; }
html.mwa-a-text_align-3 body :is(p, li, h1, h2, h3, h4, h5, h6, blockquote, td, dd, figcaption) { text-align: right !important; }
html.mwa-a-text_align-4 body :is(p, li, h1, h2, h3, h4, h5, h6, blockquote, td, dd, figcaption) { text-align: justify !important; }

html[class*="mwa-a-text_align-"] #mwa-widget,
html[class*="mwa-a-text_align-"] #mwa-widget * { text-align: initial !important; }

html[class*="mwa-a-text_align-"] #mwa-widget .mwa-tool,
html[class*="mwa-a-text_align-"] #mwa-widget .mwa-hint { text-align: center !important; }

/* Colour filters ----------------------------------------------------------
 *
 * These are painted through a fixed, non-interactive overlay that sits just
 * below the widget and filters whatever is behind it. A `filter` on <body>
 * would turn the body into a containing block for fixed-position elements,
 * which would drag the widget - and any sticky or fixed header the theme has -
 * out of the viewport. The overlay avoids that entirely.
 */

.mwa-color-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: calc(var(--mwa-z, 999999) - 1);
}

.mwa-color-overlay[data-mwa-mode="contrast_invert"] {
	-webkit-backdrop-filter: invert(1) hue-rotate(180deg);
	backdrop-filter: invert(1) hue-rotate(180deg);
}

.mwa-color-overlay[data-mwa-mode="monochrome"] {
	-webkit-backdrop-filter: grayscale(1);
	backdrop-filter: grayscale(1);
}

.mwa-color-overlay[data-mwa-mode="high_saturation"] {
	-webkit-backdrop-filter: saturate(2.2);
	backdrop-filter: saturate(2.2);
}

.mwa-color-overlay[data-mwa-mode="low_saturation"] {
	-webkit-backdrop-filter: saturate(0.35);
	backdrop-filter: saturate(0.35);
}

/* Fallback for browsers without backdrop-filter: filter the body's own
 * children instead, so the body itself never becomes a containing block. */

html.mwa-filter-fallback.mwa-a-contrast_invert body > *:not(#mwa-widget):not(.mwa-skip-links) { filter: invert(1) hue-rotate(180deg); }
html.mwa-filter-fallback.mwa-a-monochrome body > *:not(#mwa-widget):not(.mwa-skip-links) { filter: grayscale(1); }
html.mwa-filter-fallback.mwa-a-high_saturation body > *:not(#mwa-widget):not(.mwa-skip-links) { filter: saturate(2.2); }
html.mwa-filter-fallback.mwa-a-low_saturation body > *:not(#mwa-widget):not(.mwa-skip-links) { filter: saturate(0.35); }
html.mwa-filter-fallback.mwa-a-contrast_invert body { background-color: #ffffff; }

/* Forced dark / light contrast -------------------------------------------- */

html.mwa-a-contrast_dark body,
html.mwa-a-contrast_dark body * {
	background-color: #000 !important;
	background-image: none !important;
	color: #fff !important;
	border-color: #6b7280 !important;
	text-shadow: none !important;
	box-shadow: none !important;
}

html.mwa-a-contrast_dark body a,
html.mwa-a-contrast_dark body a * { color: #ffe066 !important; }
html.mwa-a-contrast_dark body :is(h1, h2, h3, h4, h5, h6) { color: #7ee0ff !important; }
html.mwa-a-contrast_dark body :is(input, select, textarea, button) { background-color: #111 !important; color: #fff !important; }
html.mwa-a-contrast_dark body img { filter: grayscale(0.2) contrast(1.1); }

html.mwa-a-contrast_light body,
html.mwa-a-contrast_light body * {
	background-color: #fff !important;
	background-image: none !important;
	color: #000 !important;
	border-color: #333 !important;
	text-shadow: none !important;
	box-shadow: none !important;
}

html.mwa-a-contrast_light body a,
html.mwa-a-contrast_light body a * { color: #0000cc !important; }
html.mwa-a-contrast_light body :is(h1, h2, h3, h4, h5, h6) { color: #7a0000 !important; }

html.mwa-a-contrast_dark #mwa-widget,
html.mwa-a-contrast_dark #mwa-widget *,
html.mwa-a-contrast_light #mwa-widget,
html.mwa-a-contrast_light #mwa-widget * {
	background-color: revert !important;
	color: revert !important;
	border-color: revert !important;
}

html.mwa-a-contrast_dark #mwa-widget .mwa-toggle,
html.mwa-a-contrast_light #mwa-widget .mwa-toggle {
	background: var(--mwa-btn-bg) !important;
	color: var(--mwa-btn-fg) !important;
}

html.mwa-a-contrast_dark #mwa-widget .mwa-panel,
html.mwa-a-contrast_light #mwa-widget .mwa-panel,
html.mwa-a-contrast_dark #mwa-widget .mwa-panel__head,
html.mwa-a-contrast_light #mwa-widget .mwa-panel__head,
html.mwa-a-contrast_dark #mwa-widget .mwa-panel__foot,
html.mwa-a-contrast_light #mwa-widget .mwa-panel__foot {
	background: var(--mwa-surface) !important;
	color: var(--mwa-text) !important;
}

html.mwa-a-contrast_dark #mwa-widget .mwa-tool,
html.mwa-a-contrast_light #mwa-widget .mwa-tool,
html.mwa-a-contrast_dark #mwa-widget .mwa-reset,
html.mwa-a-contrast_light #mwa-widget .mwa-reset,
html.mwa-a-contrast_dark #mwa-widget .mwa-statement,
html.mwa-a-contrast_light #mwa-widget .mwa-statement,
html.mwa-a-contrast_dark #mwa-widget .mwa-lang,
html.mwa-a-contrast_light #mwa-widget .mwa-lang,
html.mwa-a-contrast_dark #mwa-widget .mwa-close,
html.mwa-a-contrast_light #mwa-widget .mwa-close {
	background: var(--mwa-surface-2) !important;
	color: var(--mwa-text) !important;
	border-color: var(--mwa-border) !important;
}

html.mwa-a-contrast_dark #mwa-widget .mwa-tool[aria-pressed="true"],
html.mwa-a-contrast_light #mwa-widget .mwa-tool[aria-pressed="true"],
html.mwa-a-contrast_dark #mwa-widget .mwa-tool.is-active,
html.mwa-a-contrast_light #mwa-widget .mwa-tool.is-active {
	background: var(--mwa-accent) !important;
	color: #fff !important;
}

/* Large cursor ------------------------------------------------------------ */

html.mwa-a-big_cursor body,
html.mwa-a-big_cursor body * {
	cursor: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 24 24'%3E%3Cpath d='M6 2.5 19.2 11.3l-6 1.3 2.8 6.4-3.1 1.4-2.8-6.4-4.1 4z' fill='%23ffffff' stroke='%23000000' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E") 4 2, auto !important;
}

html.mwa-a-big_cursor body a,
html.mwa-a-big_cursor body button,
html.mwa-a-big_cursor body [role="button"],
html.mwa-a-big_cursor body input[type="submit"] {
	cursor: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 24 24'%3E%3Cpath d='M8 11.4V5.6a1.6 1.6 0 0 1 3.2 0v5.2M11.2 11V4.6a1.6 1.6 0 0 1 3.2 0V11M14.4 11.2V6.8a1.6 1.6 0 0 1 3.2 0V14a6 6 0 0 1-6 6h-.7a6 6 0 0 1-5-2.7l-1.7-2.7a1.6 1.6 0 0 1 2.6-1.8l1.2 1.6' fill='%23ffffff' stroke='%23000000' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 12 4, pointer !important;
}

/* Stop animations --------------------------------------------------------- */

html.mwa-a-stop_animations body *,
html.mwa-a-stop_animations body *::before,
html.mwa-a-stop_animations body *::after {
	animation: none !important;
	transition: none !important;
	scroll-behavior: auto !important;
}

/* Hide images ------------------------------------------------------------- */

html.mwa-a-hide_images body img,
html.mwa-a-hide_images body picture,
html.mwa-a-hide_images body video,
html.mwa-a-hide_images body canvas,
html.mwa-a-hide_images body figure > svg {
	visibility: hidden !important;
}

html.mwa-a-hide_images body * {
	background-image: none !important;
}

html.mwa-a-hide_images #mwa-widget *,
html.mwa-a-hide_images .mwa-skip-links * {
	visibility: visible !important;
}

/* Keyboard navigation / focus outline ------------------------------------- */

html.mwa-a-keyboard_nav body :is(a, button, input, select, textarea, summary, [tabindex]):focus,
html.mwa-focus-outline body :is(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 3px solid #b91c1c !important;
	outline-offset: 2px !important;
	background-color: rgba(254, 226, 226, 0.45) !important;
}

html.mwa-focus-outline body :is(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline-color: #1d4ed8 !important;
	background-color: transparent !important;
}

html.mwa-a-keyboard_nav #mwa-widget :focus,
html.mwa-focus-outline #mwa-widget :focus-visible {
	background-color: transparent !important;
	outline-color: var(--mwa-accent) !important;
}

/* Screen-reader support --------------------------------------------------- */

html.mwa-a-screen_reader body img[alt]:not([alt=""])::after {
	content: attr(alt);
	display: block;
	padding: 4px 6px;
	font-size: 13px;
	background: #111827;
	color: #fff;
}

/* Reading guide and mask -------------------------------------------------- */

.mwa-guide {
	position: fixed;
	left: 0;
	width: 100%;
	height: 0;
	border-top: 4px solid rgba(29, 78, 216, 0.9);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
	pointer-events: none;
	z-index: calc(var(--mwa-z, 999999) - 2);
}

.mwa-mask {
	position: fixed;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.72);
	pointer-events: none;
	z-index: calc(var(--mwa-z, 999999) - 2);
}

/* Page zoom --------------------------------------------------------------- */

html.mwa-a-page_zoom-1 body { zoom: 1.1; }
html.mwa-a-page_zoom-2 body { zoom: 1.2; }
html.mwa-a-page_zoom-3 body { zoom: 1.35; }
html.mwa-a-page_zoom--1 body { zoom: 0.9; }

html.mwa-a-page_zoom-1 #mwa-widget { zoom: 0.909; }
html.mwa-a-page_zoom-2 #mwa-widget { zoom: 0.833; }
html.mwa-a-page_zoom-3 #mwa-widget { zoom: 0.74; }
html.mwa-a-page_zoom--1 #mwa-widget { zoom: 1.111; }
