.nav-wrapper {
	display: flex;
	align-items: center;
}

.nav-desktop {
	height: 64px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #1cb8bd;
	padding-left: 24px;
	padding-right: 18px;
	width: 100%;
	z-index: 100;
}

.nav-desktop .hokify-logo {
	width: 112px;
	height: 40px;
	margin-right: 40px;
}

.menu-item {
	color: #ffffff !important;
	font-weight: 800;
	line-height: 1;
	padding: 24px 24px 20px;
	margin-bottom: 0px;
	font-size: 16px;
	text-decoration: none;
	border-bottom: solid 4px;
	border-color: #1cb8bd;
	box-sizing: border-box;
}

.menu-item:hover {
	border-color: rgba(217, 242, 242);
}

a:hover {
	text-decoration: none !important;
}

.nav-mobile {
	height: 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #1cb8bd;
}

.hokify-logo {
	width: 90px;
	height: 32px;
	margin-right: 40px;
}

.nav-burger-wrapper {
	padding-top: 6px;
	padding-right: 6px;
}

.header-nav-icon {
	font-family: Figtree !important;
	width: 26px !important;
	height: 22px !important;
	position: relative;
	transform: rotate(0deg);
	transition: 0.5s ease-in-out;
	z-index: 20;
	background-color: transparent;
	border-width: 0px;
	padding-bottom: 0;
	outline: none !important;
}

.header-nav-icon:focus {
	outline: none;
}

.header-nav-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 50%;
	background: white;
	border-radius: 0px;
	opacity: 1;
	right: 0;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
}

.header-nav-icon span:nth-child(1) {
	top: 0px;
}

.header-nav-icon span:nth-child(2),
.header-nav-icon span:nth-child(3) {
	top: 9px;
}

.header-nav-icon span:nth-child(4) {
	top: 18px;
}

.header-nav-icon.open span:nth-child(1) {
	top: 9px;
	width: 0%;
	left: 50%;
}

.header-nav-icon.open span:nth-child(2) {
	transform: rotate(45deg);
}

.header-nav-icon.open span:nth-child(3) {
	transform: rotate(-45deg);
}

.header-nav-icon.open span:nth-child(4) {
	top: 9px;
	width: 0%;
	left: 50%;
}

.hide-items {
	display: none;
}

.mobile-nav-items {
	position: absolute;
	top: 0;
	right: 0;
	margin-top: 50px;
	padding-top: 0.5rem;
	max-width: 240px;
	width: 58.333333%;
	font-size: 0.75rem;
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
	z-index: 100 !important;
}

.show-items {
	display: flex;
	flex-direction: column;
}

.dropdown-link {
	width: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-weight: 800;
	font-size: 14px;
	background-color: white;
	border-top: solid 1px;
	border-color: #d1d1d6;
	color: #1cb8bd;
	!important;
	text-decoration: none !important;
}

.login-wrapper {
	display: flex;
	align-items: center;
}

.header-submenu-wrapper {
	position: relative;
	display: inline-flex;
}

.submenu-dropdown-desktop {
	position: absolute;
	width: 24rem;
	top: 4rem;
	background-color: white;
	padding: 0.75rem 1rem 0.75rem 1.5rem;
	border-radius: 0.75rem;
	z-index: 50;
	box-shadow: inset 7px 0 0 0 #1cb8bd, 0 0 10px rgba(0, 0, 0, 0.25);
	transform: translate(-15%);
}

.submenu-dropdown-desktop::before {
	content: '';
	display: block;
	position: absolute;
	top: -3px;
	left: 118px;
	width: 20px;
	height: 20px;
	background-color: white;
	transform: rotate(45deg);
}

.submenu-dropdown-mobile {
	margin: 0;
	padding: 0 0 0 1rem;
	border-top: solid 1px;
	border-color: #d1d1d6;
	background-color: white;
}

.submenu-main-category {
	font-weight: 700 !important;
}

.submenu-main-category:hover {
	text-decoration: underline !important;
	text-decoration-color: 19a1af !important;
}

.submenu-category-wrapper {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	list-style: none;
	background-color: white;
}

.submenu-category-link {
	font-size: 16px;
	font-weight: 700 !important;
	text-decoration: none;
	cursor: pointer;
	color: #354c66;
}

.submenu-category-link-mobile {
	font-size: 14px;
	font-weight: 700 !important;
	text-decoration: none;
	cursor: pointer;
	color: #354c66;
}

.submenu-category-link:hover {
	text-decoration: underline !important;
}

.header-submenu-desktop {
	color: white;
	font-weight: 800 !important;
	padding-top: 1.25rem;
	padding-bottom: 24px !important;
	padding-left: 1rem;
	padding-right: 2rem;
	box-sizing: border-box;
	line-height: normal;
	cursor: pointer;
	font-size: 16px;

	@media (min-width: 1280px) {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	&:hover {
		border-bottom-color: #0000;
	}
}

.header-submenu-mobile {
}

.login-button {
	display: inline-flex;
	border-radius: 9999px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-width: 0px;
	padding: 8px 32px;
	font-size: 16px;
	font-weight: 700;
	background-color: white;
	border-color: white;
	color: #1cb8bd !important;
	position: relative;
	text-decoration: none !important;
	margin-right: 10px;
	font-family: Figtree !important;
}

.login-user {
	color: white !important;
	font-weight: 800;
	margin-right: 20px;
}

.hs-elevate-header {
	position: fixed;
	width: 100%;
	z-index: 999;
}

.nav-login-consultation {
	display: flex;
	align-items: center;
	gap: 0.75rem;

	@media (min-width: 1024px) {
		gap: 1.5rem;
	}

	padding-right: 0.75rem;
}

.consultation-display-wrapper {
	display: none;

	@media (min-width: 1280px) {
		display: block;
	}
}

.consultation-text {
	font-size: 0.75rem;
	font-weight: 800;
	color: #ffffff !important;
	cursor: pointer;
	text-decoration: none;
	&:hover {
		text-decoration: underline;
	}
	margin-bottom: 0;
}

.chevron::before {
	border-style: solid;
	border-width: 0.15em 0.15em 0 0;
	content: '';
	display: inline-block;
	height: 0.60em;
	left: 0.25em;
	position: relative;
	transform: rotate(-45deg);
	vertical-align: baseline;
	width: 0.60em;
}

.chevron.top::before {
	top: 0.1rem;
}

.chevron.bottom:before {
	transform: rotate(135deg);
	bottom: 0.1rem;
}

/* -------------------------------------------------- */
/* NEU: Unterebene ohne Striche                       */
/* -------------------------------------------------- */

.submenu-sublevel {
	margin: 0;
	padding: 0 0 0 0rem;
	list-style: none;
}

.submenu-sublevel .submenu-category-wrapper {
	padding-top: 0.35rem;
	padding-bottom: 0.35rem;
}

.submenu-sublevel .submenu-category-link,
.submenu-sublevel .submenu-category-link-mobile {
	font-weight: 700 !important;
}

.italic-part {
	font-style: italic;
  display: block;
}

/* Desktop */
.submenu-dropdown-desktop .submenu-sublevel {
	margin-top: 0.35rem;
	padding-left: 1.25rem;
}

/* Mobile */
.submenu-dropdown-mobile .submenu-sublevel {
	margin-top: 0.25rem;
	padding-left: 1rem;
}


