.aria5-a11y-widget {
	position: fixed;
	inset-block-end: max(22px, env(safe-area-inset-bottom));
	z-index: 82;
	font-family: Heebo, Assistant, Arial, sans-serif;
	direction: ltr;
}

.aria5-a11y-position-bottom-left {
	left: max(18px, env(safe-area-inset-left));
	right: auto;
}

.aria5-a11y-position-bottom-right {
	right: max(18px, env(safe-area-inset-right));
	left: auto;
}

.aria5-a11y-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	padding: 0;
	border: 1px solid rgba(53, 212, 255, 0.3);
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.18), rgba(44, 124, 255, 0.08)),
		rgba(7, 13, 25, 0.88);
	color: #35d4ff;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 16px 38px rgba(0, 0, 0, 0.28),
		0 0 28px rgba(53, 212, 255, 0.14);
	cursor: pointer;
	backdrop-filter: blur(14px);
}

.aria5-a11y-toggle:hover,
.aria5-a11y-toggle:focus-visible {
	border-color: rgba(53, 212, 255, 0.52);
	color: #ffffff;
	outline: 3px solid rgba(53, 212, 255, 0.22);
	outline-offset: 3px;
}

.aria5-a11y-toggle svg {
	display: block;
	width: 29px;
	height: 29px;
}

.aria5-a11y-panel {
	position: absolute;
	inset-block-end: calc(100% + 12px);
	width: min(300px, calc(100vw - 32px));
	max-height: min(620px, calc(100dvh - 110px));
	overflow-y: auto;
	padding: 14px;
	border: 1px solid rgba(53, 212, 255, 0.24);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.12), rgba(44, 124, 255, 0.045)),
		rgba(7, 13, 25, 0.96);
	color: #eef6ff;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 22px 60px rgba(0, 0, 0, 0.36),
		0 0 48px rgba(53, 212, 255, 0.14);
	backdrop-filter: blur(18px);
}

.aria5-a11y-position-bottom-left .aria5-a11y-panel {
	left: 0;
	right: auto;
}

.aria5-a11y-position-bottom-right .aria5-a11y-panel {
	right: 0;
	left: auto;
}

.aria5-a11y-lang-he .aria5-a11y-panel,
.aria5-a11y-lang-ar .aria5-a11y-panel {
	direction: rtl;
	text-align: right;
}

.aria5-a11y-lang-en .aria5-a11y-panel,
.aria5-a11y-lang-ru .aria5-a11y-panel {
	direction: ltr;
	text-align: left;
}

.aria5-a11y-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.aria5-a11y-panel__header h2 {
	margin: 0;
	color: #35d4ff;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.2;
}

.aria5-a11y-close {
	position: relative;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(53, 212, 255, 0.22);
	border-radius: 11px;
	background: rgba(53, 212, 255, 0.07);
	cursor: pointer;
}

.aria5-a11y-close:focus-visible,
.aria5-a11y-panel__actions button:focus-visible {
	outline: 3px solid rgba(53, 212, 255, 0.28);
	outline-offset: 2px;
}

.aria5-a11y-close span {
	position: absolute;
	inset-inline-start: 8px;
	inset-block-start: 15px;
	width: 16px;
	height: 2px;
	border-radius: 999px;
	background: #35d4ff;
}

.aria5-a11y-close span:first-child {
	transform: rotate(45deg);
}

.aria5-a11y-close span:last-child {
	transform: rotate(-45deg);
}

.aria5-a11y-panel__actions {
	display: grid;
	gap: 7px;
}

.aria5-a11y-panel__actions button {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	min-height: 42px;
	width: 100%;
	padding: 9px 10px;
	border: 1px solid rgba(53, 212, 255, 0.16);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.08), rgba(44, 124, 255, 0.035)),
		rgba(255, 255, 255, 0.035);
	color: #eef6ff;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: start;
	cursor: pointer;
}

.aria5-a11y-panel__actions button span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: rgba(53, 212, 255, 0.12);
	color: #35d4ff;
	font-size: 0.8rem;
	font-weight: 900;
}

.aria5-a11y-panel__actions button:hover,
.aria5-a11y-panel__actions button[aria-pressed="true"] {
	border-color: rgba(53, 212, 255, 0.42);
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.16), rgba(44, 124, 255, 0.07)),
		rgba(53, 212, 255, 0.08);
	color: #ffffff;
}

.aria5-a11y-panel__actions button[aria-pressed="true"] span {
	background: rgba(53, 212, 255, 0.22);
	color: #ffffff;
}

.aria5-a11y-panel__actions .aria5-a11y-reset {
	border-color: rgba(255, 255, 255, 0.14);
	color: rgba(238, 246, 255, 0.86);
}

html.theme-day .aria5-a11y-toggle,
html.theme-day .aria5-a11y-panel {
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(53, 212, 255, 0.05)),
		rgba(255, 255, 255, 0.94);
	color: #0f62fe;
	border-color: rgba(15, 98, 254, 0.2);
	box-shadow: 0 16px 40px rgba(24, 72, 130, 0.14);
}

html.theme-day .aria5-a11y-panel__header h2 {
	color: #0f62fe;
}

html.theme-day .aria5-a11y-close,
html.theme-day .aria5-a11y-panel__actions button {
	background: rgba(15, 98, 254, 0.06);
	border-color: rgba(15, 98, 254, 0.16);
	color: #071426;
}

html.theme-day .aria5-a11y-close span {
	background: #0f62fe;
}

html.theme-day .aria5-a11y-panel__actions button span {
	background: rgba(15, 98, 254, 0.1);
	color: #0f62fe;
}

html.theme-day .aria5-a11y-panel__actions button:hover,
html.theme-day .aria5-a11y-panel__actions button[aria-pressed="true"] {
	background: rgba(15, 98, 254, 0.12);
	border-color: rgba(15, 98, 254, 0.3);
	color: #071426;
}

.aria5-a11y-statement-footer-link {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 14px 20px max(14px, env(safe-area-inset-bottom));
	border-top: 1px solid rgba(53, 212, 255, 0.14);
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.08), rgba(44, 124, 255, 0.03)),
		rgba(7, 13, 25, 0.82);
	color: rgba(238, 246, 255, 0.86);
	font-family: Heebo, Assistant, Arial, sans-serif;
	font-size: 0.88rem;
	line-height: 1.4;
	text-align: center;
}

.aria5-a11y-statement-footer-link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 14px;
	border: 1px solid rgba(53, 212, 255, 0.18);
	border-radius: 999px;
	background: rgba(53, 212, 255, 0.06);
	color: #9eeaff;
	font-weight: 800;
	text-decoration: none;
}

.aria5-a11y-statement-footer-link a:hover,
.aria5-a11y-statement-footer-link a:focus-visible {
	border-color: rgba(53, 212, 255, 0.42);
	color: #ffffff;
	outline: 3px solid rgba(53, 212, 255, 0.2);
	outline-offset: 2px;
}

html.theme-day .aria5-a11y-statement-footer-link {
	border-top-color: rgba(15, 98, 254, 0.12);
	background: rgba(247, 251, 255, 0.92);
	color: #071426;
}

html.theme-day .aria5-a11y-statement-footer-link a {
	border-color: rgba(15, 98, 254, 0.18);
	background: rgba(15, 98, 254, 0.06);
	color: #0f62fe;
}

html.aria5-a11y-text-large {
	--aria5-a11y-font-scale: 1.14;
}

html.aria5-a11y-text-small {
	--aria5-a11y-font-scale: 0.9;
}

html.aria5-a11y-text-large body,
html.aria5-a11y-text-small body {
	font-size: calc(100% * var(--aria5-a11y-font-scale)) !important;
}

html.aria5-a11y-text-large p,
html.aria5-a11y-text-large li,
html.aria5-a11y-text-large a,
html.aria5-a11y-text-large button,
html.aria5-a11y-text-large input,
html.aria5-a11y-text-large select,
html.aria5-a11y-text-large textarea,
html.aria5-a11y-text-large label,
html.aria5-a11y-text-large small,
html.aria5-a11y-text-large figcaption,
html.aria5-a11y-text-large .arena5-home-section__header p,
html.aria5-a11y-text-large .arena5-home-category-card small,
html.aria5-a11y-text-large .arena5-home-workflow-card p,
html.aria5-a11y-text-large .arena5-home-product-card h3,
html.aria5-a11y-text-large .arena5-home-product-card__price,
html.aria5-a11y-text-large .arena5-footer-contact-action strong,
html.aria5-a11y-text-small p,
html.aria5-a11y-text-small li,
html.aria5-a11y-text-small a,
html.aria5-a11y-text-small button,
html.aria5-a11y-text-small input,
html.aria5-a11y-text-small select,
html.aria5-a11y-text-small textarea,
html.aria5-a11y-text-small label,
html.aria5-a11y-text-small small,
html.aria5-a11y-text-small figcaption,
html.aria5-a11y-text-small .arena5-home-section__header p,
html.aria5-a11y-text-small .arena5-home-category-card small,
html.aria5-a11y-text-small .arena5-home-workflow-card p,
html.aria5-a11y-text-small .arena5-home-product-card h3,
html.aria5-a11y-text-small .arena5-home-product-card__price,
html.aria5-a11y-text-small .arena5-footer-contact-action strong {
	font-size: calc(1em * var(--aria5-a11y-font-scale)) !important;
}

html.aria5-a11y-grayscale {
	filter: grayscale(1);
}

html.aria5-a11y-high-contrast body {
	background: #000000 !important;
	color: #ffffff !important;
}

html.aria5-a11y-high-contrast a {
	color: #00e5ff !important;
}

html.aria5-a11y-high-contrast button,
html.aria5-a11y-high-contrast input,
html.aria5-a11y-high-contrast select,
html.aria5-a11y-high-contrast textarea {
	border-color: #ffffff !important;
}

html.aria5-a11y-invert-contrast {
	filter: invert(1) hue-rotate(180deg);
	background: #ffffff !important;
}

html.aria5-a11y-invert-contrast img,
html.aria5-a11y-invert-contrast video,
html.aria5-a11y-invert-contrast svg,
html.aria5-a11y-invert-contrast iframe,
html.aria5-a11y-invert-contrast .aria5-a11y-widget {
	filter: invert(1) hue-rotate(180deg);
}

html.aria5-a11y-light-background body,
html.aria5-a11y-light-background .arena5-site-main,
html.aria5-a11y-light-background .arena5-home {
	background: #f7fbff !important;
	color: #071426 !important;
}

html.aria5-a11y-light-background a {
	color: #064bd8 !important;
}

html.aria5-a11y-light-background p,
html.aria5-a11y-light-background li,
html.aria5-a11y-light-background h1,
html.aria5-a11y-light-background h2,
html.aria5-a11y-light-background h3,
html.aria5-a11y-light-background h4,
html.aria5-a11y-light-background h5,
html.aria5-a11y-light-background h6,
html.aria5-a11y-light-background button,
html.aria5-a11y-light-background label,
html.aria5-a11y-light-background small {
	color: #071426 !important;
}

html.aria5-a11y-underline-links a {
	text-decoration: underline !important;
	text-decoration-thickness: 0.12em !important;
	text-underline-offset: 0.18em !important;
}

html.aria5-a11y-readable-font body,
html.aria5-a11y-readable-font button,
html.aria5-a11y-readable-font input,
html.aria5-a11y-readable-font select,
html.aria5-a11y-readable-font textarea {
	font-family: Arial, Heebo, Assistant, sans-serif !important;
	letter-spacing: normal !important;
}

html.aria5-a11y-reduce-motion *,
html.aria5-a11y-reduce-motion *::before,
html.aria5-a11y-reduce-motion *::after {
	scroll-behavior: auto !important;
	animation-duration: 0.001ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.001ms !important;
}

@media (prefers-reduced-motion: reduce) {
	.aria5-a11y-toggle,
	.aria5-a11y-panel,
	.aria5-a11y-panel * {
		transition-duration: 0.001ms !important;
	}
}

@media (max-width: 430px) {
	.aria5-a11y-widget {
		inset-block-end: max(16px, env(safe-area-inset-bottom));
	}

	.aria5-a11y-position-bottom-left {
		left: max(12px, env(safe-area-inset-left));
		right: auto;
	}

	.aria5-a11y-position-bottom-right {
		right: max(12px, env(safe-area-inset-right));
		left: auto;
	}

	.aria5-a11y-toggle {
		width: 50px;
		height: 50px;
	}

	.aria5-a11y-toggle svg {
		width: 27px;
		height: 27px;
	}

	.aria5-a11y-panel {
		width: min(300px, calc(100vw - 24px));
		padding: 12px;
		border-radius: 16px;
	}
}
