.omh-cookie-consent,
.omh-cookie-consent * {
	box-sizing: border-box;
}

.omh-cookie-consent {
	--omh-cookie-accent: #7c5cff;
	--omh-cookie-bg: #0b1020;
	--omh-cookie-text: #f8fafc;
	--omh-cookie-muted: #cbd5e1;
	position: fixed;
	z-index: 2147483000;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	padding: 14px clamp(14px, 3vw, 34px);
	color: var(--omh-cookie-text);
	background: var(--omh-cookie-bg);
	background:
		linear-gradient(120deg, rgba(124, 92, 255, .13), transparent 34%),
		color-mix(in srgb, var(--omh-cookie-bg) 96%, transparent);
	border-top: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 -22px 70px rgba(0, 0, 0, .32);
	-webkit-backdrop-filter: blur(18px) saturate(130%);
	backdrop-filter: blur(18px) saturate(130%);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	transform: translateY(110%);
	opacity: 0;
	transition: transform .26s ease, opacity .22s ease;
	isolation: isolate;
}

.omh-cookie-consent--visible {
	transform: translateY(0);
	opacity: 1;
}

.omh-cookie-consent__glow {
	position: absolute;
	z-index: -1;
	top: -1px;
	left: 8%;
	width: 34%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--omh-cookie-accent), transparent);
	box-shadow: 0 0 22px var(--omh-cookie-accent);
	opacity: .8;
}

.omh-cookie-consent__inner {
	width: min(1480px, 100%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(320px, 1fr) auto;
	align-items: center;
	gap: clamp(20px, 4vw, 72px);
}

.omh-cookie-consent__summary {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 16px;
}

.omh-cookie-consent__logo-wrap {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	padding: 8px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 17px;
	background: rgba(255, 255, 255, .07);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.omh-cookie-consent__logo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.omh-cookie-consent__copy {
	min-width: 0;
}

.omh-cookie-consent__eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 3px;
	color: color-mix(in srgb, var(--omh-cookie-accent) 72%, white);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.omh-cookie-consent__pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--omh-cookie-accent);
	box-shadow: 0 0 0 0 color-mix(in srgb, var(--omh-cookie-accent) 52%, transparent);
	animation: omh-cookie-pulse 2s infinite;
}

@keyframes omh-cookie-pulse {
	70% { box-shadow: 0 0 0 7px transparent; }
	100% { box-shadow: 0 0 0 0 transparent; }
}

.omh-cookie-consent__title {
	margin: 0 0 4px;
	color: var(--omh-cookie-text);
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.18;
	font-weight: 760;
	letter-spacing: -.025em;
}

.omh-cookie-consent__description {
	max-width: 780px;
	margin: 0;
	color: var(--omh-cookie-muted);
	font-size: 13px;
	line-height: 1.48;
}

.omh-cookie-consent__description a {
	color: var(--omh-cookie-text);
	text-decoration: underline;
	text-decoration-color: color-mix(in srgb, var(--omh-cookie-accent) 70%, transparent);
	text-underline-offset: 3px;
}

.omh-cookie-consent__description a:hover,
.omh-cookie-consent__description a:focus-visible {
	color: color-mix(in srgb, var(--omh-cookie-accent) 72%, white);
}

.omh-cookie-consent__actions,
.omh-cookie-consent__preferences-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 9px;
}

.omh-cookie-consent__button {
	appearance: none;
	min-height: 43px;
	padding: 10px 17px;
	border: 1px solid transparent;
	border-radius: 13px;
	font: inherit;
	font-size: 13px;
	font-weight: 760;
	line-height: 1.1;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.omh-cookie-consent__button:hover {
	transform: translateY(-1px);
}

.omh-cookie-consent__button:active {
	transform: translateY(0);
}

.omh-cookie-consent__button:focus-visible,
.omh-cookie-consent__back:focus-visible,
.omh-cookie-consent__switch input:focus-visible + span {
	outline: 3px solid color-mix(in srgb, var(--omh-cookie-accent) 45%, transparent);
	outline-offset: 2px;
}

.omh-cookie-consent__button--primary {
	color: #fff;
	background: var(--omh-cookie-accent);
	background: linear-gradient(135deg, color-mix(in srgb, var(--omh-cookie-accent) 88%, white), var(--omh-cookie-accent));
	box-shadow: 0 9px 24px color-mix(in srgb, var(--omh-cookie-accent) 28%, transparent);
}

.omh-cookie-consent__button--secondary {
	color: var(--omh-cookie-text);
	border-color: rgba(255, 255, 255, .14);
	background: rgba(255, 255, 255, .07);
}

.omh-cookie-consent__button--secondary:hover {
	background: rgba(255, 255, 255, .11);
	border-color: rgba(255, 255, 255, .22);
}

.omh-cookie-consent__button--ghost {
	color: var(--omh-cookie-muted);
	background: transparent;
}

.omh-cookie-consent__button--ghost:hover {
	color: var(--omh-cookie-text);
	background: rgba(255, 255, 255, .05);
}

.omh-cookie-consent__preferences {
	grid-column: 1 / -1;
	width: 100%;
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, .09);
}

.omh-cookie-consent__preferences[hidden],
.omh-cookie-consent__actions[hidden] {
	display: none;
}

.omh-cookie-consent__preferences-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 13px;
}

.omh-cookie-consent__step {
	display: block;
	margin-bottom: 3px;
	color: color-mix(in srgb, var(--omh-cookie-accent) 72%, white);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.omh-cookie-consent__preferences h3 {
	margin: 0;
	color: var(--omh-cookie-text);
	font-size: 17px;
	line-height: 1.2;
}

.omh-cookie-consent__back {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 11px;
	color: var(--omh-cookie-text);
	background: rgba(255, 255, 255, .06);
	cursor: pointer;
}

.omh-cookie-consent__categories {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.omh-cookie-consent__category {
	min-width: 0;
	min-height: 82px;
	padding: 13px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 15px;
	background: rgba(255, 255, 255, .045);
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease;
}

.omh-cookie-consent__category:hover {
	border-color: rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .065);
}

.omh-cookie-consent__category--locked {
	cursor: default;
}

.omh-cookie-consent__category strong,
.omh-cookie-consent__category small {
	display: block;
}

.omh-cookie-consent__category strong {
	margin-bottom: 4px;
	color: var(--omh-cookie-text);
	font-size: 13px;
	line-height: 1.2;
}

.omh-cookie-consent__category small {
	color: var(--omh-cookie-muted);
	font-size: 11px;
	line-height: 1.34;
}

.omh-cookie-consent__switch {
	position: relative;
	flex: 0 0 40px;
	width: 40px;
	height: 23px;
}

.omh-cookie-consent__switch input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

.omh-cookie-consent__switch span {
	position: absolute;
	inset: 0;
	border-radius: 99px;
	background: rgba(255, 255, 255, .15);
	transition: background .18s ease;
}

.omh-cookie-consent__switch span::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
	transition: transform .18s ease;
}

.omh-cookie-consent__switch input:checked + span {
	background: var(--omh-cookie-accent);
}

.omh-cookie-consent__switch input:checked + span::after {
	transform: translateX(17px);
}

.omh-cookie-consent__switch input:disabled + span {
	opacity: .65;
}

.omh-cookie-consent__preferences-actions {
	margin-top: 12px;
}

.omh-cookie-consent__status {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.omh-cookie-open-settings {
	cursor: pointer;
}

@media (max-width: 1080px) {
	.omh-cookie-consent__inner {
		grid-template-columns: 1fr;
		gap: 13px;
	}

	.omh-cookie-consent__actions {
		justify-content: stretch;
	}

	.omh-cookie-consent__button {
		flex: 1;
	}

	.omh-cookie-consent__categories {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.omh-cookie-consent {
		max-height: min(88vh, 760px);
		overflow-y: auto;
		padding: 13px 12px calc(13px + env(safe-area-inset-bottom));
		border-radius: 20px 20px 0 0;
	}

	.omh-cookie-consent__summary {
		align-items: flex-start;
	}

	.omh-cookie-consent__logo-wrap {
		flex-basis: 43px;
		width: 43px;
		height: 43px;
		padding: 6px;
		border-radius: 13px;
	}

	.omh-cookie-consent__eyebrow {
		font-size: 9px;
	}

	.omh-cookie-consent__title {
		font-size: 17px;
	}

	.omh-cookie-consent__description {
		font-size: 12px;
	}

	.omh-cookie-consent__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.omh-cookie-consent__actions .omh-cookie-consent__button--primary {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.omh-cookie-consent__button {
		width: 100%;
		min-height: 42px;
		padding: 10px 12px;
		font-size: 12px;
	}

	.omh-cookie-consent__categories {
		grid-template-columns: 1fr;
	}

	.omh-cookie-consent__category {
		min-height: 70px;
	}

	.omh-cookie-consent__preferences-actions {
		display: grid;
		grid-template-columns: 1fr;
		position: sticky;
		bottom: 0;
		padding-top: 10px;
		background: linear-gradient(transparent, var(--omh-cookie-bg) 26%);
	}

	.omh-cookie-consent__preferences-actions .omh-cookie-consent__button--primary {
		grid-row: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.omh-cookie-consent,
	.omh-cookie-consent__button,
	.omh-cookie-consent__switch span,
	.omh-cookie-consent__switch span::after {
		transition: none;
	}

	.omh-cookie-consent__pulse {
		animation: none;
	}
}
