:root {
	--nhwc-primary: #0b5e7e;
	--nhwc-primary-contrast: #ffffff;
	--nhwc-bg: #ffffff;
	--nhwc-text: #1b2733;
	--nhwc-muted: #48586c;
	--nhwc-border: #d5dde6;
	--nhwc-radius: 14px;
	--nhwc-shadow: 0 10px 40px rgba(11, 26, 42, 0.18);
	--nhwc-z: 2147483000;
}

.nhwc {
	box-sizing: border-box;
	font-family: inherit;
	color: var(--nhwc-text);
	cursor: default;
}

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

.nhwc a,
.nhwc button,
.nhwc label,
.nhwc summary,
.nhwc [role="button"],
.nhwc input[type="checkbox"] {
	cursor: pointer;
}

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

.nhwc-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: var(--nhwc-z);
	background: var(--nhwc-bg);
	color: var(--nhwc-text);
	box-shadow: var(--nhwc-shadow);
	border-top: 1px solid var(--nhwc-border);
	max-height: 92vh;
	overflow: auto;
}

.nhwc-banner[hidden] {
	display: none !important;
}

.nhwc-pos-bottom-right,
.nhwc-pos-bottom-left {
	left: auto;
	right: 16px;
	bottom: 16px;
	width: auto;
	max-width: min(380px, calc(100vw - 32px));
	border: 1px solid var(--nhwc-border);
	border-radius: var(--nhwc-radius);
	box-shadow: var(--nhwc-shadow);
}

.nhwc-pos-bottom-left {
	left: 16px;
	right: auto;
}

.nhwc-pos-bottom-right .nhwc-card,
.nhwc-pos-bottom-left .nhwc-card {
	flex-direction: column;
	align-items: stretch;
	padding: 16px;
	max-width: none;
	gap: 10px;
}

.nhwc-pos-bottom-right .nhwc-copy,
.nhwc-pos-bottom-left .nhwc-copy {
	flex: 0 0 auto;
	min-width: 0;
}

.nhwc-pos-bottom-right .nhwc-text,
.nhwc-pos-bottom-left .nhwc-text,
.nhwc-pos-bottom-right .nhwc-title,
.nhwc-pos-bottom-left .nhwc-title {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.nhwc-pos-bottom-right .nhwc-actions,
.nhwc-pos-bottom-left .nhwc-actions {
	width: 100%;
}

.nhwc-pos-bottom-right .nhwc-actions .nhwc-btn,
.nhwc-pos-bottom-left .nhwc-actions .nhwc-btn {
	flex: 1 1 auto;
}

.nhwc-pos-center {
	top: 50%;
	bottom: auto;
	left: 16px;
	right: 16px;
	max-width: 720px;
	margin: 0 auto;
	transform: translateY(-50%);
	border: 1px solid var(--nhwc-border);
	border-radius: var(--nhwc-radius);
}

.nhwc-compact .nhwc-card {
	padding: 10px 12px;
	gap: 6px;
}

.nhwc-compact .nhwc-copy {
	min-width: 0;
}

.nhwc-compact .nhwc-title {
	font-size: 0.96rem;
	margin-bottom: 1px;
	line-height: 1.25;
}

.nhwc-compact .nhwc-text {
	font-size: 0.83rem;
	line-height: 1.35;
}

.nhwc-compact .nhwc-links {
	margin-top: 2px;
	font-size: 0.78rem;
}

.nhwc-compact .nhwc-btn {
	min-height: 32px;
	padding: 0 12px;
	font-size: 0.82rem;
}

.nhwc-compact .nhwc-actions {
	gap: 6px;
	margin-top: 0;
}

.nhwc-compact .nhwc-actions .nhwc-btn {
	flex: 1 1 auto;
}

.nhwc-compact.nhwc-pos-bottom-right,
.nhwc-compact.nhwc-pos-bottom-left {
	max-width: min(300px, calc(100vw - 32px));
}

.nhwc-card {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px;
}

.nhwc-copy {
	flex: 1 1 420px;
	min-width: 260px;
}

.nhwc-title {
	margin: 0 0 6px;
	font-size: 1.15rem;
	line-height: 1.3;
}

.nhwc-text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--nhwc-muted);
}

.nhwc-links {
	margin: 8px 0 0;
	font-size: 0.9rem;
}

.nhwc-links a {
	color: var(--nhwc-primary);
	text-decoration: underline;
}

.nhwc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.nhwc-btn {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	border: 1px solid transparent;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nhwc-btn:focus-visible {
	outline: 3px solid rgba(11, 94, 126, 0.45);
	outline-offset: 2px;
}

.nhwc-btn-primary {
	background: var(--nhwc-primary);
	color: var(--nhwc-primary-contrast);
	border-color: var(--nhwc-primary);
}

.nhwc-btn-primary:hover {
	filter: brightness(1.08);
}

.nhwc-btn-ghost {
	background: #ffffff;
	color: var(--nhwc-text);
	border-color: #b9c4d0;
}

.nhwc-btn-ghost:hover {
	background: rgba(11, 26, 42, 0.06);
	border-color: var(--nhwc-primary);
	color: var(--nhwc-primary);
}

.nhwc-prefs {
	border-top: 1px solid var(--nhwc-border);
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 24px 22px;
}

.nhwc-prefs[hidden] {
	display: none !important;
}

.nhwc-cats {
	border: 0;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.nhwc-cat {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	cursor: pointer;
}

.nhwc-cat-switch {
	position: relative;
	flex: 0 0 auto;
	width: 46px;
	height: 26px;
	margin-top: 2px;
}

.nhwc-cat-switch input {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

.nhwc-cat-slider {
	position: absolute;
	inset: 0;
	background: #c3ccd6;
	border-radius: 999px;
	transition: background-color 0.15s ease;
	pointer-events: none;
}

.nhwc-cat-slider::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
	transition: transform 0.15s ease;
}

.nhwc-cat-switch input:checked + .nhwc-cat-slider {
	background: var(--nhwc-primary);
}

.nhwc-cat-switch input:checked + .nhwc-cat-slider::after {
	transform: translateX(20px);
}

.nhwc-cat-switch input:disabled + .nhwc-cat-slider {
	opacity: 0.7;
	cursor: not-allowed;
}

.nhwc-cat-switch input:focus-visible + .nhwc-cat-slider {
	outline: 3px solid rgba(11, 94, 126, 0.45);
	outline-offset: 2px;
}

.nhwc-cat-body {
	display: block;
}

.nhwc-cat-label {
	display: block;
	font-weight: 600;
}

.nhwc-cat-required {
	margin-left: 8px;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--nhwc-muted);
	font-style: normal;
}

.nhwc-cat-desc {
	display: block;
	font-size: 0.88rem;
	color: var(--nhwc-muted);
	line-height: 1.45;
}

.nhwc-actions-prefs {
	justify-content: flex-end;
	margin-top: 16px;
}

.nhwc-revoke {
	position: fixed;
	bottom: 16px;
	z-index: calc(var(--nhwc-z) - 1);
	appearance: none;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid var(--nhwc-border);
	background: var(--nhwc-bg);
	color: var(--nhwc-text);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(11, 26, 42, 0.16);
}

.nhwc-revoke-left {
	left: 16px;
	right: auto;
}

.nhwc-revoke-right {
	right: 16px;
	left: auto;
}

.nhwc-revoke[hidden] {
	display: none !important;
}

.nhwc-revoke:focus-visible {
	outline: 3px solid rgba(11, 94, 126, 0.45);
	outline-offset: 2px;
}

.nhwc-iframe-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 220px;
	padding: 24px;
	background: #f1f4f8;
	border: 1px dashed var(--nhwc-border);
	border-radius: var(--nhwc-radius);
	text-align: center;
}

.nhwc-iframe-placeholder p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--nhwc-muted);
}

.cmplz-hidden,
#cmplz-manage-consent-container,
#cmplz-manage-consent-container-nojavascript {
	display: none !important;
}

.doc-body details.cmplz-dropdown {
	border: 1px solid var(--nhwc-border);
	border-radius: 10px;
	padding: 10px 14px;
	margin: 10px 0;
}

.doc-body details.cmplz-dropdown > summary {
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.doc-body details.cmplz-dropdown > summary::-webkit-details-marker {
	display: none;
}

.doc-body details.cmplz-dropdown[open] > summary {
	margin-bottom: 8px;
}

.doc-body .cmplz-service-header h3 {
	margin: 0 0 2px;
	font-size: 1.05rem;
}

.doc-body .cmplz-service-header p {
	margin: 0;
	color: var(--nhwc-muted);
	font-size: 0.9rem;
}

.doc-body .cmplz-service-description h4 {
	margin: 10px 0 4px;
}

.nhwc-cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px 0 22px;
	font-size: 0.92rem;
}

.nhwc-cookie-table th,
.nhwc-cookie-table td {
	border: 1px solid var(--nhwc-border);
	padding: 8px 10px;
	text-align: left;
	vertical-align: top;
}

.nhwc-cookie-table th {
	background: #f1f4f8;
	font-weight: 600;
}

.nhwc-cookie-group {
	margin-top: 22px;
}

.nhwc-logo {
	display: block;
	max-height: 40px;
	width: auto;
	margin-bottom: 8px;
}

.nhwc-revoke-ico {
	margin-right: 6px;
	flex: 0 0 auto;
}

.nhwc-consent-field {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	margin: 10px 0;
	font-size: 0.9rem;
	line-height: 1.45;
}

.nhwc-consent-field input {
	margin-top: 3px;
	flex: 0 0 auto;
}

.nhwc-dark-on {
	--nhwc-bg: #1b2733 !important;
	--nhwc-text: #e7edf3 !important;
	--nhwc-border: #3a4756 !important;
}

.nhwc-dark-on .nhwc-btn-ghost {
	background: #243040;
	color: #e7edf3;
	border-color: #3a4756;
}

.nhwc-dark-on .nhwc-btn-ghost:hover {
	background: #2c3a4c;
	border-color: var(--nhwc-primary);
}

.nhwc-dark-on .nhwc-revoke {
	background: #1b2733;
	color: #e7edf3;
	border-color: #3a4756;
}

@media (prefers-color-scheme: dark) {
	.nhwc-dark-auto {
		--nhwc-bg: #1b2733 !important;
		--nhwc-text: #e7edf3 !important;
		--nhwc-border: #3a4756 !important;
	}
	.nhwc-dark-auto .nhwc-btn-ghost {
		background: #243040;
		color: #e7edf3;
		border-color: #3a4756;
	}
	.nhwc-dark-auto .nhwc-revoke {
		background: #1b2733;
		color: #e7edf3;
		border-color: #3a4756;
	}
}

@media (max-width: 720px) {
	.nhwc-card {
		padding: 18px 16px;
	}
	.nhwc-actions {
		width: 100%;
	}
	.nhwc-actions .nhwc-btn {
		flex: 1 1 auto;
	}
	.nhwc-pos-center,
	.nhwc-pos-bottom-right,
	.nhwc-pos-bottom-left {
		top: auto;
		bottom: 0;
		transform: none;
		left: 0;
		right: 0;
		max-width: none;
		border-radius: 0;
	}
}
