.odk-a11y-root {
	position: fixed;
	z-index: 99999;
	left: 18px;
	bottom: 18px;
	font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
}
.odk-a11y-root,
.odk-a11y-root *,
.odk-a11y-root *::before,
.odk-a11y-root *::after {
	box-sizing: border-box;
}
.odk-a11y-fab {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: none;
	background: var(--zzma11y-color, #E08A3C);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0,0,0,.25);
	transition: transform .15s ease;
}
.odk-a11y-fab:hover {
	transform: scale(1.06);
}
.odk-a11y-panel {
	position: fixed;
	left: 18px;
	bottom: 84px;
	width: min(360px, calc(100vw - 36px));
	max-height: min(600px, calc(100vh - 120px));
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 20px 50px rgba(20,15,10,.25);
	overflow: hidden;
	display: none;
	flex-direction: column;
}
.odk-a11y-panel.is-open {
	display: flex;
}
.odk-a11y-panel__header {
	background: var(--zzma11y-color, #E08A3C);
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
	padding: 16px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 0 0 auto;
}
.odk-a11y-panel__close {
	background: rgba(255,255,255,.18);
	border: none;
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex: 0 0 auto;
}
.odk-a11y-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 16px;
	overflow-y: auto;
}
.odk-a11y-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
	background: #f7f4ee;
	border: 1.5px solid transparent;
	border-radius: 14px;
	padding: 16px 8px;
	min-height: 92px;
	cursor: pointer;
	color: #33291F;
	font-size: .78rem;
	font-weight: 600;
	line-height: 1.25;
	transition: border-color .15s ease, background .15s ease;
}
.odk-a11y-item:hover {
	background: #f0ebe0;
}
.odk-a11y-item.is-active {
	border-color: var(--zzma11y-color, #E08A3C);
	background: #fff4e8;
	color: var(--zzma11y-color-dark, #995518);
}
.odk-a11y-item__icon {
	display: flex;
}
.odk-a11y-item__levels {
	display: flex;
	gap: 4px;
	width: 100%;
	padding: 0 6px;
	margin-top: 2px;
}
.odk-a11y-item__levels i {
	flex: 1 1 0;
	height: 4px;
	border-radius: 2px;
	background: #e3ddd0;
	font-style: normal;
}
.odk-a11y-item__levels i.is-filled {
	background: var(--zzma11y-color, #E08A3C);
}
.odk-a11y-reset {
	flex: 0 0 auto;
	margin: 0 16px 16px;
	background: var(--zzma11y-color, #E08A3C);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 12px 16px;
	font-weight: 700;
	font-size: .9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
}
.odk-a11y-reset:hover {
	filter: brightness(1.05);
}

html.odk-a11y-contrast-invert body {
	filter: invert(1) hue-rotate(180deg) !important;
}

html.odk-a11y-contrast-dark body {
	background: #000 !important;
	color: #fff !important;
}
html.odk-a11y-contrast-dark body :not(.odk-a11y-root):not(.odk-a11y-root *) {
	background-color: #000 !important;
	color: #fff !important;
	border-color: #fff !important;
}
html.odk-a11y-contrast-dark body a:not(.odk-a11y-root *) {
	color: #ffd166 !important;
}

html.odk-a11y-contrast-light body {
	filter: contrast(1.15);
}
html.odk-a11y-contrast-light body :not(.odk-a11y-root):not(.odk-a11y-root *) {
	background-color: #fff !important;
	color: #000 !important;
	border-color: #000 !important;
}
html.odk-a11y-contrast-light body a:not(.odk-a11y-root *) {
	color: #0033cc !important;
	font-weight: 700 !important;
}

html.odk-a11y-links a:not(.odk-a11y-root *) {
	text-decoration: underline !important;
	background: rgba(255, 214, 0, .35) !important;
	outline: 1px dashed currentColor;
}

html.odk-a11y-bigtext-l1 body { zoom: 1.12; }
html.odk-a11y-bigtext-l2 body { zoom: 1.28; }
html.odk-a11y-bigtext-l3 body { zoom: 1.5; }
html.odk-a11y-bigtext-l4 body { zoom: 1.75; }

html.odk-a11y-spacing-l1 body :not(.odk-a11y-root):not(.odk-a11y-root *) {
	letter-spacing: .03em !important;
	word-spacing: .08em !important;
}
html.odk-a11y-spacing-l2 body :not(.odk-a11y-root):not(.odk-a11y-root *) {
	letter-spacing: .07em !important;
	word-spacing: .18em !important;
}
html.odk-a11y-spacing-l3 body :not(.odk-a11y-root):not(.odk-a11y-root *) {
	letter-spacing: .12em !important;
	word-spacing: .3em !important;
}

html.odk-a11y-noanim *:not(.odk-a11y-root):not(.odk-a11y-root *) {
	animation: none !important;
	transition: none !important;
	scroll-behavior: auto !important;
}

html.odk-a11y-hideimages img:not(.odk-a11y-root img),
html.odk-a11y-hideimages svg:not(.odk-a11y-root svg),
html.odk-a11y-hideimages video {
	visibility: hidden !important;
}

html.odk-a11y-dyslexia-friendly body :not(.odk-a11y-root):not(.odk-a11y-root *) {
	font-family: Verdana, Tahoma, Arial, sans-serif !important;
	letter-spacing: .04em !important;
	word-spacing: .12em !important;
	line-height: 1.7 !important;
}
html.odk-a11y-dyslexia-legible body :not(.odk-a11y-root):not(.odk-a11y-root *) {
	font-family: Arial, Helvetica, sans-serif !important;
	font-weight: 500 !important;
}

html.odk-a11y-cursor-big,
html.odk-a11y-cursor-big * {
	cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24"><path d="M5 3l6 16 2.2-6.4L20 10.4 5 3z" fill="black" stroke="white" stroke-width="1.2"/></svg>') 4 4, auto !important;
}
.odk-a11y-mask-band {
	position: fixed;
	left: 0;
	right: 0;
	background: rgba(0,0,0,.75);
	z-index: 99997;
	pointer-events: none;
}
.odk-a11y-mask-band--top { top: 0; height: 0; }
.odk-a11y-mask-band--bottom { bottom: 0; top: auto; height: auto; }
.odk-a11y-guide-line {
	position: fixed;
	left: 0;
	right: 0;
	height: 3px;
	margin-top: -1.5px;
	background: #ffd166;
	box-shadow: 0 0 0 1px rgba(0,0,0,.35);
	z-index: 99997;
	pointer-events: none;
}

html.odk-a11y-tooltips [aria-label] {
	position: relative;
}
html.odk-a11y-tooltips [aria-label]:hover::after {
	content: attr(aria-label);
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 6px;
	background: #1f1a14;
	color: #fff;
	font-size: .72rem;
	font-weight: 600;
	padding: 5px 9px;
	border-radius: 6px;
	white-space: nowrap;
	z-index: 99998;
	pointer-events: none;
}

html.odk-a11y-lineheight-l1 body :not(.odk-a11y-root):not(.odk-a11y-root *) { line-height: 1.5 !important; }
html.odk-a11y-lineheight-l2 body :not(.odk-a11y-root):not(.odk-a11y-root *) { line-height: 1.75 !important; }
html.odk-a11y-lineheight-l3 body :not(.odk-a11y-root):not(.odk-a11y-root *) { line-height: 2 !important; }

html.odk-a11y-align-left body :not(.odk-a11y-root):not(.odk-a11y-root *) { text-align: left !important; }
html.odk-a11y-align-right body :not(.odk-a11y-root):not(.odk-a11y-root *) { text-align: right !important; }
html.odk-a11y-align-center body :not(.odk-a11y-root):not(.odk-a11y-root *) { text-align: center !important; }

html.odk-a11y-saturate-low body { filter: saturate(.45); }
html.odk-a11y-saturate-high body { filter: saturate(1.9); }
html.odk-a11y-saturate-gray body { filter: grayscale(1); }

.odk-a11y-root--right {
	left: auto;
	right: 18px;
}
.odk-a11y-root--right .odk-a11y-panel {
	left: auto;
	right: 18px;
}

@media (max-width: 480px) {
	.odk-a11y-root {
		left: 12px;
		bottom: 12px;
	}
	.odk-a11y-panel {
		left: 12px;
		right: 12px;
		width: auto;
	}
	.odk-a11y-root--right {
		left: auto;
		right: 12px;
	}
	.odk-a11y-root--right .odk-a11y-panel {
		left: 12px;
		right: 12px;
	}
}
