#header {
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#header a {
    display: flex;
    text-decoration: none;
    color: var(--color-text-black);
    font-weight: 500;
    align-items: center;
    transition: color 200ms ease-in-out;
}

#header a:hover {
    color: var(--color-button);
}

#header a i {
    font-size: 10px;
    margin-left: 10px;
}

#header-inner {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    padding: 10px 40px;
    display: flex;
    align-items: center;
}

#header-inner > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

#header-inner > ul > li.menu-item-has-children > a:after {
    font-family: 'hticons' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;

    content: "\e905";
    font-size: 10px;
    margin-left: 10px;
}

#header-inner > ul > li > a {
    display: block;
    padding: 10px;
    margin: 0 10px;
}

#header-inner > ul > li > ul {
    margin: 20px 0 0 0;
    padding: 10px;
    list-style: none;
    position: absolute;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 7px 30px rgba(0,0,0,0.05);
    min-width: 280px;
    transition: all 200ms ease-in-out;
}

#header-inner > ul > li:not(:hover) > ul {
    opacity: 0;
    visibility: hidden;
}

#header-inner > ul > li > ul:before {
    content: '';
    display: block;
    height: 20px;
    width: 100%;
    position: absolute;
    top: -20px;
    left: 0;
}

#header-inner > ul > li > ul > li > a {
    display: block;
    padding: 10px;
}

#menu-hoofd-menu {
    flex-grow: 1;
}

#menu-header-rechter-menu a {
    color: var(--color-button);
}

#header-logo {
    background-image: url('../logo/default.svg');
    width: 100px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0;
    margin-right: 40px;
    position: relative;
}

#header-logo a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#header-logo span {
    display: none;
}
