@charset "UTF-8";
@media (max-width:768px), (pointer: coarse) {
    /**
    ** MENU
    **/
    #mainMenu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 150;
    }
    
    .mobile-toggle .bar {
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--hamBugerColor, #000000);
        margin-bottom: 6px;
        transition: all .3s ease
    }
    .mobile-toggle.open .bar:first-child {
        transform: rotate(-45deg) translate(-6px, 6px)
    }

    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0
    }

    .mobile-toggle.open .bar:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px)
    }

    .main-navigation {
        display: none
    }

    .main-navigation.open {
        display: block;
        position: fixed;
        overflow: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--mobileMenuBgColor, #ffffff);
        z-index: 125;
        padding: 40px;
        text-align: center;
        height: 100%
    }

    li#backToSub .arrow-right {
        display: none
    }

    .menu-hoofdmenu-container {
        height: 100%
    }

    ul#menu-hoofdmenu {
        overflow: hidden;
        height: 100%;
        display: block
    }

    ul#menu-hoofdmenu li,
    ul#menu-hoofdmenu li a {
        display: block;
        height: fit-content
    }

    ul#menu-hoofdmenu li a {
        border-right: 0px;
        width: 100%;
        color: var(--mobileMenuColor, #333333);
        border-bottom: 1px dotted var(--mobileMenuColor, #333333)
    }

    ul#menu-hoofdmenu .arrow-down,
    ul#menu-hoofdmenu .arrow-left,
    ul#menu-hoofdmenu .arrow-right {
        position: absolute;
        top: 2px;
        right: 0;
        padding: 10px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, .2);
        z-index: 1321
    }
    ul#menu-hoofdmenu .arrow-down svg,
    ul#menu-hoofdmenu .arrow-left svg,
    ul#menu-hoofdmenu .arrow-right svg{
        stroke: var(--mobileMenuColor);
    }

    ul#menu-hoofdmenu .arrow-left {
        left: 5px
    }

    ul#menu-hoofdmenu .arrow-left,
    ul#menu-hoofdmenu ul.sub-menu .arrow-right {
        background: rgba(0, 0, 0, .5)
    }

    ul#menu-hoofdmenu ul.sub-menu {
        position: absolute;
        right: 0;
        width: 100%;
        height: 100%;
        top: 0;
        min-height: 80vh;
        border-bottom: 1px dotted var(--mobileMenuColor);
        opacity: 0;
        visibility: hidden;
        transition: all .35s ease-in-out;
        transform: translate(40px 100%);
        z-index: 1322;
        background-color: var(--mobileMenuBgColor)
    }

    ul#menu-hoofdmenu ul.sub-menu.subActive {
        opacity: 1;
        visibility: visible;
        transform: translate(40px 0);
        position: fixed;
        padding: 40px
    }

    ul#menu-hoofdmenu.level-1>li>a {
        text-align: center
    }

    ul#menu-hoofdmenu ul.sub-menu.subActive ul {
        left: 0 !important;
        z-index: 1324
    }

    ul#menu-hoofdmenu ul.sub-menu.subActive ul.sub-menu.subActive ul {
        left: 0 !important;
        z-index: 1325
    }

    ul#menu-hoofdmenu ul.sub-menu.subActive ul.sub-menu.subActive ul.sub-menu.subActive ul {
        left: 0 !important;
        z-index: 1326
    }

    ul#menu-hoofdmenu ul.sub-menu li a,
    ul#menu-hoofdmenu ul.sub-menu li a:hover,
    ul#menu-hoofdmenu ul.sub-menu li.current-menu-item a {
        width: 100%;
        position: relative;
        color: var(--mobileMenuColor, #333333);
        -webkit-box-shadow: 0 5px 5px -7px rgba(0, 0, 0, .75);
        -moz-box-shadow: 0 5px 5px -7px rgba(0, 0, 0, .75);
        box-shadow: 0 5px 5px -7px rgba(0, 0, 0, .75);
        -webkit-transition: .3s ease-in;
        -moz-transition: .3s ease-in;
        -ms-transition: .3s ease-in;
        -o-transition: .3s ease-in;
        transition: all .3s ease-in
    }

    ul#menu-hoofdmenu li:has(.sub-menu) a {
        padding: 15px 0
    }
}
@media (max-width:981px) {
    /**
    ** BODY
    **/
    body.navOpen {
        overflow: hidden
    }
    /**
    ** HEADER
    **/
    header{
        height: 6.5em;
    }
    header::before{
        left:-50%
    }
    .header-logo img {
        max-height: 6em;
    }
    /**
    ** MAIN CONTENT
    **/
    .main-content {
        padding-top: 6.5em;
    }
    .main-content::after {
        right: -97%
    }
    /**
    ** BLOCK SLIDER
    **/
    [block="block_slider"] .slider-content-wrapper {
        padding: 0;
        justify-content: flex-end;
    }
    [block="block_slider"] .slider-content {
        width: 100%;
        right: 0;
        bottom: 0;
        top: auto;
        height: auto;
        padding: 0 !important;
        justify-content: center;
    }
}