/* Index for balance.css
 *
 * - Bootstrap
 * - Buttons
 * - Forms
 * - General
 * - Helpers
 * - Navigation
 * - Sections
 *    - Header
 *    - Main
 *    - Footer
 * - Tables
 * - Typopgrahy
 */

/* <fold> ----- Bootstrap ----- <fold> */

a:focus {
    outline: none;
}

.form-row {
    margin-left: 0;
    margin-right: 0;
}

/* </fold> ----- End of Bootstrap ----- </fold> */

/* <fold> ----- Buttons ----- <fold> */

button {
    padding: 0.5rem 1rem;
}

.checkout_coupon.woocommerce-form-coupon button {
    background: #71b360 !important;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor:pointer;
}

/* </fold> ----- End of Buttons ----- </fold> */

/* <fold> ----- Forms ----- <fold> */

.grecaptcha-badge {
    opacity: 0 !important;
}

.st-notice {
    font-size: 14px;
    margin-bottom: 1rem;
}

/* </fold> ----- End of Forms ----- </fold> */

/* <fold> ----- General ----- <fold> */

body {
    color: rgba(0,0,0,0.87);
    font-family: 'Muli', sans-serif;
}

/* Use flexbox to create a sticky footer */
#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content {
    flex: 1;
}

/* </fold> ----- End of General ----- </fold> */

/* <fold> ----- Helpers ----- <fold> */

.no-padding {
    padding: 0 !important;
}

.no-padding > div {
    padding: 0 !important;
}

.required {
    color: #e2401c;
}

/* </fold> ----- End of Helpers ----- </fold> */

/* <fold> ----- Navigation ----- <fold> */

.navbar {
    border-bottom: 1px solid #e9e9e9;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar.sticky {
    background-color: transparant !important;
    border-bottom: none;
    position: fixed;
    top: 0;
    width: 100%;
    transition: background-color 300ms linear;
}

.navbar.sticky.scrolled {
    background-color: #fff !important;
    transition: background-color 300ms linear;
}

.navbar.sticky.scrolled a,
.navbar.sticky.scrolled .navbar-nav a.nav-link {
    color: rgba(0,0,0,0.6);
    transition: all 300ms linear;
}

.navbar.sticky a,
.navbar.sticky .navbar-nav a.nav-link {
    color: rgba(255,255,255,1.0);
    transition: all 300ms linear;
}

.navbar.sticky a:focus,
.navbar.sticky a:hover {
    color: rgba(255,255,255,0.8);
}

.brand {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.brand-link:hover {
    text-decoration: none;
}

.brand-text {
    color: #fff;
    font-family: 'Muli', sans-serif;
    font-size: 1.25rem;
    margin: 0;
    transition: all 300ms linear;
}

.navbar.sticky.scrolled .brand-text {
    color: rgba(0,0,0,0.6);
    transition: all 300ms linear;
}

.brand-logo {
    width: 100px;
    padding: 0.5rem;
    transition: all 300ms linear;
}

.navbar-collapse.collapsing,
.navbar-collapse.collapse.show {
    background-color: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}

.navbar-collapse.collapsing .nav-list,
.navbar-collapse.collapse.show .nav-list {
    flex-direction: column;
    padding: 0;
    margin-top: 2em;
}

.navbar-collapse.collapsing .nav-list .nav-link,
.navbar-collapse.collapse.show .nav-list .nav-link{
    color: rgba(0,0,0,0.6);
    padding: 1em 2em;
}

.navbar.sticky.scrolled .brand-logo {
    display: none;
    transition: all 300ms linear;
}

.navbar.sticky .container {
    align-items: start;
}

.navbar.sticky.scrolled .container {
    align-items: center;
}

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,0.6);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .navbar-light .navbar-toggler {
        display: flex;
    }
}

.navbar-light .navbar-toggler.collapsed {
    color: #fff;
}

/* Trying to create the Bootstrap 3 toggler icon */
.navbar-toggler {
    border: none;
    background: transparent !important;
}

.navbar-toggler:focus {
    outline: none;
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    background-color: rgba(0,0,0,0.6);
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggler.collapsed .icon-bar {
    background-color: #fff;
}

.navbar.scrolled .navbar-toggler.collapsed .icon-bar {
    background-color: rgba(0,0,0,0.6);
}

.navbar-toggler .icon-bar + .icon-bar {
    margin-top: 4px;
}

.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:hover > .icon-bar:nth-child(2){
    width: 22px;
    transition: ease all .2s;
}
.navbar-toggler:active > .icon-bar:nth-child(2){
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  transition: ease all .2s;
}


    /* <subfold> ----- Main menu ----- <subfold> */

    ul.nav-list {
        display: flex;
        list-style: none;
        margin: 0;
    }

    li.menu-item {
        padding-right: 1rem;
    }

    /* </subfold> ----- End of Main menu ----- </subfold> */

/* </fold> ----- End of Navigation ----- </fold> */

/* <fold> ----- Sections ----- <fold> */

    /* <subfold> ----- 404 ----- <subfold> */

    .error-404 {
        margin-top: 84px;
    }

    /* </subfold> ----- End of 404 </subfold> */

    /* <subfold> ----- Header ----- <subfold> */

    .site-header {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 999;
    }

    .site-header .custom-logo-link,
    .site-header img.custom-logo {
        width: 100%;
    }

    /* </subfold> ----- End of Header ----- </subfold> */

    /* <subfold> ----- Hero ----- <subfold> */

    .wc-bookings-booking-form {
        border: none;
        padding: 0;
        width: 100%;
    }
    .wc-bookings-booking-form legend {
        display: none;
    }

    .wc-bookings-booking-form fieldset {
        margin: 0;
    }

    .wc-bookings-date-picker {
        padding: 0;
    }

    .wc-bookings-date-picker .ui-datepicker-header {
        text-transform: none;
    }

    .summary.entry-summary {
        margin: 0;
    }

    .summary.entry-summary .price {
        margin: 0;
    }

    .wc-bookings-date-picker .ui-datepicker {
        border: 1px solid #e9e9e9;
        box-shadow: none;
    }

    .wc-bookings-date-picker .ui-datepicker-header {
        background-image: none;
    }

    /* Calender colors  */
    .wc-bookings-date-picker .ui-datepicker td.bookable a {
        background-color: #71b360 !important;
        color: rgba(0,0,0,0.6);
        text-shadow: none;
    }

    .wc-bookings-date-picker .ui-datepicker td.partial_booked a::before {
        border: none !important;
    }

     .wc-bookings-date-picker .ui-datepicker-today a {
         text-decoration: underline;
     }

     .wc-bookings-booking-form .ui-widget {
         font-family: 'Muli', sans-serif;
         font-size: 1em;
     }

     .wc-bookings-booking-form .wc-bookings-booking-cost {
         margin: 0;
     }

     .wc-bookings-booking-form .block-picker a:focus,
     .wc-bookings-booking-form .block-picker a:hover {
         background-color: #71b360 !important;
     }

     .wc-bookings-booking-form .wc-bookings-booking-cost {
         background: none;
         border: none;
         display: flex;
         justify-content: space-between;
         padding: 1rem 0;
     }

     .wc-bookings-booking-form .block-picker li a.selected {
         background: #71b360 !important;
     }

         /* <trifold> ----- Calendar button ----- <trifold> */

         .button.alt,
         .wc-bookings-booking-form-button.single_add_to_cart_button.button.alt,
         .wc-bookings-booking-form-button.single_add_to_cart_button.button.alt.disabled {
             border: none;
             border-radius: 4px;
             height: 48px;
             width: 100%;
         }

         .button.alt,
         .wc-bookings-booking-form-button.single_add_to_cart_button.button.alt {
             background: #71b360 !important;
             color: #fff;
             cursor:pointer;
         }

         .wc-bookings-booking-form-button.single_add_to_cart_button.button.alt.disabled {
             background: #eee !important;
             color: rgba(0,0,0,0.6);
         }

         /* </trifold> ----- End of Calendar button ----- </trifold> */

         /* <trifold> ----- Calendar header ----- <trifold> */

         .wc-bookings-date-picker .ui-datepicker-header {
             border-top: 1px solid #eee;
         }

         .wc-bookings-date-picker .ui-datepicker-header,
         .wc-bookings-date-picker .ui-datepicker .ui-datepicker-next,
         .wc-bookings-date-picker .ui-datepicker .ui-datepicker-prev {
             background: #eee;
             color: rgba(0,0,0,0.6);
         }

         /* Remove default errors on month change */
         .ui-icon.ui-icon-circle-triangle-e,
         .ui-icon.ui-icon-circle-triangle-w {
             background-image: none;
             position: relative;
         }

         /* Add font awesome icons to the next button */
         .ui-datepicker-next:before {
            font-family: FontAwesome;
            content: "\f105";
            color: rgba(0,0,0,0.6);
            font-size: 1rem;
            position: absolute;
            top: 12px;
            left: 12px;
            width: 16px;
            height: 16px;
         }

         /* Add font awesome icons to the prev button */
         .ui-datepicker-prev:before {
             font-family: FontAwesome;
             content: "\f104";
             color: rgba(0,0,0,0.6);
             font-size: 1rem;
             position: absolute;
             top: 12px;
             left: 12px;
             width: 16px;
             height: 16px;
         }

         /* </trifold> ----- End of Calendar header ----- </trifold> */

         /* <trifold> ----- Calendar messages ----- <trifold> */

         .woocommerce-notices-wrapper ul {
             border-radius: 4px;
             color: #fff;
             list-style: none;
             margin: 0 0 1rem 0;
             padding: 1rem;
         }

         .woocommerce-info {
             border-radius: 4px;
             color: #fff;
             margin-bottom: 1rem;
             padding: 1rem;
         }

         /* </trifold> ----- End of Calendar messages ----- </trifold> */

         /* <trifold> ----- Calendar time ----- <trifold> */

         .block-picker a {
             color: rgba(0,0,0,0.6);
         }

         .block-picker a:hover,
         .block-picker a:focus {
             color: #fff;
         }

         /* </trifold> ----- End of Calendar time ----- </trifold> */

    /* </subfold> ----- End of Hero ----- </subfold> */

    /* <subfold> ----- Maps ----- <subfold> */

    .eb-map {
        min-height: 540px !important;
    }

    /* </subfold> ----- End of Maps ----- </subfold> */

    /* <subfold> ----- Footer ----- <subfold> */

    .site-footer {
        border-top: 1px solid #e9e9e9;
        margin-top: 2rem;
        padding: 1rem 0;
    }

    .front-page .site-footer {
        margin-top: 0;
    }

    .site-info {
        width: 100%;
    }

    @media only screen and (min-width: 992px) {
        .footer__policy,
        .footer__design-by {
            text-align: right;
        }
    }

    /* </subfold> ----- End of Footer ----- </subfold> */

/* </fold> ----- End of Sections ----- </fold> */

/* <fold> ----- Typography ----- <fold> */

/* font-family: 'Philosopher', sans-serif; */
/* font-family: 'Muli', sans-serif; */

h1 {
    color: rgba(0,0,0,0.87);
    font-family: 'Philosopher', sans-serif;
    font-size: 2em;
}

@media only screen and (min-width: 576px){
    h1 {
        font-size: 4em;
    }
}

h2 {
    color: rgba(0,0,0,0.87);
    font-family: 'Philosopher', sans-serif;
    font-size: 2em;
}

h3 {
    color: rgba(0,0,0,0.87);
    font-family: 'Muli', sans-serif;
    font-size: 1.25em;
    font-weight: 400;
}

.woocommerce-checkout h3 {
    margin-bottom: 1.5rem;
}

/* </fold> ----- End of Typography ----- </fold> */

/* <fold> ----- Wordpress ----- <fold> */

.post,
.page,
.page-content,
.entry-content.frontpage,
.entry-summary {
    margin: 0;
}

.entry-content {
    margin-top: 84px;
}


    /* <subfold> ----- Admin Bar ----- <subfold> */

    /* Disable dropdown on Home button in the admin bar
     * item is initiated with javascript so the !important tag is indeed important
     */
    #wp-admin-bar-root-default.ab-top-menu .ab-sub-wrapper {
        display: none !important;
    }

    /* </subfold> ----- End of Admin Bar ----- </subfold> */

    /* <subfold> ----- Contact Form 7 ----- <subfold> */

    .wpcf7-form input[type="submit"] {
        background-color: #71b360;
        color: #fff;
    }

    .wpcf7-form-control-wrap input.wpcf7-form-control,
    .wpcf7-form-control-wrap textarea.wpcf7-form-control {
        width: 100%;
    }

    div.wpcf7-response-output {
        margin: 2em 0;
        padding: 1em;
    }

    div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
        background-color: #ffc107;
        border: 2px solid #ffc107;
        border-radius: 4px;
    }

    div.wpcf7-mail-sent-ng {
        background-color: #e2401c;
        border: 2px solid #e2401c;
        border-radius: 4px;
    }

    div.wpcf7-mail-sent-ok {
        background-color: #71b360;
        border: 2px solid #71b360;
        border-radius: 4px;
        color: #fff;
    }


    /* </subfold> ----- End of Contact Form 7 ----- </subfold> */

    /* <subfold> ----- Elementor ----- <subfold> */

    .elementor-element.elementor-section.elementor-section-height-full {
        height: auto;
        min-height: 100vh;
    }

    /* </subfold> ----- End of Elementor ----- </subfold> */

    /* <subfold> ----- WooCommerce ----- <subfold> */

    /* Spinner styling */
    .blockUI::before {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        line-height: 1;
        vertical-align: -.125em;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        line-height: inherit;
        vertical-align: baseline;
        content: "\f110";
        -webkit-animation: fa-spin 0.75s linear infinite;
                animation: fa-spin 0.75s linear infinite;
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-size: 30px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -15px;
        margin-top: -15px;
    }

    .woocommerce-billing-fields .form-row {
        flex-direction: column;
        justify-content: space-between;
    }

    .woocommerce-input-wrapper {
        min-width: 280px;
    }

    .single-product div.product {
        min-width: 100%;
    }

    .wc-bookings-booking-form .block-picker li {
        padding: 0.5em;
        color: rgba(0,0,0,0.6);
    }

    .wc-bookings-booking-form .block-picker li a {
        margin: -0.5em;
    }

        /* <trifold> ----- WooCommerce Messages ----- <trifold> */

        .woocommerce-message,
        .woocommerce-info,
        .woocommerce-error,
        .woocommerce-noreviews,
        p.no-comments {
            border-radius: 4px;
            color: #fff;
            margin-bottom: 1rem;
            padding: 1rem;
            width: 100%;
        }

        .woocommerce-message {
            background-color: #71b360;
        }

        .woocommerce-info a,
        .woocommerce-message a{
            color: #fff;
        }

        .woocommerce-checkout ul.woocommerce-error {
            list-style: none;
            margin-top: 0;
            margin-left: 0;
            margin-right: 0;
        }

        .woocommerce-notice.woocommerce-notice--success {
            background-color: #71b360;
            border-radius: 4px;
            color: #fff;
            padding: 1rem;
            width: 100%;
        }

        .woocommerce-NoticeGroup-checkout {
            width: 100%;
        }

        .woocommerce-checkout .form-row.woocommerce-invalid input.input-text {
            border: 1px solid #e2401c;
            box-shadow: none;
        }

        .woocommerce-checkout .form-row.woocommerce-validated input.input-text {
            box-shadow: none;
        }

        .woocommerce-checkout .wc_payment_methods.payment_methods.methods {
            display: none;
        }

        /* </trifold> ----- WooCommerce Messages ----- </trifold> */

        /* <trifold> ----- WooCommerce Order review ----- <trifold> */

        dl.variation {
            margin: 0.5rem 0;
        }

        dl.variation p {
            margin: 0;
        }

        dl.variation dd {
            margin: 0;
        }

        dt.variation-BoekingDatum,
        dt.variation-BoekingTijd {
            display: none;
        }

        .woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
            table-layout: fixed;
        }

        /* </trifold> ----- WooCommerce End of Order review ----- </trifold> */

        /* <trifold> ----- WooCommerce Thank you ----- <trifold> */

        .wc-booking-summary {
            border: none;
            padding: 0 1em;
            margin: 0;
        }

        .wc-booking-summary-number {
            display: none;
        }

        .wc-booking-summary-list {
            padding: 0;
        }

        /* </trifold> ----- WooCommerce End of Thank you ----- </trifold> */

    /* </subfold> ----- End of WooCommerce ----- </subfold> */

/* </fold> ----- End of Wordpress ----- </fold> */
