:root {
	--neos-cookie-orange: #ffb243;
	--neos-cookie-ink: #0d0a3b;
	--neos-cookie-blue: #004a82;
	--neos-cookie-purple: #171044;
	--neos-cookie-paper: #f7f4f3;
	--neos-cookie-track: #eeeae9;
	--neos-cookie-shadow: rgba(21, 13, 58, .16);
}

.neos-cookie-consent[hidden],
.neos-cookie-preferences-button[hidden] {
	display: none !important;
}

.neos-cookie-modal-open {
	overflow: hidden;
}

.neos-cookie-consent,
.neos-cookie-consent *,
.neos-cookie-preferences-button {
	box-sizing: border-box;
}

.neos-cookie-consent {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	place-items: end center;
	padding: 0;
	color: var(--neos-cookie-ink);
	font-family: inherit;
}

.neos-cookie-consent__shade {
	position: fixed;
	inset: 0;
	/*background:
		radial-gradient(circle at top left, rgba(255,255,255,.42), transparent 34%),
		radial-gradient(circle at bottom right, rgba(249,176,199,.35), transparent 40%),
		rgba(16, 12, 38, .16);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);*/
}

.neos-cookie-consent__panel {
	position: absolute;
	z-index: 1;
	width: 400px;
	max-height: 100dvh;
	overflow: auto;
	padding: 34px 18px 34px;
	border-radius: 34px 34px 0 0;
	background: #f5f5f5;
	box-shadow: 0 -12px 48px rgba(0, 0, 0, .18);
	text-align: center;
	bottom:15px;
	right:15px;
}

.neos-cookie-consent__brand {
	display: none;
	place-items: center;
	min-height: 74px;
	margin-bottom: 10px;
}

.neos-cookie-consent__brand img {
	display: block;
	max-width: 112px;
	max-height: 78px;
	object-fit: contain;
}

.neos-cookie-consent__fallback-logo {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border: 2px solid var(--neos-cookie-ink);
	border-radius: 50%;
	color: var(--neos-cookie-ink);
	font-size: 31px;
	font-weight: 900;
	line-height: 1;
}

.neos-cookie-consent h2 {
	margin: 0 0 24px;
	color: var(--neos-cookie-ink);
	line-height: 1.1;
	/*text-shadow:-1px -1px 0 #12103a, 1px -1px 0 #12103a, -1px 1px 0 #12103a, 1px 1px 0 #12103a;*/
	font-family: Arial;
  font-size: 24px !important;
  text-transform: unset;
  letter-spacing: 0;
  font-weight: 600;
  text-shadow:none;
}

.neos-cookie-consent__options {
	display: grid;
	gap: 16px;
	width: min(100%, 560px);
	margin: 0 auto;
}

.neos-cookie-option {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
	min-height: 102px;
	padding: 0;
	border-radius: 15px;
	background: var(--neos-cookie-paper);
	/*box-shadow: 0 10px 24px var(--neos-cookie-shadow);*/
	text-align: left;
}

.neos-cookie-option h3 {
	margin: 0 0 0px;
	color: var(--neos-cookie-ink);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.1;
	font-family: Arial;
}

.neos-cookie-option p {
	margin: 0;
	color: var(--neos-cookie-ink);
	font-size: 13px;
	font-weight: 100;
	line-height: 1.38;
	font-family: Arial;
	letter-spacing: 0.1px;
}

.neos-cookie-state,
.neos-cookie-toggle {
	position: relative;
	display: block;
	width: 75px;
	height: 40px;
	flex: 0 0 auto;
}

.neos-cookie-state {
	border-radius: 999px;
	background: var(--neos-cookie-track);
}

.neos-cookie-state span {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #33cc33;
	color: var(--neos-cookie-ink);
	font-size: 10px;
	font-weight: 700;
	line-height: .96;
	text-align: center;
	font-family: Arial;
}

.neos-cookie-toggle input {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.neos-cookie-toggle span {
	position: absolute;
	inset: 0;
	display: block;
	border-radius: 999px;
	background: var(--neos-cookie-track);
}

.neos-cookie-toggle span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--neos-cookie-purple);
	transition: transform .18s ease, background .18s ease;
}

.neos-cookie-toggle b {
	position: absolute;
	top: 0;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	pointer-events: none;
}

.neos-cookie-toggle b:first-child {
	left: 0;
	opacity: 1;
}

.neos-cookie-toggle b:last-child {
	right: 0;
	opacity: 0;
}

.neos-cookie-toggle input:checked + span::before {
	transform: translateX(36px);
	background: #202020;
}

.neos-cookie-toggle input:checked + span b:first-child {
	opacity: 0;
}

.neos-cookie-toggle input:checked + span b:last-child {
	opacity: 1;
}

.neos-cookie-toggle input:focus-visible + span {
	outline: 3px solid rgba(13, 10, 59, .28);
	outline-offset: 4px;
}

.neos-cookie-consent__control-note {
	width: min(100%, 560px);
	margin: 28px auto 14px;
	color: var(--neos-cookie-ink);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
}

.neos-cookie-consent__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	width: min(100%, 560px);
	margin: 0 auto;
}

.neos-cookie-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 7px;
	border-radius: 999px;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform .14s ease, box-shadow .14s ease;
}

.neos-cookie-btn:hover,
.neos-cookie-btn:focus-visible,
.neos-cookie-preferences-button:hover,
.neos-cookie-preferences-button:focus-visible {
	transform: translateY(-1px);
	outline: 3px solid rgba(13, 10, 59, .22);
	outline-offset: 3px;
}

.neos-cookie-btn--outline {
	background: #eee;
	color: #333;
	font-family: Arial;
	border: navajowhite;
}

.neos-cookie-btn--solid {
	border: 0;
	background: #33cc33;
	color: #000;
	text-transform: uppercase;
}

.neos-cookie-consent__links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	justify-content: center;
	margin-top: 18px;
}

.neos-cookie-consent__links a {
	color: var(--neos-cookie-ink);
	font-size: 13px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.neos-cookie-preferences-button {
	position: fixed;
	right: 14px;
	bottom: 14px;
	z-index: 99990;
	display: inline-grid;
	place-items: center;
	border: 2px solid var(--neos-cookie-ink);
	background: var(--neos-cookie-orange);
	color: var(--neos-cookie-ink);
	box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.neos-cookie-preferences-button--icon {
	line-height: 1;
}
.neos-cookie-preferences-button--icon {
	width: 58px;
	height: 58px;
	min-height: 58px;
	padding: 0;
	border-radius: 50%;
	border: 3px solid #0d0a3b;
	background: #ffb243;
	color: #0d0a3b;
	font-size: 28px;
	box-shadow:
		0 8px 22px rgba(0, 0, 0, .16),
		inset 0 0 0 4px rgba(255,255,255,.22);
}

.neos-cookie-preferences-button--icon span {
	position: relative;
	top: 1px;
	filter: drop-shadow(0 2px 0 rgba(255,255,255,.35));
}

@media (max-width: 440px) {
	.neos-cookie-consent__panel {
		padding-right: 12px;
		padding-left: 12px;
	}

	.neos-cookie-option {
		grid-template-columns: 1fr;
		justify-items: center;
		min-height: 0;
		border-radius: 34px;
		padding: 20px;
		text-align: center;
	}

	.neos-cookie-state,
	.neos-cookie-toggle {
		width: 104px;
		height: 56px;
	}

	.neos-cookie-state span,
	.neos-cookie-toggle span::before,
	.neos-cookie-toggle b {
		width: 56px;
		height: 56px;
	}

	.neos-cookie-toggle input:checked + span::before {
		transform: translateX(48px);
	}
}

@media (min-width: 760px) {
	.neos-cookie-consent {
		/*place-items: center;*/
		padding: 26px;
	}

	.neos-cookie-consent__panel {
		max-height: calc(100dvh - 52px);
		padding: 30px 30px 30px;
		border-radius: 20px;
	}

	.neos-cookie-consent__brand {
		min-height: 88px;
	}

	.neos-cookie-consent__brand img {
		max-width: 132px;
		max-height: 92px;
	}

	.neos-cookie-consent h2 {
		margin-bottom: 30px;
	}

	.neos-cookie-consent__options {
		gap: 16px;
		/*width: 560px;*/
	}

	.neos-cookie-option {
		min-height: 100px;
		/*padding-left: 42px;*/
	}

	.neos-cookie-consent__actions {
		/*display: flex;*/
		justify-content: center;
		align-items: center;
		width: auto;
		padding-top:15px;
	}

	.neos-cookie-btn {
		min-width: 146px;
	}

	.neos-cookie-btn--solid {
		min-width: 134px;
	}
}
