.header {
	position: fixed;
	z-index: 9999;
	width: 100%;
	background-color: #fff;
	top: 0;
	left: 0;

}


.header.k2child-header--scrolling .header__claim {
	display: none;
}


.header > .container {
	padding: 10px var(--k2spacing__10);
	max-width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
	.header > .container {
		margin: 0;
		padding: 50px var(--container-padding-right) 25px var(--container-padding-left);
		width: 100%;
		max-width: none;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.header .container.br {
		padding: 0 var(--container-padding-right) 15px;
	}
}

@media only screen and (max-width: 500px) {
	.header > .container {
		padding: 40px var(--container-padding-right) 15px var(--container-padding-left);
	}
}

.header__logo {
	width: 300px;
	height: auto;
	transition: all .3s ease-in-out;
	@media only screen and (max-width: 500px) {
		width: 200px;
		height: auto;
	}
}

.header.k2child-header--scrolling .header__logo {
	width: 230px;
}

@media only screen and (max-width: 500px) {
	.header.k2child-header--scrolling .header__logo {
		width: 200px;
	}
}

.header__options__inner {
	display: flex;
	position: absolute;
	top: 9px;
	right: 0;

	.header__languages a,
	.header__search-button a {
		padding: 10px;
	}

	.header__languages a {
		border-right: solid 1px var(--primary-color);
	}

	.header__languages .active {
		background-color: var(--primary-color);
		color: #fff;
	}
}

@media only screen and (max-width: 768px) {
	.header__options__inner {
		justify-content: flex-end;
		left: 0;
		top: 0;
		background-color: var(--primary-color);
		color: #fff;

	}

	.header__options__inner .header__languages {
		border-right: solid 1px #fff;
	}

	.header__options__inner i {
		color: #fff;
	}

	.header__options__inner .header__languages,
	.header__options__inner .header__search-button {
		padding: 5px 10px;
	}

	.header__options__inner .header__languages .active {
		background-color: #fff !important;
		color: var(--primary-color) !important;
	}

	.header__options__inner .header__languages a {
		border-right: none;
		color: #fff;
	}
}

.header__claim {
	text-align: right;
	color: var(--k2-child-red);
}

@media only screen and (max-width: 768px) {
	.header__claim {
		display: none;
	}
}


.header__nav {
	position: relative;
	background-color: var(--primary-color);
	z-index: 9;
	font-weight: bold;
}

.header__nav ul {
	margin: 0;
}

@media only screen and (max-width: 900px) {
	.header__nav {
		min-width: 310px;
		width: 50%;
		position: absolute;
		top: 100%;
		right: -600px;
		transition: all .3s ease-in-out;
		height: 100vh;
		min-height: 600px;
		z-index: 9999;
		overflow: scroll;
		padding: 20px 0 180px;
	}
}


.header__nav ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 0;
}

@media only screen and (max-width: 900px) {
	.header__nav ul {
		display: block;
		padding: 0;
		font-weight: bold;
	}
}

.header__nav ul ul {
	display: none;
	position: absolute;
	top: 55px;
	left: 0;
	background-color: var(--primary-color);
	padding: 0;
	width: 240px;
}


@media only screen and (max-width: 1100px) {
	.header__nav ul ul {
		top: 38px;
	}
}

@media only screen and (max-width: 900px) {
	.header__nav ul ul {
		display: block;
		position: relative;
		top: unset;
		padding-left: 15px;
		font-weight: 400;
	}
}

.header__nav ul li {
	position: relative;
}

.header__nav ul li a.has_children:is(:hover,:focus-visible) + ul,
.header__nav ul li a.has_children + ul:is(:hover,:focus-visible){
	display:block;
}

.header__nav ul li.show ul,
.header__nav ul li.fokus ul {
	display: block;
}

.header__nav li a {
	display: block;
	text-decoration: none;
	padding: 15px 25px;
}

@media only screen and (max-width: 1100px) {
	.header__nav li a {
		padding: 10px 15px;
	}
}


.header__nav li a.current_page {
	background-color: var(--k2-child-red);
}

.header__nav li a:not(.current_page):is(:hover,:focus-visible) {
	background-color: rgba(181, 79, 70, 0.8);
}

.header__nav li a {
	color: #fff;
	text-underline: none;
}

/*MENU OPEN*/
.header--open {
	.header__nav {
		right: 0;
	}
}

/*BURGER*/

.header__burger {
	display: none;
	--thickness: 4px;
	position: relative;
	text-align: right;
	background: none;
	border: none;
	color: var(--primary-color);
	height: 1.9rem;
	width: 2.3rem;
	cursor: pointer;
	margin: 15px 0 15px auto; /* Looks more horizontally centered */
	box-shadow: none !important;
}

.header__burger:hover {
	background-color: transparent !important;
	color: var(--primary-color) !important;
}

@media only screen and (max-width: 900px) {
	.header__burger {
		display: block;
	}
}

.header__burger span {
	height: var(--thickness);
	width: 100%;
	background: currentColor;
	display: block;
	position: absolute;
	opacity: 1;
	transition: 200ms ease-in-out;
}

.header__burger span:nth-child(1) {
	top: 0;
	left: 0;
}

.header__burger span:nth-child(2) {
	top: calc(50% - var(--thickness) / 2);
	left: 0;
}

.header__burger span:nth-child(3) {
	top: calc(100% - var(--thickness));
	left: 0;
}

/* Menu open state */
.header--open .header__burger span {
	top: calc(50% - var(--thickness) / 2);
}

.header--open .header__burger span:nth-child(1) {
	transform: rotate(45deg);
}

.header--open .header__burger span:nth-child(2) {
	opacity: 0;
}

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

.breadcrumb {
	position: relative;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	line-height: 1;
	z-index: 5;
}

@media only screen and (max-width: 768px) {
	.breadcrumb {
		flex-direction: column;
	}
}

.breadcrumb__list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.breadcrumb__item {
	display: inline-block;
	margin-right: 5px;
	padding-right: 5px;
	border-right: solid 1px #000;
}

.breadcrumb__item:last-of-type {
	display: inline-block;
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

.breadcrumb__label {
	margin-right: 5px;
}
