<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*HIER NIETS WIJZIGEN */

/* 22-06-2023 - Aangepaste versie inclusief CAPTION Downloaded bij: https://codepen.io/fancyapps/pen/ePYNZo */

/* Bron: https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0.11/dist/ */
/* Modified bij: PEGRO for EETZE */
/* Downloaded bij: https://codesandbox.io/s/elegant-gates-qwgnd?file=/index.html:0-831 */

.carousel__viewport{position:relative;overflow:hidden;max-width:100%;max-height:100%}
.carousel__track{display:flex}

.carousel__button{
width:var(--carousel-button-width, 48px);
height:var(--carousel-button-height, 48px);
padding:0;
border:0;
display:flex;
justify-content:center;
align-items:center;
pointer-events:all;
cursor:pointer;
color:var(--carousel-button-color, currentColor);
background:var(--carousel-button-bg, transparent);
border-radius:var(--carousel-button-border-radius, 50%);
box-shadow:var(--carousel-button-shadow, none);
transition:opacity .15s ease
}

.carousel__button.is-prev,.carousel__button.is-next{position:absolute;top:50%;transform:translateY(-50%)}
.carousel__button.is-prev{left:10px}
.carousel__button.is-next{right:10px}
.carousel__button[disabled]{cursor:default;opacity:.3}

/* OPMAAK carousel button */
.carousel__button svg{
width:var(--carousel-button-svg-width, 50%);
height:var(--carousel-button-svg-height, 50%);
/* fill:none; */
stroke:currentColor;
stroke-width:var(--carousel-button-svg-stroke-width, 1.5)
}

/*Ondergebracht bij EIGEN OPMAAK - toegevoegd: background ZWART*/
.fancybox__container{
position:fixed;
z-index:1050;
top:0;
left:0;
bottom:0;
right:0;
direction:ltr;
margin:0;
padding:env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
box-sizing:border-box;
display:flex;
flex-direction:column;
color:var(--fancybox-color, #fff); /* kleur navigatie pijlen */
-webkit-tap-highlight-color:transparent;
overflow:hidden;
outline:none;
transform-origin:top left
}

@media all and (min-width: 1024px){.fancybox__container{--carousel-button-width:48px;--carousel-button-height:48px;--carousel-button-svg-width:27px;--carousel-button-svg-height:27px}}

/* achtergrond image */
.fancybox__backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background:var(--fancybox-bg, rgba(24, 24, 27, 0.92))}
.fancybox__carousel{position:relative;flex:1 1 auto;min-height:0;height:100%;z-index:10}
.fancybox__carousel.has-dots{margin-bottom:calc(0.5rem + 22px)}
.fancybox__viewport{position:relative;width:100%;height:100%;overflow:visible;cursor:default}
.fancybox__track{display:flex;height:100%}
.fancybox__slide{
flex:0 0 auto;
width:100%;
max-width:100%;
margin:0;
padding:48px 8px 8px 8px;
position:relative;
overscroll-behavior:contain;
display:flex;
flex-direction:column;
outline:0;
overflow:auto;
-webkit-overflow-scrolling:touch;
--carousel-button-width: 36px;
--carousel-button-height: 36px;
--carousel-button-svg-width: 22px;
--carousel-button-svg-height: 22px
}

.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto} /* fancybox vertikaal gecentreerd */

@media all and (min-width: 1024px){.fancybox__slide{padding:64px 100px}}

.fancybox__content{
margin:0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
padding:36px;
color:var(--fancybox-content-color, #374151);
background:var(--fancybox-content-bg, #fff);
position:relative;
align-self:center;
display:flex;
flex-direction:column;
z-index:20
}

.fancybox__content :focus:not(.carousel__button.is-close){outline:thin dotted;box-shadow:none}

/*Caption - Onderschft / Title onder de image*/
/*Font-size toegevoegd - Color aangepast*/
.fancybox__caption{
align-self:center;
max-width:100%;
margin:0;
padding:1rem 0 0 0;
line-height:1.375;
font-size:17px; /*Toegevoegd*/
color:#fff;
visibility:visible;
cursor:auto;
flex-shrink:0;
overflow-wrap:anywhere
}

.fancybox__nav .carousel__button.is-next{right:25px;top:90px} /* top:90px toegevoegd next button -right was 8px */
@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-next{right:40px}} /* werkt bij video */
.fancybox__nav .carousel__button.is-prev{left:25px;top:90px} /* top:90px toegevoegd prev button -right was 8px */
@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-prev{left:40px}}/* werkt bij video */
.carousel__button.is-close{position:absolute;top:8px;right:8px;top:calc(env(safe-area-inset-top, 0px) + 8px);right:calc(env(safe-area-inset-right, 0px) + 8px);z-index:40}
@media all and (min-width: 1024px){.carousel__button.is-close{right:40px}}/* werkt bij video */

.fancybox__content&gt;.carousel__button.is-close{position:absolute;top:-40px;right:0;color:var(--fancybox-color, red)} /* kleur close button video */
.fancybox__no-click,.fancybox__no-click button{pointer-events:none}
.fancybox__spinner{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:50px;height:50px;color:var(--fancybox-color, currentColor)}
.fancybox__slide .fancybox__spinner{cursor:pointer;z-index:1053}
.fancybox__spinner svg{animation:fancybox-rotate 2s linear infinite;transform-origin:center center;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;width:100%;height:100%}
.fancybox__spinner svg circle{
fill:none;
stroke-width:2.75;
stroke-miterlimit:10;
stroke-dasharray:1,200;
stroke-dashoffset:0;
animation:fancybox-dash 1.5s ease-in-out infinite;
stroke-linecap:round;
stroke:currentColor
}

@keyframes fancybox-rotate{100%{transform:rotate(360deg)}}
@keyframes fancybox-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}
50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}
100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}
}

/*Ondergebracht bij EIGEN OPMAAK -nav,dots en close*/
.fancybox__backdrop,.fancybox__caption,.fancybox__nav,.carousel__dots,.carousel__button.is-close{opacity:var(--fancybox-opacity, 1)}

.fancybox-fadeIn{animation:.15s ease both fancybox-fadeIn}
.fancybox-fadeOut{animation:.1s ease both fancybox-fadeOut} /* Fancybox sluiten door klik er naast */

@keyframes fancybox-fadeOut{to{opacity:0}} /* fancybox sluiten door klik er naast */

.fancybox__carousel .carousel__slide{scrollbar-width:thin;scrollbar-color:#ccc rgba(255,255,255,.1)}

.fancybox__image{transform-origin:0 0;touch-action:none;user-select:none;transition:none}
.has-image .fancybox__content{padding:0;background:transparent;min-height:1px}
.is-closing .has-image .fancybox__content{overflow:visible}
.has-image[data-image-fit=contain]{overflow:visible;touch-action:none}
.has-image[data-image-fit=contain] .fancybox__content{flex-direction:row;flex-wrap:wrap}

.has-image[data-image-fit=contain] .fancybox__image{max-width:100%;max-height:100%;object-fit:contain}
.has-image[data-image-fit=contain] .fancybox__image{border-radius:5%}
.has-image[data-image-fit=contain-w]{overflow-x:hidden;overflow-y:auto}
.has-image[data-image-fit=contain-w] .fancybox__content{height:auto}
.has-image[data-image-fit=contain-w] .fancybox__image{max-width:100%;height:auto}
.has-image[data-image-fit=cover]{overflow:visible;touch-action:none}
.has-image[data-image-fit=cover] .fancybox__content{width:100%;height:100%}
.has-image[data-image-fit=cover] .fancybox__image{width:100%;height:100%;object-fit:cover}

.fancybox__carousel 
.fancybox__slide.has-video 
.fancybox__content,.fancybox__carousel 
.fancybox__slide.has-html5video 
.fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}

.fancybox__carousel 
.fancybox__slide.has-map 
.fancybox__content,.fancybox__carousel 
.fancybox__slide.has-pdf 
.fancybox__content,.fancybox__carousel 
.fancybox__slide.has-video 
.fancybox__content,.fancybox__carousel 
.fancybox__slide.has-html5video 

/* WAS -gewijzigd in ZWART- .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff} */
.fancybox__content{padding:0;background:rgba(0,0,0,.0);color:#000}

/* WAS */
.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:transparent}
/* border-radius fancybox video toegevoegd */
.fancybox__html5video,.fancybox__iframe{border-radius:20px}

.fancybox-placeholder{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}
.fancybox__thumbs{flex:0 0 auto;position:relative;padding:0px 3px;opacity:var(--fancybox-opacity, 1)}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs{animation:.15s ease-in backwards fancybox-fadeIn}
.fancybox__container.is-animated.is-closing .fancybox__thumbs{opacity:0}
.fancybox__thumbs .carousel__slide{
flex:0 0 auto;
width:var(--fancybox-thumbs-width, 96px);
margin:0;
padding:8px 3px;
box-sizing:content-box;
display:flex;
align-items:center;
justify-content:center;
overflow:visible;
cursor:pointer
}

/* Ondergebracht bij EIGEN OPMAAK */
/* aangepast border width en kleur */
.fancybox__thumbs .carousel__slide .fancybox__thumb::after{
content:"";
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
border-width:5px;
border-style:solid;
border-color:var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
opacity:0;
transition:opacity .15s ease;
border-radius:var(--fancybox-thumbs-border-radius, 4px)
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after{opacity:.92}
.fancybox__thumbs .carousel__slide&gt;*{pointer-events:none;user-select:none}
.fancybox__thumb{
position:relative;
width:100%;
padding-top:calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
background-size:cover;
background-position:center center;
background-color:rgba(255,255,255,.1);
background-repeat:no-repeat;
border-radius:var(--fancybox-thumbs-border-radius, 4px)
}

/* Ondergebracht bij EIGEN OPMAAK */
/* toolbar helemaal uit */
.fancybox__toolbar{
position:absolute;
top:0;
right:0;
left:0;
z-index:20;
padding:0;
touch-action:none;
display:flex;
justify-content:space-between;
--carousel-button-svg-width: 20px;
--carousel-button-svg-height: 20px;
opacity:var(--fancybox-opacity, 1);
text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4))
}

@media all and (min-width: 1024px){.fancybox__toolbar{padding:8px}}

/* Ondergebracht bij EIGEN OPMAAK */
/* toolbar items helemaal uit */
.fancybox__toolbar__items{display:flex}

/* Teller links boven in scherm*/
.fancybox__counter{
min-width:72px;
padding:0 10px;
line-height:var(--carousel-button-height, 48px);
text-align:center;
font-size:14px;
font-variant-numeric:tabular-nums;
-webkit-font-smoothing:subpixel-antialiased
}

/*Lopende lijn boven in scherm*/
/*Kleur aangepast*/
.fancybox__progress{
sbackground:#fff; /*kleur aangepast*/
height:3px;
left:0;
position:absolute;
right:0;
top:0;
transform:scaleX(0);
transform-origin:0;
transition-property:transform;
transition-timing-function:linear;
z-index:30;
user-select:none
}

/* slideshow voor images */
.fancybox__button--slideshow g:nth-child(2){display:none}
.fancybox__container.has-slideshow 
.fancybox__button--slideshow g:nth-child(1){display:none}
.fancybox__container.has-slideshow 
.fancybox__button--slideshow g:nth-child(2){display:block}


/* EIGEN OPMAAK EIGEN OPMAAK EIGEN OPMAAK EIGEN OPMAAK EIGEN OPMAAK EIGEN OPMAAK */

/* BACKGROUND OP ZWART */ .fancybox__container{background-color:#232323}
/* BACKGROUND OP TRANSPARANT voor EETZE */ .fancybox__container{background-color:transparent}
/* NAV PIJLEN en CLOSE BUTTON op 1 */ .fancybox__nav,.carousel__button.is-close{opacity:var(--fancybox-opacity, 1)}
/* CAROUSEL en THUMB BORDER op 2px kleur wit */ .fancybox__thumbs .carousel__slide .fancybox__thumb::after{border-width:1px;border-color:#fff}
/* TOOLBAR HELEMAAL UIT -niet in gebruik */ .fancybox__toolbar{display:non? !important}
/* TOOLBAR ITEMS HELEMAAL UIT -niet in gebruik */ .fancybox__toolbar__items{display:non? !important}
</pre></body></html>