/* Header inkl. Menu
##################################################### */
header {
    z-index: 1111;
    position: relative;
}

header .container {
    position: relative;
}

header .row {
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    position: relative;
    padding: 0px 0px 0px 0px;
    display: inline-block;
    line-height: 0;
}

.logo-wrapper a {
    display: inline-block;
    line-height: 0;
}

#logo {
    width: 347px;
    height: auto;
    transform: translate3d(0, 0, 0);
    line-height: 0;
}

@media screen and (max-width:991px) {
    .logo-wrapper {
        margin-left: 0px;
    }

    header #logo {
        width: auto;
        height: 35px;
    }
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 26px;
}

@media screen and (max-width:991px) {
    header {
        padding-top: 22.5px;
        padding-bottom: 22.5px;
    }
}

@media screen and (max-width:767px) {
    header {
        padding-top: 17.5px;
        padding-bottom: 17.5px;
    }
}

.header-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 15px;
}

header .menu li a {
    font: normal 300 var(--headermenuFS) 'Noto Sans', sans-serif;
    color: var(--primaryColor);
    z-index: 11;
    transition: 0s all;
}

header .menu li a:hover{
    font: normal 700 var(--headermenuFS) 'Noto Sans', sans-serif;
}

header .menu li a svg{
    width: 45px;
    height: 45px;
    object-fit: contain;
}

header .menu li {
    margin: 0px;
    position: relative;
    transition: 0.5s all;
    text-align: right;
}

header a:hover {
    text-decoration: none;
}

header nav {
    width: 100%;
    margin-top: 0;
    padding: 0 25px;
}

header .container {
    padding-top: 0px;
    padding-bottom: 0px;
}

header .row {
    justify-content: initial
}

.menu-hauptnavigation-container {
    padding: 15px 0 0px 0;
}

.sub-menu {
    padding-bottom: 5px;
    margin-top: 0px;
    margin-left: 15px;
}

header .menu li {
    padding-left: 0;
}

header .sm-container {
    margin-left: 0;
}

header a.search-menu-item {
    margin-bottom: 0px;
    margin-left: 0px;
    padding-left: 0px;
}

header a.search-menu-item:before,
header a.search-menu-item svg {
    display: none;
}


.menu ul {
    list-style-type: none;
    z-index: 11;
}

/* Mobile Menu
##################################################### */

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    background-color: var(--darkColor) !important;
}

header input[type='checkbox'],
.lbl-toggle {
    display: none;
}

.lbl-toggle {
    display: inline-block;
    cursor: pointer;
    transition: max-height .35s ease-in-out;
    position: absolute;
    right: 0px;
    top: -7.5px;
    -webkit-tap-highlight-color: transparent !important;
}

.collapsible-content {
    -moz-transition: height .5s;
    -ms-transition: height .5s;
    -o-transition: height .5s;
    -webkit-transition: height .5s;
    transition: height .5s;
    height: 0;
    overflow: hidden;
}