/* 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 6.2 | DE GAGELHOEVE
   2024 - Cybox Backstage CMS
   
   fonts embedden via <link> in de wrapper!
*/

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

    /* general */
    background: var(--background);
    color: var(--darkbrown);
    font-family: 'Karla', sans-serif;
    font-family: "SUSE", sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: 110px; /* #header-height */
}
a {
    text-decoration: none;
    color: var(--blue);
}
a:hover {
    color: var(--brown);
}
body:after {
    content: "";
    width: 100%;
    height: 110px;
    position: absolute;
    left:  0;
    top:  0;
    background: var(--lightblue);
}

/* SVG ICONS AS IMAGES > generate color: https://angel-rs.github.io/css-color-filter-generator/     */
.svg-icon {
    display: block;
    width: 100%;
    height: 100%;
    filter: invert(1);
}
.media .svg-icon {
    filter: invert(1);
}
.svg-icon.white {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.svg-icon:hover {
    /* hover */
}

/* OVERALL TYPE & BUTTONS */
h1 {
    font-size: 40px;
    color: var(--blue);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}
body:not(.homepage) h1 {
    font-weight: 900;
    /*text-transform: uppercase;*/
}
h2 {
    font-size: 28px;
    color: #555;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
}
h3 {
    font-size: 24px;
    color: #555;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
}
h4 {
    font-size: 1.2em;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
	padding: 14px 30px 16px 30px;
    margin: 10px 0 0 0;
    border-radius: 35px;
	border: 0;
	display: inline-flex;
	background: var(--blue);
	color: var(--background);
	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: 1.1em;
}
.btn:hover {
	background: var(--brown)!important;
	color: var(--background)!important;
}
.btn.grey {
	opacity: 0.5;
	background: var(--lightblue);
	color: var(--darkbrown);
}

/* NAV */
#header {
    width: 100%;
    height: 110px;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0);
    transition: all ease 0.15s;
    z-index: 7;
    background: var(--lightblue);
}
/*body.homepage #header {
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
}
body.homepage.scroll #header {
    box-shadow: none;
}*/
body.scroll #header {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.05);
}
#header #header-container {
    /*max-width: 1400px;*/
    width: 90%;
    margin: 0 auto;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header #logo {
    /*width: 100px;
    transform: translateY(-5px);*/
    display: flex;
    align-items: flex-end;
    align-items: center;
    width: 440px;
    width: 360px;
    height: 100%;
    overflow: hidden;
}
#header #logo a {
    display: block;
    width: 100%;
}
#header #logo img {
    position: relative;
    display: block;
    top: 2px;
    top: -4px;
    width: 100%;
    pointer-events: none;
}
#menu-holder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    top: -3px;
}
ul#menu {
    display: flex;
    column-gap: 30px;
    position: relative;
    line-height: 1;
    order: 2;
}
ul#menu li {
    position: relative;
    white-space: nowrap;
}
ul#menu > li:first-of-type {
    display: none;
}
ul#menu li a.master {
    color: var(--darkbrown);
    font-weight: 900;
    z-index: 2;
    /*font-family: "Roboto Condensed", sans-serif;
    font-family: "Oswald", sans-serif;
    font-family: "Dosis", sans-serif;*/
    font-size: 24px;
    text-transform: uppercase;
    position: relative;
}
ul#menu li.active a.master {
    color: var(--blue);
}
ul#menu li a.master:hover {
    color: var(--blue);
}
ul#menu li.hassub ul.sub {
    line-height: 1.8;
    position: absolute;
    bottom: -5px;
    left: -30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    padding: 20px 45px 25px 30px;
    background: #fff;
    min-width: 200px;
    white-space: nowrap;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transition: all ease 0.15s;
    z-index: 1;
}
ul#menu li.hassub ul.sub:before {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    content: "";
}
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: -4px;
    opacity: 0.6;
    /*filter: invert(46%) sepia(27%) saturate(397%) hue-rotate(155deg) brightness(95%) contrast(83%);*/
}
ul#menu li.hassub:hover ul.sub {
    bottom: -15px;
    opacity: 1;
    visibility: visible;
}
ul#menu li.hassub ul.sub li a {
    display: block;
    font-size: 21px;
    color: var(--brown);
    font-weight: 700;
}
ul#menu li.hassub ul.sub li.active a {
    color: var(--blue);
}
ul#menu li.hassub ul.sub li a:hover {
    color: var(--blue);
}
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(--darkbrown);
}
ul#menu li.hassub ul.sub li.active ul.subsub li.subsubactive a {
    color: var(--blue);
}
ul#menu li.hassub ul.sub li.active ul.subsub li a:hover {
    color: var(--brown);
}
ul#menu-second {
    order: 0;
    display: flex;
    column-gap: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateY(0);
}
ul#menu-second li a { 
    color: var(--brown);
}
ul#menu-second li a img { 
    display: none;
}
ul#menu-second li.active a,
ul#menu-second li:hover a {
    color: var(--blue);
    filter: none;
}
ul#menu-second li.hassub ul.sub {
    display: none;
}
.nav-button {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    position: absolute;
    right: 0;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}
.nav-button a {
    display: block;
    width: 100%;
    height: 100%;
}
.nav-button img {
    display: block;
    width: 100%; 
}
.nav-button#menu-button {
    right: 20px;
    display: none;
    z-index: 4;  
}
.nav-button#cart-button {
    right: 30px;
}
.nav-button#search-button {
    right: 80px;
}
.nav-button#cart-button .cart-num {
    background: var(--background);
    font-size: .6em;
    line-height: 20px;
    font-weight: 500; 
    color: var(--darkbrown);
    position: absolute;
    right: 0px;
    bottom: -5px;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 20px;
}

.row.blocks { padding-top: 0; background-color: transparent!important; }
.row.blocks .blocks { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; margin-top: -30px; z-index: 2; }
.row.blocks .blocks .block { position: relative; padding: 35px 30px; color: #fff; text-align: center; border-radius: 10px; background-color: var(--blue); }
.row.blocks .blocks .block:nth-of-type(1) { background-color: var(--green); }
.row.blocks .blocks .block:nth-of-type(2) { background-color: var(--blue); }
.row.blocks .blocks .block:nth-of-type(3) { background-color: var(--purple); }
.row.blocks .blocks .block a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.row.blocks .blocks .block .name { margin-top: -2px; margin-bottom: 5px; font-size: 22px; font-weight: 900; text-transform: uppercase; }
.row.blocks .blocks .block .snippet { line-height: 1.4; }
.row.blocks .blocks .block span.more { display: block; margin-top: 10px; font-weight: 500; text-decoration: underline; }
.row.blocks .blocks .block:hover { color: rgba(255,255,255,0.8); }
/*.row.blocks .blocks .block:hover span.more { text-decoration: none; }*/

/* CONTENT */
.row { padding: 90px 0; position: relative; }
.row:nth-of-type(even) { background-color: var(--lightblue); }

body.homepage .row { background-color: transparent; }
body.homepage .row:nth-of-type(odd) { background-color: var(--lightblue); }

.content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    width: 90%;
    margin: 0px auto;
    column-gap:  60px;
}
.content .page_content {
    width: 100%;
    box-sizing: border-box;
    order: 1;
    flex: 1;
}
.content .media {
    position: absolute;
    top: 0;
    right: 0;
    order: 1;
    width: 45%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    
    top: 80px;
    right: 80px;
    
    width: calc(45% - 80px);
    max-width: 800px;
    height: calc(100% - 160px);
    max-height: 600px;
    
    border-radius: 10px;
    overflow: hidden;
}

.row-image h3 i { font-size: 21px; line-height: 1.3; }
.row-image h3 i:last-of-type { display: inline-block; margin-bottom: 5px; }
.row-image .content { align-items: center; min-height: 400px; }
.row-image .content .page_content { flex: none; width: 50%; }

.row-anita { padding: 120px 0; }
.row-anita .content { align-items: center; max-width: 1200px; }
.row-anita .content .page_content { order: 2; }
.row-anita .content .media { position: relative; order: 1; top: 0; left: 0; right: 0; width: 320px; height: 320px; border-radius: 50%; overflow: hidden; }

.row-image:nth-of-type(odd) .content { justify-content: flex-end; }
.row-image:nth-of-type(odd) .content .media { left: 0; left: 80px; right: auto; }

body.homepage .row-image:nth-of-type(odd) .content { justify-content: flex-start; }
/*body.homepage .row-image:nth-of-type(odd) .content .media { right: 0; right: 80px; left: auto; }*/
body.homepage .row-image:nth-of-type(odd) .content .media { left: calc(50% + 80px); right: 0; right: auto; }
body.homepage .row-image:nth-of-type(even) .content { justify-content: flex-end; }
/*body.homepage .row-image:nth-of-type(even) .content .media { left: 0; left: 80px; right: auto; }*/
body.homepage .row-image:nth-of-type(even) .content .media { left: 0; left: auto; right: calc(50% + 80px); }

.content .media.full-width {
    width: 100%;
    margin-top: 30px;
}
.content .media figure.image {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    height: 100%;
}
.content .media figure.image a,
.content .media figure.image .img {
    display: block;
    position: relative;
    height: 100%;
}
.content .media figure.image .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.content .media figure.image.video .videowrapper  {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}
.content .media figure.image.video .videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.icon {
    position: absolute;
    left: 50%;
    top: 50%; 
    transform: translate(-50%,-50%);
    width: 30px;
    height: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
}
.icon img {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
a:hover .icon {
    opacity: 1;
}
a.video .icon, .productmedia a.video .icon {
    opacity: 1;
}
.caption {
    display: block;
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    box-sizing: border-box;
    line-height: 1;   
    font-style: italic;
    color: var(--darkbrown);
}


.row.row-reviews .content .page_content { flex: none; width: 70%; }
.row.row-reviews .reviews { display: flex; flex-direction: column; gap: 30px; margin-top: 30px; }
.row.row-reviews .reviews .item { padding: 40px 45px 45px 45px; border-radius: 10px; background-color: var(--lightblue); }
.row.row-reviews .reviews .item .name { margin-bottom: 10px; font-weight: 700; }
.row.row-reviews .reviews .item .review { }


/* MAPS */
#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; }


/* FOOTER */
footer {
    font-size: 18px;
    background-color: var(--darkbrown);
}

.row.logos { padding: 45px 0; background-color: var(--lighterblue)!important; }
.row.logos .logos { display: flex; align-items: center; justify-content: center; gap: 0; }
.row.logos .logos .logo { position: relative; display: flex; align-items: center; justify-content: center; width: 240px; aspect-ratio: 4/3; border-radius: 8px; background-color: transparent; }
.row.logos .logos .logo a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.row.logos .logos .logo img { width: auto; max-width: 65%; height: auto; max-height: 55%; }
.row.logos .logos .logo:hover a + img { opacity: 0.8; }
.row.logos .logos .logo.p125 img { border-radius: 5px; transform: scale(1.25); }
.row.logos .logos .logo.p150 img { border-radius: 5px; transform: scale(1.5); }

footer,
footer a {
    color: #fff;
}
footer a li a:hover,
.back-to-top:hover  {
    color: var(--blue);
}
#footer {
    padding: 60px 0 45px 0;
}
#footer #footer-container {
    max-width: 1400px;
    width: 90%;
    position: relative;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 90px;
}
#footer #footer-container .column {
    max-width: 30%;
    box-sizing: border-box;
}
/* #footer #footer-container .column.two-col ul {
    columns:  2;
    column-gap:  30px;
} */
#footer #footer-container .column h2 {
    margin-bottom: 15px;
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
}
#footer #footer-container .column ul li {
    white-space: nowrap;
}
#footer #footer-container .column.nav ul li:nth-of-type(2) {
    display: none;
}
#footer #footer-container .column ul li:hover a,
#footer #footer-container .column ul li.active a,
#credits a:hover {
    color: #fff;
    opacity: 0.65;
}
#credits {
    padding: 30px 0 45px 0;
    font-size: .9em;
    background-color: rgb(0 0 0 / 5%);
}
#credits #credits-container {
    max-width: 1400px;
    width: 90%;
    position: relative;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
#credits #credits-container ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
#credits #credits-container ul li img {
    margin-right: 0;
    width: 15px;
    height: 15px;
    margin-left: 10px;
}
#credits #credits-container ul li .cybox-tag a,
#credits #credits-container ul li .back-to-top {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* social buttons */
.social-buttons ul {
    position: relative;
    display: flex;
    column-gap: 15px;
    top: 5px;
}
.social-buttons ul li a {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;  
    cursor: pointer;  
}
.social-buttons ul li a img {
    display: block;
    width: 100%;
    height: 100%;
    transform: translateY(0px);
    margin: 0;
}

/* MAILSTAGE */
#ms-success {
    display: none;
}
#ms-fail {
    display: none;
}
#mailstage {

}

/* CLOSE OVERLAY */
#close-overlay /* overlay that closes slideouts: menu, search, language */ {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darkbrown);
    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;
}

/* 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;
}

/* NOTIFICATION WINDOW */
#notification-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    display: flex;
    justify-content: center;
    /* Max duration for this transition: 500ms */
    transition: opacity 200ms ease-in-out;
    pointer-events: none;
}
#notification-wrapper.hidden {
    visibility: hidden;
}
#notification-wrapper.hidden #notification-window {
    pointer-events: none;
}
#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;
}
#notification-window.info {
    background: var(--blue);
}
#notification-window.error {
    background: var(--error);
}
#notification-window .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.4em;
    line-height: .5;
    cursor: pointer;
}
