/* reset */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } body {line-height: 1; } ol, ul {list-style: none; } blockquote, q {quotes: none; } blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none; } /* remember to define focus styles! */ :focus {outline: 0; } /* remember to highlight inserts somehow! */ ins {text-decoration: none; } del {text-decoration: line-through; } /* tables still need 'cellspacing="0"' in the markup */ table {border-collapse: collapse; border-spacing: 0; }

/*
   BACKSTAGE 7 | BURO GAAFD
   2026 - Cybox Backstage CMS
   
   fonts embedden via <link> in de wrapper!
*/

/* ### BASICS ### */
html, body {
    height: auto;
}
body {
    /* design color vars: see _colors.css */

    /* layout vars */
    --contentwidth: 1400px; /* content container width */
    --contentwidth: 800px; /* content container width */
    --gapwidth: 75px; /*  overall gaps & gutters */
    --blockpadding: 30px; /* overall padding for blocks */
    --rowpadding: 80px; /* overall vertical row & footer padding */
    --blockradius: 6px; /* overall border-radius tuning for blocks */

    /* general */
    background-color: var(--bodycolor1);
    color: var(--textcolor1);
    font-family: "Public Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: scroll;
}
a {
    color: var(--color1);
    text-decoration: none;
}
a:hover {
    /*color: var(--color2);*/
}


/* ### TITLES ### */
h1,h2,h3,h4 {
    font-family: "Hanken Grotesk", sans-serif;
    color: var(--color3);
}
h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 40px;
    margin-top: -8px!important;
}
h2 {
    font-size: 36px;
    color: var(--color1);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}
h2 strong { font-weight: 700; }
h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
}
h3 + ul {
    margin-top: 20px;
}
h4/*,
body.__privacyverklaring h2*/ {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ### BUTTONS ### */
.btn {
    position: relative;
    left: -2px;
	padding: 15px 24px 16px 24px;
    margin: 0;
    border-radius: 35px;
	border: 0;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
	background-color: var(--color4);
	color: var(--bodycolor1);
	line-height: 1;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	text-align: center;
    font-family: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    width: auto;
    font-size: 1em;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    max-width: 100%;
    text-decoration: none!important;
}
.btn:not(.yes):not(.no):after {
    margin-right: -5px;
    width: 21px;
    height: 21px;
    content: "";
    filter: invert(1);
    background-image: url("/images/icons/arrow-right.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.btn:hover {
	color: var(--bodycolor1);
	background-color: var(--color6);
}
.btn.grey {
	color: var(--textcolor1);
    text-shadow: none;
	opacity: 0.75;
	background-color: var(--bodycolor2);
}
.btn.grey:after {
    filter: invert(0)!important;
    opacity: 0.75;
    background-image: url(/images/icons/close.svg)!important;
}

/* ### NAV ### */
#header {
    width: 100%;
    height: 120px;
    position: sticky;
    top: 0;
    left: 0;
    border-bottom: 1px solid #efefef;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow ease 0.15s;
    box-sizing: border-box;
    z-index: 7;
    background-color: #fff;
}
body.homepage.scroll #header {
    border-bottom: 1px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
#header #header-container {
    /*max-width: var(--contentwidth);*/
    width: 90%;
    margin: 0 auto;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
}
#header #logo {
    width: 230px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
#header #logo a {
    display: block;
}
#header #logo img {
    display: block;
    width: 100%;
    pointer-events: none;
}
#menu-holder {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 80px;
}
ul#menu {
    display: flex;
    column-gap: 30px;
    position: relative;
    line-height: 1;
    order: 0;
    margin-right: 10px;
}
ul#menu li {
    position: relative;
    white-space: nowrap;
}
ul#menu li a.master {
    position: relative;
    font-size: 24px;
    color: var(--color3);
    font-weight: 700;
    z-index: 2;
}
ul#menu li.active a.master {
    color: var(--color1);
}
ul#menu li a.master:hover {
    color: var(--color1);
}
ul#menu li.hassub ul.sub {
    line-height: 1.8;
    position: absolute;
    bottom: 0px;
    left: -30px;
    visibility: hidden;
    transform: translateY(100%);
    padding: 25px 30px;
    padding-top: 25px;
    background-color: var(--bodycolor2);
    min-width: 200px;
    white-space: nowrap;
    z-index: 1;
}
ul#menu li.hassub a.master {
    padding-right: 16px;
}
ul#menu li.hassub a.master img /* down arrow */ {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
}
ul#menu li.hassub:hover ul.sub {
    visibility: visible;
}
ul#menu li.hassub ul.sub li a {
    color: var(--textcolor1);
}
ul#menu li.hassub ul.sub li.active a {
    color: var(--color1);
}
ul#menu li.hassub ul.sub li a:hover {
    color: var(--color2);
}
ul#menu li.hassub ul.sub li ul.subsub {
    margin-left: 20px;
}
ul#menu li.hassub ul.sub li.active ul.subsub li a {
    color: var(--textcolor1);
}
ul#menu li.hassub ul.sub li.active ul.subsub li.subsubactive a {
    color: var(--color1);
}
ul#menu li.hassub ul.sub li.active ul.subsub li a:hover {
    color: var(--color2);
}
ul#menu-second {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    order: 0;
    gap: 15px;
    top: 0;
    right: 0;
    font-size: 16px;
    width: 100%;
    height: 40px;
    z-index: 1;
}
ul#menu-second:after {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 40px;
    content: "";
    opacity: 0.1;
    z-index: -1;
    background: #12a19a;
    background: linear-gradient(270deg, rgba(18, 161, 154, 1) 0%, rgba(18, 161, 154, 0) 100%);
}
ul#menu-second li a { 
    color: var(--color3);
    font-weight: 500;
}
ul#menu-second li.active a,
ul#menu-second li a:hover {
    color: var(--color1);
}
ul#menu-second li.hassub ul.sub {
    display: none;
}

#header .icons { display: flex; align-items: center; gap: 20px; height: 80px; }

.nav-button {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}
.nav-button a {
    display: block;
    width: 100%;
    height: 100%;
}
.nav-button img {
    display: block;
    width: 100%; 
    height: 100%;
    filter: var(--colorfilter3);
}
.nav-button:hover img {
    filter: var(--colorfilter1);
}
.nav-button#menu-button {
    display: none;
    z-index: 4;  
}
.nav-button#cart-button {
    /*margin-left: 20px;*/
}
.nav-button#search-button {
    
}
.nav-button#cart-button .cart-num {
    background-color: var(--color6);
    font-size: .6em;
    line-height: 20px;
    font-weight: 500; 
    color: var(--bodycolor1);
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 20px;
}
#langmenu {
    display: flex;
    gap: 10px;
    order: 1;
}
#langmenu a {
    display: block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 30px;
    opacity: 0.5;
}
#langmenu a.active,
#langmenu a:hover {
    opacity: 1;
}
#langmenu a img {
    display: block;
    width: 100%;
}
#langmenu img.offline {
    filter: grayscale(0.9);
    opacity: 0.4;
}
#langmenu img.offline:hover {
    filter: unset;
    opacity: 0.7;
}

/* ### LAZY LOAD VIDEO FADE-IN ### */
video {
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
}
video.loaded {
    opacity: 1;
    object-fit: contain;
}

/* ### DETAILS / SUMMARY DROPDOWN ### */
details summary {
    list-style: none;
    /* Firefox */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
details summary::-webkit-details-marker {
    display: none;
    /* Chrome / Safari */
}
details summary::before {
    content: "";
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("/images/icons/arrow-dropdown.svg");
    transform: rotate(-90deg);
    transition: transform 0.2s ease;
}
details[open] summary::before {
    transform: rotate(0deg);
}


/* ### ROW, CONTENT & BLOCK-CONTENT ### */
.row {
    position: relative;
    padding: 60px 0;
}
.row.row-shopcategory {
    /*padding: 80px 0 90px 0;*/
}
.row:nth-of-type(even) {
    background-color: var(--bodycolor4);
}
.row:only-of-type {
    min-height: 400px;
}
.row:last-of-type { padding-bottom: 90px; }
.row.row-last.dhbs { padding: 60px 0; }
.row.row-last.academie { padding: 90px 0; }

.row.row-text .content .block-content,
.row.row-text-media .content .block-content { display: flex; flex-direction: column; gap: 60px; }

.content {
    display: block;
    grid-template-columns: repeat(12, 1fr);
    gap: 45px;
    margin: 0px auto;
    width: 90%;
    max-width: var(--contentwidth);
    box-sizing: border-box;
}

body.homepage .row { padding: 90px 0; }

body.homepage .content { max-width: 1400px; }

body.homepage.page1 .content h1 { line-height: 1.1; }
body.homepage.page1 .content h1:before { display: block; margin-bottom: 15px; content: "Buro Gaafd - Advies en Training"; font-size: 18px; color: var(--textcolor1); font-weight: 400; text-transform: uppercase; letter-spacing: 2px; opacity: 0.5; }

/* Homepagina - Headerfoto */
body.homepage .row.row-1 { padding: 0; height: calc(100vh - 240px); }
body.homepage .row.row-1 .content { width: 100%; max-width: none; height: 100%; }
body.homepage .row.row-1 .content .block-content { flex-direction: row; gap: 0; height: 100%; }
body.homepage .row.row-1 .content .block-content .text { position: relative; display: flex; flex-direction: column; justify-content: center; padding-left: 5%; padding-right: calc(5% - 75px); width: 50%; box-sizing: border-box; }
body.homepage .row.row-1 .content .block-content .text:after { position: absolute; bottom: -45px; left: calc(5% + 60px); width: 160px; aspect-ratio: 1 / 1; content: ""; transform: rotate(-30deg); opacity: 1; transition: all ease 0.15s; z-index: 1; background-image: url(/images/arrow-down.png); background-position: center; background-size: contain; background-repeat: no-repeat; }
body.homepage.scroll .row.row-1 .content .block-content .text:after { bottom: -15px; opacity: 0; }
body.homepage .row.row-1 .content .block-content .media { position: relative; right: -75px; width: calc(50% + 150px); }
body.homepage .row.row-1 .content .block-content .media figure.image { transform: skewX(-10deg); overflow: hidden; }
body.homepage .row.row-1 .content .block-content .media figure.image,
body.homepage .row.row-1 .content .block-content .media figure.image a { height: 100%; }
body.homepage .row.row-1 .content .block-content .media figure.image a { position: relative; left: -75px; transform: skewX(10deg); width: calc(100% + 75px); pointer-events: none; }
body.homepage .row.row-1 .content .block-content .media figure.image a img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

/* Homepagina - De digitale HB Specialist */
body.homepage .row.row-2 { position: relative; padding: 120px 0; overflow: hidden; /*transition: padding ease 0.15s;*/ }
body.homepage .row.row-2:after { position: absolute; top: 0; left: -10%; height: 100%; aspect-ratio: 1 / 1; content: ""; filter: var(--colorfilter6); opacity: 0.15; z-index: 1; background-image: url(/images/tandwielen.svg); background-position: center; background-size: contain; background-repeat: no-repeat; }
/*body.homepage.scroll .row.row-2 { padding: 90px 0; }*/
body.homepage .row.row-2 .content .block-content .text { position: relative; display: flex; flex-direction: column; align-items: center; z-index: 2; }
body.homepage .row.row-2 .content .block-content .text p { margin: 0; }
body.homepage .row.row-2 .content .block-content .text h2 + p strong { font-size: 21px; font-weight: 500; }
body.homepage .row.row-2 .content .block-content .text p a.btn { left: 0; }
body.homepage .row.row-2 .content .block-content .text ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; margin: 30px 0 45px 0; }
body.homepage .row.row-2 .content .block-content .text ul li { position: relative; display: flex; align-items: center; justify-content: center; margin: 0; padding: 45px 60px; font-family: "Hanken Grotesk", sans-serif; font-size: 22px; color: var(--color3); font-weight: 500; line-height: 1.2; text-align: center; border-radius: var(--blockradius); list-style: none; background-color: #fff; }
body.homepage .row.row-2 .content .block-content .text ul li strong { position: absolute; display: flex; align-items: center; justify-content: center; top: -10px; left: -10px; width: 50px; height: 50px; color: #fff; border-radius: 50%; background-color: var(--color1); }

/* Homepagina - Breng jouw kennis naar een hoger niveau */
body.homepage .row.row-3 { padding: 120px 0; }
body.homepage .row.row-3 .content { }
body.homepage .row.row-3 .content .block-content .text { display: flex; flex-direction: column; align-items: center; }

body.homepage .row.row-3 .content .block-content .text h2 { margin: 0; }
body.homepage .row.row-3 .content .block-content .text figure.table { margin-top: 0; }
body.homepage .row.row-3 .content .block-content .text table { margin-top: 45px; border: none; }
body.homepage .row.row-3 .content .block-content .text table tr { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; background-color: transparent!important; }
body.homepage .row.row-3 .content .block-content .text table tr td { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 15px; padding: 55px 45px 65px 45px; text-align: center; border: none; border-radius: var(--blockradius); background-color: var(--bodycolor4); }
body.homepage .row.row-3 .content .block-content .text table tr td figure.image { margin: 0; width: 120px; }
body.homepage .row.row-3 .content .block-content .text table tr td figure.image img { border-radius: 50%; background-color: #fff; }
body.homepage .row.row-3 .content .block-content .text table tr td p { display: flex; flex-direction: column; align-items: center; justify-content: space-between; flex: 1; gap: 30px; margin: 0!important; }
body.homepage .row.row-3 .content .block-content .text table tr td p strong { display: flex; align-items: center; min-height: 55px; font-family: "Hanken Grotesk", sans-serif; font-size: 22px; color: var(--color3); font-weight: 500; line-height: 1.2; }
body.homepage .row.row-3 .content .block-content .text table tr td p br { display: none; }
body.homepage .row.row-3 .content .block-content .text table tr td p a.btn { left: 0; }

/* Homepagina - Waarom professionals kiezen voor Buro Gaafd */
body.homepage .row.row-4 { padding: 120px 0; overflow: hidden; }
/*body.homepage .row.row-4:before { position: absolute; bottom: -25%; left: 5%; height: 100%; aspect-ratio: 2 / 3; content: ""; background-image: url("/images/thumbs-up.png"); background-position: center; background-size: contain; background-repeat: no-repeat; }*/
body.homepage .row.row-4:before { position: absolute; bottom: 0; left: 5%; height: 75%; aspect-ratio: 1 / 1; content: ""; z-index: 0; background-image: url("/images/woman-pointing.jpg"); background-position: bottom center; background-size: contain; background-repeat: no-repeat; }
body.homepage .row.row-4 .content .block-content .text { display: flex; flex-direction: column; align-items: center; }
body.homepage .row.row-4 .content .block-content .text h2 { margin: 0; }
body.homepage .row.row-4 .content .block-content .text ul { display: flex; flex-direction: column; gap: 20px; margin: 45px 0 45px 0; width: 100%; text-align: center; }
body.homepage .row.row-4 .content .block-content .text ul li { margin: 0; font-family: "Hanken Grotesk", sans-serif; font-size: 22px; color: var(--color3); font-weight: 500; line-height: 1.2; list-style: none; }
body.homepage .row.row-4 .content .block-content .text ul li strong { position: relative; display: inline-flex; align-items: center; gap: 12px; font-weight: 500; }
body.homepage .row.row-4 .content .block-content .text ul li strong:before { position: relative; top: -1px; width: 24px; height: 24px; content: ""; background-image: url("/images/icons/vinkje.svg"); background-position: center; background-size: contain; background-repeat: no-repeat; }
body.homepage .row.row-4 .content .block-content .text p { margin: 0; }


body.shopcategory .content { position: relative; display: flex; align-items: flex-start; justify-content: space-between; max-width: none; }
body.shopcategory .content .block-content { max-width: var(--contentwidth); }

body.shopcart .content,
body.shoporder .content { max-width: 1400px; }

.content .block-content /* voorheen page_content */ {
    width: 100%;
    box-sizing: border-box;
    grid-column: 1 / span 12;
}
.content .block-content .text a {
    text-decoration: underline;
}
.content .block-content .text a:hover {
    text-decoration: none;
}
/*body:has(#submenu) .content .block-content {
    grid-column: 4 / span 9;
}
body:has(#elearning-progress) .content .block-content {
    grid-column: 1 / span 9;
    grid-column: 1 / span 12;
}
body:has(#submenu):has(#elearning-progress) .content .block-content {
    grid-column: 4 / span 6;
}*/


/* ### BLOCKTYPES ### */

/* BLOCKTYPE: row-text */
.row.row-text .content .block-content {
    /*display: grid;*/
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--gapwidth);
    row-gap: var(--gapwidth);
}
/*.row.row-text .content .block-content .text {
    grid-column: 1 / span 8;
}
body:has(#elearning-progress) .row.row-text .content .block-content .text {
    grid-column: 4 / span 9;
}
.row.row-text:has(.tile_grid) .content .block-content .text {
    grid-column: 1 / span 12;
}*/

/* BLOCKTYPE: row-text-media // used for default blocks at pages, newsentry, calendarentry */
/* CSS GRID TIPS: https://css-tricks.com/snippets/css/complete-guide-grid/ */
/* CSS GRID TIPS: https://www.reddit.com/r/web_design/comments/127c0lj/new_to_css_grid_layout_how_would_i_add_a/ */
/* grid-column: 1 / span 6; === starts at col 1, spans 6 columns */ 
/* make custom (exceptions for) block styles w/ */
/*.row.row-text-media .content .block-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--gapwidth);
    row-gap: var(--gapwidth);
}*/
/*.row.row-text-media .content .block-content .text {
    grid-column: 1 / span 12; 
    grid-column: 1 / span 8;
}*/
/*body:has(#elearning-progress) .row.row-text-media .content .block-content .text {
    grid-column: 4 / span 9;
}*/
/*body:has(#elearning-progress) .row.row-text-media .content .block-content:has(.media) .text {
    grid-column: 4 / span 5;
}*/
.row.row-text-media:has(.media) .content .block-content .text {
    grid-column: 1 / span 6; 
    grid-column: 1 / span 7; 
}
.row.row-text-media .content .block-content .media {
    grid-column: 7 / span 6;
    grid-column: 8 / span 5;
}
body.page77/* Over Buro Gaafd */ .row.row-text-media .content .block-content .text {
    grid-column: 1 / span 6; 
}
body.page77/* Over Buro Gaafd */ .row.row-text-media .content .block-content .media {
    grid-column: 7 / span 6;
}
body:has(#submenu) .row.row-text-media .content .block-content {
    grid-template-columns: repeat(9, 1fr);
}
body:has(#submenu) .row.row-text-media .content .block-content .text {
    grid-column: 1 / span 9; 
    grid-column: 1 / span 8; 
}
body:has(#submenu) .row.row-text-media:has(.media) .content .block-content .text {
    grid-column: 1 / span 5; 
}
body:has(#submenu) .row.row-text-media .content .block-content .media {
    grid-column: 6 / span 4; 
}

/* tekst met foto ernaast */
.row.row-text-media.right { }
.row.row-text-media.right .content { max-width: none; }
.row.row-text-media.right .content .block-content { flex-direction: row; align-items: center; }
.row.row-text-media.right .content .block-content .text { order: 2; width: 50%; }
.row.row-text-media.right .content .block-content .media { order: 1; width: 50%; }
.row.row-text-media.right .content .block-content .media figure.image { left: 0; width: 100%; }
.row.row-text-media.right .content .block-content .media figure.image a { pointer-events: none; }

/* BLOCKTYPE: .row.row-text-form */
.row.row-text-form .content .block-content {
    display: flex;
    flex-direction: column;
    column-gap: var(--gapwidth);
    row-gap: var(--gapwidth);
}
.row.row-text-form .content .block-content .text {
    grid-column: 1 / span 6; 
}
.row.row-text-form .content .block-content .form {
    grid-column: 7 / span 6; 
}
body:has(#submenu) .row.row-text-form .content .block-content {
    grid-template-columns: repeat(9, 1fr);
}
body:has(#submenu) .row.row-text-form .content .block-content .text {
    grid-column: 1 / span 4; 
}
body:has(#submenu) .row.row-text-form .content .block-content .form {
    grid-column: 5 / span 5; 
}
/* BLOCKTYPE: .row.row-shopcategory */
/* BLOCKTYPE: .row.row-productpage */
.row.row-shopproduct .content {
    max-width: 1200px;
}
.row.row-shopproduct .content .block-content {
    display: flex;
    gap: 60px;
}
.row.row-shopproduct .content .block-content .text {
    flex: 1;
    width: 100px;
}
.row.row-shopproduct .content .block-content .side {
    width: 480px;
    max-width: 100%;
}
/* BLOCKTYPE: .row.row-shopcart */
/* BLOCKTYPE: .row.row-shoporder (all steps) */
/* BLOCKTYPE: .row.row-newslist */
/* BLOCKTYPE: .row.row-newsentry (also has .row-text-media) */
/* BLOCKTYPE: .row.row-calendarlist */
/* BLOCKTYPE: .row.row-calendarentry (also has .row-text-media) */
/* BLOCKTYPE: .row.row-album */
/* BLOCKTYPE: *NEW?* .row.row-addyourtype! */


/* ### OVERAL TILE GRID (shop, news, calendar) ### */
.tile_grid { display: flex; flex-direction: column; gap: 20px; margin-top: 45px; width: 100%; }
.tile_grid + .btn { margin-top: 40px; }

.tile_grid .item { background-color: var(--bodycolor3); border-radius: var(--blockradius); overflow: hidden; position: relative; }
.row:nth-of-type(even) .tile_grid .item { background-color: var(--bodycolor1); }
.tile_grid .item a { display: flex; flex-direction: row; width: 100%; height: 100%; color: var(--textcolor1); text-decoration: none!important; }
.tile_grid .item a .item-image { position: relative; display: flex; align-items: center; justify-content: center; width: 120px; aspect-ratio: 1 / 1; border-right: 1px solid rgb(166 207 199 / 50%); box-sizing: border-box; }
.tile_grid .item a .item-image img { display: block; width: 80%; }
body:not(.shopcategory) .tile_grid .item a .item-image img { mix-blend-mode: darken; }
.tile_grid .item a .item-text { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 0 30px; flex: 1; /*justify-content: space-between;*/ }
.tile_grid .item a .item-text .title { margin-bottom: 0; font-size: 24px; font-weight: 700; line-height: 1.2; }
.tile_grid .item a .item-text:hover .title { opacity: 0.75; }
.tile_grid .item a .item-text .meta { display: block; font-size: 21px; color: var(--bodycolor6); font-weight: 700; }

.tile_grid.products .item a .item-text { gap: 2px; }
.tile_grid.products .item a .item-text .title,
.tile_grid.products .item a .item-text .meta { font-size: 21px; font-weight: 600; }
.tile_grid.products .item a .item-image img { display: block; width: 90%; }


/* ### TEXT CONTENT STYLES ### */
/* block-content: paragraphs */
.content .block-content p {
    margin-bottom: 20px;
}
.content .block-content p:has(.btn) {
    display: flex;
    gap: 10px;
    margin-top: 35px;
    margin-bottom: 10px!important;
}

/* block-content: inline images */
.content .block-content figure.image {
    position: relative;
    margin: 0;
    width: 100%;
    /*border: 4px solid rgba(0, 0, 0, 0.025);*/
    /*box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.05);*/
    box-sizing: border-box;
}
body:not(.homepage) .content .block-content figure.image {
    left: -100px;
    margin: 45px 0;
    width: 1000px;
    border-radius: 10px;
}
body:not(.homepage) .content .block-content figure.image.photo {
    margin: 0 0;
}
.content .block-content figure.image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--blockradius);
}

/*.content .block-content :first-/:last-child {*/
.content .block-content .text > :first-child,
.content .block-content .text blockquote > :first-child,
.content .block-content .text table tr td > :first-child {
    margin-top: 0!important;
}
.content .block-content .text > :last-child,
.content .block-content .text blockquote > :last-child,
.content .block-content .text table tr td > :last-child {
    margin-bottom: 0!important;
}

/* block-content: lists */
.content .block-content ul,
.content .block-content ol {
    margin-bottom: 20px;
}
.content .block-content ul li {
    list-style-type: disc;
    margin-left: 20px;
}
.content .block-content ol li {
    list-style-type: decimal;
    margin-left: 20px;
}

/* block-content: tables */
.content .block-content figure.table { width: 100%; margin: 30px 0; }
.content .block-content table { border: 1px solid rgb(8 69 66 / 15%); width: 100%; }
.content .block-content table thead { background-color: var(--bodycolor2); }
.content .block-content table thead tr th { padding: 18px 15px; font-size: 17px; line-height: 1.2; text-align: left; }
.content .block-content table tr:nth-of-type(odd) { background-color: var(--bodycolor3); }
.content .block-content table:has(thead) tr:nth-of-type(odd) { background-color: transparent; }
.content .block-content table:has(thead) tr:nth-of-type(even) { background-color: var(--bodycolor3); }
.content .block-content table tr td { padding: 24px 25px 26px 25px; font-size: 17px; line-height: 1.3; border: 1px solid rgb(8 69 66 / 15%); }


/* block-content: blockquote */
.content .block-content blockquote {
    display: block;
    padding: var(--blockpadding);
    border-radius: var(--blockradius);
    background-color: var(--bodycolor3);
    margin-top: 40px; 
    margin-bottom: 45px;
    font-size: 17px;
    line-height: 1.5;
}
.row:nth-of-type(even) .content .block-content blockquote {
    background-color: var(--bodycolor5);
}

/* block-content: code block */
.content .block-content code {
    display: inline-block;
    /* padding: 0 0.25em; */
    color: var(--textcolor1);
    white-space: pre-wrap;
    font-size: 1.2em;
}
.content .block-content code[class^=language-] {
    display: block;
    margin-bottom: 20px;
    padding: 1em;
    font-size: 1em;
    white-space: pre;
    overflow: auto;
}
.content .block-content code[class^=language-] {
    border: 1px solid var(--bodycolor3);
}
.content .block-content code[class^=language-] table {
    border: initial;
    padding: 1em;
}
.content .block-content code[class^=language-] table tr td {
    border: initial;
    padding: 0 1em;
}
/* block-content: custom */
.content .block-content pre {
    white-space: normal;
}
.content .block-content sup {
    vertical-align: top;
    font-size: smaller;
}
.content .block-content sub {
    vertical-align: bottom;
    font-size: smaller;
}
/* block-content: downloads and links */
.content .links {
    margin-top: 1.4em;
    background-color: var(--bodycolor3);
    padding: var(--blockpadding);
    border-radius: var(--blockradius);
}
.row:nth-of-type(even) .content .links {
    background-color: var(--bodycolor5);
}
.content .links a {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.content .links img {
    width: 16px;
    height: 16px;
    margin-right: 20px; 
    filter: var(--colorfilter1);
}
.content .links + p {
    margin-top: 2em;
}
/* block-content: smaller h2 */
/*body.__privacyverklaring h2 {
    font-size: 1.2em;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}*/
body.__privacyverklaring h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--color3);
}


/* MEDIA COLUMN ON PAGE */
.content .media {
    box-sizing: border-box;
    position: relative; 
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.content .media figure.image {
    margin-bottom: 0;
}
.content .media figure.image a {
    display: block;
    position: relative;
}
.content .media figure.image a img {
    width: 100%;
    display: block;
    border-radius: var(--blockradius);
}


/* MEDIA: video embed iframe css */
.videowrapper  {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: var(--blockradius);
    overflow: hidden;
}
.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}


/* MEDIA: caption */
figcaption {
    display: block;
    width: 100%;
    box-sizing: border-box;
    line-height: 1;   
    font-size: .8em;
    margin-top: 15px;
    color: var(--textcolor1);
    opacity: 0.5;
}


/* SUBMENU ON PAGE */
/*body:has(#submenu) .row.row-1 .content {
    min-height: 450px;
}*/
/*body:has(#page-header) #submenu,
body:has(#breadcrumbs) #submenu { margin-top: 81px; margin-bottom: calc(81px * -1); }*/

#submenu { position: sticky; top: 230px; pointer-events: none; box-sizing: border-box; z-index: 3; }
#submenu, #submenu-fill { width: 300px; }
#submenu #submenu-content { width: 100%; }
#submenu ul { display: flex; flex-direction: column; gap: 0; grid-column: 1 / span 3; padding: 20px 0 15px 0; padding-top: 10px; max-height: calc(100vh - 160px - 20px); /* viewport − sticky top offset − breathing room */ line-height: 1.5; border-radius: var(--blockradius); box-sizing: border-box; pointer-events: all; overflow-y: auto; background-color: var(--color4); }
#submenu ul li:not(:last-of-type) { border-bottom: 1px solid rgb(255 255 255 / 25%); }
#submenu ul li a { display: block; padding: 9px 30px 11px 30px; font-size: 18px; color: #fff; line-height: 1.2; }
#submenu ul li.parent a { font-size: 21px; font-weight: 700; }
#submenu ul li.parent a, #submenu ul li a.master { /* if these needs to be bigger etc. */ }
#submenu ul li ul { margin: 5px 0; margin-top: 10px; margin-left: 15px; }
#submenu-trigger { display: none; }
#submenu ul li a:hover,
#submenu ul li.active a { opacity: 0.75; }
#submenu ul li.parent.active a,
#submenu ul li.active a.master,
#submenu ul li.active ul li.subactive a { color: #fff; }

#submenu ul li ul { display: none; margin: 0; padding: 0; border-top: 1px solid rgb(255 255 255 / 25%); }
/*#submenu ul li.active ul { display: flex; }*/
#submenu ul li ul li a { font-size: 16px; }


/* ### E-LEARNING GATE FORM ### */
.elearning-gate__form { display: flex; flex-direction: column; gap: 16px; margin-top: 45px; padding: 25px 30px 35px 30px; width: 420px; max-width: 100%; border-radius: 10px; box-sizing: border-box; background-color: var(--bodycolor2); }
.elearning-code-inputs { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.elearning-code-part { width: 100%; box-sizing: border-box; text-align: center; font-size: 22px; letter-spacing: 3px; text-transform: uppercase; padding: 10px 7px 10px 9px; border: 2px solid var(--bodycolor6); border-radius: var(--blockradius); background: var(--bodycolor1); color: var(--textcolor1); font-family: inherit; outline: none; transition: border-color 0.15s; }
.elearning-code-part:focus { border-color: var(--color1); }
.elearning-code-sep { font-size: 1.4em; color: var(--textcolor2); user-select: none; }
button#elearning-gate-submit { position: relative; left: -2px; margin-top: 8px; padding: 16px 24px; width: calc(100% + 4px); font-family: inherit; font-size: 1em; color: var(--bodycolor1); line-height: 1; border: none; border-radius: 35px; -webkit-appearance: none; appearance: none; cursor: pointer; background-color: var(--color1); }
button#elearning-gate-submit:hover { background-color: var(--color3); }
#elearning-gate-remember-label { display: flex; align-items: center; gap: 7px; margin-top: 2px; font-size: 15px; color: var(--textcolor1); cursor: pointer; user-select: none; }
#elearning-gate-remember-label input[type="checkbox"] { accent-color: var(--color1); cursor: pointer; width: 15px; height: 15px; flex-shrink: 0; margin: 0; margin-right: 2px; }

#elearning-gate-error { color: #f44336; }

/* ### E-LEARNING PROGRESS SIDEBAR ### */
/*#elearning-progress { position: sticky; top: 231px; margin: 0 auto; pointer-events: none; max-width: var(--contentwidth); width: 90%; border: 1px solid transparent; box-sizing: border-box; z-index: 3; }
#elearning-progress-content { width: 100%; position: absolute; left: 0; top: 0; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gapwidth); row-gap: var(--gapwidth); }*/

#elearning-progress { position: fixed; bottom: 0; /*right: 5%;*/ left: 0; right: 0; margin: 0 auto; /*width: 400px;*/ /*max-width: var(--contentwidth);*/ width: 90%; transform: translateY(calc(100% - 84px)); transition: all ease 0.15s; pointer-events: none; z-index: 3; z-index: 7; }
/*body:has(#credits.is-inview) #elearning-progress { transform: translateY(100%); }*/
#elearning-progress-toggle { position: absolute; display: flex; align-items: center; justify-content: center; top: 22px; right: 22px; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; pointer-events: initial; transform: rotate(180deg); z-index: 1; background-color: rgb(255 255 255 / 10%); }
#elearning-progress-toggle:hover { background-color: rgb(255 255 255 / 15%); }
#elearning-progress-toggle img { position: relative; top: 0; filter: invert(1); }
#elearning-progress-content { position: relative; width: 100%; display: grid; grid-template-columns: repeat(18, minmax(0, 1fr)); gap: 0; }

.elearning-progress-panel { display: flex; flex-direction: column; gap: 5px; grid-column: 9 / span 4; grid-column: 14 / span 5; padding: 20px 0 15px 0; padding: 15px 0 20px 0; width: 100%; line-height: 1.5; border-top-left-radius: var(--blockradius); border-top-right-radius: var(--blockradius); box-sizing: border-box; pointer-events: all; background-color: var(--color4); }
.elearning-progress-panel .elearning-progress-title,
.elearning-progress-panel .elearning-progress-summary { padding: 0 20px; padding: 0 30px; }
.elearning-progress-panel .elearning-progress-title { font-weight: 700; color: #fff; display: block; font-size: 21px; margin: 0; pointer-events: none; }
.elearning-progress-panel .elearning-progress-summary { position: relative; top: -8px; font-size: 15px; color: #fff; opacity: 0.75; }

/*#elearning-progress.active,
#elearning-progress.active.override,
body.scroll #elearning-progress.active.override { transform: translateY(0); }
#elearning-progress.active #elearning-progress-toggle,
#elearning-progress.active.override #elearning-progress-toggle,
body.scroll #elearning-progress.active.override #elearning-progress-toggle { transform: rotate(0); }
#elearning-progress.active #elearning-progress-toggle img,
#elearning-progress.active.override #elearning-progress-toggle img,
body.scroll #elearning-progress.active.override #elearning-progress-toggle img { top: 1px; }
#elearning-progress.active .elearning-progress-panel,
#elearning-progress.active.override .elearning-progress-panel,
body.scroll #elearning-progress.active.override .elearning-progress-panel { padding: 25px 0 20px 0; }
#elearning-progress.active .elearning-progress-panel .elearning-progress-summary,
#elearning-progress.active.override .elearning-progress-panel .elearning-progress-summary,
body.scroll #elearning-progressv.override .elearning-progress-panel .elearning-progress-summary { top: -5px; }*/

#elearning-progress.active { transform: translateY(0); }
#elearning-progress.active #elearning-progress-toggle { transform: rotate(0); }
#elearning-progress.active #elearning-progress-toggle img,
#elearning-progress.active.override #elearning-progress-toggle img { top: 1px; }
#elearning-progress.active .elearning-progress-panel { padding: 25px 0 20px 0; }
#elearning-progress.active .elearning-progress-panel .elearning-progress-summary { top: -5px; }

/*body.scroll #elearning-progress.active { transform: translateY(calc(100% - 84px)); }
body.scroll #elearning-progress.active #elearning-progress-toggle { transform: rotate(180deg); }
body.scroll #elearning-progress.active #elearning-progress-toggle img { top: 0; }
body.scroll #elearning-progress.active .elearning-progress-panel { padding: 15px 0 20px 0; }
body.scroll #elearning-progress.active .elearning-progress-panel .elearning-progress-summary { top: -8px; }*/

.elearning-progress-panel ul { display: flex; flex-direction: column; gap: 0; margin-top: 5px; list-style: none; }
.elearning-progress-panel ul li { display: flex; align-items: flex-start; gap: 10px; padding: 12px 20px; padding: 12px 30px; font-size: 16px; color: var(--textcolor2); /*font-weight: 500;*/ line-height: 1.2; }
.elearning-progress-panel ul li:not(:last-of-type) { border-top: 1px solid rgb(255 255 255 / 10%); }
.elearning-progress-panel ul li a { color: #fff; opacity: 1; display: flex; align-items: center; }
.elearning-progress-panel ul li a:hover { opacity: 0.5; }
.elearning-progress-panel ul li.current a { font-weight: 800; }
.elearning-progress-panel ul li.current a:hover,
.elearning-progress-panel ul li.completed a:hover { opacity: 0.75; }
.elearning-progress-panel ul li.current.completed a:hover { opacity: 0.75; }

.elearning-toc-finish { display: none!important; color: var(--textcolor2); opacity: 1!important; }
.elearning-toc-finish .elearning-toc-check { border-color: var(--textcolor2) !important; opacity: 1!important; }
.elearning-toc-finish.completed { display: flex!important; color: var(--color1); }
.elearning-toc-finish.completed .elearning-toc-check { display: none; border-color: var(--color1)!important; }
.elearning-toc-finish.completed a { padding: 14px 45px 16px 20px; color: #fff!important; border-radius: var(--blockradius); opacity: 1!important; background-color: var(--color1); }
.elearning-toc-finish.completed a:hover { opacity: 0.9!important; }

.elearning-toc-check { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; min-width: 18px; border: 2px solid currentColor; border-radius: 3px; vertical-align: middle; position: relative; top: -1px; font-size: .9em; opacity: .35; border-color: var(--color1); }
.elearning-toc-item.completed .elearning-toc-check { position: relative; top: 0; color: #fff; border-color: var(--color1); opacity: 1; background-color: var(--color1); }
/*.elearning-toc-item.completed .elearning-toc-check::after { content: ''; display: block; width: .35em; height: .6em; border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg) translate(-1px, -1px); }*/
.elearning-toc-item.completed .elearning-toc-check::after { display: block; content: ''; width: 100%; height: 100%; filter: invert(1); background-image: url("/images/icons/check.svg"); background-position: center; background-size: 16px; background-repeat: no-repeat; }

button.elearning-toc-check { appearance: none; -webkit-appearance: none; background: none; padding: 0; font: inherit; cursor: pointer; flex-shrink: 0; }
button.elearning-toc-check:hover { opacity: .7; }
button.elearning-toc-check:disabled { cursor: default; }


/* ### E-LEARNING CONSOLE ### */
.nav-button#elearning-console-trigger {
    margin-left: 0;
}
#elearning-console-badge {
    background-color: var(--color6);
    font-size: .6em;
    line-height: 20px;
    font-weight: 500;
    color: var(--bodycolor1);
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 20px;
    pointer-events: none;
}
#elearning-console {
    position: fixed;
    top: 108px;
    right: 24px;
    width: 320px;
    max-height: calc(100vh - 132px);
    background-color: var(--bodycolor1);
    border-radius: var(--blockradius);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    z-index: 7;
    display: flex;
    flex-direction: column;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
#elearning-console.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
#elearning-console-inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: calc(100vh - 120px);
}
#elearning-console-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: 1px solid var(--bodycolor3);
    flex-shrink: 0;
}
#elearning-console-title {
    font-size: 18px;
    color: var(--textcolor1);
    font-weight: 700;
}
#elearning-console-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    width: 32px;
    height: 28px;
    color: var(--textcolor2);
    border: none;
    cursor: pointer;
    background-color: transparent;
}
#elearning-console-close img {
    width: 20px;
    height: 20px;
}
#elearning-console-close:hover img {
    opacity: 0.5;
}
#elearning-console-list {
    overflow-y: auto;
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    max-height: 240px;
}
#elearning-console-empty {
    margin: 0;
    font-size: 16px;
    color: var(--textcolor1);
}
.elearning-console-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 15px;
    background-color: var(--bodycolor2);
    border-radius: var(--blockradius);
}
.elearning-console-item-title {
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 16px;
    color: var(--color1);
    text-decoration: none;
    line-height: 1.2;
}
.elearning-console-item-title:hover {
    opacity: 0.75;
}
.elearning-console-item-expires,
.elearning-console-item-progress {
    font-size: 14px;
    color: var(--textcolor1);
    margin: 0;
}
.elearning-console-item-expires {
    
}
.elearning-console-item-progress {
    font-size: 15px;
    font-weight: 600;
}
#elearning-console-form {
    padding: 12px 16px;
    border-top: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}
#elearning-console-form label {
    font-size: 16px;
    color: var(--textcolor1);
}
#elearning-console-form .elearning-code-inputs {
    gap: 6px;
}
#elearning-console-form button#elearning-console-submit {
    position: relative;
    left: -2px;
    margin: 8px 0 4px 0;
    padding: 16px 24px;
    width: calc(100% + 4px);
    font-family: inherit;
    font-size: 1em;
    color: var(--bodycolor1);
    line-height: 1;
    border: none;
    border-radius: 35px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-color: var(--color1);
}
#elearning-console-form button#elearning-console-submit:hover {
    background-color: var(--color3);
}
#elearning-console-form .elearning-code-part {
    padding: 8px 3px 8px 5px;
    font-size: 18px;
    letter-spacing: 2px;
}
#elearning-console-error {
    margin: 0;
    font-size: 14px;
    color: #f44336;
    line-height: 1.2;
}
#elearning-console-footer {
    padding: 0 16px 20px 16px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#elearning-console-remember-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    color: var(--textcolor1);
    cursor: pointer;
    user-select: none;
}
#elearning-console-remember-label input[type="checkbox"] {
    accent-color: var(--color1);
    cursor: pointer;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin: 0;
    margin-right: 2px;
}
#elearning-console-logout {
    background: none;
    border: none;
    border-radius: var(--blockradius);
    font-family: "Public Sans", sans-serif;
    color: var(--color1);
    font-size: 16px;
    font-weight: 500;
    padding: 6px 12px;
    cursor: pointer;
    width: 100%;
    text-decoration: underline;
}
#elearning-console-logout:hover {
    color: var(--color3);
}
#elearning-console-logout-confirm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#elearning-console-logout-confirm span {
    font-size: 15px;
    color: #f44336;
    line-height: 1.2;
}
#elearning-console-logout-confirm-btns {
    display: flex;
    gap: 8px;
}
#elearning-console-logout-yes,
#elearning-console-logout-no {
    flex: 1;
    border-radius: var(--blockradius);
    font-family: "Public Sans", sans-serif;
    font-size: 15px;
    line-height: 1;
    padding: 9px 12px 11px 12px;
    cursor: pointer;
}
#elearning-console-logout-yes {
    background-color: var(--color1);
    border: 1px solid var(--color1);
    color: #fff;
}
#elearning-console-logout-yes:hover {
    background-color: var(--color3);
    border-color: var(--color3);
}
#elearning-console-logout-no {
    background: none;
    border: 1px solid var(--bodycolor6);
    color: var(--color1);
}
#elearning-console-logout-no:hover {
    color: var(--color3);
}


body:not(.homepage) main { margin-top: 50px; }


/* BREADCRUMBS */
#breadcrumbs { position: fixed; display: flex; align-items: center; margin-bottom: -15px; padding: 0; width: 100%; height: 50px; border-bottom: 1px solid #efefef; box-sizing: border-box; z-index: 6; background-color: #fff; }
body.homepage #breadcrumbs { display: none; }
body.scroll #breadcrumbs { border-bottom: 1px solid #fff; box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); }
#breadcrumbs #breadcrumbs-content { position: relative; display: flex; top: -1px; margin: 0 auto; width: 90%; max-width: none; font-size: 15px; color: var(--textcolor1); line-height: 1; }
#breadcrumbs #breadcrumbs-content ul { display: flex; flex-wrap: wrap; gap: 10px; }
#breadcrumbs #breadcrumbs-content ul li { display: flex; gap: 10px; }
#breadcrumbs #breadcrumbs-content ul li:last-of-type { opacity: 0.5; pointer-events: none; }
#breadcrumbs #breadcrumbs-content ul li:not(:last-child):after { content: "›"; }
#breadcrumbs #breadcrumbs-content ul li a { color: var(--color3); text-decoration: underline; }
#breadcrumbs #breadcrumbs-content ul li:last-of-type a { text-decoration: none; }
#breadcrumbs #breadcrumbs-content ul li a:hover { text-decoration: none; }


/* PAGE-HEADER */
#page-header {
    position: relative;
    background-color: var(--textcolor1);
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
}
body.subpage #page-header {
    height: 30vh;
}
#page-header .page-header-content {
    position: relative;
    width: 90%;
    max-width: var(--contentwidth);
    margin: 0 auto;
    z-index: 2;
    height: calc(100% - (var(--rowpadding) * 2));
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body.subpage #page-header .page-header-content {
    justify-content: flex-end;
}
#page-header .page-header-content h1 {
    font-size: 4em;
    margin-bottom: 0;
    color: var(--bodycolor1);
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
}
body.subpage #page-header .page-header-content h1 {
    font-size: 3.5em;
}
#page-header .page-header-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#page-header .page-header-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
#page-header .arrow-down {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    cursor: pointer;
    transform: translateX(-50%);
}
#page-header .arrow-down svg {
    width: 30px;
    height: 30px;
    fill: var(--bodycolor1);
}
#page-header .breadcrumbs {
    
}



/* NEWS, CALENDAR - ADDITIONS */
.meta-data {
    background-color: var(--bodycolor2);
    padding: var(--blockpadding);
    border-radius: var(--blockradius);
    margin-bottom: var(--blockpadding);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.meta-data .meta-data-item {
    padding-left: 40px;
    position: relative;
}
.meta-data .meta-data-item:before /* icon */ {
    content: "";
    background-image: url('/images/icons/location.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    top: 5px;
    width: 20px;
    height: 20px;
    filter: var(--colorfilterblack);
}
.meta-data .meta-data-item.date:before {
    background-image: url('/images/icons/date-dropdown.svg'); 
}
.meta-data .meta-data-item.time:before {
    background-image: url('/images/icons/time-dropdown.svg'); 
}
.meta-data .meta-data-item.location:before {
    background-image: url('/images/icons/location.svg'); 
}
.tag-wrapper {
    display: flex;
    gap: 10px;
}
.tile_grid .item .tag-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    margin: var(--blockpadding);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    pointer-events: none;
}
.tile_grid .item .tag-wrapper a {
    width: auto;
    pointer-events: all;
}
.tag-wrapper .tag {
    background-color: var(--color1);
    border-radius: var(--blockradius);
    color: var(--bodycolor1);
    padding: 5px 10px;
    font-size: 0.8em;
    line-height: 1;
}
.pagination {
    display: flex;
    justify-content: center;
    width: 70%;
    margin: 40px auto;
    margin-bottom: 0;
}
.pagination div {
    width: 50px;
    height: 50px;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    margin: 0 10px;
    border-radius: var(--blockradius);
}
.pagination div:not(.disabled) {
    background-color: var(--bodycolor2);
}
.pagination div a {
    display: block;
    color: var(--textcolor1);
}
.pagination div:hover:not(.disabled),
.pagination div.active {
    background-color: var(--color1);
}
.pagination div:not(.disabled):hover a,
.pagination div.active,
.pagination div.active a {
    color: var(--bodycolor1);
}
.tags-active {
    background-color: var(--bodycolor2);
    padding: var(--blockpadding);
    border-radius: var(--blockradius);
    margin-bottom: var(--blockpadding); 
}
.tags-active a {
    text-transform: lowercase;
    float: right;
}


/* GOOGLE MAPS */
div.map_canvas {
    height: 90vh; 
    width: 100%; 
    clear: both; 
}
.gm-style-iw-chr { padding-top: 15px; }
.gm-style-iw-chr .gm-style-iw-ch { display: none; }
.gm-style-iw-chr button { position: absolute!important; top: 10px; right: 10px; width: 14px!important; height: 14px!important; }
.gm-style-iw-chr button span { margin: 0!important; width: 14px!important; height: 14px!important; }
.gm-style-iw-d { padding-bottom: 2px; }



/* ZOOM/ARROW icons/buttons for media, tiles -- tweaky tweaky! */
.content .media figure.image a:after,
.tile_grid .item a .item-image:after,
.shopslider-container .shopslider .slide:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%; 
    transform: translate(-50%,-50%);
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('/images/icons/zoom.svg');
    background-size: cover;
    background-repeat: no-repeat;
    filter: var(--colorfilterwhite);
    opacity: 0;
    pointer-events: none;
}
.tile_grid.products .item a .item-image:after {
    top: 12px;
    right: 12px;
    left: auto;
    content: none;
    transform: none;
    filter: var(--colorfilter1);
    opacity: 0.25;
}
.content .media figure.image a:hover:after,
.tile_grid .item a .item-image:hover:after,
.shopslider-container .shopslider .slide:hover:after {
    opacity: 1;
}
.content .media figure.image.video a:after {
    background-image: url('/images/icons/play.svg');
    opacity: 1;
}
.tile_grid .item a .item-image:after {
    background-image: url('/images/icons/arrow-right.svg');
}
.tile_grid.album-pictures .item a .item-image:after {
    background-image: url('/images/icons/zoom.svg');
}


/* FOOTER */
footer {
    background-color: var(--bodycolor6);
}
footer,
footer a {
    color: #fff;
}
footer a {
    display: block;
    text-decoration: underline;
}
footer a:hover,
.back-to-top:hover  {
    text-decoration: none;
}
#footer #footer-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gapwidth);
    margin: 0 auto;
    padding: 60px 0;
    width: 90%;
    max-width: var(--contentwidth);
    font-size: 18px;
}
#footer #footer-container .column {
    box-sizing: border-box;
}
#footer #footer-container .column.disclaimer {
    margin-left: auto;
    width: 30%;
}
#footer #footer-container .column.disclaimer ul li:first-of-type {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    white-space: normal;
}
#footer #footer-container .column.disclaimer ul li a {
    display: inline-block;
}
#footer #footer-container .column ul li {
    white-space: nowrap;
}
#footer #footer-container .column ul li:first-of-type {
    display: block;
    margin-bottom: 5px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 800;
}
#footer #footer-container .column ul li strong {
    font-weight: 600;
}
#footer #footer-container .column ul li.active a {
    color: var(--color1);
}
#footer #footer-container .column #footer-logo {
    /*filter: var(--colorfilterwhite);*/
    margin-top: 5px;
}
#footer #footer-container .column #footer-logo img {
    display: block;
    width: 230px;
}
#credits {
    padding: 30px 0;
    font-size: .8em;
    background-color: rgba(0,0,0,0.05);
}
#credits #credits-container {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0px auto;
    width: 90%;
    max-width: var(--contentwidth);
    font-size: 16px;
}
#credits #credits-container ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
#credits #credits-container ul li a {
    text-decoration: none;
}
#credits #credits-container ul li a:hover {
    opacity: 0.5;
}
#credits #credits-container ul li img {
    margin-right: 0;
    width: 15px;
    height: 15px;
    margin-left: 10px;
    filter: var(--colorfilterwhite);
}
#credits #credits-container ul li .back-to-top img {
    position: relative;
    top: 1px;
    margin-left: 5px;
    width: 19px;
    height: 19px;
}
#credits #credits-container ul li:hover img {
}
#credits #credits-container ul li .cybox-tag a,
#credits #credits-container ul li .back-to-top {
    cursor: pointer;
    display: flex;
    align-items: center;
}
#credits #credits-container ul li .cybox-tag a:hover,
#credits #credits-container ul li .back-to-top:hover {
    opacity: 0.5;
}
#footer #footer-container,
#credits #credits-container { max-width: none; }
#footer #footer-container { display: flex; gap: 90px; }    
#credits #credits-container ul { column-gap: 30px; }

.social-buttons {
    position: absolute;
    right: 0;
    top: 0;
}
.social-buttons ul {
    display: flex;
    gap: 20px;
}
.social-buttons ul li a {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;  
    cursor: pointer;  
}
.social-buttons ul li a img {
    display: block;
    width: 100%;
    height: 100%;
    transform: translateY(0px);
    margin: 0;
    filter: var(--colorfilterwhite);
}
.social-buttons ul li a:hover img {
    filter: var(--colorfilter1);
}
#mailstage form {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 330px;
}
#ms-success,
#ms-fail {
    display: block;
    padding: 20px;
    background-color: var(--color1);
    border-radius: 3px;
    margin-top: 10px;
    font-size: .8em;
    text-align: center;
}
#ms-success {
    display: none;
    background-color: var(--success);
    color: var(--bodycolor1);
}
#ms-fail {
    display: none;
    background-color: var(--error);
    color: var(--bodycolor1);
}


/* SEARCH */
#search {
    box-sizing: border-box;
    padding: 15px 20px;
    overflow-y: auto;
    display: block;
    z-index: 9;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: var(--bodycolor1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 30px 30px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 600ms cubic-bezier(0.76, 0, 0.24, 1);    
}
#search.active {
    transform: translateX(0);
}
#search input {
    display: block;
    width: calc(100%);
    box-sizing: border-box;
    font-size: inherit;
    font-family: inherit;
    border: 0;
    appearance: none;
    background-color: var(--bodycolor2);
    padding: 10px 15px;
    margin-bottom: 30px;
}
#search ul.list {
    line-height: 1.5;
}
#search ul.list li a {
    display: block;
    color: var(--textcolor1);
    margin: 30px 0;
}
#search ul.list li a:hover {
    color: var(--color1);
}
#search ul.list li strong {
    display: block;
}
#search ul.list li span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* MODALS */
/* MODAL: DIALOGS */
dialog {
    pointer-events: none;
    opacity: 0;
    transition: all 300ms;
    border: none;
    box-sizing: border-box;
}
dialog[open] {
    pointer-events: inherit;
    opacity: 1;
}
dialog::backdrop {
    transition: all 300ms;
    background: rgba(0, 0, 0, 0);
}
dialog[open]::backdrop {
    background: rgba(0, 0, 0, 0.6);
}
/* MODAL: NOTIFICATION WINDOW */
dialog.notification-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 999999;
}
dialog.notification-wrapper .notification-window {
    position: relative;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    font-size: 1.1em;
    line-height: 1.1;
    max-width: 500px;
    pointer-events: auto;
}
dialog.notification-wrapper .notification-window.info {
    background-color: var(--color1);
}
dialog.notification-wrapper .notification-window.error {
    background-color: var(--error);
}
dialog.notification-wrapper .notification-window .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.4em;
    line-height: .5;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
}
/* MODAL: MODALS */
dialog.modal {
    padding: 45px;
    min-width: 300px;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    text-align: center;
    border-radius: var(--blockradius);
}
dialog.modal .full {
    padding: 0 30px 30px;
}
dialog.modal h3 {
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.2;
    display: block;
    margin-bottom: .5em;
}
dialog.modal .close {
    width: 100%;
}
dialog.modal .button-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}


/* CLOSE OVERLAY */
#close-overlay /* overlay that closes slideouts: menu, search, language */ {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--textcolor1);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 600ms ease-in-out;
}
#close-overlay.active {
    cursor: pointer;
    pointer-events: all;
    opacity: .5;
}
.close-menus {
    position: absolute;
    right: 20px;
    top: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 40px;
}


/* DEV MODE */
/* DEV MODE TOOLS */
#dev-tools {
    position: fixed; 
    right: 20px; 
    bottom: 20px; 
    z-index: 9;
    display: flex;
    flex-direction: row-reverse;
    font-size: 7px;
    line-height: .8;
    gap: 6px;
    font-family: monospace;
    user-select: none;
}
#dev-tools .dev-item {
    padding: 6px 6px;
    padding-bottom: 3px;
    border-radius: var(--blockradius);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
#dev-tools .dev-label {
    background: var(--textcolor1);
}
#dev-tools .dev-btn {
    cursor: pointer;
}
#dev-tools .dev-btn:hover,
#dev-tools .dev-btn.active {
    background: var(--success);
    color: var(--bodycolor1);
}
.overlaygridguide {
    position: fixed;
    left: 50%;
    top: 0;
    width: 90%;
    max-width: var(--contentwidth);
    height: 100%;
    z-index: 9;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 1;
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gapwidth);
    opacity: 0.5;
    display: none;
}
.overlaygridguide.active {
    display: grid;
}
.overlaygridguide div {
    background: var(--color1);
}
.overlaygridguide div:nth-of-type(even) {
    background: var(--color1);
}


/* DISABLE SELECTION */
#menu, #header, #submenu, #kiek, #kiek *, #menu-slideout, #contact, .media {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
