/*
Theme Name: HZNG
Description: Webdesign & design systems
Version: 1.1
Author: P. Huizinga at HZNG - hzng.nl
*/

/* Reset */
/* Handled by reset.css from https://github.com/murtaugh/HTML5-Reset */

/* GENERAL */

.print {
    display: none;
    visibility: hidden;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:focus {
    outline: none;
}
*,html,body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-size: 18px;
    line-height: 1.65em;
    color: #1c1c1c;
    font-weight: 400;
}
input {
    font-family: inherit;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}
body {
    background:#F9F7F4;
    overflow-x: hidden;
    padding-top: 140px;
}
    body.dark-mode {
        background:#222;
        color: #FFF;
    }

hr {
    border-style: solid none none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #999;
}

/* FONTS */

h1,h2,h3,h4,h5,h6 {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

h1 span,
h1 em,
h1 {
    font-weight: 500;
    font-size: 52px;
    line-height: 110%;
    margin: 20px 0 10px;
}

h2{
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    margin: 30px 0 0;
}
    h1 + h2 {
        margin: -5px 0 30px;
        opacity: 0.65;
    }
        h2.handwriting{
            font-size: 52px;
            line-height: 125%;
            margin: 50px 0 ;
        }

h3,
h3 p{
    font-weight: 600;
    font-size: 28px;
    line-height: 125%;
    margin: 25px 0 5px;
}

h4{
    font-weight: 600;
    font-size: 22px;
    line-height: 125%;
    margin: 12px 0 4px;
}
h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    margin: 10px 0 3px;
}
li a,
li,
p *,
p {
    font-size: inherit;
}
p {
    margin-bottom: 15px;
}
p strong{
    font-weight: 600;
    position: relative;
    border-radius: 2px;
}
img {
    max-width: 100%;
}
.text-center,
.text-center * {
    text-align: center;
}
.text-right *,
.text-right{
    text-align: right;
}
.handwriting {
    font-family: "Square Peg", cursive!important;
    font-weight: 400!important;
    font-style: normal!important;
}
    p.handwriting {
        font-size: 32px;
    }
.bg-001 {
    background: #F7F7F7;
}
.bg-white {
    background: #FFF;
}
.bg-green {
    background: #6E7C58;
}
.color-oat * {
    color: #F9F7F4;

}


.content ul {
    margin: 0 0 10px 25px;
    padding: 0;
    list-style: disc;
}
    .content ul li {

    }
    .content h2.handwriting {
        font-size: 42px;
        line-height: 50px;
    }
    .content h1 + h2.handwriting {
        margin-top: 0;
    }

/* GRID */

article,
section {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}
.row {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 30px 0 30px;
    flex-wrap: wrap;
    overflow: visible;
}
    .usps .row {
        padding-top: 0;
    }
.container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    overflow: visible;

}
    .container.all-posts,
    .container.chosen-posts,
    .container.more-pages {
        max-width: 1218px;
    }
    .container.padding-top {
        padding-top: 60px;
    }
    .vh-100  {
    height: 100vh;
}
.vh-75  {
    height: 75vh;
}
.vh-50  {
    height: 50vh;
}
.min-height  {
    min-height: 400px;
}
.vw-100  {
    width: 100vw;
}
.flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.center,
.flex-center {
    justify-content: center;
}
.flex-stretch{
    align-content: stretch;
}
.space-between,
.flex-space-between{
    justify-content: space-between;
}
.flex-end{
    justify-content: flex-end;
}
.flex-self-end{
    align-self: flex-end;
}
.flex-space-around{
    justify-content: space-around;
}
.flex-space-evenly{
    justify-content: space-evenly;
}
.flex-v-align-center{
    align-items: center;
}
.flex-v-align-bottom{
    align-items: flex-end;
}
.flex-stretch {
    align-items: stretch;
}
.flex-v-align-top{
    align-items: flex-start;
}
.flex-h-align-left{
    justify-content: left;
}
.flex-h-align-center{
    justify-content: center;
}

.flex-h-align-right {
    justify-content: right;
}
.flex-column-reverse {
    flex-direction: column-reverse;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.flex-no-wrap  {
    flex-wrap: nowrap;
}
.flex-grow-1 {
    flex-grow: 1;
}
.flex-grow-2 {
    flex-grow: 2;
}
.flex-grow-3 {
    flex-grow: 3;
}
.flex-grow-4 {
    flex-grow: 4;
}
.flex-grow-5 {
    flex-grow: 5;
}
.flex-grow-6 {
    flex-grow: 6;
}

/* PADDING ON THE COLUMNS */

div[class*="col-"] {
    padding: 0px 25px;
    position: relative;
    overflow: visible;
}
.no-padding > div[class*="col-"] {
    padding: 0;
}
.extra-padding div[class*="col-"] {
    padding: 0 40px;
}
.no-self-padding {
    padding: 0!important;
}
*.padding {
    padding: 25px;
}
.border-radius  {
    border-radius: 20px;
    overflow: hidden;
}
.first img{
    border-radius: 20px;
    margin: 0;
    overflow: hidden;
}
.featured-image {
    margin: 0!important;
}

/* COLUMNS */

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}
.col-2 {
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
}
.col-25 {
    flex: 0 0 20%;
    max-width: 20%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}
.col-45 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
}
.col-5 {
    flex: 0 0 41.66666%;
    max-width: 41.66666%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}
.col-8 {
    flex: 0 0 66.6666%;
    max-width: 66.6666%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}
.col-11 {
    flex: 0 0 91.66666%;
    max-width: 91.66666%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.small-screen-only {
    display: none;
}
.large-screen-only {
    display: block;
}
.pull-right {
    float: right;
}
.sticky {
    position: sticky!important;
    top: 120px;
    z-index: 900;
}
.order-1 {
 order: -1;
}
.overflow-visible {
    overflow: visible!important;
}

/* GENERAL */

.whole-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 200;
}

/* CSS FOR TOGGLE BUTTON */

.toggle-menu {
    display: none;
    width: 80px;
    height: 80px;
    cursor: pointer;
    padding: 0!important;
    right: 0px;
    top: 0;
    margin: 0!important;
    margin-left: 20px!important;
    position: absolute;
    transition: all .2s ease-in-out;
}

    .toggle-menu .bar{
        width: 25px;
        height: 2px;
        position: absolute;
        background: #202223;
        border-radius: 4px;
        transition: all .2s ease-in-out;

    }
        .toggle-menu .bar.top-bar{
            top: 32px;
            left: 27px;
        }
        .toggle-menu .bar.middle-bar{
            top: 50%;
            margin-top: -1px /*height of bar / 2*/ ;
            left: 27px;
            width: 14px;
        }
        .toggle-menu .bar.bottom-bar{
            bottom: 32px;
            left: 27px;
        }

        .menu-active .toggle-menu .bar.top-bar{
            transform: rotate(45deg);
            transform-origin: 0 0;
        }
        .menu-active .toggle-menu .bar.middle-bar{
            opacity: 0;
        }
        .menu-active .toggle-menu .bar.bottom-bar{
            transform: rotate(-45deg);
            transform-origin: 0 100%;
        }
        .menu-active .toggle-menu .bar.top-bar,
        .menu-active .toggle-menu .bar.bottom-bar {
            width: 21px;
            left: 32px;
        }

/* MAIN MENU DESKTOP */

@media (min-width:1280px) {
    .row.main-menu {
        padding: 0;
        margin: 0;
        z-index: 1000;
        overflow: visible;
        top: 0;
        position: fixed;
        background: #FFFFFF;
        height: 120px;
    }
    .main-menu .menu {
        display: flex;
    }
        .ctas a,
        .main-menu .menu a {
            text-decoration: none;
            line-height: 40px;
            padding: 10px 10px;
            display: inline-block;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            transition: opacity 0.2s ease-in-out;
        }   
        .main-menu .menu > li > a {
            margin: 0 5px;
        }
        .main-menu .menu .cta-ghost a {
            border: 0;
        }

            .main-menu .menu .menu-item {
                position: relative;
                list-style: none;
            }

                .main-menu .menu .menu-item > a:hover,
                .main-menu .menu .menu-item.menu-item-has-children:hover > a {
                    opacity: 0.75;
                }
                .main-menu .menu .menu-item.current-menu-parent > a,
                .main-menu .menu .menu-item.current-menu-item > a {
                    opacity: 0.75;
                }

                .main-menu .menu > .menu-item:hover > a {
                }

                .main-menu .menu .menu-item.menu-item-has-children a {
                    position: relative;
                    padding-right: 30px;
                }
                .main-menu .menu .menu-item.menu-item-has-children > a:after {
                    content: "";
                    display: block;
                    width:  7px;
                    height: 7px;
                    border-bottom: 2px solid;
                    border-left: 2px solid;
                    transform: rotate(-45deg);
                    position: absolute;
                    right: 12px;
                    top: 50%;
                    margin-top: -5px;
                    transition: all 0.2s ease-in-out;
                }
                .main-menu .menu .menu-item.cta:hover a {
                    background: #F5F5F5;
                    color: #1c1c1c;
                }
        .main-menu .menu > li.menu-item {
        }
        .main-menu .menu .menu-item.menu-item-has-children .sub-menu {
            position: absolute;
            left: -9999px;
            width: 260px;
            background: #FFFFFF;
            box-shadow: 0 5px 10px 0 rgba(0,0,0,0.15);
            z-index: 100;
            opacity: 0;
            top:  60px;
            border-radius: 10px;
            padding: 10px 0;
            transition: opacity 0.2s ease-in-out 0s, top 0.2s ease-in-out;
        }
            .main-menu .menu .menu-item.menu-item-has-children:hover .sub-menu {
                left: -5px;
                opacity: 1;
                top: 55px;
            }

                .main-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item a {
                    width: 100%;
                    line-height: 26px;
                    padding: 5px 20px;
                    font-size: 15px;
                }
                .child-pages,
                .cta-menu {
                    padding: 0;
                    list-style: none;
                }
                    .cta-menu a.ghost {
                        background: none;
                        border: 1.5px solid #222;
                        color: #222;
                    }
                    .cta-menu a.orange {
                        border: 2px solid #FF8800;
                        background: #FF8800;
                        color: #222;
                    }
      
}

/* MAIN MENU MOBILE */

@media (max-width:1279px) {
    .toggle-menu {
        display: block;
        z-index: 1000;
    }
    .row.main-menu {
        height: 80px;
        position: fixed;
        top: 0;
        left: 0;
        background: #FFF;
        width: 100vw;
        padding: 0;
        margin:0;
        z-index: 900;
        overflow: visible;
        transition: background 0.2s ease-in-out;
        z-index: 900;
    }
    .main-menu .menu,
    .main-menu .menu li {
        list-style: none;
    }
        .row.main-menu .container {
            height: 100%;
            width: 100%!important;
            padding: 0 20px;
        }
        .row.main-menu .col-12 {
            height: 100%;
            width: 100%!important;
            padding: 0;
        }
        .row.main-menu .mobile-menu {
            position: fixed;
            right: -400px;
            top: 0px;
            width: calc(100vw - 80px);
            max-width: 400px;
            height: auto;
            padding: 80px 0 30px 0;
            z-index: 980;
            background: #6E7C58;
            transition: right 0.2s ease-in-out;
            border-top-left-radius: 30px;
            border-bottom-left-radius: 30px;
        }
             .row.main-menu .mobile-menu  > div {
                width: 100%;
             }
            .menu-active .row.main-menu .mobile-menu {
                right: 0;
                transition: right 0.2s ease-in-out;
            }
            .overlay {
                position: fixed;
                left: 0;
                top: 0;
            }
                .main-menu .cta-menu,
                .main-menu .menu a {
                    text-decoration: none;
                    line-height: 70px;
                    padding: 0 25px 0 25px;
                    font-size: 115%;
                    width: 100%;
                    color: #F9F7F4;
                    display: inline-block;
                }
                .main-menu .menu .menu-item.menu-item-has-children > a:after {
                    content: "";
                    display: block;
                    width:  10px;
                    height: 10px;
                    border-bottom: 2px solid;
                    border-left:2px solid;
                    transform: rotate(-45deg);
                    position: absolute;
                    right: 35px;
                    top: 37px;
                    margin-top: -7px;
                    opacity: 0;
                }

                .menu-active .main-menu .menu .menu-item.menu-item-has-children > a:after {
                    opacity: 1;
                }

                .main-menu .menu .menu-item {
                    position: relative;
                }

                    .main-menu .menu .menu-item.current-menu-item > a {
                        opacity: 0.75;
                    }

                .main-menu .menu .menu-item.menu-item-has-children .sub-menu {
                    display: none;
                }
                    .main-menu .menu .menu-item.menu-item-has-children:hover .sub-menu {
                        display: block;
                    }

                    .main-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item a {
                        width: 100%;
                        padding-left: 40px;
                        line-height: 50px;
                        font-size: 95%;
                    }

    .mobile-menu .open-times{
        position: absolute;
        top:20px;
        color: #F9F7F4!important;
    }
    .main-menu .cta-menu {
        text-decoration: none;
        padding: 0 25px 0 25px;
        font-size: 125%;
        flex-direction: column;
        display: flex;
        margin-top: 30px;
    }
    .main-menu .cta-menu .btn {
        line-height: 50px;
        font-size: 18px;
        margin: 0 0 20px 0;
    }
    .main-menu .cta-menu .btn.ghost {
        border-color: #F9F7F4;
        color: #F9F7F4;
    }
    .main-menu .cta-menu .btn.whatsapp {
        border-color: #1c1c1c;
        color: #F9F7F4;
        background-color: #1c1c1c;
    }
}

/* FOOTER MENU DESKTOP */
 
footer {
    position: relative;
    padding-top: 30px;
}
    footer .row {
        padding: 45px 0;
    }
    footer .row *{
        color: #F9F7F4;
    }

.row.footer-menu {
}
    footer .flex-row ul {
        flex-direction: row;
    }
    footer .flex-column ul {
        flex-direction: column;
    }
    footer ul.menu a {
        padding: 0 20px 10px 0!important;
        color: #FFF;
        font-size: 95%;
        line-height: 150%;
    }
    .sub-footer ul,
    .sub-footer ul li,
    .footer-menu ul,
    .footer-menu ul li {
        margin: 0;
        list-style: none;
    }
    footer strong,
    footer,
    footer table td,
    footer a {
        color: #FFF;
        font-size: 16px;
        line-height: 28px;
        text-decoration: none;
        transition: opacity 0.15s ease-in-out;
    }   

        footer a:hover {
            opacity: 0.75;
        }

        footer .hero {
            position: absolute;
            right: 30px;
            bottom: -15px;
        }
    .row.sub-footer {
        padding: 20px 0 10px 0;
    }
    subfooter a,
    subfooter p{
        font-size: 14px;
        opacity: 0.75;
        text-decoration: none;
    }
    subfooter ul {
        flex-direction: column;
        margin: 0 auto;
    }
    subfooter ul li{
        float: left;
        padding-right: 20px;
        display: inline-block;
    }
}

@media (min-width:1279px) {
    .sub-footer .menu,
    .footer-menu .menu {
        display: flex;
    }
    .sub-footer .menu a,
    .footer-menu .menu a {
        text-decoration: none;
        padding: 0 20px 0 0;
        display: inline-block;
    }

    .footer-menu .menu .menu-item {
        position: relative;
    }

    .footer-menu .menu .menu-item > a:hover,
    .footer-menu .menu .menu-item.current-menu-item > a {
        opacity: 0.75;
    }
}

/* FOOTER MENU DESKTOP */
 
footer {
    position: relative;
    padding-top: 30px;
    background: #6E7C58;
}
.row.footer-menu {
}
    footer .flex-row ul {
        flex-direction: row;
    }
    footer .flex-column ul {
        flex-direction: column;
    }
    footer ul.menu a {
        padding: 0 20px 10px 0!important;
        color: #FFF;
        font-size: 95%;
        line-height: 150%;
    }
    .sub-footer ul,
    .sub-footer ul li,
    .footer-menu ul,
    .footer-menu ul li {
        margin: 0;
        list-style: none;
    }
.sub-footer {
    font-size: 80%;
    background: #6E7C58;

}.sub-footer * {
    color: #F9F7F4;
}
.sub-footer .copyright {
    text-align: right;
}
@media (min-width:1280px) {
    .sub-footer .menu,
    .footer-menu .menu {
        display: flex;
    }
    .sub-footer .menu a,
    .footer-menu .menu a {
        text-decoration: none;
        padding: 0 20px 0 0;
        display: inline-block;
    }

    .footer-menu .menu .menu-item {
        position: relative;
    }

    .footer-menu .menu .menu-item > a:hover,
    .footer-menu .menu .menu-item.current-menu-item > a {
        opacity: 0.75;
    }
}

/* FOOTER MOBILE */

@media (max-width:1279px) {
    .footer-menu .col-12{
        flex-direction: column;
    }
    footer .copyright {
        margin-top: 30px;
    }
        .footer-menu .menu a {
            text-decoration: none;
            padding: 0;
            display: inline-block;
        }
        footer .row .container > div {
            margin-bottom: 30px;
        }
        *.text-right * {
            text-align: left!important;
        }
}
.socials {
    margin-top: 20px;
}
.socials img{
    margin-right: 10px;
}
.btn {
    padding: 0 20px;
    border-radius: 30px;
    display: inline-block;
    line-height: 40px;
    text-decoration: none;
    background: #6E7C58;
    display: inline-block;
    font-weight: 500;
    color: #FFF;
    width: auto;
    border: 0;
    border: 1.5px solid #6E7C58;
    font-size: 16px;
    margin-top: 20px;
}  
    .main-menu .btn {
        margin-top: 0;
    }
    .btn + .btn {
        margin-left: 10px;
    }
    .main-meni .btn {
        font-size: 16px;
    }
    .btn.inverted {
        background: #FFF;
        color: #222;
    }

    .btn.large {
        padding: 0 25px;
        line-height: 50px;
        font-size: 20px;
    }
    .btn.small {
        padding: 4px 15px;
        line-height: 30px;
        font-size: 13px;
    }
    .btn.ghost {
        border: 1.5px solid #1c1c1c;
        background: none;
        color: #1c1c1c;
    }
    .btn.margin-top {
        margin-top: 1em;
    }
    .btn.whatsapp {
        padding-left: 40px;
        background-image: url('images/whatsapp.svg');
        background-size: 25px;
        background-position: 10px center;
        background-repeat: no-repeat;
        background-color: #6E7C58;
    }
    .bg-green .btn {
        background-color: none;
        border-color: #F9F7F4;
        color: #F9F7F4;
    }

/* LOGO */

.logo {
    position: absolute;
    left: 50%;
    margin-left: -125px;
    top: -15px;
}

.logo svg{
    width: 250px;
    height: 92px;
}


/* BREADCRUMBS */

.breadcrumbs{
   padding: 0 0 10px;
}

.breadcrumbs * {
   font-size: 14px;
}

.breadcrumbs span span {
   font-size: 14px;
   font-weight: 500;
}
    .breadcrumbs span span {
       opacity: 0.75;
    }
    .breadcrumbs span span:hover {
       opacity: 1;
    }
    .breadcrumbs span.arrow {
        position: relative;
        width: 25px;
        display: inline-block;
    }
    .breadcrumbs span.arrow:after{
        content: "";
        display: inline-block;
        width:  7px;
        height: 7px;
        border-bottom: 1.5px solid;
        border-left: 1.5px solid;
        transform: rotate(-135deg);
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -4px 0 0 -4px;
        transition: all 0.2s ease-in-out;
    }


/* SLIDER */

.container.slick-slider {
    position: relative;
    z-index: 10;
}
.slick-list {
    width: 100%;
}
    .slick-slide {
        float: left;
    }

    .slick-arrow {
        position: absolute;
        right: 25px;
        bottom: -70px;
        border: 0;
        background: #EFEFEF;
        text-indent: -9999px;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }
        .slick-arrow.slick-disabled {
            opacity: 0.5;
            cursor: default;
        }
        .slick-arrow.slick-prev {
             right: 100px;
         }
        .slick-arrow.slick-prev,
        .slick-arrow.slick-next {
            background: url('assets/large-arrow.svg');
            background-size: contain;
            background-repeat: no-repeat;

        }
        .slick-arrow.slick-prev {
            background: url('assets/large-arrow-back.svg');
        }

/* PAGES */

.wpcf7-form {
    background: #FFF;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    padding: 20px 30px;
    margin-top: 40px;
}
    .wpcf7-form label {
        width: 100%;
        font-size: 14px;
        font-weight: 500;
    }
    .wpcf7-form :place {
        width: 100%;
        font-size: 14px;
        font-weight: 500;
    }
    .post-password-form input[type=password],
    .wpcf7-form textarea,
    .wpcf7-form input[type=text],
    .wpcf7-form input[type=email]{
        width: 100%;
        line-height: 32px;
        padding: 10px;
        font-size: 18px;
        border: 1px solid #DDD;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .post-password-form input[type=password] {
        max-width: 300px;
    }
    .wpcf7-form textarea::placeholder,
    .wpcf7-form input[type=text]::placeholder,
    .wpcf7-form input[type=email]::placeholder{
        color: #222;
    }
    .wpcf7-form input[type=radio] {
        width: 20px;
        box-sizing: border-box;
        padding: 0;
    }
    .wpcf7-form textarea {
        height: 130px;
    }

    .wpcf7-form .wpcf7-submit {
        padding: 4px 20px;
        border-radius: 30px;
        display: inline-block;
        line-height: 40px;
        text-decoration: none;
        background: #222;
        display: inline-block;
        font-weight: 500;
        color: #FFF;
        width: auto;
        border: 0;
    }

    .wpcf7-form p.disclaimer {
        width: 100%;
        margin: 10px 0 20px;
        font-size: 14px;
        line-height: 22px;
        color: #666;
    }
    .wpcf7-radio .wpcf7-list-item, .wpcf7-checkbox .wpcf7-list-item {
        display: block;
        margin-left: 0px;
    }

    .wpcf7-radio:after, 
    .wpcf7-checkbox:after {
        content: "";
        display: block;
        height: 15px;
    }

    .wpcf7 .wpcf7-list-item {
        display: block;
        margin-bottom: 5px;
    }

    .wpcf7-form .wpcf7-radio label {
        position: relative;
        cursor: pointer;
        line-height: 35px;
    }
    .wpcf7-form .wpcf7-radio label span {
        line-height: 35px;
        font-size: 1.15em;
        padding-top: 10px;
    }

    .wpcf7-form .wpcf7-radio input[type=radio] {
        position: relative;
        visibility: hidden;
    }

    .wpcf7-form .wpcf7-radio input[type=radio] + span:before {
        display: block;
        position: absolute;
        content: '';
        border-radius: 100%;
        height: 24px;
        width: 24px;
        top: -3px;
        border: 1px solid #CCC;
    }

    .wpcf7-form .wpcf7-radio input[type=radio] + span:after {
        display: block;
        position: absolute;
        content: '';
        border-radius: 100%;
        height: 18px;
        width: 18px;
        top: 0px;
        left: 3px;
        visibility: hidden;
    }

    .wpcf7-form .wpcf7-radio input[type=radio]:checked + span:before {
        background: transparent;
    }


    .wpcf7-form .wpcf7-radio input[type=radio], .wpcf7-form .wpcf7-checkbox input[type=checkbox] {
        margin-right: 10px;
    }

    .wpcf7-form .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + span:after {
        background: #FF8800;
        visibility: visible;
    }

/* ALLERGENEN */

.card .padding {
    padding: 30px!important;
}
.card .row {
    padding-top: 0;
}
.allergenen-toggle {
    font-size: 13px;
    cursor: pointer;
    height: 40px;
    top: -45px;
    right: 0;
    border-radius: 50px;
    z-index: 200;
    padding: 0 20px;
    font-weight: 500;
    position: absolute;
}
    .allergenen-toggle * {
        line-height: 40px;
        font-weight: 500;
    }

    .print-button {
        font-size: 13px;
        cursor: pointer;
        height: 40px;
        top: -45px;
        left: 0;
        border-radius: 50px;
        z-index: 900;
        padding: 0 20px;
        font-weight: 500;
        position: absolute;
        border: 0;
        background: none;
    }

.gerecht-allergenen {
    display: flex;
}
.gerecht-allergenen li {
    list-style: none;
    padding: 0;
    margin: 10px 20px 0 0;
    width: 60px;
    height: 60px;
    background-image: url('images/icon_pindas.jpg');
    background-size: cover;
    text-indent: -9999px;
}

    .gerecht-allergenen li.schaaldieren {
        background-image: url('images/icon_schaaldieren.jpg');
    }
    .gerecht-allergenen li.selderij {
        background-image: url('images/icon_selderij.jpg');
    }
    .gerecht-allergenen li.zwaveldioxide {
        background-image: url('images/icon_zwavel.jpg');
    }
    .gerecht-allergenen li.sesamzaad {
        background-image: url('images/icon_sesamzaad.jpg');
    }
    .gerecht-allergenen li.vis {
        background-image: url('images/icon_vis.jpg');
    }
    .gerecht-allergenen li.soja {
        background-image: url('images/icon_soja.jpg');
    }
    .gerecht-allergenen li.weekdieren {
        background-image: url('images/icon_weekdieren.jpg');
    }
    .gerecht-allergenen li.ei {
        background-image: url('images/icon_ei.jpg');
    }
    .gerecht-allergenen li.gluten {
        background-image: url('images/icon_gluten.jpg');
    }
    .gerecht-allergenen li.lupine {
        background-image: url('images/icon_lupine.jpg');
    }
    .gerecht-allergenen li.melk {
        background-image: url('images/icon_melk.jpg');
    }
    .gerecht-allergenen li.mosterd {
        background-image: url('images/icon_mosterd.jpg');
    }
    .gerecht-allergenen li.noten {
        background-image: url('images/icon_noten.jpg');
    }

.opening {
    width: 100%;
}
p.open-times {
    position: relative;
}
p.open-times:before {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    display: inline-block;
    left: -10px;
    top: 2px;
    content: "";
    background: #cc3333;
    margin-right: 3px;
}
    p.open-times.is-open:before {
        background:#66cc66;
    }
    footer .open-times {
        display: inline-block;
    }

.main-menu p.open-times {
    font-size: 13px;
    line-height: 43px;
    font-weight: 500;
    margin: 0 20px 0 0;
    color: #777;
}
    .main-menu p.open-times.is-open {
        color: initial;
    }


.keurmerk {
    width: 100px;
    height: auto;
    margin-top: 20px;
}

/* Table of contents styling */

.menu-toc {
  list-style: none;
  padding: 5px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 10;
  background: #FFF;
}

.menu-toc li a {
  text-decoration: none;
  color: #FFF;
  padding: 0 15px;
  display: inline-block;
  line-height: 40px;
  background-color: #1c1c1c;
  border-radius: 50px;
  transition: background 0.2s;
  font-size: 15px;
}

.menu-toc li a:hover {
  background-color: #4F6450;
}

.card h2 {
    font-size: 60px;
    transform: rotate(-3deg);
    margin-bottom: 30px;
}


.card h3 {
    margin: 50px 0 0;
}

.card ul .dish-list:first-of-type { 
    border-top: 1px solid #DDD;
}

p.term-description {
    font-size: 16px;
    margin-bottom: 10px;

}
.cat-text * {
    font-size: 16px;
    margin-top: 20px;
}
.dish-list {
    padding: 5px 0;
    display: inline-block;
    width: 100%;
}
    .dish-list p {
        margin: 0;
        padding: 0;
        font-size: 16px;
    }
        .dish-list p.title {
            font-size: 19px;
            font-weight: 600;
            padding-right: 40px;        }
        .dish-list p.description {
            margin-bottom: 0;
        }
        .dish-list price {
            font-weight: 600;
            font-size: 19px;
            position: absolute;
            right: 30px;
        }
        .dish-list p.extra {
            font-size: 14px;
            opacity: 0.75;
        }
        .label-vegan {
            background-image: url('images/vegan.webp');
            background-size: 22px;
            background-repeat: no-repeat;
            background-position: left top;
            padding: 0 0 0 27px;
            margin-left: 10px;
            font-size: 14px;
            font-weight: 500;
            line-height: 30px;
            margin-top: -5px;
            text-wrap: nowrap;
        }

    .featured-image img {
        height: 100%;
        width: 100%;
    }
.main-menu:after,
.main-menu:before {
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    background-image: url('template-parts/corner-bottom-left.svg');
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: -40px;
}
.main-menu:after{
    background-image: url('template-parts/corner-bottom-right.svg');
    left: auto;
    right: 0;
}

footer:after,
footer:before {
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    background-image: url('template-parts/corner-top-left-green.svg');
    background-size: cover;
    position: absolute;
    left: 0;
    top: -40px;
}
footer:after{
    background-image: url('template-parts/corner-top-right-green.svg');
    left: auto;
    right: 0;
}


/* GLOBALS RESPONSIVE */

.mobile-overflow {
    min-width: 100%;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0 auto;
    flex-wrap: wrap;
}
.mobile-only {
    display: none!important;
}
.desktop-only {
    display: block!important;
}
.text-in-columns {
    column-count: 2;
    column-gap: 50px;
}

@media (max-width: 1279px) {
    body {
        padding-top: 80px;
    }
    .row {
        padding: 40px 0;
    }
    .desktop-only {
        display: none!important;
    }
    .mobile-only {
        display: flex!important;
    }
    .mobile-scroll {
        overflow-x: scroll;
        overflow-y: visible;
    }
    .mobile-overflow {
        width: 600px!important;
        min-width:  600px;
        display: flex;
        flex-wrap: initial;
        padding-bottom: 30px;
    }
    .mobile-overflow > div {
        flex: 0 0 50%!important;
        max-width: 50%!important;
    }
    .container {
        max-width: 860px;
        padding: 0 20px;
    }
    .row.main-menu .container {
        max-width: 100%;
    }

    .mobile-order-1 {
        order: -1;
    }
    .col-1,
    .col-25,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 10px!important;
    }
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px!important;
    }
    .logo {
        margin-left: -75px;
        top: 10px;
    }
    .logo svg{
        width: 150px;
        height: 62px;
    }
    .menu-toc {
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 10px;
    }
        .menu-toc a{
            white-space: nowrap;
        }
        .card .padding {
            padding: 20px!important;
        }

    .featured-image {
        margin: 20px 0!important;
    }

    .sticky {
        top: 80px;
    }
        .dish-list price {
            right: 20px;
        }
}

@media (max-width: 767px) {
    .col-1,
    .col-2,
    .col-25,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%; 
    }
    .about-me .background-wrapper {
        background: none;
    }
    .about-me .col-12 {
        padding: 0!important;
    }
    .home .featured-image {
        padding: 150px 10px;
    }
    .related.themes .background-wrapper {
        padding: 60px 10px!important;
    }
    .breadcrumbs {
        display: none;
    }
    .container {
        padding: 0 15px;
    }
    .text-in-columns {
        column-count: 1;
        column-gap: 0;
    }
    .jumbotron h1,
    h1 span,
    h1 em,
    h1 {
        font-size: 35px;
        line-height: 125%;

    }
    h2{
        font-size: 30px;
        line-height: 125%;
        margin: 35px 0 0;
    }

    h3,
    h3  p{
        font-weight: 600;
        font-size: 28px;
        line-height: 125%;
        margin: 15px 0 5px;
    }

    h4{
        font-weight: 600;
        font-size: 24px;
        line-height: 125%;
        margin: 12px 0 4px;
    }
    h5 {
        font-weight: 600;
        font-size: 22px;
        line-height: 125%;
        margin: 10px 0 3px;
    }
 
}

@media (max-width: 512px) {

}
.related .col-6 {
    margin-bottom: 30px;
}

/* PRINT */


body.print-preview {
  background: #ccc;                  /* lichtgrijze achtergrond */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}
