:root {
	--hk-topbar-height: 0px;
}

body.has-hk-topbar {
	--hk-topbar-offset: var(--hk-topbar-height);
}

body.has-hk-topbar #wrapper {
	padding-top: var(--hk-topbar-height);
}

body.has-hk-topbar #headerCntr {
	top: var(--hk-topbar-height);
}

body.has-hk-topbar.single-vouwwagens #headerCntr {
	top: calc(var(--product-header-top-offset, 16px) + var(--hk-topbar-height));
}

body.has-hk-topbar.single-vouwwagens #headerCntr.sticky {
	top: var(--hk-topbar-height);
}

.hk-topbar {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 110;
	color: var(--color-white);
	background: var(--color-black);
	opacity: 1;
	transform: translateY(0);
	transition: opacity 240ms ease, transform 240ms ease;
}

.hk-topbar.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
}

.hk-topbar__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 56px 10px 24px;
}

.hk-topbar__slides {
	position: relative;
	width: min(100%, var(--width-large));
	min-height: 24px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.hk-topbar__slide {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	transition: opacity 420ms ease, transform 420ms ease;
}

.hk-topbar__slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.hk-topbar__message {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	color: inherit;
	text-align: center;
	text-decoration: none;
}

.hk-topbar__text {
	display: inline;
}

.hk-topbar__link {
	margin-left: 7px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.hk-topbar__dot {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	margin-right: 8px;
	border-radius: 999px;
	background: var(--color-primary);
	box-shadow: 0 0 0 0 rgba(234, 93, 60, 0.7);
}

.hk-topbar__dot::before {
	position: absolute;
	inset: -5px;
	border-radius: inherit;
	background: rgba(234, 93, 60, 0.35);
	animation: hk-topbar-pulse 1.7s ease-out infinite;
	content: "";
}

.hk-topbar__close {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	color: var(--color-white);
	background: transparent;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color 180ms ease, color 180ms ease;
}

.hk-topbar__close:hover,
.hk-topbar__close:focus-visible {
	color: var(--color-white);
	background-color: rgba(255, 255, 255, 0.14);
}

.hk-topbar__close span,
.hk-topbar__close span::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
}

.hk-topbar__close span {
	transform: translate(-50%, -50%) rotate(45deg);
}

.hk-topbar__close span::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.hk-topbar a:focus-visible,
.hk-topbar__close:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 3px;
}

@keyframes hk-topbar-pulse {
	0% {
		opacity: 0.9;
		transform: scale(0.5);
	}

	100% {
		opacity: 0;
		transform: scale(1.9);
	}
}

@media only screen and (max-width: 1199px) {
	body.has-hk-topbar .menuBox {
		top: var(--hk-topbar-height);
		height: calc(100dvh - var(--hk-topbar-height));
		max-height: calc(100dvh - var(--hk-topbar-height));
	}

	body.has-hk-topbar.is-menu-open #headerCntr::before {
		top: calc(-1 * var(--hk-topbar-height));
		height: calc(100% + var(--hk-topbar-height));
	}
}

@media only screen and (max-width: 640px) {
	.hk-topbar__inner {
		min-height: 52px;
		padding-right: 48px;
		padding-left: 18px;
	}

	.hk-topbar__slides {
		font-size: 13px;
		line-height: 1.3;
	}

	.hk-topbar__message {
		align-items: baseline;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hk-topbar,
	.hk-topbar__slide,
	body.has-hk-topbar #headerCntr,
	body.has-hk-topbar #wrapper {
		transition: none;
	}

	.hk-topbar__dot::before {
		animation: none;
	}
}
