#bee1-accessibility-toolbar {
	--bee1-a11y-accent: #0f766e;
	--bee1-a11y-text: #111827;
	--bee1-a11y-muted: #6b7280;
	--bee1-a11y-border: #d1d5db;
	--bee1-a11y-surface: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.45;
	position: relative;
	z-index: 99998;
}

#bee1-accessibility-toolbar *,
#bee1-accessibility-toolbar *::before,
#bee1-accessibility-toolbar *::after {
	box-sizing: border-box;
}

.bee1-a11y-toggle,
.bee1-a11y-panel {
	position: fixed;
	z-index: 99998;
}

.bee1-a11y-toggle {
	align-items: center;
	background: var(--bee1-a11y-accent);
	border: 0;
	border-radius: 0 999px 999px 0;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.24);
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	height: 48px;
	justify-content: center;
	padding: 0;
	width: 48px;
	transition: left 220ms ease, right 220ms ease, transform 160ms ease;
}

.bee1-a11y-toggle:hover {
	transform: translateY(-1px);
}

.bee1-a11y-toggle svg {
	display: block;
	fill: currentColor;
	height: 25px;
	width: 25px;
}

.bee1-a11y-panel {
	background: var(--bee1-a11y-surface);
	border: 1px solid rgba(17, 24, 39, 0.12);
	border-radius: 0 8px 8px 0;
	box-shadow: 0 18px 46px rgba(17, 24, 39, 0.24);
	color: var(--bee1-a11y-text);
	display: block;
	max-height: min(620px, calc(100vh - 32px));
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transition: opacity 180ms ease, transform 220ms ease;
	width: 320px;
}

.bee1-a11y-panel.is-open {
	opacity: 1;
	pointer-events: auto;
}

.bee1-a11y-pos-bottom-left {
	bottom: 20px;
	left: 20px;
}

.bee1-a11y-panel.bee1-a11y-pos-bottom-left {
	bottom: 78px;
}

.bee1-a11y-pos-bottom-right {
	bottom: 20px;
	right: 20px;
}

.bee1-a11y-panel.bee1-a11y-pos-bottom-right {
	bottom: 78px;
}

.bee1-a11y-pos-middle-left {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.bee1-a11y-panel.bee1-a11y-pos-middle-left {
	left: 0;
	transform: translate(calc(-100% - 8px), -50%);
}

.bee1-a11y-panel.bee1-a11y-pos-middle-left.is-open {
	transform: translate(0, -50%);
}

#bee1-accessibility-toolbar.is-open .bee1-a11y-toggle.bee1-a11y-pos-middle-left {
	left: 320px;
}

.bee1-a11y-pos-middle-right {
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.bee1-a11y-toggle.bee1-a11y-pos-middle-right,
.bee1-a11y-toggle.bee1-a11y-pos-bottom-right,
.bee1-a11y-toggle.bee1-a11y-pos-top-right {
	border-radius: 999px 0 0 999px;
}

.bee1-a11y-panel.bee1-a11y-pos-middle-right {
	border-radius: 8px 0 0 8px;
	right: 0;
	transform: translate(calc(100% + 8px), -50%);
}

.bee1-a11y-panel.bee1-a11y-pos-middle-right.is-open {
	transform: translate(0, -50%);
}

#bee1-accessibility-toolbar.is-open .bee1-a11y-toggle.bee1-a11y-pos-middle-right {
	right: 320px;
}

.bee1-a11y-pos-top-left {
	left: 20px;
	top: 20px;
}

.bee1-a11y-panel.bee1-a11y-pos-top-left {
	top: 78px;
}

.bee1-a11y-pos-top-right {
	right: 20px;
	top: 20px;
}

.bee1-a11y-panel.bee1-a11y-pos-top-right {
	top: 78px;
}

.bee1-a11y-panel__header {
	align-items: center;
	background: var(--bee1-a11y-accent);
	color: #ffffff !important;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 12px 14px;
}

.bee1-a11y-panel__title {
	align-items: center;
	color: #ffffff !important;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	gap: 8px;
	line-height: 1.2;
	margin: 0;
}

.bee1-a11y-panel__title span {
	color: #ffffff !important;
}

.bee1-a11y-panel__title svg {
	fill: currentColor;
	height: 20px;
	width: 20px;
}

.bee1-a11y-panel__close {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 6px;
	color: #ffffff !important;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	min-height: 32px;
	padding: 5px 9px;
}

#bee1-accessibility-toolbar .bee1-a11y-panel__header,
#bee1-accessibility-toolbar .bee1-a11y-panel__header .bee1-a11y-panel__title,
#bee1-accessibility-toolbar .bee1-a11y-panel__header .bee1-a11y-panel__title span,
#bee1-accessibility-toolbar .bee1-a11y-panel__header .bee1-a11y-panel__close {
	color: #ffffff !important;
}

#bee1-accessibility-toolbar .bee1-a11y-panel__header svg,
#bee1-accessibility-toolbar .bee1-a11y-panel__header svg * {
	color: #ffffff !important;
	fill: currentColor !important;
	stroke: currentColor !important;
}

.bee1-a11y-panel__body {
	display: grid;
	gap: 10px;
	max-height: calc(100vh - 130px);
	overflow-y: auto;
	padding: 12px;
}

.bee1-a11y-row,
.bee1-a11y-tool {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--bee1-a11y-border);
	border-radius: 8px;
	color: var(--bee1-a11y-text);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	min-height: 44px;
	padding: 9px 10px;
	width: 100%;
}

.bee1-a11y-row {
	align-items: stretch;
	flex-direction: column;
}

.bee1-a11y-label {
	align-items: center;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
}

.bee1-a11y-label svg,
.bee1-a11y-tool svg {
	fill: currentColor;
	height: 18px;
	width: 18px;
}

.bee1-a11y-font-controls {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.bee1-a11y-font-controls button,
.bee1-a11y-contrast-controls button,
.bee1-a11y-tool,
.bee1-a11y-reset {
	cursor: pointer;
	font-family: inherit;
}

.bee1-a11y-font-controls button,
.bee1-a11y-contrast-controls button {
	background: #f9fafb;
	border: 1px solid var(--bee1-a11y-border);
	border-radius: 6px;
	color: var(--bee1-a11y-text);
	font-size: 13px;
	font-weight: 700;
	min-height: 34px;
	padding: 6px;
}

.bee1-a11y-font-size-value {
	align-items: center;
	color: var(--bee1-a11y-muted);
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	justify-content: center;
}

.bee1-a11y-contrast-controls button.is-active,
.bee1-a11y-tool.is-active {
	background: #ecfdf5;
	border-color: var(--bee1-a11y-accent);
	color: var(--bee1-a11y-text);
}

.bee1-a11y-tool {
	text-align: start;
}

.bee1-a11y-tool__status {
	background: #d1d5db;
	border-radius: 999px;
	flex: 0 0 auto;
	height: 10px;
	width: 10px;
}

.bee1-a11y-tool.is-active .bee1-a11y-tool__status {
	background: var(--bee1-a11y-accent);
}

.bee1-a11y-reset {
	background: #111827;
	border: 0;
	border-radius: 8px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	min-height: 40px;
	padding: 9px 12px;
	width: 100%;
}

.bee1-a11y-reading-guide {
	background: var(--bee1-a11y-accent);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
	height: 4px;
	left: 0;
	opacity: 0.78;
	pointer-events: none;
	position: fixed;
	top: 50%;
	width: 100%;
	z-index: 99997;
}

html.bee1-a11y-high-contrast body > *:not(#bee1-accessibility-toolbar) {
	filter: contrast(1.28) saturate(1.08);
}

html.bee1-a11y-negative-contrast body > *:not(#bee1-accessibility-toolbar),
html.bee1-a11y-negative-contrast body > *:not(#bee1-accessibility-toolbar) * {
	background: #000000 !important;
	border-color: #ffffff !important;
	color: #ffff00 !important;
}

html.bee1-a11y-negative-contrast body > *:not(#bee1-accessibility-toolbar) a,
html.bee1-a11y-negative-contrast body > *:not(#bee1-accessibility-toolbar) a * {
	color: #80ffff !important;
}

html.bee1-a11y-light-background body > *:not(#bee1-accessibility-toolbar),
html.bee1-a11y-light-background body > *:not(#bee1-accessibility-toolbar) * {
	background: #ffffff !important;
	color: #000000 !important;
}

body.bee1-a11y-grayscale > *:not(#bee1-accessibility-toolbar) {
	filter: grayscale(1) !important;
}

body.bee1-a11y-underline-links a,
body.bee1-a11y-underline-links a * {
	text-decoration: underline !important;
}

body.bee1-a11y-readable-font,
body.bee1-a11y-readable-font *:not(i):not(svg):not(path) {
	font-family: Arial, Helvetica, sans-serif !important;
}

body.bee1-a11y-spacing p,
body.bee1-a11y-spacing li,
body.bee1-a11y-spacing label,
body.bee1-a11y-spacing input,
body.bee1-a11y-spacing textarea {
	letter-spacing: 0.06em !important;
	line-height: 1.85 !important;
	word-spacing: 0.12em !important;
}

body.bee1-a11y-pause-motion *,
body.bee1-a11y-pause-motion *::before,
body.bee1-a11y-pause-motion *::after {
	animation-duration: 0s !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0s !important;
}

body.bee1-a11y-big-cursor,
body.bee1-a11y-big-cursor * {
	cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M4 1l21 20h-10l-4 10z' fill='%23000' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E") 4 1, auto !important;
}

body.bee1-a11y-hide-images img,
body.bee1-a11y-hide-images picture,
body.bee1-a11y-hide-images video {
	visibility: hidden !important;
}

#bee1-accessibility-toolbar,
#bee1-accessibility-toolbar * {
	filter: none;
	font-family: Arial, Helvetica, sans-serif !important;
	letter-spacing: 0 !important;
	line-height: 1.45;
	text-transform: none;
	word-spacing: normal !important;
}

@media (max-width: 520px) {
	.bee1-a11y-toggle {
		height: 46px;
		width: 46px;
	}

	.bee1-a11y-panel {
		left: 12px !important;
		right: 12px !important;
		top: auto !important;
		bottom: 72px !important;
		max-height: calc(100vh - 88px);
		transform: none !important;
		width: auto;
	}

	.bee1-a11y-pos-bottom-left,
	.bee1-a11y-pos-middle-left,
	.bee1-a11y-pos-top-left {
		left: 0;
	}

	#bee1-accessibility-toolbar.is-open .bee1-a11y-toggle.bee1-a11y-pos-middle-left {
		left: 0;
	}

	.bee1-a11y-pos-bottom-right,
	.bee1-a11y-pos-middle-right,
	.bee1-a11y-pos-top-right {
		right: 0;
	}

	#bee1-accessibility-toolbar.is-open .bee1-a11y-toggle.bee1-a11y-pos-middle-right {
		right: 0;
	}
}
