/* Stylesheet voor verhuurproject */
/* Gemaakt door https://www.kloksoftware.nl/ */
/* Alle rechten voorbehouden */

@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,300;0,500;1,300&family=Roboto+Slab:wght@300;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,300;0,500;1,300&family=Fredoka+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

@font-face {
    font-family: 'techna';
    src: url(../fonts/TechnaSans-Regular.otf);
    font-weight: normal;
}

:root {

    /* Alle kleuren die gebruikt worden voor de website, deze kunnen gebruikt worden met 'var(--kleurnaam);' */

    --page-background: #FFEFDC;
    --footer: #f8d2b2;

    --lichtbruin: #F9EAD7;
    --bruin: #7A624B;
    --donkerbruin: #79624B;
    --lichtblauw: #F1F9FE;
    --lichtgrijs: #F7F7F7;
    --donkerblauw: #2B2173;
    --blauw: #2d19c1;
    --geel-oud: #DFA974;
    /* (BLAUW) --geel: #003a58; */
    /* --main: #ff9a42; */
    --main: #d98338;
    --red: #910909;
    --calendar-bg-color: #000000;
    --calendar-font-color: #DFA974;
    --weekdays-border-bottom-color: #404040;
    --calendar-date-hover-color: #505050;
    --calendar-current-date-color: #1b1f21;
    --calendar-today-color: #F9FBFC;
    --calendar-today-innerborder-color: transparent;
    --calendar-nextprev-bg-color: transparent;
    --next-prev-arrow-color: #DFA974;
    --calendar-border-radius: 16px;
    --calendar-prevnext-date-color: #484848;

    --offwhite: #FFF9F2;

    --btn-radius: 14px;

    --font1: 'Roboto Slab', serif;
    --font2: 'Fredoka One', cursive;
    --font3: 'techna', sans-serif;
    --font4: 'Montserrat', sans-serif;
    --font5: 'Varela Round', sans-serif;

    /* Font Sizes */

    --font-l: 28px;
    --font-b: 24px;
    --font-m: 18px;
    --font-s: 14px;

    /* Maximale Container breedte (ex.: 1400, 1200, 1100, 1000px) */

    --width-l: 1400px;
    --width-m: 1200px;
    --width-s: 1000px;

}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
.stickyoffset {
    padding-top: 100px;
}
h1 {
    font-size: 28px;
}

input {
    -webkit-appearance: none;
}
input[type="checkbox"] {
    -webkit-appearance: checkbox;
}

/* Editing CMS style */
.cms-login-header {
    font-family: var(--font5) !important;
}

.cms-topbar, .cms-topbar a {
    font-family: var(--font5) !important;
}


.cms-topbar .fa-stack {
    display: flex;
    align-items: center;
    position: relative;
}
.cms-topbar .fa-stack .fa-stack-2x {
    font-size: 22px;
}
.cms-topbar .fa-stack .fa-stack-1x {
    position: relative;
}
    .cms-topbar .fa-stack .fa-stack-1x::before {
        position: relative;
        top: 10px;
        left: 7px;
        font-size: 14px;
        text-shadow: 0px 0px 2px #1A1A1A;
    }
/* preloader */
.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader:before,
.loader:after {
    content: '';
    border: 1em solid #DFA974;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 1s linear infinite;
    opacity: 0;
}


.loader:before {
    animation-delay: .5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
} 

/* image loader */
.loader_bg {
    position: fixed;
    z-index: 999999;
    background: rgba(255,255,255,0.5);
    width: 100%;
    height: 100%;
}
.image_loader {
    position: fixed;
    z-index: 999999;
    background: rgba(0,0,0,0.5);
    /* background: #00564A; */
    width: 100%;
    height: 100%;
    display: none;
    cursor: pointer;
}
    .imageDiv {
        width: 100%;
        margin-top: 90px; 
        height: calc(100% - 90px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .imageDiv img {
        width: auto;
        height: auto;
        max-width: calc(90vw);
        max-height: calc(90vh - 60px);
        cursor: unset;

    }
/* sweetalert */
.swal2-styled.swal2-confirm {
    background-color: var(--main) !important;
}

::selection {
    background-color: var(--main);
    color: #fff;
}

a {
    font-family: inherit;
    position: relative;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font5);
    background-color: var(--page-background);
}

body * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}
ol {
    margin-left: 34px;
}
.subtitle {
    color: var(--main);
    font-weight: 600;
    text-align: left;
    width: 100%;
    max-width: 1500px;
    border-radius: 20px;
    font-size: 22px;
    margin-bottom: 10px;
    padding: 0 20px;
    text-transform: uppercase;
    font-family: var(--font1);
}

.title {
    color: #19191A;
    text-align: left;
    border-radius: 20px;
    font-size: 40px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 1500px;
    padding: 0 20px;
    font-family: var(--font3);
}
span.error_melding {
    color: var(--red);
}
.toast-top-right {
    top: 70px !important;
}

.button-panel {
    margin-top: 5px;
    padding: 8px 12px;
}


/* Btn style */
.btn-holder {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
a.btn {
    display: inline-block !important;
    font-size: 15px !important;
    padding: 8px 12px !important;
    color: #ffffff !important;
    background: var(--main) !important;
    font-family: var(--font5) !important;
    text-decoration: none !important;
    border-radius: var(--btn-radius) !important;
}


/* Burger Menu Styling */
.burger {
    position: relative;
    cursor: pointer;
}

.menu-bar {
    background-color: black;
    width: 40px;
    height: 4px;
    display: block;
    margin-bottom: 8px;
    opacity: 1;
}

.burger.opened .bar1 {
    transform: translateY(-2px) rotate(45deg);
}

.burger.opened .bar2 {
    opacity: 0;
}

.burger.opened .bar3 {
    transform: translateY(2px) rotate(-45deg);
    top: -3px;
}

/* topbar */
.topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 6px 0;
    border-bottom: 1px solid #dddddd;
    background-color: #fff4e8;
}

.topbar_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.topbar_inner .left i {
    color: var(--main);
    padding: 0 10px;
    font-size: 14px;
}

.topbar_inner .left a {
    font-size: 12px;
    font-family: var(--font5);
    color: inherit;
}

.topbar_inner .left a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 0px;
    left: 0%;
    background: var(--main);
    transition: width .3s ease;
}

.topbar_inner .left a:hover:after {
    width: 100%;
    left: 0%;
    background: var(--main);
}

.topbar_inner .right a {
    display: inline-block;
    font-size: 13px;
    padding: 8px 12px;
    background: var(--main);
    color: #ffffff;
    font-family: var(--font5);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-left: 20px;
    border-radius: var(--btn-radius);
}

.navbar {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0px 4px 1px 4px #11111111;
    background-color: var(--offwhite);
    z-index: 10;
}
.navbar.beta{
    border-bottom: 7px dashed orange;
}
.navbar.beta .verhuur::before{
    content: "beta.";
    color: orange;
}
.navbar.beta .cms-topbar, .navbar.beta .cms-topbar a{
    color: orange;
}

.navbar-inner {
    width: 100%;
    max-width: var(--width-l);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-inner .logo-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
}

.navbar-inner .logo-holder img {
    width: 100%;
    height: 100%;
    max-height: 80px;
}
.navbar-inner .logo-holder.loggedin img {
    height: 100%;
    max-height: 60px;
}

.nav {
    width: calc(100% - 200px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-item {
    padding-left: 50px;
    font-size: var(--font-m);
    color: black;
    font-weight: bold;
}

.nav-item a,
.nav-item a:hover,
.nav-item a:active,
.nav-item a:visited,
.nav-item a:focus {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    /* text-transform: uppercase; */
    font-family: var(--font4);
}

.nav-item a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 0px;
    left: 0%;
    background: var(--main);
    transition: width .3s ease;
}

.nav-item a:hover:after {
    width: 100%;
    left: 0%;
    background: var(--main);
}

/* banner */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* margin-top: 145px; */
}

.banner .wave, .banner_info_page .wave {
    position: absolute;
    left: 0;
    top: auto;
    right: 0;
    bottom: -1px;
    z-index: 0;
    width: 100%;
    height: 4vw;
}
.banner_info_page .wave.reverse {
    bottom: auto;
    top: -1px;
    transform: rotate(180deg) rotateY(180deg);
}
.info_page_block .banner_info_page {
    margin: 60px 0;
}

.banner a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 0px;
    left: 0%;
    background: var(--main);
    transition: width .3s ease;
}

.banner a:hover:after {
    width: 100%;
    left: 0%;
    background: var(--main);
}

.banner_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
    height: calc(100vh - 168px);
    max-height: 1400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
}

    .banner_top {
        margin-bottom: 20px;
        padding: 0 15px;
        width: 100%;
        max-width: 950px;
    }
        .banner_top h1 {
            font-weight: 900;
            font-size: 50px;
            font-family: var(--font3);
            color: #fff;
            padding-bottom: 20px;
            text-shadow: 0px 0px 1px #000000;
        }
        .banner_top p {
            color: #fff;
            padding-bottom: 20px;
            text-shadow: 0px 0px 1px #000000;
        }

    .banner_bottom {
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        border-radius: 20px;
        background-color: #fff9f280;
        padding: 16px 24px;
        width: 100%;
        max-width: 950px;
        box-shadow: 0px 0px 10px -4px black;
    }
    .banner_bottom  .filter .lookalike.date{
        width: 515px;
        border-radius: var(--btn-radius);
    }
        .banner_input_holder {
            width: 100%;
            border-radius: 6px;
            display: flex;
            align-items: center;
            margin-right: 32px;
        }
            .banner_input_holder p {
                color: #000;
                font-size: 16px;
                font-family: var(--font4);
                font-weight: bolder;
                margin-right: 14px;
            }
            .banner_input_holder input {
                height: 44px;
                padding: 0 10px;
                font-size: 16px;
                font-family: var(--font5);
                border: 1px solid #eeeeee;
                border-radius: 6px;
                -webkit-appearance: none;
            }
            .banner_input_holder select {
                height: 44px;
                padding: 0 10px;
                font-size: 16px;
                font-family: var(--font5);
                border: 1px solid #eeeeee;
                border-radius: var(--btn-radius);
                outline: none;
            }
            .banner_input_holder::after {
                content: "";
                position: absolute;
                right: -16px;
                width: 1px;
                height: 100%;
                background-color: #dddddd;
            }
            .banner_input_holder .filterbar_inner{
                padding: unset;
                margin-right: -21px;
            }

        .banner_inner button {
            height: 44px;
            font-size: 16px;
            background: var(--main);
            color: #ffffff;
            font-family: var(--font5);
            letter-spacing: 1px;
            text-decoration: none;
            border-radius: var(--btn-radius);
        }

.option {
    cursor: pointer;
}
.option:hover {
    background-color: var(--main) !important;
}

/* about */
.about {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .about_inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 50px;
        width: 100%;
        max-width: 1500px;
        padding: 80px 20px;
    }
        .about_inner .left {
            flex: 1;
            /* width: 100%;
            max-width: calc(100% / 2 - 30px); */
        }
            .about_inner .left .title {
                font-size: 20px;
                font-family: var(--font1);
                text-align: left;
                width: 100%;
                font-weight: bold;
                margin-bottom: 6px;
                padding: 0;
            }
            .about_inner .left .title2 {
                font-size: 24px;
                font-family: var(--font3);
                text-align: left;
                width: 100%;
                color: var(--main);
                font-weight: normal;
                margin-bottom: 18px;
                padding: 0;
            }
        .about_inner .right {
            width: 100%;
            max-width: calc(100% / 2 - 50px);
        }
        .about_inner .right img {
            width: 100%;
            max-height: 300px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            border-radius: 6px;
            object-fit: cover;
        }

/* chalets */
.chalets {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    margin: 30px 0 50px;
}

.chalets_inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1500px;
    border-radius: 6px;
    padding: 0 15px;
}

.chalets_inner .chalet_filters {
    grid-column: 1 / -1;
    width: 100%;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    row-gap: 10px;
    flex-wrap: wrap;
}
    .chalets_inner .chalet_filters .results_filter {
        font-size: 16px;
        margin-right: 10px;
        color: white;
        background-color: var(--main);
        padding: 8px 16px;
        border-radius: 30px;
        font-family: var(--font4);
    }
        .chalets_inner .chalet_filters .results_filter i{
            cursor: pointer;
            margin-left: 10px;
        }
    .chalets_inner .chalet_filters .count_results {
        font-size: 16px;
        font-weight: 800;
        font-family: var(--font4);
        margin-left: 2px;
    }

.chalets_inner .accommodatie {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    min-height: auto;
    transition: all 0.3s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;    
    background-color: #fff9f2;
    overflow: hidden;
    border: 1px solid #dddddd52;
    border-radius: 14px;
    transition: all 0.3s ease-in-out;
}

.accommodatie .chalets_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px;
}
.accommodatie:hover {
    background-color: #eeeeee;
    transition: all 0.3s ease-in-out;
}

.chalets_inner .accommodatie .text {
    padding: 0 10px;
    height: 90px;
    font-family: var(--font5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* padding-bottom: 60px; */
    /* border-bottom: 1px solid #dddddd; */
}


.chalets_inner a {
    text-decoration: none;
    color: inherit;
}

.chalets_inner .accommodatie hr {
    margin: 10px 0;
    color: var(--main);
}

.chalets_inner .accommodatie img {
    max-width: 100%;
    max-height: 260px;
    min-height: 260px;
    transition: all .3s ease;
    overflow: hidden;
}
.chalets_inner .chalets_img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #dddddd;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}
.chalets_inner .accommodatie .chalets_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2px;
    padding: 0 10px;
    margin-bottom: 18px;
    /* border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd; */
}
    .chalets_inner .accommodatie .chalets_title {
        font-size: 22px;
        font-weight: 400;
        font-family: var(--font5);
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 10px 0;
    }
    .chalets_inner .accommodatie .review-container, .fixedboeken .review-container {
        background-color: transparent;
        padding: unset;
        margin-bottom: unset;
    }
    .chalets_inner .accommodatie .review-container .fa-star, .fixedboeken .review-container .fa-star{
        color: #c0c0c0;
    }.chalets_inner .accommodatie .review-container .fa-star.checked, .fixedboeken .review-container .fa-star.checked{
        color: orange;
    }
    .fixedboeken .review-container .fa-star{
        margin: 4px 0;
    }

.chalets_icon_container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 30px;
    /* min-height: 76px; */
}
/* .chalets_icon_container:hover {
    max-height: unset;
    overflow: unset;
} */
.detailblock_inner .chalets_icon_container {
    padding: 0px;

}
.detailblock_inner.gasten button{
    max-width: 150px;
    margin-top: 36px;
}
.detailblock_inner .mijn-account{
    line-height: 10px;
    margin-bottom: 20px;
}
    .chalets_icon_container .chalets_icon {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        border: 1px solid #f5831f57;
        border-radius: 12px;
        padding: 6px 12px;
        color: black;
        height: 32px;
        font-size: 12px;
        margin-bottom: 6px;
        margin-right: 6px;
    }
        .chalets_icon_container .chalets_icon>i, .chalets_icon_container .chalets_icon>img {
            margin-right: 8px;
            color: #F5831F;
        }
        .chalets_icon_container .chalets_icon.no_margin>i, .chalets_icon_container .chalets_icon.no_margin>img {
            margin-right: 0px;
            color: #F5831F;
        }
        .chalets_icon_container .chalets_icon>i.not_allowed {
            color: var(--red);
        }
        .chalets_icon_container .chalets_icon>i.allowed {
            color: #00463c;
        }
.chalets_inner .accommodatie div.inner_text {
    display: -webkit-box ;
    -webkit-box-orient: vertical ;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.chalets_inner .accommodatie button {
    width: calc(100% - 50px);
    font-size: 18px;
    font-family: var(--font5);
    border-radius: var(--btn-radius);
    margin: 14px auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* filterbar */
.filterbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    /* border-top: 2px solid #eeeeee;
    border-bottom: 2px solid #eeeeee; */
    padding-bottom: 20px;
    padding-top: 20px;
    /* max-width: 1500px; */
}

#formFilterAccommodatie {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    width: 100%;
}

.filterbar_inner, .filterbar_inner_kenmerk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    max-width: 1500px;
    padding: 0 20px;
}
.filterbar_inner_kenmerk {
    justify-content: center;
    row-gap: 15px;
    column-gap: 5px;
    flex-wrap: wrap;
}

.filterbar_inner_full {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    flex-direction: row;
    width: 100%;
    max-width: 1500px;
    padding: 25px 25px;
}

.filterbar_inner_full input {
    width: 25px;
    height: 25px;
    font-size: 20px;
    font-family: var(--font5);
    /* border: 1px solid var(--main); */
    border: 1px solid #dddddd;
    border-bottom: 1px solid var(--main);
    background-color: #fff;
    outline: none;
    padding: 22px;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.filterbar_inner .filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.filterbar_inner .filter p {
    padding-right: 20px;
    font-weight: bold;
}
.daterangepicker{
    padding: 5px !important;
}
.daterangepicker .drp-calendar.left{
    padding: 8px !important;
}
.drp-calendar.right{
    padding: 8px;
}
.daterangepicker .drp-buttons .btn{
    width: unset;
}
.chart{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 550px;
    padding: 20px;
    margin-top: 20px;
    border-bottom: 1px solid #ccc;
}
    
.chart.leeftijden{
    margin-bottom: 80px;
    height: 550px;
}
.chart .inner_chart{
    width: 50%;
    gap: 30px;
    
}
.chart .inner_chart.chart1, .chart .inner_chart.chart2{
    border-right: 1px solid #ccc;
}
.chart .inner_chart.leeftijden{
    width: 100%;
}
.chart .inner_chart .info .line{
    height: 2px;
    width: 180px;
    margin-bottom: 25px;
    background-color: var(--main);
    display: flex;
    justify-content: center;
    left: calc(50% - 90px);

}
.chart .inner_chart .info .filter{
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    right: 44px;
    z-index: 2;
}
.chart .inner_chart .info .title{
    font-size: 28px;
    margin-bottom: 0;

}
.chart .inner_chart .info .title span{
    color: #ccc;

} 
.chart .inner_chart .info .filter button{
    width: 70px;
}
.chart .inner_chart .info .filter select{
    width: 180px;
    font-size: 16px;
    height: 36px;
    font-family: var(--font5);
    border: 1px solid #dddddd;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: rgb(221, 221, 221);
    border-bottom: 1px solid var(--main);
    background-color: #fff;
    outline: none;
        padding-left: 12px;
    transition: all 0.3s ease-in-out;
    cursor: pointer !important;
    border-radius: 6px;
    background-color: transparent;
    -webkit-appearance: none;
}
.chart .table{
    top: -35px;
    height: 400px;
    padding: 20px;
}
    .chart .table canvas {
        z-index: 1;
    }
.chart .table.leeftijden{
    width: 100%;
    margin-bottom: 20px;
}
.snelboekenDatum .lookalike{
    background-color:   #ededed;
    min-width: 100%;
    display: flex;
   
}
.snelboekenDatum .lookalike i{
    right: 15px;
    color: var(--main);
    font-size: 18px;
}
.filterbar_inner select, .filterbar_inner .lookalike, .snelboekenDatum .lookalike, .banner_input_holder .lookalike {
    /* width: 100%; */
    width: 180px;
    font-size: 16px;
    height: 46px;
    font-family: var(--font5);
    border: 1px solid #eeeeee;
    outline: none;
    padding: 12px;
    padding-left: 40px;
    transition: all 0.3s ease-in-out;
    cursor: pointer !important;
    background-color: var(--offwhite);
    border-radius: var(--btn-radius);
    -webkit-appearance: none;
}
    .filterbar_inner .filter .select-holder {
        position: relative;
        max-width: 100%;
    }
        .filterbar_inner .lookalike, .snelboekenDatum .lookalike  {
            width: 230px;
            border-radius: var(--btn-radius);
        }        
        .filterbar_inner .lookalike.date{
            width: 517px;
            justify-content: flex-start;
            border-radius: var(--btn-radius);
        }
        .filterbar_inner .filter .pers select {
            width: 130px;
            border-radius: var(--btn-radius);
        }
        .filterbar_inner .filter .type select {
            width: 140px;
            border-radius: var(--btn-radius);
        }
        .filterbar_inner .filter .select-holder::before {
            z-index: 1;
            font: var(--fa-font-solid);
            font-size: 18px;
            color: var(--main);
            position: absolute;
            display: block;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
        }
            .filterbar_inner .filter .select-holder.date::before{
                content: "\f073";
                width: 18px;
            }
            .filterbar_inner .filter .select-holder.pers::before {
                content: "\f500";
            }
            .filterbar_inner .filter .select-holder.type::before {
                content: "\f015";
            }
            .filterbar_inner .filter .select-holder.veld::before {
                content: "\f3c5";
            }
            .filterbar_inner .filter .select-holder.kenmerk::before {
                content: "\f0b0";
            }
        

.filterbar_inner input {
    width: 170px;
    max-width: 100%;
    height: 46px;
    font-size: 16px;
    font-family: var(--font5);
    border: 1px solid #dddddd;
    border-bottom: 1px solid var(--main);
    background-color: #fff;
    outline: none;
    padding: 22px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    -webkit-appearance: none;
}
input[type="checkbox"] {
    -webkit-appearance: checkbox;
}
.filterbar_inner input[type="date"] {
    height: 46px;
    padding: 0 11px;
    /* padding-left: 44px; */
    text-align: left;
}

#select_kenmerk {
    display: none;
    z-index: 10;
    background-color: #fff;
    position: absolute;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    max-width: 230px;
    padding: 15px 10px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    margin-top: 5px;
}
#select_kenmerk input {
    height: 16px;
    width: 15px;
}
#select_kenmerk div{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}
#select_kenmerk div>label {
    
}
#select_kenmerk div:hover {
    color: var(--main);
}
input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    z-index: 1;
}
input[type="date"]:before {
    color: transparent;
    background: none;
    display: block;
    font-family: 'FontAwesome';
    font-size: 18px;
    content: '\f073';
    width: 15px;
    height: 20px;
    position: absolute;
    top: 11px;
    right: 12px;
    color: var(--main);
}
div.DTE_Body div.DTE_Body_Content div.DTE_Field input[type="date"]:before {    
    font-size: 14px;
    content: '\f073';
    width: 15px;
    height: 15px;
    top: 0px;
    right: 12px;
}


.filterbar_inner button {
    padding: 12px;
    font-size: 16px;
    border-radius: var(--btn-radius);
    height: 46px;
    margin-bottom: unset;
}

.filterbar_left, .filterbar_right {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.filterbar_left .filter, .filterbar_right .filter {
    margin-right: 25px;
}

/* detailpage accomodatie */
.banner_detail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}
.banner_detail.low {
    height: 250px;
}

.banner_detail .wave {
    position: absolute;
    left: 0;
    top: auto;
    right: 0;
    bottom: -1px;
    z-index: 1;
    width: 100% !important;
    height: 4vw;
    z-index: -1;
}

.banner_detail_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.detailblock {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    /* background-color: #F9FBFC; */
    border-radius: 20px;
    padding: 0 20px;
}


.detailblock_inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    height: auto;
    margin: 20px 0;
    padding: 0 20px;
    flex-wrap: wrap;
}

.detailblock_inner input {
    width: 100%;
    height: 30px;
    font-size: 16px;
    font-family: var(--font5);
    border: none;
    border-radius: 6px;
    background-color: #ededed;
    outline: none;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    border: 1px solid #dddddd;
}
.detailblock_inner input[type=checkbox] {
    margin-top: 5px;
    width: 30px;
}
.detailblock_inner .fullwidth {
    width: 100%;
}
.detailblock_inner .password {
    width: 100%;
}

.detailblock_inner i.fa-eye {
    position: absolute;
    right: 15px;
    bottom: 12px;
    cursor: pointer;
    color: #000 !important;
    transition: all 0.3s ease-in-out;
}

.detailblock_inner i.fa-eye:hover {
    color: var(--calendar-font-color) !important;
    transition: all 0.3s ease-in-out;
}

.fa-eye-datatable{
    position: relative;
    left: 25px;
    top: 17px;
}

input.not-valid {
    border: 1px solid var(--calendar-font-color);
}

/* paginate */
.paginate {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
    .paginate .totalInfo {
        width: 100%;
        text-align: center;
        /* color: #7d7d7d; */
    }
    .paginate .pageNumbers {        
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    .paginate.reviews .pageNumbers {
        width: 50%;
    }
    .paginate a.review-page-button:hover{
        cursor: pointer;
    }
    .paginate a.review-page-button{
        color: inherit;
    }
    .paginate a{
        font-family: var(--font5);
    }
    .paginate b{
        font-size: 20px;
    }

/* kenteken */
.kenteken {
    position: relative;
    background: #f3bd00;
    /* background: #fff; */
    width: 312px;
    height: 60px;
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}

.inset {
    border: 1px solid #333;
    border-radius: 4px;
    width: auto;
    height: 55px;
    position: relative;
    display: flex;
}

.kenteken .inset .blue {
    width: 34px;
    height: 53px;
    background: #003399;
    border-right: 1px solid #333;
    /* background-image: url('https://i.ibb.co/r7SZP4h/NLD1-01.png'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.kenteken .inset input {
    text-transform: uppercase;
    background: 0;
    border: 0;
    outline: 0;
    margin: 0;
    padding: 0;
    text-align: center;
    width: calc(100% - 35px);
    font-size: 38px;
    letter-spacing: 3px;
    line-height: 38px;
    font-family: 'Kenteken', sans-serif;
    /* background-image: url('https://svgshare.com/i/VU4.svg'); */
    background-repeat: no-repeat;
    background-size: auto;
}


.detailblock_inner h4 {
    margin-top: 10px;
}


.detailblock_inner select {
    width: 100%;
    font-size: 19px;
    font-family: var(--font5);
    border: none;
    border-radius: 12px;
    background-color: #ededed;
    outline: none;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer !important;
    border-bottom: 1px solid #816345;
}
.detailblock_inner textarea {
    border-radius: 12px;
    border-bottom: 1px solid #816345;
}
.detailblock_inner .label {
    padding: 10px 0 5px 0;
}

.detailblock_inner .required {
    color: var(--main);
}

.formAccount {    
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
}
.formBoeking{
    width: 100%;
    display: flex;
    /* flex-direction: column; */
}
.gastenboek .formBoeking {
    display: unset;
}
.gastenboekform .formBoeking {
    width: 31%;
}
div.snelboek button.afwijzen{
    border: var(--red);
    background-color: var(--red);
}
.formBoeking button.afwijzen{
    border: var(--red);
    background-color: var(--red);

}
.detailblock_inner textarea {
    width: 100%;
    height: 300px;
    max-height: 600px;
    max-width: 100%;
    font-size: 20px;
    font-family: var(--font5);
    border: none;
    background-color: #ededed;
    outline: none;
    padding: 20px;
    border-bottom: 1px solid #816345;
}

.detailblock .navbar_margin {
    margin-top: 20px;
}
.detailblock div.naviagtion_bar {
    height: 20px;
    width: 100%;
}
    .detailblock div.naviagtion_bar i {
        margin-right: 10px;
    }
    .detailblock div.naviagtion_bar a {
        color: var(--main);
    }
    .detailblock div.naviagtion_bar a:hover {
        color: #000;
    }
.detailblock div.boekings_info_inner {
    height: auto;
    width: calc(100% - 18px);
    margin-top: 20px;
    padding: 20px;
    font-family: var(--font5);
    font-weight: normal;
    background-color: #f7f7f7;
    border: 1px solid #dddddd52;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;    
    align-items: center;
    justify-content: space-between;
}
    .detailblock div.boekings_info_inner .boekings_info_btn {
        width: 150px;
        justify-content: center;
    }
    .detailblock div.boekings_info_btn a {
        font-size: 16px;
        padding: 8px 12px;
        background: var(--main);
        color: #ffffff;
        font-family: var(--font5);
        letter-spacing: 1px;
        text-decoration: none;
        text-align: center;
        background-color: var(--main);
        border-radius: 6px;
        transition: all .3s ease;
    }
.detailblock div.naviagtion_bar2 {
    height: 40px;
    width: 100%;
}
.detailblock div.naviagtion_bar2 h1 {
    font-size: 16px;
}
.detailblock_inner h1 {
    font-family: var(--font3);
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
    /* padding: 20px 0; */
    font-size: 26px;
}
.detailblock_inner .h1_subtitle {
    margin-top: 10px;
}

.detailblock_inner .boeken_form {
    display: flex;
    flex-direction: row;
    }
.detailblock_inner .left {
    max-width: 70%;
    min-width: 70%;
    padding: 0 20px 0 0;
}
.detailblock_inner .gastenboek .left{
    max-width: 40%;
    min-width: 40%;
}
.detailblock_inner .gastenboek .right{
    max-width: 50%;
    min-width: 50%;
}

.detailblock_inner .left .required {
    color: var(--main);
}

.detailblock_inner .left .images {
    margin: 20px 0 3px 0;
}
.detailblock_inner .left .images_all {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    background-color: var(--offwhite);
    margin-bottom: 20px;
}
.detailblock_inner .left div.vergrootAfbeelding{
    font-size: 13px;
    text-align: left;
    margin-top: 12px;
    /* color: #ccc; */
}
.detailblock_inner .left .caption {
    position: absolute;
    bottom: 20;
    width: 80%;
}
    .detailblock_inner .left .caption p{
        position: absolute;
        bottom: 50%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: black;
        font-size: 16px;
        background-color: #ffffffb5;
        width: 100%;
        padding: 10px 0px;
        border-radius: 6px;
        text-overflow: ellipsis;
        overflow: hidden;
    }
.detailblock_inner .left .divSliderBack {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    border-radius: 14px;
}
    .detailblock_inner .left img {
        width: 100%;
        height: 500px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        object-fit: cover;
        cursor: grab;
        border-radius: 14px;
    }
    
    .detailblock_inner .left img.portrait {
        background-size: unset;
        width: unset;
        object-fit: contain;
        border-left: 2px solid #a1a0a0;
        border-right: 2px solid #a1a0a0;
    }
.detailblock_inner .left .images_all img {
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    /* margin-bottom: 20px; */
}
    .detailblock_inner .left .images_all img.portrait {
        border-left: 0px solid #a1a0a0;
        border-right: 0px solid #a1a0a0;
    }
    .detailblock_inner .left .images_all .divSliderBack {
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        /* border-radius: unset; */
        border: unset;
        border: 1px solid #fff;
    }
    /* .detailblock_inner .left .images_all .divSliderBack.portrait {
        width: 80px !important;
    } */
.mijn_accommodatie {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.slick-next {
    width: 40px;
    height: 40px;
    display: block;
    border: 6px solid transparent;
    border-color: #fff;
    border-radius: 6px;
    border-right: 6px;
    margin-right: 80px;
    top: calc(50% - 20px);
    border-bottom: 6px;
    margin-right: 80px !important;
    transition: all 0.2s ease;
    z-index: 2;
}

.slick-prev {
    width: 40px;
    height: 40px;
    display: block;
    border: 6px solid transparent;
    border-color: #fff;
    top: calc(50% - 20px);
    border-radius: 6px;
    border-right: 6px;
    margin-left: 80px;
    border-bottom: 6px;
    margin-left: 80px !important;
    transition: all 0.2s ease;
    z-index: 2;
}

.detailblock_inner .right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
min-width: 30%;
}

.detailblock_inner .right .block {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    margin-top: 20px;
    padding: 20px;
    font-family: var(--font5);
    font-weight: normal;
    background-color: var(--offwhite);
    border: 1px solid #dddddd52;
    border-radius: 6px;
    width: 380px;
    box-sizing: border-box;
    max-width: 100%;
}
.detailblock_inner .right .block1 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    height: auto;
    margin-top: 20px;
    padding: 20px;
    font-family: var(--font5);
    font-weight: normal;
    background-color: #f7f7f7;
    border: 1px solid #dddddd52;
    border-radius: 6px;
    width: 380px;
    box-sizing: border-box;
    max-width: 100%;
    
}
.detailblock_inner .right .block1 .boeken_filterbar_inner1{
    display: flex;
}
.detailblock_inner .right .block1 .filter{
    width: 30px;
}
.detailblock_inner .right p.lineheight{
    line-height: 24px;
}
.detailblock_inner .right .block a {
    width: 100%;
    color: var(--main);
}
.detailblock_inner .right .block a span{
    /* color: var(--main); */
}
.detailblock_inner .right .block a:hover {
    color: #000;
}
.detailblock_inner .right .block a span:hover {
    border-bottom: 1px solid var(--main);
    color: #000;
}
.detailblock_inner .right .block a.chosen_single {
    padding: 9px 20px;
    font-weight: normal;
}

.detailblock_inner .right .block .accommodatie_info {
    margin-top: 8px;
    margin-bottom: 12px;
}
    .detailblock_inner .right .block .tarieven_info {
        display: none;
        margin-top: -5px;
        padding-top: 15px;
        width: 100%;
        border: 1px solid #dddddd52;
        background-color: #f9f9f9;
    }
    .detailblock_inner .right .block .tarieven_info .tarief_inner {
        display: flex;
        flex-direction: row;
        border-bottom: 1px solid #ccc;
        padding: 15px 10px;
        width: 100%;
    }
    .detailblock_inner .right .block .tarieven_info .tarief_inner:last-child {
        border-bottom: 0px;
    }
    .detailblock_inner .right .block .tarieven_info .tarief_inner:hover {
        background-color: #fff;
    }
    .detailblock_inner .right .block .tarieven_info .tarief_inner>.periode{
        border-right: 1px solid #ccc;
        width: 105px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .tarief_inner>.periode>.space {        
        width: 20px;
        height: 10px;
        align-self: center;
        margin-left: -5px;        
    }
    .tarief_inner>.periode>i {
        margin-top: -4px;
        width: 20px;
        height: 10px;
        align-self: center;
        margin-left: -5px;        
        font-size: 13px;
        color: var(--main) !important;
        padding: 0px !important;
    }
    .detailblock_inner .right .block .tarieven_info .tarief_inner>.tarief_resultaat {
        margin-left: 10px;
        display: flex;
        align-items: center;
    }
.detailblock_inner .right .block .accommodatie_info i{
    font-size: 14px;
    margin-left: 20px;
    margin-right: 7px;
    color: var(--main);
}

.detailblock_inner .right .block a i {
    color: var(--main);
    margin-top: 4px;
    margin-right: 8px;
}
.detailblock_inner .right .block i.plattegrond{
}
.detailblock_inner .right .block i.mailinfo{
    font-size: 16px;
}
.detailblock_inner .right .block .accommodatie_info i:first-child {
    margin-left: 0px;
}
.detailblock_inner .right .block .accommodatie_info i.fa-location-dot{
    cursor: pointer;
    font-size: 16px;
}
.detailblock_inner .right .block .document_item {
    width: 100%;
}
    .detailblock_inner .right .block .document_item a {
        width: unset;
    }
    .detailblock_inner .right .block .document_item i.fa-trash {
        position: absolute;
        right: 0px;
        cursor: pointer;
        font-size: 14px;
        color: #91090969;
    }
    .detailblock_inner .right .block .document_item i.fa-trash:hover{
        color: var(--red);
    }

.detailblock_inner .right .block i, .detailblock_inner .right .block span {
    padding: 2px 0 2px 0;
    color: #000;
}

.detailblock_inner .right .block p {
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 10px;
}
.detailblock_inner .right .block .boeken_filterbar_inner p {
    font-weight: unset;
}
.detailblock_inner .right .block p.lineheight {
    font-weight: normal;
}
.detailblock_inner .right .block p.extraMargin {
    margin-top: 10px;
}

.detailblock_inner .right .check_icon {
    display: flex;
    flex-direction: row;
    padding: 5px 0;
}

.detailblock_inner .right .check_icon i {
    color: var(--main);
    padding-right: 10px;
}

.detailblock_inner .right i {
    padding-right: 10px;
    color: var(--main);
}

.detailblock .description div p {
    margin-bottom: 12px;
}

.detailblock .description {
    padding: 25px;
    background-color: var(--offwhite);
    border-radius: 16px;
}
.detailblock .description h1 {
    padding-bottom: 20px;
}
.detailblock .description + .description {
    margin-top: 20px;
}

.detailblock .description span.description_details {
    display: block;
    margin-bottom: 12px;
}
    .detailblock .description span.description_details i {
        margin-right: 6px;
        margin-left: 14px;
    } .detailblock .description span.description_details i:first-child { margin-left: 0; }

.underline {
    width: 100%;
    height: 2px;
    background-color: var(--main);
    border-radius: 6px;
    margin-top: 5px;
}


/* Page Holder */
.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}
    button#scrollToTop {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 46px;
        height: 46px;
        padding: 12px;
        font-size: 16px;
        border-radius: 6px;
        margin-bottom: unset;
        opacity: 0.7;
        background-color: rgb(121, 121, 121);
        border: 0px;
    }

.page-header {
    width: 100%;
    display: block;
    box-shadow: 0px 0px 1px 4px #11111111;
    background-color: white;
    z-index: 9;
}

/* Default Containers */
.container {
    width: 100%;
    max-width: var(--width-l);
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.container-header .title {
    color: var(--donkerblauw);
    font-size: 30px;
    padding: 8px 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.container-header .text {
    color: var(--donkerblauw);
    font-size: var(--font-m);
    max-width: 1200px;
    text-align: center;
    margin: 20px 0 60px 0;
}

.container .container-inner {
    position: relative;
    width: 100%;
    text-align: center;
}

.container .container-inner .title {
    color: var(--donkerblauw);
    font-family: var(--font1);
    font-size: var(--font-l);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    max-width: var(--width-l);
}

.container .container-inner .text {
    color: var(--donkerblauw);
    font-family: var(--font2);
    font-size: 18px;
    max-width: var(--width-l);
    width: 100%;
}

.container.banner {
    width: 100%;
    max-width: 100%;
    min-height: 300px;
    color: white;
    background-size: cover;
}



/* Block voor binnen container */
.block {
    max-width: var(--width-m);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.block-img {
    outline: 1px solid var(--orange);
    display: block;
    outline-offset: 2px;
    width: 50%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.block-content {
    width: 50%;
    padding-left: 80px;
}

.block-content.left {
    padding-left: 80px;
    padding-right: 30px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.block-content.right {
    padding-left: 30px;
    padding-right: 40px;
}

.block-content .title {
    font-family: var(--font1);
    font-size: var(--font-l);
    letter-spacing: 1px;
}

.block-content .desc {
    color: var(--orange);
    font-family: var(--font2);
}

.block-content .text {
    font-family: var(--font1);
    font-size: var(--font-m);
    margin-top: 25px;
    line-height: 24px;
    letter-spacing: 1px;
}

.block-content .text ul {
    margin-top: 25px;
}

.block-content .img-holder {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
}

.img-holder .afb {
    width: calc(50% - 10px);
    height: 250px;
}

.img-holder .afb>div {
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: contain;
}

button {
    cursor: pointer;
    border-radius: var(--btn-radius);
    width: 100%;
    font-size: 14px;
    font-family: var(--font5);
    padding: 6px 12px;
    color: #fff;
    border: 1px solid var(--main);
    background-color: var(--main);
    transition: all 0.3s ease-in-out;
}
button.button_small {
    width: 200px !important;
}
button:hover {
    transition: all 0.3s ease-in-out;
    background-color: var(--main);
    opacity: 0.8;
}

.error_message {
    font-size: 30px;
    color: var(--main);
    font-family: var(--font1);
    font-weight: 900;
    margin: 50px 0;
    padding: 0 20px;
}
.error_message_verwijderd {
    font-size: 30px;
    color: var(--main);
    font-family: var(--font1);
    font-weight: 900;
    margin: 50px 0;
    padding: 0 20px;
}

.add_message {
    display: none;
    color: green;
    font-size: 20px;
    padding-top: 20px;
}

.filter_melding {
    /* color: #C50538; */
    margin: auto;
    font-size: 16px;
    font-family: var(--font2);
}

i.i_bullet_green, i.i_bullet_blue, i.i_bullet_orange, i.i_bullet_yellow, i.i_bullet_black, i.i_bullet_purple, i.i_bullet_red, i.i_bullet_white {
	/* -webkit-filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.3));
	filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.3)); */
	font-size: 11pt;
	width: 20px;
	margin-top: 4px;
	text-shadow: 0px 0px 4px #ccc;
}
i.firstColumnWidth {
	width: 28px;
}
i.i_bullet_green { color: #81C000; }
i.i_bullet_blue { color: #42A6E2; }
i.i_bullet_orange { color: #FF9743; }
i.i_bullet_yellow { color: #FFC84D; }
i.i_bullet_black { color: #737476; }
i.i_bullet_purple { color: #C080C2; }
i.i_bullet_red { color: #E94D33; }
i.i_bullet_white { color: #CDCFD0; }
i.i_bullet_error { 
	color: #FFCC42; 
	font-size: 11pt;
	width: 20px;
	float: left; 
	margin-top: 2px; 
	margin-right: 3px;
}
/* overview snelboeken */ 

.detailblock.snelboek {
    max-width: var(--width-m);
}
.detailblock.snelboek div.mijn-account{
    line-height: unset;
}
.snel-boeken {
    width: 100%;
}
    .snel-boeken .block {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        background-color: #fff;
        height: auto;
        margin-top: 20px;
        padding: 10px 0px;
    }
        .snel-boeken .block p {
            font-weight: bold;
            font-size: 18px;
            padding-bottom: 10px;
        }
        .snel-boeken .block p.label {
            font-weight: unset;
            font-size: unset;
            padding: 10px 0 5px 0;
        }
        .snel-boeken .block input[type=date] {
            margin-bottom: 10px;
            height: unset;
            padding: 10px 20px;
            
        }
        .snel-boeken .block textarea {
            height: 100px;
        }
        .snel-boeken .block input, .snel-boeken .block p, .snel-boeken .block select {
            width: 100%;
        }
        .snelboekenDatum {
            display: flex; 
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
            gap: 10px;            
        }
            .snelboekenDatum input[type='date'] {
                width: 50%;
            }

/* overview mijn account */   
.account-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .mijn-account {
        line-height: 10px;
    }
        .mijn-account h1 {
            line-height: 40px;
        }
    .cms-profile .cms-fastbook {
        font-size: 22px;
        margin-right: 24px;
    }
.admin-btn {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
}



.accommodatie_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.accommodatie_list::-webkit-scrollbar {
    display: none;
}
    .flex-column-1 h2, .flex-column-2 h2, .flex-column-3 h2 {
        padding: 0 6px;
        font-size: 20px;
        width: 100%;
        margin-bottom: 10px;
    }
    div.flex-column-1{
        overflow-x: show;
        overflow-y: auto;
        text-align: left;
    }
    div.flex-column-3{
        overflow-x: show;
        overflow-y: auto;
        text-align: left;
    }

    .flex-column-2 p{
        padding: 0 6px;
    }
    .flex-column-2 b{
        /* padding: 0 5px; */
    }

    .flex-column-2 a.red {
        color: red;
    }
    .flex-column-3 p{
        padding: 0 6px;
    }
    .flex-column-3 i{
        color: #4D8A77;
    }
    .flex-column-3 div.buttons{
        display: flex;
        flex-direction: row; 
        padding: 0 6px; 
    }
    .flex-column-3 div.buttons button.btn1{
        margin-right: 20px;
        height: 35px;
    }
    .flex-column-3 div.buttons button.btn2{
        height: 35px;
    }
.accommodatie_settings {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 6px;
    color: black;
    padding: 6px 28px 6px 12px;
    background-color: #f3f3f3;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all .3s ease;
} .accommodatie_settings:visited, .accommodatie_settings:active, .accommodatie_settings:focus {
    color: black;
} .accommodatie_settings:hover {
    transition: all .3s ease;
    background-color: #e0e0e0;
}
    .accommodatie_settings i {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        color: #dddddd;
    }

.flex-column {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
    gap: 20px;
}
  
.flex-column-1 {
    flex: calc(20% - 20px);
    flex-direction: column;
    padding: 20px 10px;
    background-color: var(--offwhite);
    border-radius: 6px;
    height: 675px;
 }
  
.flex-column-2 {
    flex: calc(50% - 20px);
    flex-direction: column;
    padding: 20px 10px;
    background-color: var(--offwhite);
    border-radius: 6px;
    height: 675px;
}

.column-2-text {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.column-3-text {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 12px;
    color: black;
    background-color: var(--offwhite);
    border: 1px solid #dddddd;
    border-radius: 6px;
    cursor: pointer;
}
    .column-3-text.blokkade b{
        color: red;
    }
    .column-3-text a {
        padding: 6px 12px;
        width: 100%;
        height: 100%;
        color: inherit;
        text-decoration: none;
    }
        .column-3-text a i {
            width: 20px;
            text-align: center;
        }

.column-2-button {
    width: calc(50% - 10px);
}

.column-3-button {
    margin-bottom: 20px;
}

.flex-column-3 {
    flex: calc(30% - 30px);
    flex-direction: column;
    padding: 20px 10px;
    padding-top: 0;
    background-color: var(--offwhite);
    border-radius: 6px;
    height: 675px;
    overflow: scroll;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.flex-column-3::-webkit-scrollbar {
    display: none;
}

.button-panel-column {
    margin-top: 30px;
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
    .button-panel-column .item {
        margin-bottom: 10px;
    }
    .button-panel-column .item>a {
        cursor: pointer;
        padding: 6px 12px;
        margin-bottom: 5px;
        width: 100%;
        font-family: var(--font5);
        border: 1px solid var(--main);
        background-color: var(--main);
        color: #fff;
        font-size: 14px;
        border-radius: 6px;
        transition: all 0.3s ease-in-out;
    }


/* overview accommodatie reviews */

.review-container {
    background-color: white;
    padding: 11px 0;
    margin-bottom: 20px;
}

.review-container-section-2 {
    display: flex;
    margin-bottom: 10px;
    width: 50%;
}
.ster{
    margin-left: 50px;
}

.review-container-section-3 {
    margin-bottom: 10px;
}

.review-container-section-4 {
    color: gray;
    font-size: 11px;
}

.review-container .fa-star {
    color: #eeeeee;
}
.review-container .fa-star.checked {
    color: orange;
}


  
/* overview mijn accommodatie */
.overview {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.overview_inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1500px;
    border-radius: 20px;
    /* padding: 0 20px; */
}

.overview_inner .item {
    /* margin-right: 10px;
    margin-bottom: 8px; */
}

.tableblock {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
    .tableblock_inner {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 1400px;
    }
.table_outer {
    display: block; 
    width: 100%;
}

.content {
    text-align: center;
  }
  .content h1 {
    font-family: 'Sansita', sans-serif;
    letter-spacing: 1px;
    font-size: 50px;
    color: #282828;
    margin-bottom: 10px;
  }
  .content  i {
    color: #FFC107;
  }
  .content span {
    position: relative;
    display: inline-block;
  }
  .content  span:before, .content  span:after {
    position: absolute;
    content: "";
    background-color: #282828;
    width: 40px;
    height: 2px;
    top: 40%;
  }
  .content  span:before {
    left: -45px;
  }
  .content  span:after {
    right: -45px;
  }
  .content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
  }
  .wrapper {
    display: inline-block;
    border: none;
    font-size: 14px;
    margin-top: 75px;
    margin-left: -135px;
    margin-left: -3px;
    margin-top: 10px;
    /* margin-bottom: -35px; */ 
  }
  .detailblock_inner .gastenboek .left .wrapper{
    margin-top: unset;
  }
  .gastenboek button{
    margin-top: 10px;
  }
  .gastenboek {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  /* .gastenboek .gastenboekform input{
    width: 50%;
  } */
  
  .wrapper input {
    border: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    opacity: 0;
  }
  
  .wrapper label {
    position: relative;
    float: right;
    color: #C8C8C8;
  }
  
  .wrapper label:before {
    margin: 5px;
    content: "\f005";
    font-family: FontAwesome;
    display: inline-block;
    font-size: 1.5em;
    color: #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  
  .wrapper input:checked ~ label:before {
    color: #FFC107;
  }
  
  .wrapper label:hover ~ label:before {
    color: #ffdb70;
  }
  
  .wrapper label:hover:before {
    color: #FFC107;
  }

img.selectPlattegrond {
    max-width: 100%;
    cursor:crosshair; 
    width: 1000px;
}
span#errorPlattegrond {
    display: none;
    color: var(--main);
    font-weight: bold;
}

/* boeken */
.block_image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    margin-bottom: 5px;
}

.moxie-shim .moxie-shim-html5 {
    width: 100% !important;
}

.moxie-shim .moxie-shim-html5 input {
    width: 100% !important;
    font-family: var(--font5);
}

.doorklikken_boeking_chalet {
    font-family: var(--font5);
    color: inherit;
    margin-top: 10px;
}

/* beschikbaarheid */
.beschikbaarheid{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1290px;
    background-color: var(--offwhite);
    border-radius: 6px;
    margin-top: 50px;
    padding: 0 20px;
}
.beschikbaarheid_inner{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
    width: 100%;
    max-width: 1400px;
    margin: 20px 0;
    padding: 0 20px;
}
    .beschikbaarheid_inner .button_block{
        padding-bottom: 10px;
        padding-top: 10px;
        display: inline-flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .beschikbaarheid_inner .price_type {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 15px;
    }
    .beschikbaarheid_inner .price_type input[type=checkbox] {
        margin-right: 10px;
        width: 30px;
        height: 30px;
    }
    .beschikbaarheid_inner h1{
        font-family: var(--font3);
        font-size: 28px;
        color: rgba(0, 0, 0, 0.8);
        font-weight: 500;
        padding: 20px 0 10px 0;
        width: 100%;
        text-align: left;
    }
    .beschikbaarheid_inner p{
        text-align: left;
        padding: 0 0 10px 0;
    }
    .beschikbaarheid_inner p.uitleg {
        color: var(--blauw);
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
        .beschikbaarheid_inner p.uitleg i {
            font-size: 23px;
            margin-right: 4px;
        }
    .beschikbaarheid_inner .description{
        background-color: transparent;
        width: 90%;
        margin: 0 auto;
    }
        .beschikbaarheid_inner .description p{
            text-align: center;
            padding: 25px 0;
        }
        .beschikbaarheid_inner .description i{
            margin-bottom: 20px;
            text-align: center;
        }
        .beschikbaarheid_inner .description .fileDropMenu{
            background-color: white;
            padding: 25px 10px;
            border-style: dashed;
            border-radius: 6px;
            width: 60%;
            display: block;
            margin: 20px auto 0 auto;
        }
        .beschikbaarheid_inner .description .fileDropMenu button{
            width: 80%;
        }
.swal-button-row-align .image_description{
    /* width: 100%; */
    height: 30px;
    font-size: 16px;
    font-family: var(--font5);
    /* border: none; */
    border-radius: 6px;
    background-color: #ededed;
    outline: none;
    padding: 20px;
    /* transition: all 0.3s ease-in-out; */
    max-width: 95%;
    min-width: 25%;
    border: 1px solid #ededed;
    border-bottom: 1px solid var(--main);
}
.swal-button-row-align .swal2-actions {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 10px;
}
    .swal-button-row-align .swal2-actions button {
        width: auto;
    }
.slick-lightbox-slick-caption{
    top: 25px
}
div.image_position {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
    div.image_position div.image_position_item{
        width: 160px;
        height: 160px;        
        box-sizing: border-box;
        align-self: center;
        padding: 10px 5px;
        /* transition: all 0.3s ease; */
    }
    div.image_position div.image_position_item .item_title{
        font-size: 14px;
        height: 20px;
    }
    div.image_position div.image_position_item .item_title i {
        font-size: 18px;
        cursor: pointer;
        position: absolute;
    }
        div.image_position div.imageFooter_edit{
            width: 160px;
        }
        div.image_position .editImageButton_left {
            width: 80px;
            border-radius: 0 0 0 5px;
            position: absolute;
            left: 0;
            top: 0;
            background-color: #DD3333;
            border-color: #DD3333;
        }
        div.image_position .editImageButton_right {
            width: 80px;
            border-radius: 0 0 5px 0;
            position: absolute;
            right: 0;
            top: 0;
        }
        div.image_position div.image_position_item .item_title i.fa-chevron-left {
            left: 10px;
        }
        div.image_position div.image_position_item .item_title i.fa-trash {
            right: 25px;
            font-size: 14px;
            color: #91090969;
        }
        div.image_position div.image_position_item .item_title i.fa-trash:hover{
            color: var(--red);
        }
    div.image_position div.image_position_item img{
        width: 160px;
        height: 120px;    
        object-fit: cover;
        border-radius: 3px;
    }
    div.image_position .image_editor_item a.imageshow img{
        border-radius: 5px 5px 0 0;
    }
    div.image_position_item_inner {
        display: flex;
        flex-direction: row;    
        align-items: center;    
    }
    div.image_position_item_inner div.item_pos {
        width: 25px;
        color: #cbc9c9;
        cursor: pointer;  
        height: 120px;      
        transition: all 0.3s ease;
    }
    div.image_position_item textarea.image_description {
        z-index: 999;
        outline: none;
        border-width: 0px;
        border-radius: 3px;
        box-sizing: border-box;
        font-weight: 500;
        background-color: #fff;
        height: 32px;
        width: 160px;
        line-height: 32px;
        vertical-align: middle;
        font-size: 10pt;
        border: 1px solid #DDD;
        border-bottom: 2px solid #2C3A4C;
        overflow: hidden;
    }
    div.image_position_item_inner div.item_pos>div {
        height: 100%;
        width: 100%;
        font-size: 26px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    div.image_position_item_inner div.item_pos:hover {
        color: #000;
    }
.dt_image {
    width: 90px;
    height: 60px;
    object-fit: cover;
}


/* boekingsrapport */
.rapportBeschikbaar {
    background-color: #99C66D;
    width: 100% !important;
    height: 100% !important;
    text-align: center;
    color: #fff;
    padding: 5px;
}

.rapportBezet {
    background-color: #C50538;
    width: 100% !important;
    height: 100% !important;
    text-align: center;
    color: #fff;
    padding: 5px;
}

.rapportWissel {
    background-color: #F7A700;
    width: 100% !important;
    height: 100% !important;
    text-align: center;
    color: #fff;
    padding: 5px;
}

/* .buttons_boekingsrapport {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
    .buttons_boekingsrapport_inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 170px;
        margin-right: 20px;
    }
        .buttons_boekingsrapport_inner a {            
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            padding: 8px 12px;
            background: var(--main);
            color: #ffffff;
            font-family: var(--font5);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            border-radius: 6px;
        } */


/* Boekingsbevestiging */
.bevestiging {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    padding: 60px 15px;
}
    .bevestiging h1 {
        width: 100%;
        text-align: center;
        font-size: 32px;
        font-family: var(--font5);
        color: #1A1A1A;
        margin-bottom: 8px;
    }
    .bevestiging .underline {
        width: 100%;
        max-width: 300px;
        height: 2px;
        background-color: var(--main);
        border-radius: 6px;
        margin: 0 auto;
        margin-bottom: 12px;
    }
    .bevestiging_inner p {
        padding: 10px;
        font-size: 16px;
    }

    .fa.fa-star.big{
        font-size:x-large;
    }

    div.filter.snelboekenDatum.filterstart2.date{
        background-color: white;
        border-radius: var(--btn-radius);
    }

    @media only screen and (max-width: 600px){
        .bevestiging h1 {
            font-size: 26px;
        }
    }


/* banner_info_page */
.banner_info_page {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 450px;
}

.banner_info_page_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.info_page_block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-top: 60px;
}

    .info_page_block h1 {
        font-family: var(--font3);
        color: rgba(0, 0, 0, 0.8);
        font-weight: 500;
        padding-bottom: 60px;
        width: 100%;
        max-width: 1200px;
        text-align: left;
    }
    .info_page_block h2 {
        margin-bottom: 10px;
        margin-top: 20px;
        font-family: var(--font3);
        color: rgba(0, 0, 0, 0.8);
        font-weight: 400;
        font-size: 18px;
    }
    .info_page_block h3 {
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .info_page_block h4 {
        margin-bottom: 10px;
        margin-top: 20px;
    }


.info_page_block_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    border-radius: 14px;
    background-color: var(--offwhite);
    margin-bottom: 40px;
    line-height: 24px;
}
.info_page_block_inner h2.h2_link{
    cursor: pointer;
}
.info_page_block_inner h2.h2_link:hover{
    color:#00463c;
}
.info_page_block_inner i.faq-icons {
    color: #000;
    font-size: 22px;
    width: 40px;
    padding: 5px 0px;
    cursor: pointer;
}
.info_page_block_inner .hidden_p{
    display: none;
}
.info_page_block_inner ul {
    margin-left: 20px;
}
.info_page_block_inner table.scrollTable td{
    padding: 4px 25px 4px 0px;
}
.info_page_block_inner:nth-child(2n + 1) {
    flex-direction: row-reverse;
}

    .info_page_block_inner .left {
        width: 100%;
        max-width: calc(100% / 2 - 30px);
        padding: 20px 30px;
    }

    .info_page_block_inner .right {
        width: 100%;
        max-width: calc(100% / 2 - 30px);
    }
    .info_page_block_inner .full_text {
        width: 100%;
        padding: 20px 30px;
    }
    .info_page_block_inner .full_text_boekingsvoorwaarden ol{
        margin-left: 34px;
        font-size: 14;
        margin-right: 31px;
    }

    .info_page_block_inner img {
        width: 100%;
        height: 100%;
        border-radius: 14px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: cover;
    }
    .info_page_block_inner p {
        font-family: var(--font5);
        color: rgba(0, 0, 0, 0.8);
    }
    
    .info_page_block_inner a {
        font-family: var(--font5);
        /* color: rgba(0, 0, 0, 0.8); ????? */
        color: var(--main);
        text-decoration: underline;
    }

#gmap_canvas {
    width: 100%;
    min-width: 500px;
    height: 500px;
    padding: 20px;
}
/* 
.info_page_block .chalets_inner .accommodatie .text {
    min-height: 260px;
} */

.info_page_block .chalets_inner .accommodatie .text span {
    color: var(--main);
}

.info_page_block .chalets_inner .accommodatie h1 {
    padding: 10px 0;
}

/* prijsinformatie */
#prijsinfo {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

    #prijsinfo h2 {
        font-weight: bold;
        font-size: 22px;
        padding-bottom: 10px;
    }

.prijsinfo_inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    /* max-width: 100px; */
    line-height: 24px;
}

    .right .prijsinfo_inner p {
        /* font-weight: normal !important;
        font-size: 16px !important;
        line-height: 24px !important; */
        /* padding-bottom: 0px !important; */
    }

    .prijsinfo_inner b {
        color: var(--main);
    }

#selected_days p, div#prijsinfo2 p, div#reset_calender p, div#prijs_afspraken_text p, button#boekingsform1 {
    padding-bottom: 10px;
}
div#boekingsform_total .prijsblock .prijsblock_inner div p {
    padding-bottom: 10px;
}

#selected_days button {
    width: 61% !important;
    font-family: var(--font5) !important;
    margin-top: 10px !important;
}

.prijsblock {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.prijsblock_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
}
.detailblock_inner div.flex{
    flex-direction: row
}
.detailblock_inner .uitleg{
    width: 100%;
}
    .detailblock_inner td.stars i{
        margin-right: 4px;
        color: gray;
    }

    .detailblock_inner td.stars i.checked{
        color: orange;
    }

    .detailblock_inner .divSubChild{
        background-color: #f1f1f1;
        min-height: 300px;
    }
    .detailblock_inner .divSubChild p{
        padding: 20px;
        margin-left: 10px;
    }

    .detailblock_inner .divSubChild .deletebtn{
        background-color: var(--red);
        width: 110px;
        position: absolute;
        margin-bottom: 20px;
        margin-left: 30px;
        bottom: 0px;

    }


    .detailblock div.noflex div.prijsblock_inner{
        flex-direction: column;
    }
    .detailblock div.noflex div.prijsblock_inner h2{
        font-size: 16px;
    }
    .detailblock div.noflex div.prijsblock_inner div {
        width: 100%;
    }
        button.max_200w {
            width: 200px;
            margin-top: 10px;
            margin-bottom: 10px;
        }
/* velden met ID die standaard verborgen moten zijn voor het boeken */
div#reset_calender, div#prijs_afspraken_text, button#boekingsform1 {
    display: none;
}

/* .prijsblock_inner #selected_days {
    max-width: 45%;
}

.prijsblock_inner #prijsinfo2 {
    max-width: 45%;
    height: auto;
} */

/* .prijsblock_inner #prijsinfo2 h2 {
    font-size: 14px;
    width: 100%;
    font-weight: normal !important;
    height: auto;
    margin-bottom: 10px;
} */


/* footer */
.footer {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: var(--footer);
    color: #1A1A1A;
    margin-top: 40px;
}

.footer .wave {
    position: absolute;
    left: 0;
    top: -1px;
    right: 0;
    bottom: auto;
    z-index: 0;
    transform: rotate(180deg);
    width: 100%;
    height: 4vw;
}

.footer-inner {
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
    .footer-top .logo {
        width: 100%;
        max-width: 280px;
    }
        .footer-top .logo img {
            width: 100%;
        }

.footer-middle {
    font-family: var(--font1);
    font-size: 12pt;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-nav {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: calc(100% - 250px - 100px);
}
.footer-item {
    width: 100%;
    max-width:  calc(100% / 3);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    font-family: var(--font5);
}

.footer-item a {
    font-family: inherit;
    color: inherit;
    text-decoration: none;
    font-weight: normal;
}
    .footer-item a:hover {
        text-decoration: underline;
    }

.footer-item-inner {
    display: flex;
    flex-direction: column;
    max-width: 180px;
    align-items: flex-start;
}

.footer-item-inner .title, .footer-socials .title {
    font-family: var(--font5);
    font-size: 15pt;
    margin-bottom: 14px;
    padding: 0px;
    width: 100%;
    text-align: start;
    color: #000000;
}
.footer-item-inner .info {
    width: 100%;
    line-height: 28px;
    font-family: var(--font5);
    color: #000000;
}

.sitemap .sitemap-item {
    width: 100%;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sitemap .sitemap-item:hover {
    text-decoration: underline;
    transition: all 0.3s ease;
}

.footer-link {
    cursor: pointer;
    display: block;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
}
.footer-socials {
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 250px;
    column-gap: 20px;
}
.footer-socials .social {
    background-color: var(--offwhite);
    color: #180D33;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    width: 40px;
    height: 40px;
    font-size: 26px;
    box-shadow: 0 -5px 40px 7px rgb(0 0 0 / 8%);
    transition: all 0.3s ease;
}

.footer-socials .social:hover {
    color: #180D33;
    opacity: 1;
    transition: all 0.3s ease;
}

.footer-socials .social i { transition: all 0.3s ease; }
.footer-socials .social:hover i.fa-twitter { color: #1da1f2; transition: all 0.3s ease; }
.footer-socials .social:hover i.fa-linkedin-in { color: #0a66c2; transition: all 0.3s ease; }
.footer-socials .social:hover i.fa-instagram { color: #c32aa3; transition: all 0.3s ease; }
.footer-socials .social:hover i.fa-facebook-f { color: #1877f2; transition: all 0.3s ease; }

.teamviewer-holder {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #ffffff;
    margin-top: 30px;
}

.teamviewer-holder div {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.teamviewer-holder img {
    transition: all 0.3s ease;
    width: 100%;
    max-width: 55px;
    filter: brightness(0) invert(1);
}

.teamviewer-holder img:hover {
    opacity: 0.5;
    transition: all 0.3s ease;
}


/* Signature */
.signature {
    background-color: #ffc797;
    color: #000000;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 20px 40px;
    font-family: var(--font5);
    font-size: 12px;
}

.signature-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.signature-inner .copyright {
    /* font-weight: bold; */
    margin-right: 6px;
}

.signature-inner .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.signature-inner .right {}

.signature-inner a,
.signature-inner a:visited,
.signature-inner a:active,
.signature-inner a:focus {
    font-family: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.fixedboeken {
    z-index: 9;
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    /* left: 0;
    right: 0; */
    max-width: 650px;
}
    div.slick-lightbox-inner div>div>div>div {
        align-items: center;
        justify-content: center;
    }
        .fixedboeken_inner {
            width: 100%;
            max-width: 650px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-radius: 20px;
            background-color: #edededd8;
            padding: 14px 30px;
            border: 1px solid #dddddd;
        }
         .fixedboeken_inner div {
            display: flex;
            align-items: center;
            font-size: 20px;
            font-family: var(--font4);
            font-weight: bold;
            color: #000;
        } 
        .fixedboeken_inner div>div {
            font-size: 16px;
            color: #2b2b2b;
            font-family: var(--font4);
            font-weight: bold;
        }
        .fixedboeken_inner div i{
            font-size: 14px;
            margin-left: 20px;
            margin-right: 7px;
            color: var(--main);
        }
        .fixedboeken_inner div div{
            margin-left: 20px;
        }
        .fixedboeken_inner a {
            color: white;
            font-size: 16px;
            padding: 8px 12px;
            background: var(--main);
            color: #ffffff;
            font-family: var(--font5);
            letter-spacing: 1px;
            text-decoration: none;
            text-align: center;
            background-color: var(--main);
            border-radius: var(--btn-radius);
            transition: all .3s ease;
        }
        .fixedboeken_inner a:hover {
            background-color: var(--main);
            color: #ffffff;
            transform: scale(1.05);
            transition: all .3s ease;
        }


.img_pos_holder {
    position: relative;
    display: inline-block;
}
    .img_pos_holder i.fa-solid {
        position: absolute;
        cursor: pointer;
        padding: 5px;
        background-color: var(--main);
        font-size: 14px;
        color: white;
        bottom: -20px;
        right: -32px;
    }
    .img_pos_holder i.fa-solid:first-child {
        top: -20px;
        right: -32px;
        bottom: unset;
    }


    .ui-sortable-helper {
        animation: shake 0.6s linear infinite; 
        -webkit-animation: shake 0.6s linear infinite; 
        -ms-animation: shake 0.6s linear infinite; 
    }
    @keyframes shake {
        0% {
            transform: rotate(5deg);
        }
        25% {
            transform: rotate(-6deg);
        }
        50% {
            transform: rotate(5deg);
        }
        75% {
            transform: rotate(-6deg);
        }
        100% {
            transform: rotate(5deg);
        }
    }

    .edit_button{
        color: orange;
        margin-left: 10px;
    }
    .edit_button:hover{
        color: rgb(247, 179, 53);
    }

    .image_editor {
        position: relative;
        width: 100%;        
        display: flex;
        flex-wrap: wrap;        
        justify-content: center;
        gap: 20px;
        padding: 0 20px 20px 20px;
    }
        .image_editor_item, .ui-sortable-placeholder {
            display: inline-block;
            float: left;
            position: relative;
            width: 170px;
            height: 160px;
            /* max-height: 160px; */
            max-width: 170px;
        }.ui-sortable-placeholder {
                background-color: #d8d8d8;
                border-radius: 6px;
                border: 2px dashed var(--cms-orange);
            }
            /* verschillende grotes  */
            .image_editor.small_list .image_editor_item, .image_editor.small_list .ui-sortable-placeholder {
                height: 100px;
                max-height: 100px;
                max-width: 140px;
                margin-right: 18px;
                margin-right: 18px;
            }
            .image_editor.large_list .image_editor_item, .image_editor.large_list .ui-sortable-placeholder {
                height: 175px;
                max-height: 175px;
                max-width: 280px;
                margin-right: 50px;
                margin-right: 50px;
            }
        .image_editor_item:last-child { margin-right: 0; }
            .image_editor_item a.imageshow {
                width: 100%;
                height: 100%;
                display: block;
            }
            .image_editor_item.ui-sortable-helper .image_overlay,
            .image_editor_item.ui-sortable-helper .image_editor_delete,
            .image_editor_item.ui-sortable-helper .image_editor_edit {
                display: none;
            }
            .image_overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: all .3s ease;
                border-radius: 6px;
            }
            .image_editor_item a.imageshow:hover .image_overlay {
                background-color: rgba(0, 0, 0, 0.4);
                opacity: 1;
                transition: all .3s ease;
            }
            .image_editor_item a>img {
                height: 100%;
                width: 100%;
                object-fit: cover;
                border-radius: 6px;
                box-shadow: 0px 0px 6px -4px black inset;
            }
            .image_editor_delete {
                color: white;
                background-color: #DA3838;
                font-size: 16px;
                padding: 5px;
                position: absolute;
                bottom: 6px;
                left: 6px;
                border-radius: 4px;
                transition: all .3s ease;
            } .image_editor_delete:hover {
                background-color: #862424;
                transition: all .3s ease;
            }
            .image_editor_edit {
                color: white;
                background-color: var(--cms-orange);
                font-size: 16px;
                padding: 5px;
                position: absolute;
                bottom: 6px;
                right: 6px;
                border-radius: 4px;
                transition: all .3s ease;
            } .image_editor_delete:hover {
                background-color: #a1470b;
                transition: all .3s ease;
            }
            .image_editor_item a.imageshow i.fa-eye {
                color: #ffffff;
                position:absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
.banner_hidden_div{
    margin: 20px;
}

/* MOBILE RESPONSIVE */

@media only screen and (max-width: 1401px){

    .info_page_block {
        border-radius: unset;
    }
}

@media only screen and (max-width: 1350px) {
    .info_page_block, .detailblock {
        border-radius: unset;
    }
    .filterbar_inner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #formFilterAccommodatie {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .filterbar_inner .filter {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .filterbar_inner input {
        width: 300px;
        max-width: 100%;
    }

    .filterbar_inner select, 
    .filterbar_inner .lookalike, 
    .snelboekenDatum .lookalike, 
    #select_kenmerk, 
    .filterbar_inner .filter .type select,
    .filterbar_inner .filter .pers select {
        width: 300px;
        max-width: 100%;
    }
    .filterbar_inner .lookalike.date{
        width: 624px;
    }
}



@media only screen and (max-width: 1250px) {

    .footer {
        padding: 0 40px;
    }

    .footer-nav {
        max-width: calc(100% - 200px - 20px);
    }
    .footer-socials {
        max-width: 200px;
    }

    .chalets_inner {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media only screen and (max-width: 1200px) {
    .textblock_inner {
        justify-content: space-evenly;
    }

    .textblock_inner .block {
        min-width: 45%;
    }

    .chalets_inner .item {
        max-width: 49%;
    }

    .image_overlay {
        transform: scale(100%);
    }

    .chalets_inner .item {
        height: 500px;
    }

    .overview_inner .item {
        max-width: 45%;
    }

    .formBoeking {
        flex-direction: column;
    }
}

@media only screen and (max-width: 1170px) {
    .detailblock_inner {
        flex-direction: column;
        padding: 0px;
    }
    #calendar .day-number {
        font-size: 17px !important;
    }

    .detailblock_inner .left {
        max-width: 100%;
    }

    .detailblock_inner .right {
        min-width: 100%;
    }

    .detailblock_inner .left {
        padding: 0;
        width: 100%;
    }
    .detailblock div.boekings_info_inner {
        width: 100%;
    }
    .detailblock_inner .boeken_form {
        flex-direction: column;
        
    }
    .boeken_form .right {
        width: 100%;
        min-width: unset;
    }
    .boeken_form .left {
        padding: 0;
        width: 100%;
        min-width: unset;
    }
    .formAccount {
        flex-direction: column;
    }
    .info_page_block_inner {
        flex-direction: column;
    }

    .info_page_block_inner div {
        min-width: 100%;
    }

    .info_page_block_inner .left {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1220px) {


}

@media only screen and (max-width: 1150px){

    div.nav-item:first-child {
        display: none;
    }
    div.nav-item {
        padding-left: 25px;   
    }
    div.nav-item:nth-child(1) {
        padding-left: none;
    }
}
@media only screen and (max-width: 1100px){
    
    .topbar_inner .left {
        display: none;
        padding: 0 20px;
    }
}


@media only screen and (max-width: 1080px){
    span#errorPlattegrond {
        display: block;
    }
    img.selectPlattegrond {
        cursor: pointer;
    }

}

@media only screen and (max-width: 1000px) {

    .stickyoffset {
        padding-top: 80px;
    }
    .navbar-inner .logo-holder img {
        max-height: 50px;
    }
    .navbar-inner .logo-holder {
        justify-content: flex-start;
    }

    .banner_bottom {
        width: calc(100% - 30px);
        max-width: 400px;
        row-gap: 18px;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px 30px;
    }
        .banner_input_holder {
            width: 100%;
            max-width: unset;
            margin-right: unset;
            display: flex;
            justify-content: space-between;
        } .banner_input_holder:last-child { max-width: 100%; }
            .banner_input_holder p {
                width: 85px;
            }
            .banner_input_holder input, .banner_input_holder select {
                min-width: 200px;
            }
            .banner_input_holder::after {
                content: unset;
            }
            .banner_bottom .filter .lookalike.date{
                width: 100%;
                padding-left: 24px ;
            }
            .banner_inner button {
                width: 100%;
            }
           

    .banner_top h1 {
        font-size: 42px;
    }
    .banner_top h1, .banner_top p {  
        text-align: center;
    }

    
    .about_inner {
        flex-direction: column;
    }

    .about_inner .left {
        max-width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    .about_inner .right {
        max-width: 100%;
        margin-left: 0px;
    }

    .signature-inner .left {
        order: 2;
    }
    .signature-inner .left:first-child>div {
        margin-bottom: 6px;
    }
    .signature-inner .right {
        order: 1;
        margin-bottom: 6px;
    }
    .signature-inner .left, .signature-inner .right {
        width: 100%;
    }
    .beschikbaarheid_inner{
        padding: 0;
    }
        .beschikbaarheid_inner .description .fileDropMenu{
            width: 100%;
        }
        .beschikbaarheid_inner .fileDropMenu{
            width: 100%;
        }
        .beschikbaarheid_inner .image_position .image_editor.ui-sortable{
            padding: 0;
        }
        .beschikbaarheid_inner .button_block button{
            margin-bottom: 10px;
            margin-top: 10px;
        }
        .beschikbaarheid_inner .button_block{
            padding-bottom: 0;
            padding-top: 0;
        }
}


@media only screen and (max-width: 950px) {

    .flex-column {
        flex-direction: column;
    }
    .gastenboek {
        flex-direction: column;
    }
    .detailblock_inner.gasten {
        justify-content: flex-end;
        align-items: flex-end;
    }
    .detailblock_inner .gastenboek .left {
        max-width: 100%;
    }
    .detailblock_inner .gastenboek .right {
        max-width: 100%;
    }
    .footer-nav {
        max-width: 100%;
    }

    .footer-socials {
        max-width: 250px;
    }

    .footer-nav {
        margin-bottom: 20px;
    }
    .footer-nav .footer-item {
        margin-bottom: 20px;
    }

    .navbar .nav {
        display: none;
    }

}

@media only screen and (max-width: 920px){
    
    .chalets_inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 900px) {
    .topbar_inner {
        flex-direction: column;
        text-align: center;
    }

}

@media only screen and (max-width: 850px) {
    .banner_inner .bgimg {
        flex-direction: column;
        height: auto;
    }

    .bgimg .left {
        margin: 50px 0;
        max-width: 100%;
        padding: 0 20px;
    }

    .bgimg h1 {
        font-size: 25px;
    }

    .bgimg .right {
        margin-bottom: 50px;
    }

    .bgimg .right .block {
        margin: 0 20px;
    }

    .chalets_inner .item {
        max-width: 100%;
    }

    .fixedboeken_inner {
        padding: 10px 15px;
    }
    .fixedboeken_inner span { /*, .fixedboeken_inner a */
        font-size: 20px;
    }
    .fixedboeken_inner div div span{
        font-size: unset;
    }


}

@media only screen and (max-width: 800px) {

    .footer-top {
        flex-wrap: wrap;
    }


    .banner_bottom {
        padding: 20px 20px;
    }
}


@media only screen and (max-width: 750px) {
    .detailblock div.boekings_info_inner {
        flex-direction: column;
    }
    .detailblock div.boekings_info_inner .boekings_info_btn {
        width: 100%;
        justify-content: flex-start;
        margin-top: 15px;
    }
    .textblock_inner .block {
        min-width: 100%;
    }

    .footer-item {
        max-width: calc(100% / 2);
    }
    

    .overview_inner .item {
        max-width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .banner_detail, .banner_info_page {
        height: 375px;
    }
    .detailblock_inner .left img {
        height: 300px;
    }
    .signature-inner {
        flex-direction: column;
    }


    .prijsblock_inner {
        flex-direction: column-reverse;
    }

    .prijsblock_inner #prijsinfo2 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .prijsblock_inner #selected_days {
        max-width: 100%;
    }

    .filterbar_left, .filterbar_right {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }

    .fixedboeken_inner {
        margin: 0 15px 20px 15px;
    }
    .filterbar_inner .filter, .filterbar_inner .filter .select-holder, .filterbar_inner select, .filterbar_inner .lookalike, #select_kenmerk, .filterbar_inner .filter .pers select, .snelboekenDatum .lookalike{
        width: 100% !important;
    }

}

@media only screen and (max-width: 650px) {
    #selected_days button {
        width: 100% !important;
    }
    .title {
        font-size: 32px;
    }
}
    .formBoeking button.afwijzen {
        margin-top: 4px;
    }
    .formBoeking button.boekingsBevestiging{
        margin-top: 4px;
    }

@media only screen and (max-width: 600px) {
    
    .banner_detail, .banner_info_page {
        height: 340px;
    }
    

    .chalets_inner .accommodatie img {
        max-height: 100% !important;
    }

    .banner_inner {
        min-height: 750px;
        height: auto;
    }
}
@media only screen and (max-width: 565px) {
    .daterangepicker .drp-buttons .btn{
        width: 107px;
        margin-top: 6px;
    }
}

@media only screen and (max-width: 550px) {

    .detailblock_inner .left img {
        height: 225px;
    }
    .footer-bottom .social {
        width: 40px;
        height: 40px;
        font-size: 25px;
        margin: 0 15px;
    }
    .fixedboeken_inner>div {
        flex-direction: column;
        align-items: baseline;
    }
    .fixedboeken_inner div i {
        margin-left: 20px;
        margin-right: 5px;
    }
    .fixedboeken_inner div i:first-child {
        margin-left: 5px;
    }


}

@media only screen and (max-width: 500px) {
    
    .slick-next {
        width: 28px;
        height: 28px;
        display: block;
        border: 6px solid transparent;
        border-color: #fff;
        border-radius: 6px;
        border-right: 6px;
        margin-right: 80px;
        top: calc(50% - 20px);
        border-bottom: 6px;
        margin-right: 80px !important;
        transition: all 0.2s ease;
        z-index: 2;
        right: -60;
    }
    
    .slick-prev {
        width: 28px;
        height: 28px;
        display: block;
        border: 6px solid transparent;
        border-color: #fff;
        top: calc(50% - 20px);
        border-radius: 6px;
        border-right: 6px;
        margin-left: 80px;
        border-bottom: 6px;
        margin-left: 70px !important;
        transition: all 0.2s ease;
        z-index: 2;
    }
    .slick-next {
        right: -62px;
        margin-top: 8px;
      }
      .slick-prev {
        left: -53px;
        margin-top: 11px;
      }
    .banner_detail, .banner_info_page {
        height: 300px;
    }
    .footer-item {
        max-width: 100%;
    }

    .topbar_inner .right a {
        /* margin-top: 10px; */
    }

    .topbar_inner .right {
        /* margin: 10px 0; */
    }

    #gmap_canvas {
        width: 100%;
        min-width: 200px;
        height: 500px;
        padding: 20px;
    }

    .filterbar_left, .filterbar_right {
        width: 100%;
    }
    .filterbar_inner .filter {
        width: 100%;
    }
        .filterbar_inner .filter .select-holder {
            width: 100%;
        }
        .filterbar_inner input[type=date], .filterbar_inner select, .filterbar_inner .lookalike, #select_kenmerk {
            width: 100% !important;
        }
}

@media only screen and (max-width: 400px) {
    
    .banner_detail, .banner_info_page {
        height: 250px;
    }
    .detailblock_inner .right .block {
        width: 100%;
    }

    .footer-bottom .social {
        width: 36px;
        height: 36px;
        font-size: 22px;
        margin: 0 10px;
    }
    .banner_bottom .filter .lookalike.date, .filterstart3 .lookalike.date {
        height: 60px;
    }

    .review-container-section-2{
        width: 100%;
    }
}

@media only screen and (max-width: 375px) {
    .banner_input_holder {
        flex-direction: column;
    }
        .banner_input_holder p, .banner_input_holder input, .banner_input_holder select {
            width: 100%;
        }
        .banner_input_holder p {
            margin-bottom: 6px;
            padding-left: 12px;
        }
}



/* Mobile Navbar */
#mobile-navbar {
    position: absolute;
    top: calc(50% + 5px);
    right: 30px;
    transform: translateY(-50%);
    z-index: 999999 !important;
}
#mobile-navbar.cms-active {
    top: calc(50% + 26px);
}

#mobile-navbar .burger:hover {
    cursor: pointer;
}

#mobile-navbar .burger {
    position: relative;
}

#mobile-navbar .menu-bar {
    background-color: #000;
    width: 40px;
    height: 4px;
    display: block;
    margin-bottom: 8px;
    opacity: 1;
    border-radius: 20px;
}

#mobile-navbar.navbar-open .menu-bar {
    background-color: #ffffff;
}

#mobile-navbar.navbar-open .bar1 {
    transform: translateY(-2px) rotate(45deg);
}

#mobile-navbar.navbar-open .bar2 {
    opacity: 0;
}

#mobile-navbar.navbar-open .bar3 {
    transform: translateY(2px) rotate(-45deg);
    width: 100% !important;
}

#mobile-navbar .burger .bar1,
#mobile-navbar .burger .bar2,
#mobile-navbar .burger .bar3 {
    transform-origin: left;
    transition: all .6s ease;
}
#mobile-navbar .burger .bar2 {
    width: 60%;
}
#mobile-navbar .burger .bar3 {
    width: 90%;
}


#mobile-menu {
    background-color: var(--main);
    z-index: 99999;
    position: fixed;
    display: none;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.mobile-menu-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.mobile-menu-inner ul {
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.mobile-menu-inner ul li {
    padding: 40px 0;
    font-size: 22px;
}

.mobile-menu-inner ul li a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Advent Pro', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#mobile-menu.mobile-menu-open {
    display: none;
    opacity: 0;
    transition: opacity .6s ease;
}

#mobile-navbar {
    display: none;
}

@media only screen and (max-width: 950px) {
    #mobile-navbar {
        display: block;
    }

    #mobile-menu.mobile-menu-open {
        display: block;
        opacity: 1;
    }
}








/* ************************************************************************************************************************************************************* */
/* ************************************************************************************************************************************************************* */
/* ************************************************************************************************************************************************************* */
/**************************************************************************** KALENDER ***************************************************************************/
/* ************************************************************************************************************************************************************* */
/* ************************************************************************************************************************************************************* */
/* ************************************************************************************************************************************************************* */

#calendar *,
#calendar *:before,
#calendar *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body #calendar {
    /* overflow: hidden; */
    overflow: visible;
    font-family: 'HelveticaNeue-UltraLight', 'Helvetica Neue UltraLight', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-weight: 100;
    color: #1A1A1A;
    margin: 0;
    padding: 0;
    background: rgb(245, 245, 245);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 60px;
}

#calendar {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* width: 420px; */
    width: 100%;
    margin: 0 auto;
    /* min-height: 470px; */
    /* overflow: hidden; */
    overflow: visible;
}

#calendar .header {
    height: 50px;
    /* width: 420px; */
    width: 100%;
    background-color: var(--main); 
    /* background-color: #DFA974; */
    color: white;
    text-align: center;
    position: relative;
    z-index: 100;
    border-radius: 6px;
}

#calendar .header h1 {
    font-size: 20px;
    line-height: 50px;
    font-weight: 100;
    letter-spacing: 1px;
    height: 100%;
    color: white;
    font-family: var(--font5);
    text-transform: capitalize;
    position: relative;
    width: 100%;
    padding: 0 !important;
    text-align: center;
}

#calendar .calendar_left, #calendar .calendar_left {
    position: absolute;
    left: 0;
    top: 50%;
    cursor: pointer;
}
#calendar .calendar_left, #calendar .calendar_right {
    position: absolute;
    right: 0;
    top: 50%;
    cursor: pointer;
}
    #calendar .calendar_left::before {
        font: var(--fa-font-solid);
        font-size: 24px;
        content: "\f137";
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
    }
    #calendar .calendar_right::before {
        font: var(--fa-font-solid);
        font-size: 24px;
        content: "\f138";
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
    }

#calendar .month {
    opacity: 0;
}

#calendar .month.new {
    -webkit-animation: fadeIn 1s ease-out;
    opacity: 1;
}

#calendar .month.in.next {
    -webkit-animation: moveFromTopFadeMonth .4s ease-out;
    -moz-animation: moveFromTopFadeMonth .4s ease-out;
    animation: moveFromTopFadeMonth .4s ease-out;
    opacity: 1;
}

#calendar .month.out.next {
    -webkit-animation: moveToTopFadeMonth .4s ease-in;
    -moz-animation: moveToTopFadeMonth .4s ease-in;
    animation: moveToTopFadeMonth .4s ease-in;
    opacity: 1;
}

#calendar .month.in.prev {
    -webkit-animation: moveFromTopFadeMonth .4s ease-out;
    -moz-animation: moveFromTopFadeMonth .4s ease-out;
    animation: moveFromTopFadeMonth .4s ease-out;
    opacity: 1;
}

#calendar .month.out.prev {
    -webkit-animation: moveToTopFadeMonth .4s ease-in;
    -moz-animation: moveToTopFadeMonth .4s ease-in;
    animation: moveToTopFadeMonth .4s ease-in;
    opacity: 1;
}

#calendar .week {
    z-index: 99;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--offwhite);
}

#calendar .day {
    display: inline-block;
    /* width: 60px; */
    width: calc(100% / 7);
    padding: 10px;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    background: inherit;
    position: relative;
    z-index: 100;
}
#calendar .day_show_only {
    cursor: default !important;
}

div.no_hover_pointer .day {
    cursor: default !important;
}

.day-date {
    display: none !important;
}

#calendar .day.other {
    color: rgb(196, 196, 196);
}

#calendar .day.today {
    /* color: var(--main); */
    color: #b11313;
}

#calendar .day-name {
    font-size: 9px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: rgb(58, 58, 58);
    letter-spacing: .7px;
}

#calendar .day-number {
    font-size: 18px;
    letter-spacing: 1.5px;
}

#calendar .day .day-events {
    list-style: none;
    margin-top: 3px;
    text-align: center;
    height: 12px;
    line-height: 6px;
    overflow: hidden;
}

#calendar .day .day-events span {
    vertical-align: top;
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 5px;
    line-height: 5px;
    /* margin: 0 1px; */
    border-radius: 10px;
}

#calendar .red {
    background: #C50538;
}

#calendar .blue {
    background: rgba(156, 202, 235, 1);
}

#calendar .yellow1,
#calendar .orange1 {
    width: 50% !important;
    background: rgba(247, 167, 0, 1);
    float: left;
    box-sizing: border-box;
    margin: 0px !important;
}

#calendar .yellow2,
#calendar .orange2 {
    width: 50% !important;
    background: rgba(153, 198, 109, 1);
    float: right;
    box-sizing: border-box;
    margin: 0px !important;
}

#calendar .orange1 {
    background: rgba(153, 198, 109, 1) !important;
}

#calendar .orange2 {
    background: rgba(247, 167, 0, 1) !important;
}

#calendar .green {
    background: rgba(153, 198, 109, 1);
}

#calendar .orange {
    background: rgba(247, 167, 0, 1);
}

#calendar .details {
    /* width: 420px; */
    position: relative;
    width: 100%;
    height: 75px;
    background: rgb(233 233 233);
    margin-top: 5px;
    border-radius: 4px;
}

#calendar .details.in {
    -webkit-animation: moveFromTopFade .5s ease both;
    -moz-animation: moveFromTopFade .5s ease both;
    animation: moveFromTopFade .5s ease both;
}

#calendar .details.out {
    -webkit-animation: moveToTopFade .5s ease both;
    -moz-animation: moveToTopFade .5s ease both;
    animation: moveToTopFade .5s ease both;
}

#calendar .arrow {
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -2px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent rgb(233 233 233) transparent;
    transition: all 0.7s ease;
}

#calendar .events {
    height: 75px;
    padding: 7px 0;
    overflow-y: auto;
    overflow-x: hidden;
}

#calendar .events.in {
    -webkit-animation: fadeIn .3s ease both;
    -moz-animation: fadeIn .3s ease both;
    animation: fadeIn .3s ease both;
}

#calendar .events.in {
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    animation-delay: .3s;
}

#calendar .details.out .events {
    -webkit-animation: fadeOutShrink .4s ease both;
    -moz-animation: fadeOutShink .4s ease both;
    animation: fadeOutShink .4s ease both;
}

#calendar .events.out {
    -webkit-animation: fadeOut .3s ease both;
    -moz-animation: fadeOut .3s ease both;
    animation: fadeOut .3s ease both;
}

#calendar .event {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: .5px;
    padding: 2px 16px;
    vertical-align: top;
}

#calendar .event.empty {
    /* color: #eee; */
    color: inherit;
}

#calendar .event-category {
    height: 10px;
    width: 10px;
    display: inline-block;
    margin: 6px 0 0;
    vertical-align: top;
}

#calendar .event span {
    display: inline-block;
    padding: 0 0 0 7px;
}

#calendar .legend {
    position: absolute;
    bottom: -60px;
    width: 100%;
    height: 60px;
    line-height: 30px;
    background-color: #EEEEEE;
    border-radius: 6px;
}

#calendar .entry {
    position: relative;
    padding: 0 0 0 25px;
    font-size: 13px;
    display: inline-block;
    line-height: 30px;
    background: transparent;
    text-transform: capitalize;
}

#calendar .entry:after {
    position: absolute;
    content: '';
    height: 5px;
    width: 5px;
    top: 12px;
    left: 14px;
}

#calendar .entry.red:after {
    background: #C50538;
}

#calendar .entry.blue:after {
    background: rgba(156, 202, 235, 1);
}

#calendar .entry.yellow:after {
    background: rgba(249, 233, 0, 1);
}

#calendar .entry.orange:after {
    background: rgba(247, 167, 0, 1);
}

#calendar .entry.green:after {
    background: rgba(153, 198, 109, 1);
}

#calendar .day-date {
    /* display: none; */
    /* opacity: 0; */
}

#calendar .day.first_select {
    /* background: linear-gradient(90deg, rgb(145, 9, 9) 50%, transparent 50%), linear-gradient(90deg, rgb(145, 9, 9) 50%, transparent 50%), linear-gradient(0deg, rgb(145, 9, 9) 50%, transparent 50%), linear-gradient(0deg, rgb(145, 9, 9) 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px;
    background-position: 0px 0px, 200px 100px, 0px 100px, 200px 0px; */
    /* padding: 10px; */
    /* animation: border-dance 4s infinite linear; */
    /* border-inline: solid;
    font-family: var(--font5); */
    background: linear-gradient(90deg, rgba(168,166,166,1) 0%, rgba(255,255,255,0) 100%);
}



@keyframes border-dance {
    0% {
        background-position: 0px 0px, 300px 116px, 0px 150px, 216px 0px;
    }

    100% {
        background-position: 300px 0px, 0px 116px, 0px 0px, 216px 150px;
    }
}

#calendar .day.selected {
    /* background-color: var(--red); */
    background-color: #a8a6a6;
}

#calendar .selected,
#calendar .selected .day-name {
    /* color: white !important; */

    text-shadow: 0px 0px 1px black;
}

#calendar .booked {
    background-color: red;
    color: white;
}
#calendar .header h1 div.datepickerHeader {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    justify-content: center;
}
#calendar .header h1 div.datepickerHeaderLarge {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    justify-content: center;
}
    #calendar .header h1 div.datepickerHeaderLarge select#selectMonth {
        background-color: var(--main);
        color: white;
        border: unset;
        width: 135px;
        padding: 10 5;
        margin-right: 15px;
        overflow:visible;
    }
    #calendar .header h1 div.datepickerHeaderLarge #selectYear {
        background-color: var(--main);
        color: white;
        border: unset;
        padding: 10 5;
        width: 90px;
    }
    #calendar .header h1 div.datepickerHeaderLarge p{
        padding: 0;
        margin: 0;
        text-align: center;
        font-weight: unset;
        font-size: 16px;
    }

    #calendar .header h1 div.datepickerHeader select#selectMonth {
        background-color: var(--main);
        color: white;
        border: unset;
        padding: 10 5;
        width: 135px;
    }
    #calendar .header h1 div.datepickerHeader #selectYear {
        background-color: var(--main);
        color: white;
        border: unset;
        padding: 10 5;
        width: 100px;
    }
    #calendar .header h1 div.datepickerHeader p{
        padding: 0;
        margin: 0;
        text-align: center;
        font-weight: unset;
        font-size: 19px;
    }

    @media only screen and (max-width: 375px) {
        #calendar .header h1 div.datepickerHeaderLarge select#selectMonth {
            font-size: small;
            width: 100px;
        }
        #calendar .header h1 div.datepickerHeaderLarge #selectYear,
        #calendar .header h1 div.datepickerHeaderLarge p {
            font-size: small;
            width: 70px;
        }
    
        #calendar .header h1 div.datepickerHeader select#selectMonth {
            font-size: small;
            width: 100px;
        }
        #calendar .header h1 div.datepickerHeader #selectYear,
        #calendar .header h1 div.datepickerHeader p {
            font-size: small;
            width: 70px;
        }
    }
    
    @media only screen and (max-width: 315px) {
        #calendar .header h1 div.datepickerHeaderLarge select#selectMonth {
            width: 80px;
        }
    }
    @media only screen and (max-width: 310px) {
        #calendar .header h1 div.datepickerHeaderLarge {
            flex-direction: column;
            background-color: unset;
            color: unset;
        }
        #calendar .header h1 div.datepickerHeader {
            flex-direction: column;
        }
        #calendar .header {
            height: 100px;
        }

        #calendar .header h1 div.datepickerHeaderLarge select#selectMonth,
        #calendar .header h1 div.datepickerHeaderLarge #selectYear,
        #calendar .header h1 div.datepickerHeader select#selectMonth,
        #calendar .header h1 div.datepickerHeader #selectYear {
            /* border-color: white; */
            border: 1px solid white;
            margin: 0;
        }
    }

/* Animations are cool!  */
@-webkit-keyframes moveFromTopFade {
    from {
        opacity: .3;
        height: 0px;
        margin-top: 0px;
        -webkit-transform: translateY(-100%);
    }
}

@-moz-keyframes moveFromTopFade {
    from {
        height: 0px;
        margin-top: 0px;
        -moz-transform: translateY(-100%);
    }
}

@keyframes moveFromTopFade {
    from {
        height: 0px;
        margin-top: 0px;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes moveToTopFade {
    to {
        opacity: .3;
        height: 0px;
        margin-top: 0px;
        opacity: 0.3;
        -webkit-transform: translateY(-100%);
    }
}

@-moz-keyframes moveToTopFade {
    to {
        height: 0px;
        -moz-transform: translateY(-100%);
    }
}

@keyframes moveToTopFade {
    to {
        height: 0px;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes moveToTopFadeMonth {
    to {
        opacity: 0;
        -webkit-transform: translateY(-30%) scale(.95);
    }
}

@-moz-keyframes moveToTopFadeMonth {
    to {
        opacity: 0;
        -moz-transform: translateY(-30%);
    }
}

@keyframes moveToTopFadeMonth {
    to {
        opacity: 0;
        -moz-transform: translateY(-30%);
    }
}

@-webkit-keyframes moveFromTopFadeMonth {
    from {
        opacity: 0;
        -webkit-transform: translateY(30%) scale(.95);
    }
}

@-moz-keyframes moveFromTopFadeMonth {
    from {
        opacity: 0;
        -moz-transform: translateY(30%);
    }
}

@keyframes moveFromTopFadeMonth {
    from {
        opacity: 0;
        -moz-transform: translateY(30%);
    }
}

@-webkit-keyframes moveToBottomFadeMonth {
    to {
        opacity: 0;
        -webkit-transform: translateY(30%) scale(.95);
    }
}

@-moz-keyframes moveToBottomFadeMonth {
    to {
        opacity: 0;
        -webkit-transform: translateY(30%);
    }
}

@keyframes moveToBottomFadeMonth {
    to {
        opacity: 0;
        -webkit-transform: translateY(30%);
    }
}

@-webkit-keyframes moveFromBottomFadeMonth {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30%) scale(.95);
    }
}

@-moz-keyframes moveFromBottomFadeMonth {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30%);
    }
}

@keyframes moveFromBottomFadeMonth {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30%);
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
    to {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOutShink {
    to {
        opacity: 0;
        padding: 0px;
        height: 0px;
    }
}

@-moz-keyframes fadeOutShink {
    to {
        opacity: 0;
        padding: 0px;
        height: 0px;
    }
}

@keyframes fadeOutShink {
    to {
        opacity: 0;
        padding: 0px;
        height: 0px;
    }
}

@media only screen and (max-width: 1280px) {
    #calendar .left {
        left: 8px;
    }
}

.notfound_page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 50px 0;
}

.notfound_page_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}


.dataTables_wrapper .dataTables_filter input {
    margin-right: 0px !important;
    height: 38px !important;
    margin-left: 0 !important;
    padding: 0 20px !important;
}

.dataTables_wrapper .dataTables_filter label {
    display: block;
}

table#overzicht td {
    height: 48px;
}

tr.filters input {
    font-size: 12pt;
    padding: 3px;
    background-color: #fff !important;
}

div.dt-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
}

button.dt-button,
div.dt-button,
a.dt-button {
    width: auto !important;
}
.dt-button-collection button.dt-button {
    width: 100% !important;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    /* margin-right: 10px !important; */
}


.dataTables_wrapper button.dt-button {
    outline: none;
    border-width: 0px;
    border-radius: 3px;
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
    text-decoration: none;
    background: unset;
    background-color: #eee;
    cursor: pointer;
    height: 38px !important;
    line-height: 32px;
    padding: 0px 12px;
    vertical-align: middle;
    font-size: 10pt;
    border: 1px solid #DDD;
    margin-bottom: 10px;
    /* border-bottom: 2px solid #294e45; */
    transition: all 0.2s ease-in-out;
}
.dataTables_wrapper button.dt-button:hover,
.dataTables_wrapper button.dt-button:active,
.dataTables_wrapper button.dt-button:focus {
    border-color: #294e45 !important;    
    /* border-bottom: 2px solid #294e45 !important; */
    background: unset !important;
    background-color: #e0e0e0 !important;
    transition: all 0.2s ease-in-out;
}



.dataTables_wrapper input[type="search"] {
    background-image: url(../images/search2.png);
    background-size: 16px;
    background-position: 10px 9px;
    background-repeat: no-repeat;
    padding-left: 34px !important;
	outline: none;
    border-width: 0px;
    border-radius: 3px;
    box-sizing: border-box;
    font-weight: 500;
    background-color: #fff;
    height: 32px;
    line-height: 32px;
    vertical-align: middle;
    font-size: 10pt;
    border: 1px solid #DDD;
	/* border-bottom: 2px solid #2C3A4C; */
}
.dataTables_wrapper input[type="search"]::placeholder {
    font-weight: bold;
}

.dataTables_wrapper button.dt-button:focus {
	border-bottom: unset;
	box-shadow: 0px 0px 3px 1px #2AC0F1;
}


.cms-profile i:hover, .cms-profile span.fa-stack:hover {
    color: var(--main-oud) !important;
}

.mijn_accommodatie .attach_container {
    padding: 20px;
    border: 2px dotted black;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
    .mijn-accommodatie .attach_container * {
        cursor: pointer;
    }
    .mijn_accommodatie .attach_container>button {
        margin-right: 14px;
        display: inline-block;
        width: 100%;
        max-width: 240px;
    }

/* .attach_container div {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.attach_container div a {
    width: 100%;
} */
.popup {
	position: fixed;
	color: white;
	text-align: center;
	font-size: 18px;
	opacity: 0;
	animation-name: bounceIn;
	animation-duration: 450ms;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	/* background-color: var(--green); */
	background: linear-gradient(135deg, rgba(128,158,41,1) 0%, rgba(84,97,52,1) 100%);
	display: block;
	min-width: 120px;
	max-width: 120px;
	min-height: 120px;
	max-height: 120px;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 0 10px -6px black;
	font-family: var(--font-harabara);
	text-transform: uppercase;
}
.popup span {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, calc(-50% - 1px));
}

.loader1{
    position: fixed;
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 150px;
}
.loader1 div {
    height: 125px;
    width: 100%;
    /* background: #008eff; */
    transform: scalex(0);
    animation: animate 10s ease-in-out infinite;
    /* text-align: center; */

}
@keyframes animate {
    0%{
        transform-origin: left;
        transform: scalex(2);
        opacity: 0;
    }
    25%{
        transform-origin: left;
        transform: scalex(1);
        opacity: 100;
    }
    75%{
        transform-origin: right;
        transform: scalex(1);
        opacity: 100;
    }
    100%{
        transform-origin: right;
        transform: scalex(2);
        opacity: 0;
    }
}


/* DATATABLES */
div.dtsp-panesContainer {
    border: none;
    padding: 0px;
}


div.dtsp-columns-1 {
    min-width: 100%;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  div.dtsp-columns-2 {
    min-width: 50%;
    max-width: 50%;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  div.dtsp-columns-3 {
    min-width: 33.333%;
    max-width: 33.333%;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  div.dtsp-columns-4 {
    min-width: 25%;
    max-width: 25%;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  div.dtsp-columns-5 {
    min-width: 20%;
    max-width: 20%;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  div.dtsp-columns-6 {
    min-width: 16.666%;
    max-width: 16.666%;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  div.dtsp-columns-7 {
    min-width: 14.28%;
    max-width: 14.28%;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  div.dtsp-columns-8 {
    min-width: 12.5%;
    max-width: 12.5%;
    padding-left: 0px;
    padding-right: 0px;
  }

  div.dtsp-searchPanes table.dataTable tbody th, div.dtsp-searchPanes table.dataTable tbody td, div.dtsp-searchPanes table.dataTable thead th.def_row {
    height: 32px;
  }

  
    div.dtsp-searchPanes div.dts_label, div.dtsp-panesContainer div.dtsp-titleRow {
      display: none;
    }

    div.dtsp-panesContainer div.dtsp-searchPanes div.dtsp-searchPane input.dtsp-paneInputButton, div.dtsp-panesContainer div.dtsp-searchPanes div.dtsp-searchPane button.dtsp-paneButton {
        width: 24px;
    }
    
    div#overzicht_wrapper thead tr:first-child th{
      background-color: unset;
      color: black;
    }
    


    @media only screen and (max-width: 220px) {
        #chaletReviews .review-container .ster{
            display: flex;
            position: absolute;
            align-items: flex-end;
            flex-wrap: nowrap;
            width: 100%;
        }
        #chaletReviews{
            width: 60vw;
        }
    }
    @media only screen and (max-width: 175px) {
        #chaletReviews{
            width: 100vw;
        }
    }