/* STUDIO76 Consent Manager frontend.
 *
 * The UI is moved into an open Shadow DOM at runtime so WordPress theme
 * styles cannot reach it. This file is loaded both in the document
 * (fallback before JS) and inside the shadow root.
 * Colors and geometry come from admin CSS variables on .s76cm-root.
 * --s76cm-font-family is the isolation hook for a future “use theme font” setting;
 * the default remains the STUDIO76 system stack below.
 */

:host {
	all: initial;
	display: block;
	position: relative;
	z-index: 2147483000;
	width: 0;
	height: 0;
	overflow: visible;
	font-size: 16px;
	line-height: 1.5;
	color: #1a1a1a;
}

#s76cm-root[data-s76cm-host] {
	display: block;
	position: relative;
	z-index: 2147483000;
	width: 0;
	height: 0;
	overflow: visible;
}

.s76cm-root,
.s76cm-root *,
.s76cm-root *::before,
.s76cm-root *::after {
	box-sizing: border-box;
}

.s76cm-root {
	--s76cm-font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	--s76cm-primary: #062a57;
	--s76cm-primary-hover: #08356d;
	--s76cm-primary-soft: #e6eaee;
	--s76cm-background: #ffffff;
	--s76cm-bg: #ffffff;
	--s76cm-text: #1a1a1a;
	--s76cm-muted: #4a4a4a;
	--s76cm-overlay: rgba(0, 0, 0, 0.45);
	--s76cm-border: #e5e5e5;
	--s76cm-track: #cfd6de;
	--s76cm-badge: #ececec;
	--s76cm-radius: 4px;
	--s76cm-modal-width: 900px;
	--s76cm-fab-size: 46px;
	--s76cm-fab-offset-y-desktop: 0px;
	--s76cm-fab-offset-y-mobile: 0px;
	--s76cm-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
	--s76cm-focus: 0 0 0 3px rgba(6, 42, 87, 0.28);
	-webkit-font-smoothing: antialiased;
	display: block;
	width: auto;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: var(--s76cm-font-family);
	font-style: normal;
	font-variant: normal;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: normal;
	text-transform: none;
	text-indent: 0;
	text-shadow: none;
	color: var(--s76cm-text);
}

.s76cm-root * {
	font-family: inherit;
	font-style: inherit;
	font-variant: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	text-indent: 0;
	text-shadow: none;
}

.s76cm-root input,
.s76cm-root select,
.s76cm-root textarea {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	font-style: normal;
	line-height: 1.4;
	letter-spacing: normal;
	text-transform: none;
	text-shadow: none;
	color: inherit;
	background-color: var(--s76cm-background, var(--s76cm-bg));
	background-image: none;
	box-shadow: none;
	border: 1px solid var(--s76cm-border);
	border-radius: var(--s76cm-radius);
}

.s76cm-root input[type="checkbox"],
.s76cm-root input[type="radio"] {
	border: initial;
	border-radius: initial;
	background: initial;
	box-shadow: none;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-engine-root,
.s76cm-root .s76cm-engine-root #cc-main {
	display: none !important;
	visibility: hidden !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
	position: absolute !important;
}

.s76cm-root .s76cm-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.s76cm-root .s76cm-overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 16px;
	background: var(--s76cm-overlay);
	overflow: hidden;
	font-family: var(--s76cm-font-family);
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-overlay[hidden] {
	display: none;
}

.s76cm-root .s76cm-modal {
	width: calc(100% - 32px);
	max-width: var(--s76cm-modal-width, 900px);
	max-height: min(720px, calc(100vh - 80px));
	display: flex;
	flex-direction: column;
	background: var(--s76cm-background, var(--s76cm-bg));
	color: var(--s76cm-text);
	border-radius: var(--s76cm-radius);
	box-shadow: var(--s76cm-shadow);
	outline: none;
	overflow: hidden;
	min-width: 0;
	font-family: var(--s76cm-font-family);
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-modal:focus,
.s76cm-root .s76cm-modal:focus-visible {
	outline: none;
	box-shadow: var(--s76cm-shadow);
}

.s76cm-root .s76cm-modal__header {
	flex: 0 0 auto;
	padding: 0;
	background: var(--s76cm-background, var(--s76cm-bg));
	border-bottom: 1px solid var(--s76cm-border);
}

.s76cm-root .s76cm-modal__title {
	margin: 0;
	font-family: inherit;
	font-style: normal;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
	text-shadow: none;
}

.s76cm-root .s76cm-tabs {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	margin: 0;
}

.s76cm-root .s76cm-tab {
	-webkit-appearance: none;
	appearance: none;
	flex: 1 1 0;
	width: 33.333%;
	min-width: 0;
	margin: 0;
	padding: 28px 8px;
	border: 0;
	border-bottom: 3px solid transparent;
	border-radius: 0;
	background: transparent;
	background-image: none;
	box-shadow: none;
	color: var(--s76cm-text);
	font-family: inherit;
	font-style: normal;
	font-variant: normal;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	text-shadow: none;
	text-align: center;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.s76cm-root .s76cm-tab.is-active {
	color: var(--s76cm-primary);
	border-bottom-color: var(--s76cm-primary);
	background: transparent;
	background-image: none;
	box-shadow: none;
}

.s76cm-root .s76cm-tab:hover,
.s76cm-root .s76cm-tab:active,
.s76cm-root .s76cm-tab:focus {
	background: transparent;
	background-image: none;
	box-shadow: none;
	color: var(--s76cm-text);
	border: 0;
	border-bottom: 3px solid transparent;
	border-radius: 0;
	outline: none;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	text-shadow: none;
}

.s76cm-root .s76cm-tab.is-active:hover,
.s76cm-root .s76cm-tab.is-active:active,
.s76cm-root .s76cm-tab.is-active:focus {
	color: var(--s76cm-primary);
	border-bottom-color: var(--s76cm-primary);
	background: transparent;
	background-image: none;
}

.s76cm-root .s76cm-modal--consent .s76cm-modal__header {
	border-bottom: 0;
}

.s76cm-root .s76cm-modal--consent .s76cm-actions {
	border-top: 0;
}

.s76cm-root .s76cm-tab__label--short {
	display: none;
}

.s76cm-root .s76cm-tab:focus {
	outline: none;
}

.s76cm-root .s76cm-tab:focus-visible,
.s76cm-root .s76cm-button:focus-visible,
.s76cm-root .s76cm-switch:focus-visible,
.s76cm-root .s76cm-category__toggle:focus-visible,
.s76cm-root .s76cm-details-link:focus-visible,
.s76cm-root .s76cm-popover__close:focus-visible,
.s76cm-root .s76cm-fab:focus-visible,
.s76cm-root .s76cm-link:focus-visible {
	outline: none;
	box-shadow: var(--s76cm-focus);
}

.s76cm-root .s76cm-modal__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.s76cm-root .s76cm-panel {
	display: none;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.s76cm-root .s76cm-panel.is-active {
	display: flex;
}

.s76cm-root .s76cm-panel__content {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding: 20px 24px;
}

.s76cm-root .s76cm-heading {
	margin: 0 0 10px;
	color: var(--s76cm-text);
	font-family: inherit;
	font-style: normal;
	font-variant: normal;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
	text-indent: 0;
	text-shadow: none;
}

.s76cm-root .s76cm-copy,
.s76cm-root .s76cm-prose,
.s76cm-root .s76cm-category__description,
.s76cm-root .s76cm-category__details,
.s76cm-root .s76cm-empty {
	margin: 0;
	color: var(--s76cm-muted);
	font-family: inherit;
	font-style: normal;
	font-variant: normal;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: normal;
	text-transform: none;
	text-indent: 0;
	text-shadow: none;
}

.s76cm-root .s76cm-prose .s76cm-copy,
.s76cm-root .s76cm-prose p {
	margin: 0 0 12px;
	font-family: inherit;
	font-style: normal;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: normal;
	text-transform: none;
	text-indent: 0;
	text-shadow: none;
	color: var(--s76cm-muted);
}

.s76cm-root .s76cm-prose p:last-child {
	margin-bottom: 0;
}

.s76cm-root .s76cm-link {
	color: var(--s76cm-primary);
	font-family: inherit;
	font-weight: 600;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: underline;
	text-shadow: none;
	box-shadow: none;
	background: transparent;
	background-image: none;
}

.s76cm-root .s76cm-link:hover,
.s76cm-root .s76cm-link:active,
.s76cm-root .s76cm-link:focus {
	color: var(--s76cm-primary);
	text-decoration: underline;
	text-transform: none;
	letter-spacing: normal;
	background: transparent;
	background-image: none;
	box-shadow: none;
}

.s76cm-root .s76cm-link:focus-visible {
	box-shadow: var(--s76cm-focus);
}

.s76cm-root .s76cm-actions {
	flex: 0 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	padding: 18px 22px;
	background: var(--s76cm-background, var(--s76cm-bg));
	border-top: 1px solid var(--s76cm-border);
}

.s76cm-root .s76cm-button {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	width: 280px;
	max-width: 100%;
	margin: 0;
	padding: 10px 16px;
	border-radius: 4px;
	border: 2px solid transparent;
	background: transparent;
	background-image: none;
	box-shadow: none;
	color: inherit;
	font-family: inherit;
	font-style: normal;
	font-variant: normal;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	text-shadow: none;
	text-align: center;
	cursor: pointer;
}

.s76cm-root .s76cm-button--primary {
	background: var(--s76cm-primary);
	background-image: none;
	border-color: var(--s76cm-primary);
	color: #fff;
	box-shadow: none;
}

.s76cm-root .s76cm-button--primary:hover,
.s76cm-root .s76cm-button--primary:active {
	background: var(--s76cm-primary-hover);
	background-image: none;
	border: 2px solid var(--s76cm-primary-hover);
	border-radius: 4px;
	color: #fff;
	box-shadow: none;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	text-shadow: none;
	outline: none;
}

.s76cm-root .s76cm-button--primary:focus {
	background: var(--s76cm-primary);
	background-image: none;
	border: 2px solid var(--s76cm-primary);
	border-radius: 4px;
	color: #fff;
	box-shadow: none;
	outline: none;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
}

.s76cm-root .s76cm-button--primary:focus-visible {
	background: var(--s76cm-primary);
	background-image: none;
	border-color: var(--s76cm-primary);
	color: #fff;
	outline: none;
	box-shadow: var(--s76cm-focus);
}

.s76cm-root .s76cm-button--primary:hover:focus-visible,
.s76cm-root .s76cm-button--primary:active:focus-visible {
	background: var(--s76cm-primary-hover);
	border-color: var(--s76cm-primary-hover);
	color: #fff;
	box-shadow: var(--s76cm-focus);
}

.s76cm-root .s76cm-button--secondary {
	background: var(--s76cm-background, #fff);
	background-image: none;
	border-color: var(--s76cm-primary);
	color: var(--s76cm-primary);
	box-shadow: none;
}

.s76cm-root .s76cm-button--secondary:hover,
.s76cm-root .s76cm-button--secondary:active {
	background: var(--s76cm-primary-soft);
	background-image: none;
	border: 2px solid var(--s76cm-primary);
	border-radius: 4px;
	color: var(--s76cm-primary);
	box-shadow: none;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	text-shadow: none;
	outline: none;
}

.s76cm-root .s76cm-button--secondary:focus {
	background: var(--s76cm-background, #fff);
	background-image: none;
	border: 2px solid var(--s76cm-primary);
	border-radius: 4px;
	color: var(--s76cm-primary);
	box-shadow: none;
	outline: none;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
}

.s76cm-root .s76cm-button--secondary:focus-visible {
	background: var(--s76cm-background, #fff);
	background-image: none;
	border-color: var(--s76cm-primary);
	color: var(--s76cm-primary);
	outline: none;
	box-shadow: var(--s76cm-focus);
}

.s76cm-root .s76cm-button--secondary:hover:focus-visible,
.s76cm-root .s76cm-button--secondary:active:focus-visible {
	background: var(--s76cm-primary-soft);
	border-color: var(--s76cm-primary);
	color: var(--s76cm-primary);
	box-shadow: var(--s76cm-focus);
}

.s76cm-root .s76cm-actions--triple .s76cm-button {
	width: auto;
	flex: 1 1 0;
	min-width: 0;
}

.s76cm-root .s76cm-categories {
	display: flex;
	flex-direction: column;
	margin: -4px 0;
}

.s76cm-root .s76cm-category {
	display: block;
	width: auto;
	max-width: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid var(--s76cm-border);
}

.s76cm-root .s76cm-category:first-child {
	border-top: 1px solid var(--s76cm-border);
}

.s76cm-root .s76cm-category__row {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 4px 0 2px;
}

.s76cm-root .s76cm-category__toggle {
	-webkit-appearance: none;
	appearance: none;
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
	margin: 0;
	min-height: 48px;
	padding: 14px 4px 14px 2px;
	border: 0;
	border-radius: 0;
	background: transparent;
	background-image: none;
	box-shadow: none;
	color: var(--s76cm-text);
	font-family: inherit;
	font-style: normal;
	font-variant: normal;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	text-shadow: none;
	text-align: left;
	cursor: pointer;
}

.s76cm-root .s76cm-category__toggle:hover,
.s76cm-root .s76cm-category__toggle:active,
.s76cm-root .s76cm-category__toggle:focus {
	background: transparent;
	background-image: none;
	box-shadow: none;
	border: 0;
	color: var(--s76cm-text);
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	outline: none;
}

.s76cm-root .s76cm-category__name {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
	font-family: inherit;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-category__chevron {
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	margin: 0 4px 0 2px;
	border-right: 1.5px solid var(--s76cm-text);
	border-bottom: 1.5px solid var(--s76cm-text);
	transform: rotate(-45deg);
	transition: transform 0.16s ease;
}

.s76cm-root .s76cm-category__toggle[aria-expanded="true"] .s76cm-category__chevron {
	transform: rotate(45deg);
}

.s76cm-root .s76cm-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--s76cm-badge);
	color: #555;
	font-family: inherit;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-category__lock {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 36px;
	height: 20px;
	color: var(--s76cm-primary);
}

.s76cm-root .s76cm-category__lock-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.s76cm-root .s76cm-category__panel {
	padding: 0 8px 16px 20px;
}

.s76cm-root .s76cm-category__description {
	margin-bottom: 8px;
	color: var(--s76cm-muted);
}

.s76cm-root .s76cm-category__details,
.s76cm-root .s76cm-empty {
	margin-top: 8px;
	font-size: 14px;
}

.s76cm-root .s76cm-switch {
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	width: 36px;
	height: 20px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--s76cm-track);
	background-image: none;
	box-shadow: none;
	cursor: pointer;
	flex: 0 0 auto;
	flex-shrink: 0;
	font-family: inherit;
	letter-spacing: normal;
	text-transform: none;
	text-shadow: none;
}

.s76cm-root .s76cm-switch:hover,
.s76cm-root .s76cm-switch:active,
.s76cm-root .s76cm-switch:focus {
	background: var(--s76cm-track);
	background-image: none;
	border: 0;
	box-shadow: none;
	outline: none;
}

.s76cm-root .s76cm-switch.is-on {
	background: var(--s76cm-primary);
	background-image: none;
}

.s76cm-root .s76cm-switch.is-on:hover,
.s76cm-root .s76cm-switch.is-on:active,
.s76cm-root .s76cm-switch.is-on:focus {
	background: var(--s76cm-primary);
	background-image: none;
	border: 0;
	box-shadow: none;
}

.s76cm-root .s76cm-switch.is-locked {
	cursor: not-allowed;
}

.s76cm-root .s76cm-switch__track {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	transition: transform 0.16s ease;
}

.s76cm-root .s76cm-switch.is-on .s76cm-switch__track {
	transform: translateX(16px);
}

.s76cm-root .s76cm-table-wrap {
	margin-top: 12px;
	overflow-x: auto;
}

.s76cm-root .s76cm-service {
	margin: 12px 0 0;
	padding: 10px 0 0;
	border-top: 1px solid var(--s76cm-border);
}

.s76cm-root .s76cm-service:first-child {
	margin-top: 8px;
}

.s76cm-root .s76cm-service__name {
	margin: 0 0 6px;
	color: var(--s76cm-text);
	font-family: inherit;
	font-style: normal;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
	text-shadow: none;
}

.s76cm-root .s76cm-service__meta {
	display: grid;
	gap: 4px 12px;
	margin: 0 0 8px;
}

.s76cm-root .s76cm-service__meta div {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 8px;
	margin: 0;
	font-size: 13px;
}

.s76cm-root .s76cm-service__meta dt {
	margin: 0;
	color: var(--s76cm-text);
	font-family: inherit;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-service__meta dd {
	margin: 0;
	color: var(--s76cm-muted);
	font-family: inherit;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-service__description {
	margin: 0 0 8px;
	color: var(--s76cm-muted);
	font-family: inherit;
	font-size: 13px;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-service__cookies {
	list-style: none;
	margin: 0;
	padding: 0;
}

.s76cm-root .s76cm-service__cookies li {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	padding: 6px 0;
	border-top: 1px solid var(--s76cm-border);
	font-size: 13px;
	color: var(--s76cm-muted);
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-service__cookies code {
	color: var(--s76cm-text);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	font-family: inherit;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-table th,
.s76cm-root .s76cm-table td {
	padding: 8px 6px;
	border-bottom: 1px solid var(--s76cm-border);
	text-align: left;
	vertical-align: top;
	font-family: inherit;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-table th {
	color: var(--s76cm-text);
	font-size: 12px;
	font-weight: 700;
}

.s76cm-root .s76cm-floating {
	position: fixed;
	left: 16px;
	bottom: calc(16px + var(--s76cm-fab-offset-y-desktop, 0px));
	z-index: 2147482990;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	font-family: var(--s76cm-font-family);
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-floating[hidden] {
	display: none;
}

.s76cm-root .s76cm-floating--bottom-right {
	left: auto;
	right: 16px;
	align-items: flex-end;
}

.s76cm-root .s76cm-fab {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--s76cm-fab-size, 46px);
	height: var(--s76cm-fab-size, 46px);
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--s76cm-primary);
	background-image: none;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
	cursor: pointer;
	font-family: inherit;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	text-shadow: none;
}

.s76cm-root .s76cm-fab:hover,
.s76cm-root .s76cm-fab:active,
.s76cm-root .s76cm-fab[aria-expanded="true"] {
	background: var(--s76cm-primary-hover);
	background-image: none;
	border: 0;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	outline: none;
}

.s76cm-root .s76cm-fab:focus {
	background: var(--s76cm-primary);
	background-image: none;
	border: 0;
	outline: none;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.s76cm-root .s76cm-fab:focus-visible,
.s76cm-root .s76cm-fab:hover:focus-visible,
.s76cm-root .s76cm-fab[aria-expanded="true"]:focus-visible {
	box-shadow: var(--s76cm-focus), 0 4px 14px rgba(0, 0, 0, 0.16);
}

.s76cm-root .s76cm-fab__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.s76cm-root .s76cm-popover {
	display: flex;
	flex-direction: column;
	width: min(392px, calc(100vw - 24px));
	max-width: 400px;
	background: var(--s76cm-background, var(--s76cm-bg));
	border: 1px solid var(--s76cm-border);
	border-radius: var(--s76cm-radius);
	box-shadow: var(--s76cm-shadow);
	overflow: hidden;
	font-family: var(--s76cm-font-family);
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-popover[hidden] {
	display: none;
}

.s76cm-root .s76cm-popover__header {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--s76cm-border);
}

.s76cm-root .s76cm-popover__title {
	margin: 0;
	color: var(--s76cm-text);
	font-family: inherit;
	font-style: normal;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
	text-shadow: none;
}

.s76cm-root .s76cm-popover__close {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	background-image: none;
	box-shadow: none;
	color: var(--s76cm-muted);
	font-family: inherit;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	text-shadow: none;
	cursor: pointer;
}

.s76cm-root .s76cm-popover__close:hover,
.s76cm-root .s76cm-popover__close:active,
.s76cm-root .s76cm-popover__close:focus {
	background: transparent;
	background-image: none;
	border: 0;
	box-shadow: none;
	color: var(--s76cm-text);
	outline: none;
	text-decoration: none;
	text-transform: none;
}

.s76cm-root .s76cm-popover__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 14px 16px 8px;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.s76cm-root .s76cm-popover__heading {
	margin: 0 0 10px;
	color: var(--s76cm-text);
	font-family: inherit;
	font-style: normal;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
	text-shadow: none;
}

.s76cm-root .s76cm-status {
	list-style: none;
	margin: 0;
	padding: 0;
}

.s76cm-root .s76cm-status__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 7px 0;
	font-size: 14px;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-status__label {
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
}

.s76cm-root .s76cm-status__value {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	color: var(--s76cm-muted);
}

.s76cm-root .s76cm-status__icon {
	display: none;
}

.s76cm-root .s76cm-status__value.is-locked .s76cm-status__icon--lock,
.s76cm-root .s76cm-status__value.is-active .s76cm-status__icon--on,
.s76cm-root .s76cm-status__value.is-inactive .s76cm-status__icon--off {
	display: inline-flex;
}

.s76cm-root .s76cm-status__value.is-locked,
.s76cm-root .s76cm-status__value.is-active {
	color: var(--s76cm-primary);
}

.s76cm-root .s76cm-details-link {
	-webkit-appearance: none;
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 8px 0 6px;
	padding: 10px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	background-image: none;
	box-shadow: none;
	color: var(--s76cm-text);
	font-family: inherit;
	font-style: normal;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	text-shadow: none;
	text-align: left;
	cursor: pointer;
}

.s76cm-root .s76cm-details-link:hover,
.s76cm-root .s76cm-details-link:active,
.s76cm-root .s76cm-details-link:focus {
	background: transparent;
	background-image: none;
	border: 0;
	box-shadow: none;
	color: var(--s76cm-text);
	outline: none;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
}

.s76cm-root .s76cm-details-link__chevron {
	width: 7px;
	height: 7px;
	border-right: 1.5px solid var(--s76cm-text);
	border-bottom: 1.5px solid var(--s76cm-text);
	transform: rotate(-45deg);
}

.s76cm-root .s76cm-popover__actions {
	flex: 0 0 auto;
	display: flex;
	gap: 8px;
	padding: 14px 16px;
	border-top: 1px solid var(--s76cm-border);
}

.s76cm-root .s76cm-popover__actions .s76cm-button {
	flex: 1 1 0;
	width: auto;
	min-height: 44px;
	font-size: 13px;
}

.s76cm-root .s76cm-tab:focus-visible,
.s76cm-root .s76cm-button:focus-visible,
.s76cm-root .s76cm-switch:focus-visible,
.s76cm-root .s76cm-category__toggle:focus-visible,
.s76cm-root .s76cm-details-link:focus-visible,
.s76cm-root .s76cm-popover__close:focus-visible,
.s76cm-root .s76cm-fab:focus-visible,
.s76cm-root .s76cm-link:focus-visible {
	outline: none;
	box-shadow: var(--s76cm-focus);
}

.s76cm-root .s76cm-fab:focus-visible,
.s76cm-root .s76cm-fab:hover:focus-visible,
.s76cm-root .s76cm-fab[aria-expanded="true"]:focus-visible {
	box-shadow: var(--s76cm-focus), 0 4px 14px rgba(0, 0, 0, 0.16);
}

.s76cm-root .s76cm-button--primary:focus-visible {
	background: var(--s76cm-primary);
	background-image: none;
	border-color: var(--s76cm-primary);
	color: #fff;
}

.s76cm-root .s76cm-button--primary:hover:focus-visible,
.s76cm-root .s76cm-button--primary:active:focus-visible {
	background: var(--s76cm-primary-hover);
	border-color: var(--s76cm-primary-hover);
	color: #fff;
}

.s76cm-root .s76cm-button--secondary:focus-visible {
	background: var(--s76cm-background, #fff);
	background-image: none;
	border-color: var(--s76cm-primary);
	color: var(--s76cm-primary);
}

.s76cm-root .s76cm-button--secondary:hover:focus-visible,
.s76cm-root .s76cm-button--secondary:active:focus-visible {
	background: var(--s76cm-primary-soft);
	border-color: var(--s76cm-primary);
	color: var(--s76cm-primary);
}

@media (max-width: 767px) {
	.s76cm-root .s76cm-overlay {
		align-items: center;
		height: 100vh;
		height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
		padding-top: calc(10px + env(safe-area-inset-top, 0px));
		padding-right: calc(10px + env(safe-area-inset-right, 0px));
		padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
		padding-left: calc(10px + env(safe-area-inset-left, 0px));
		overflow: hidden;
	}

	.s76cm-root .s76cm-modal {
		width: 100%;
		max-width: 100%;
		height: auto;
		max-height: 100%;
		min-height: 0;
		min-width: 0;
		overflow-x: hidden;
	}

	.s76cm-root .s76cm-tabs {
		min-width: 0;
		overflow: hidden;
	}

	.s76cm-root .s76cm-tab {
		flex: 1 1 33.333%;
		width: 33.333%;
		max-width: 33.333%;
		padding: 21px 4px;
		font-size: 12px;
		line-height: 1.2;
		white-space: nowrap;
		letter-spacing: normal;
		text-transform: none;
	}

	.s76cm-root .s76cm-heading {
		font-size: 17px;
		letter-spacing: normal;
		text-transform: none;
	}

	.s76cm-root .s76cm-copy,
	.s76cm-root .s76cm-prose,
	.s76cm-root .s76cm-prose p,
	.s76cm-root .s76cm-category__description,
	.s76cm-root .s76cm-category__details,
	.s76cm-root .s76cm-empty {
		font-size: 15px;
		line-height: 1.5;
		overflow-wrap: break-word;
		letter-spacing: normal;
		text-transform: none;
	}

	.s76cm-root .s76cm-panel__content {
		padding: 16px;
	}

	.s76cm-root .s76cm-actions {
		flex-direction: column-reverse;
		flex-wrap: nowrap;
		align-items: stretch;
		padding: 12px 16px;
		gap: 8px;
	}

	.s76cm-root .s76cm-button,
	.s76cm-root .s76cm-actions--triple .s76cm-button {
		width: 100%;
		max-width: none;
		min-height: 48px;
	}

	.s76cm-root .s76cm-category__row {
		gap: 8px;
		min-height: 48px;
	}

	.s76cm-root .s76cm-category__toggle {
		gap: 8px;
		min-height: 48px;
	}

	.s76cm-root .s76cm-category__name {
		overflow-wrap: anywhere;
	}

	.s76cm-root .s76cm-category__lock {
		width: 44px;
		height: 26px;
	}

	.s76cm-root .s76cm-category__panel {
		padding: 0 4px 14px 18px;
	}

	.s76cm-root .s76cm-switch {
		width: 44px;
		height: 26px;
	}

	.s76cm-root .s76cm-switch__track {
		top: 3px;
		left: 3px;
		width: 20px;
		height: 20px;
	}

	.s76cm-root .s76cm-switch.is-on .s76cm-switch__track {
		transform: translateX(18px);
	}

	.s76cm-root .s76cm-floating {
		left: calc(12px + env(safe-area-inset-left, 0px));
		bottom: calc(12px + env(safe-area-inset-bottom, 0px) + var(--s76cm-fab-offset-y-mobile, 0px));
		max-width: min(400px, calc(100vw - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
	}

	.s76cm-root .s76cm-floating--bottom-right {
		left: auto;
		right: calc(12px + env(safe-area-inset-right, 0px));
	}

	.s76cm-root .s76cm-fab {
		width: var(--s76cm-fab-size, 46px);
		height: var(--s76cm-fab-size, 46px);
		flex: 0 0 auto;
	}

	.s76cm-root .s76cm-popover {
		width: 100%;
		max-width: 400px;
		max-height: calc(100vh - 80px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
		max-height: calc(100dvh - 80px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
	}

	.s76cm-root .s76cm-table thead {
		display: none;
	}

	.s76cm-root .s76cm-table,
	.s76cm-root .s76cm-table tbody,
	.s76cm-root .s76cm-table tr,
	.s76cm-root .s76cm-table td {
		display: block;
		width: 100%;
	}

	.s76cm-root .s76cm-table tr {
		padding: 8px 0;
		border-bottom: 1px solid var(--s76cm-border);
	}

	.s76cm-root .s76cm-table td {
		display: grid;
		grid-template-columns: 42% 1fr;
		gap: 8px;
		padding: 4px 0;
		border: 0;
	}

	.s76cm-root .s76cm-table td::before {
		content: attr(data-s76cm-label);
		font-weight: 700;
		color: var(--s76cm-text);
		letter-spacing: normal;
		text-transform: none;
	}
}

@media (max-width: 767px) and (min-width: 481px) {
	.s76cm-root .s76cm-tab {
		font-size: 13px;
		padding: 22px 4px;
	}
}

@media (max-width: 480px) {
	.s76cm-root .s76cm-overlay {
		padding-top: calc(10px + env(safe-area-inset-top, 0px));
		padding-right: calc(10px + env(safe-area-inset-right, 0px));
		padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
		padding-left: calc(10px + env(safe-area-inset-left, 0px));
	}

	.s76cm-root .s76cm-modal {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	.s76cm-root .s76cm-tab {
		flex: 1 1 33.333%;
		width: 33.333%;
		max-width: 33.333%;
		min-height: 48px;
		padding: 18px 4px;
		font-size: 12px;
		white-space: nowrap;
		letter-spacing: normal;
		text-transform: none;
	}

	.s76cm-root .s76cm-tab--has-short .s76cm-tab__label--full {
		display: none;
	}

	.s76cm-root .s76cm-tab--has-short .s76cm-tab__label--short {
		display: inline;
	}

	.s76cm-root .s76cm-panel__content {
		padding: 16px;
	}

	.s76cm-root .s76cm-actions {
		padding: 12px 16px;
		gap: 8px;
	}

	.s76cm-root .s76cm-category__row {
		gap: 8px;
		min-height: 48px;
	}

	.s76cm-root .s76cm-category__toggle {
		min-height: 48px;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.s76cm-root .s76cm-badge {
		flex-shrink: 0;
	}

	.s76cm-root .s76cm-switch,
	.s76cm-root .s76cm-category__lock {
		flex-shrink: 0;
	}
}

@media (max-width: 480px) and (min-width: 360px) {
	.s76cm-root .s76cm-tab {
		font-size: 13px;
		padding: 20px 5px;
	}
}

@media (max-width: 359px) {
	.s76cm-root .s76cm-popover__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.s76cm-root .s76cm-popover__actions .s76cm-button {
		width: 100%;
	}
}

@media (max-width: 767px) and (max-height: 500px) {
	.s76cm-root .s76cm-overlay {
		align-items: stretch;
		padding-top: calc(8px + env(safe-area-inset-top, 0px));
		padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
	}

	.s76cm-root .s76cm-modal {
		max-height: 100%;
		height: 100%;
	}

	.s76cm-root .s76cm-tab {
		padding: 14px 3px;
	}

	.s76cm-root .s76cm-panel__content {
		padding: 12px 16px;
	}

	.s76cm-root .s76cm-actions {
		padding: 8px 12px;
	}

	.s76cm-root .s76cm-popover {
		max-height: calc(100vh - 64px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
		max-height: calc(100dvh - 64px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
	}
}

@media (prefers-reduced-motion: reduce) {
	.s76cm-root .s76cm-category__chevron,
	.s76cm-root .s76cm-switch__track {
		transition: none;
	}
}
