.elementor-kit-8{--e-global-color-primary:#9C8B58;--e-global-color-secondary:#2C3E57;--e-global-color-text:#0C0C0C;--e-global-color-accent:#F9F7F7;--e-global-color-65d6d4a:#C8B889;--e-global-color-bffb140:#E9E2D6;--e-global-color-3383481:#F5F1EB;--e-global-color-7d4abb4:#C7BFB2;--e-global-color-33d60ff:#7C8463;--e-global-color-1aae00d:#B49D87;--e-global-color-e1409c9:#FFFFFF;--e-global-color-f1a31ae:#2C3E57;--e-global-color-5a7fea1:#9C8B58;--e-global-typography-primary-font-family:"Cormorant Garamond";--e-global-typography-primary-font-weight:500;--e-global-typography-secondary-font-family:"Manrope";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Manrope";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-weight:600;--e-global-typography-844aca0-font-family:"Cormorant Garamond";--e-global-typography-844aca0-font-weight:500;--e-global-typography-e1d670d-font-family:"DM Sans";--e-global-typography-e1d670d-font-weight:400;--e-global-typography-903f6de-font-family:"DM Sans";--e-global-typography-903f6de-font-weight:400;--e-global-typography-252456b-font-family:"Cormorant Garamond";--e-global-typography-252456b-font-weight:500;color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 p{margin-block-end:24px;}.elementor-kit-8 a{color:var( --e-global-color-text );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ==========================
   MASSUDIO TOOLTIPS
========================== */

.ms-tooltip {
    position: relative;
    display: inline-flex;
    overflow: visible !important;
    z-index: 999;
}

/* Tooltip label */
.ms-tooltip::after {
    content: attr(data-title);

    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);

    transform: translateX(-50%) translateY(6px);

    background: #C8B889;
    color: #2C3E57;

    padding: 10px 18px;

    border: 1px solid rgba(44, 62, 87, 0.15);
    border-radius: 999px;

    white-space: nowrap;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;

    z-index: 9999;
}

/* Pijltje onder de tooltip */
.ms-tooltip::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);

    transform: translateX(-50%) rotate(-45deg);

    width: 10px;
    height: 10px;

    background: #C8B889;

    border-left: 1px solid rgba(44, 62, 87, 0.15);
    border-bottom: 1px solid rgba(44, 62, 87, 0.15);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;

    z-index: 9998;
}

/* Tooltip zichtbaar bij hover of toetsenbordfocus */
.ms-tooltip:hover::after,
.ms-tooltip:hover::before,
.ms-tooltip:focus-within::after,
.ms-tooltip:focus-within::before {
    opacity: 1;
    visibility: visible;
}

.ms-tooltip:hover::after,
.ms-tooltip:focus-within::after {
    transform: translateX(-50%) translateY(0);
}/* End custom CSS */