/*--------------- Header ------------------*/

#header{
    font-size: 15px;
    line-height: 1.2;
    max-width: 100%;
}
.site-header{
    border-bottom: 1px solid #ccc;
    display: block;
    max-width: none;
}
.header-branding {
    float: left;
    width: 140px;
}
.mobile-menu-toggler{
    display: none;
}

/*--------------- Header Menu ------------------*/
.header-navbar {
    float: left;
    list-style: none;
    margin: 17px 0;
    width: calc(100% - 350px);
}
.menu, .menu li {
    list-style: none;
}
.header-navbar > div > .menu > li > a{
    color: rgb(84, 89, 95);
}

@media all and (min-width: 768px){

    .hidden-desktop-menu {
        display: none !important;
    }
    .header-navbar > div > .menu {
        float: left;
        margin: 0;
        overflow: hidden;
        padding: 0;
    }
    .header-navbar > div > .menu > li {
        display: inline-block;
        float: left;
        margin-right: 0;
    }
    .header-navbar > div > .menu > li > .sub-menu {
        background: #f3f3f3;
        display: none;
		left: calc(50% - 562px);
        min-width: 900px;
        padding: 0;
        position: absolute;
        width: 1124px;
        z-index: 9999;
    }
    .header-navbar > div > .menu > li:first-of-type > .sub-menu {
        flex-direction: column;
        flex-wrap: wrap;
        height: 590px;
    }
    .header-navbar > div > .menu > li:hover > .sub-menu {
        display: block;
    }
    .header-navbar > div > .menu > li:first-of-type:hover > .sub-menu {
        display: flex;
    }
    .header-navbar > div > .menu > li:nth-of-type(2) > .sub-menu{
        overflow: hidden;
    }
    .header-navbar > div > .menu > li:nth-of-type(2) > .sub-menu > li {
        float: left;
        padding-bottom: 20px;
        width: 33.333%;
    }
    .header-navbar > div > .menu > li > a {
        display: block;
        padding: 12px 16px;
    }
    .header-navbar > div > .menu a:hover,
    .header-navbar > div > .menu > li > .sub-menu > li > a:hover,
    .header-navbar > div > .menu > li > .sub-menu  a:hover {
        color: #fff;
        background-color: #e8685f;
    }
    .header-button-text:after {
        content: '\21AA';
        font-size: 40px;
        position: absolute;
        bottom: -23px;
        right: 1px;
        transform: rotate(-19deg);
    }
}

.menu > li.menu-item-has-children > a:after {
    background-image: url(./../images/chevron-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    height: 12px;
    margin-left: 8px;
    vertical-align: middle;
    width: 10px;
}
.menu > li.menu-item-has-children:hover > a:after{
    background-image: url(./../images/chevron-down-white.svg);
}
.menu > li > .sub-menu  a{
    color: #54595f;
    display: block;
    font-size: 14px;
    padding: 5px 20px;
}
.menu ul {
    margin: 0;
    padding: 0;
}
.menu > li > .sub-menu > li > a{
    color: #e8685f;
    padding: 15px 20px;
    text-transform: uppercase;
}

/*--------------- Header Button ------------------*/

.header-button-wrapper {
    float: right;
    margin: 16px 0;
    position: relative;
}
.header-button-wrapper:before{    
    background: url(https://www.stalling31.nl/wp-content/uploads/2021/11/Bestaande_klant_arrow.svg) no-repeat;
    background-size: contain;
    color: transparent;
    content: '';
    display: block;
    left: -125px;
    height: 50px;
    overflow: hidden;
    position: absolute;
    top: -8px;
    width: 120px;
}
.header-button-text{
    display: none;
}