@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Trocchi&display=swap');
/* 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 | HX MAGAZINE
   2021 - Cybox Backstage CMS
   BSv5.frontend.v2021.001

   COLOR-SCHEME
   #efefef;
   #000;
   #7ac142;
   #ff6600;
*/


/* BASICS */
html, body {
    height: auto;
}
body {
    font-family: 'Trocchi', serif;
    font-size: 1.2em;
    line-height: 1.8;
    background: #fff;
    color: #040404;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: 97px; /* #header-height */
}
a {
    text-decoration: none;
    color: #304543;
}
a:hover {

}


/* OVERALL TYPE & BUTTONS */
h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 48px;
    color: #304543;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 30px;
    /*margin-top: -10px;*/
    margin-top: 1px;
}
h2, h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 28px;
    color: #304543;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 20px;
}
.btn {
    margin: 0; /*margin-top: 60px;*/ padding: 16px 20px 20px 20px; /*width: 30%;*/ font-family: 'Abril Fatface', serif; font-size: 26px; color: #fff; line-height: 1; text-align: center; border: none; border-radius: 2px; -webkit-appearance: none; appearance: none; cursor: pointer; background-color: #867154;
}
.btn:hover {
    opacity: 0.9;
}
.btn.grey {
	opacity: 0.5;
	background: #efefef;
	color: #000;
}
input.btn /* weird fix for inputs */ {
	/*padding-bottom: 15px*/
}


/* HEADER (MENU) */
#header {
    width: 100%;
    height: 97px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    background: #fff;
    transition: height 600ms cubic-bezier(0.76, 0, 0.24, 1);
    box-shadow: 0px 0px 60px rgba(0,0,0,0.1);
}
body.scroll #header {
    height: 80px;
    transition-delay: 0ms;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
}
#header #header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    height: 100%;
}
/* MENU - logo */
#header #logo {
    position: absolute;
    top: 0;
    left: 0;
    /* right: 0; */
    margin: 0 auto;
    padding: 13px 20px;
    width: 200px;
    box-sizing: border-box;
    transition: all 300ms;
    background-color: #867154;
}
#header #logo a {
    display: block;
}
#header #logo img {
    display: block;
    width: 100%;
    pointer-events: none;
}

.tagline { position: absolute; display: flex; justify-content: center; margin-bottom: 5px; width: 100%; font-family: 'Abril Fatface', serif; font-size: 24px; color: #304543; line-height: 1; pointer-events: none; }

#header #magazine { position: absolute; top: 30px; right: -5px; transform: scale(0.75); transform-origin: top right; transition: all ease 0.15s; }
#header body.homepage #magazine { transform: scale(1); }
#header body.scroll #magazine { transform: scale(0.75); }
#header #magazine a { display: flex; }
#header #magazine .image { margin-right: -20px; transform: rotate(-5deg); transition: all ease 0.15s; }
#header body.scroll #magazine .image { transform: scale(0.81) rotate(-5deg); transform-origin: top right; }
#header #magazine .image img { display: block; }
#header #magazine .button { position: relative; display: flex; align-items: center; justify-content: center; top: 10px; padding-top: 5px; width: 120px; height: 120px; font-family: 'Abril Fatface', serif; font-size: 18px; color: #fff; font-weight: 400; line-height: 1; text-align: center; text-transform: uppercase; border-radius: 50%; box-sizing: border-box; transform: rotate(5deg); transition: all ease 0.15s; z-index: 1; background-color: #867154; }
#header #magazine:hover .button { background-color: #927f65; }

/* MENU - main nav */
#menu {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 20px;
}
#menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    padding: 95px 0;
    overflow-y: auto;
    box-sizing: border-box;
    border-top: 1px solid rgba(255,255,255,0.15);
    transform: translateX(100%);
    transition: transform 600ms cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 3;
    background-color: #304543;
}
#menu.active {
    transform: translateX(0%);
}

#menu #menu-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 25px;
    right: 5%;
    width: 45px;
    height: 45px;
    cursor: pointer;
}
#menu #menu-close:hover {
    opacity: 0.6;
}
#menu #menu-close svg {
    fill: #fff;
    width: 25px;
    height: 25px;
}

#menu ul.first {
    border-top: 1px solid rgba(255,255,255,0.15);
}

#menu ul.first li.hassub ul.sub,
#menu ul.first li.hassub:hover ul.sub {
    position: relative;
    transform: none;
    bottom: auto;
    left: auto;
    background: transparent;
    visibility: visible;
}

#menu ul.first li {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    white-space: nowrap;
}
#menu ul.first li a {
    display: block;
    padding: 16px 30px 20px 30px;
    font-family: 'Abril Fatface', serif;
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    line-height: 1;
}
#menu ul.first li:hover a,
#menu ul.first li.active a {
    opacity: 0.5;
}
/*#menu ul.first li a.master {
    color: #000;
    font-weight: 400;
    font-size: 1.3em;
}
#menu ul.first li.active a.master {
    color: #7ac142;
}
#menu ul.first li a.master:hover {
    color: #ff6600;
}*/
#menu ul.first li.hassub ul.sub {
    position: absolute;
    bottom: 0px;
    left: -20px;
    visibility: hidden;
    transform: translateY(110%);
    padding: 12px 20px;
    background: #fff;
    min-width: 200px;
    white-space: nowrap;
    transition: transform 200ms ease-out;
}
#menu ul.first li.hassub:hover ul.sub {
    visibility: visible;
    transform: translateY(100%);
}
#menu ul.first li.hassub ul.sub li {
    margin-left: 0;
}
#menu ul.first li.hassub ul.sub li a {
    color: #000;
}
#menu ul.first li.hassub ul.sub li.active a {
    color: #7ac142;
}
#menu ul.first li.hassub ul.sub li a:hover {
    color: #ff6600;
}
#menu ul.first li.hassub ul.sub li ul.subsub {
    margin-left: 1em;
}
#menu ul.first li.hassub ul.sub li.active ul.subsub li a {
    color: #000;
}
#menu ul.first li.hassub ul.sub li.active ul.subsub li.subsubactive a {
    color: #7ac142;
}
#menu ul.first li.hassub ul.sub li.active ul.subsub li a:hover {
    color: #ff6600;
}

#menu ul.last li { padding: 0 30px; color: #fff; }
#menu ul.last li a { display: block; font-size: 18px; color: #fff; text-transform: lowercase; }
#menu ul.last li a:hover { opacity: 0.5; }

/* SECONDAY NAV - optionally, see header html, nu sub foldout support */
ul#secondary {
    position: absolute;
    right: 0;
    top: 20px;
    display: flex;
    font-size: .8em;
    transition: top 600ms cubic-bezier(0.76, 0, 0.24, 1);
}
ul#secondary li a { 
    margin-left: 20px;
    color: #000;
}
ul#secondary li.active a,
ul#secondary li a:hover {
    color: #7ac142;
}
ul#secondary li.hassub ul.sub {
    display: none;
}
body.scroll ul#secondary {
    top: -50px;
} 
/* MENU - nav buttons divs */
.nav-button {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 2px;
    background-color: #867154;
}
.nav-button:hover {
    opacity: 0.9;
}
.nav-button a {
    display: block;
    width: 100%;
    height: 100%;
}
.nav-button svg {
    fill: #fff;
    width: 18px; 
    height: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.buttons { display: flex; }

.nav-button#menu-button {
    display: flex;
    justify-content: flex-end;
    z-index: 3;  
}
.nav-button#menu-button:after {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    right: calc(100%);
    padding-right: 12px;
    content: "Menu";
    font-family: 'Abril Fatface', serif;
    font-size: 21px;
    color: #867154;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-button#cart-button {
    margin-left: 15px;
}
.nav-button#search-button {
    right: 70px;
}
.nav-button#cart-button .cart-num {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -5px;
    right: -5px;
    padding-left: 1px;
    width: 21px;
    height: 21px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    border-radius: 20px;
    box-sizing: border-box;
    background: #304543;
}
/* MENU - language - put it where you like */
#langmenu {
    position: absolute;
    left: 20px;
    top: 20px;
    display: flex;
}
#langmenu a {
    display: block;
    width: 15px;
    height: 15px;
    overflow: hidden;
    border-radius: 15px;
    opacity: 0.5;
    margin-right: 10px;
}
#langmenu a.active,
#langmenu a:hover {
    opacity: 1;
}
#langmenu a img {
    display: block;
    width: 100%;
}


/* SUBMENU ON PAGE */
#submenu {
    background: #efefef;
    padding: 25px 0; 
    position: sticky;
    top: 80px; /* weird glitch */
    z-index: 2;
}
#submenu-trigger {
    display: none;
}
#submenu ul {
	/*max-width: 1200px;*/
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
#submenu ul li {
	position: relative;
	margin-right: 1.5em;
}
#submenu ul li a {
	color: #000;
    display: block;
    white-space: nowrap;
}
#submenu ul li.parent a,
#submenu ul li a.master {
    font-size: 1.2em;
}
#submenu ul li ul {
    position: absolute;
    bottom: 0px;
    left: -20px;
    visibility: hidden;
    transform: translateY(110%);
    padding: 12px 20px;
    background: #efefef;
    min-width: 200px;
    white-space: nowrap;
    transition: transform 200ms ease-out;
}
#submenu ul li:hover ul {
    visibility: visible;
    transform: translateY(100%);
}
#submenu ul li a:hover {
	color: #7ac142;
}
#submenu ul li.parent.active a,
#submenu ul li.active a.master,
#submenu ul li.active ul li.subactive a {
    color: #ff6600;
}
#submenu ul li ul li a {
    display: block;
    width: 100%;
    padding-left: 0px;
    box-sizing: border-box;
}


/* PAGE-HEADER */
#page-header { position: relative; background: #efefef; background-size: cover; background-position: 50% 50%; }
#page-header .headers { }
#page-header .headers .header-content { position: absolute; display: flex; flex-direction: row; align-items: flex-end; justify-content: space-between; left: 0; right: 0; margin: 0 auto; padding-bottom: 5%; width: 90%; /*max-width: 1200px;*/ height: 100%; box-sizing: border-box; }
#page-header .headers .header-content h1,
#page-header .headers .header-content .caption { margin: 0; padding: 0; font-family: 'Abril Fatface', serif; font-size: 64px; color: #fff; font-weight: 400; line-height: 1.1; z-index: 1; }
#page-header .headers .header-image { }
#page-header .headers .header-image img { display: block; width: 100%; }

#page-header .page-header-content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90%;
    /*max-width: 1200px;*/
    font-size: 3em;
    font-weight: 600;
    text-transform: lowercase;
    color: #fff;
    transform: translate(-50%,-50%);
    line-height: 1;
}
#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: #fff;
}
#page-header .breadcrumbs {
    position: absolute;
    left: 20px;
    top: 20px;
}
#page-header .breadcrumbs ul {
    display: flex;
    text-transform: lowercase;
}
#page-header .breadcrumbs ul li {
    padding-right: 10px;
    color: #fff;
}
#page-header .breadcrumbs ul li:not(:last-child):after {
    content: "›";
    padding-left: 10px;
}
#page-header .breadcrumbs ul li a {
    color: #fff;
}


/* CONTENT */
.row {
    padding: 100px 0;
    background-color: rgb(134 113 84 / 10%);
}
.content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0px auto;
    width: 90%;
    /*max-width: 1200px;*/
}

.content .left { padding-right: 5%; width: 65%; font-size: 18px; box-sizing: border-box; }

.content .left .cta-text { margin-bottom: 45px; padding: 60px; background-color: #fff; }
.content .left .cta-text p:not(:last-of-type) { margin-bottom: 20px; }

.content .left .items { display: flex; flex-direction: column; }
.content .left .items .item { position: relative; display: flex; margin-bottom: 45px; border-radius: 2px; overflow: hidden; background-color: #fff; }
.content .left .items.agenda .item { margin-bottom: 30px; }
.content .left .items .item:last-of-type { margin-bottom: 0; }
.content .left .items .item > a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.content .left .items .item .item-image { position: relative; width: 35%; }
.content .left .items .item .item-image:before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; content: ""; mix-blend-mode: saturation; opacity: 1; transition: all ease 0.25s; background-color: #304543; }
.content .left .items .item:hover .item-image:before { opacity: 0; }
.content .left .items .item .item-image img { display: block; width: 100%; }
.content .left .items .item .item-content { display: flex; flex-direction: column; justify-content: center; padding: 0 5%; width: 65%; box-sizing: border-box; }
.content .left .items.agenda .item .item-content { padding: 5%; width: 100%; }
.content .left .items .item .item-content .title { margin-bottom: 12px; font-family: 'Abril Fatface', serif; font-size: 40px; color: #304543; font-weight: 400; line-height: 1; }
.content .left .items .item:hover .item-content .title { opacity: 0.7; }
.content .left .items .item .item-content .date { opacity: 0.5; }

.content .left .items a.meer { display: flex; justify-content: center; margin-top: 45px; padding: 30px 30px 35px 30px; font-family: 'Abril Fatface', serif; font-size: 28px; color: #304543; line-height: 1; border: 4px solid #e7e5e2; /* background-color: #fff; */ }
.content .left .items a.meer:hover { color: rgb(48 69 67 / 80%); }
.content .left .items a.meer svg { position: relative; top: 4px; margin-left: 15px; width: 27px; height: 27px; fill: #304543; opacity: 0.8; }
.content .left .items a.meer:hover svg { opacity: 0.6; }

.content .right { position: sticky; top: 150px; width: 35%; }
.content .right h3 { margin-top: -5px; margin-bottom: 30px; padding: 0; font-family: 'Abril Fatface', serif; font-size: 30px; font-weight: 400; line-height: 1; }
.content .right h3 a { display: inline-block; }
.content .right h3 a:hover { opacity: 0.8; }

.content .right .abonneren { position: relative; display: flex; flex-wrap: wrap; margin-bottom: 45px; color: #fff; transition: all ease 0.1s; background-color: #304543; }
.content .right .abonneren:hover { background-color: rgb(48 69 67 / 95%); }
.content .right .abonneren a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.content .right .abonneren h3 { display: flex; flex-direction: column; justify-content: center; margin: 0; padding: 45px; padding-right: 0; padding-bottom: 50px; width: 60%; color: #fff; line-height: 1.1; box-sizing: border-box; }
.content .right .abonneren h3 span { display: block; margin-bottom: 5px; text-transform: uppercase; }
.content .right .abonneren .magazine { display: flex; align-items: center; justify-content: center; padding-bottom: 2%; width: 40%; }
.content .right .abonneren .magazine .image { position: relative; top: -20px; width: 60%; transform: rotate(5deg); box-shadow: 5px 5px 10px rgb(0 0 0 / 25%); }
.content .right .abonneren .magazine img { display: block; width: 100%; }

.content .right .bestellen { position: relative; display: flex; flex-wrap: wrap; margin-top: -15px; margin-bottom: 45px; color: #fff; transition: all ease 0.1s; background-color: #304543; }
.content .right .bestellen:hover { background-color: rgb(48 69 67 / 95%); }
.content .right .bestellen a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.content .right .bestellen h3 { display: flex; flex-direction: column; justify-content: center; margin: 0; padding: 45px; padding-right: 0; padding-bottom: 50px; width: 60%; color: #fff; line-height: 1.1; box-sizing: border-box; }
.content .right .bestellen h3 span { display: block; margin-bottom: 5px; text-transform: uppercase; }
.content .right .bestellen .magazine { display: flex; align-items: center; justify-content: center; padding-bottom: 2%; width: 40%; }
.content .right .bestellen .magazine .image { position: relative; top: -20px; width: 60%; transform: rotate(5deg); box-shadow: 5px 5px 10px rgb(0 0 0 / 25%); }
.content .right .bestellen .magazine img { display: block; width: 100%; }

.content .right .agenda { }
.content .right .agenda .items { border-top: 4px solid rgb(0 0 0 / 5%); }
.content .right .agenda .items .item { position: relative; padding: 26px 0 30px 0; line-height: 1; border-bottom: 4px solid rgb(0 0 0 / 5%); }
.content .right .agenda .items .item:last-of-type { margin-bottom: 0; }
.content .right .agenda .items .item a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.content .right .agenda .items .item .title { margin-bottom: 10px; font-family: 'Abril Fatface', serif; font-size: 22px; }
.content .right .agenda .items .item:hover .title { opacity: 0.7; }
.content .right .agenda .items .item .date { font-size: 16px; opacity: 0.5; }

.content .right .search { DISPLAY: NONE; margin-top: 45px; /*margin-bottom: 45px;*/ margin-bottom: -8px; }
.content .right .search .zoekbalk { margin-bottom: 25px; }
.content .right .search .zoekbalk input { margin: 0; padding: 15px; display: block; width: 100%; font-family: 'Trocchi', serif; font-size: 16px; border: none; border-radius: 2px; box-sizing: border-box; background-color: #fff; }
.content .right .search .tags { display: flex; flex-wrap: wrap; }
.content .right .search .tags .tag { margin: 0 8px 8px 0; font-family: 'Abril Fatface', serif; font-size: 14px; font-weight: 400; line-height: 1; text-transform: uppercase; letter-spacing: 1px; background-color: rgb(134 113 84 / 10%); }
.content .right .search .tags .tag:hover { background-color: rgb(134 113 84 / 20%); }
.content .right .search .tags .tag a { display: block; padding: 10px 15px; border-radius: 2px; }

/* CONTENT > page_content */
.content .page_content {
    padding: 0 10% 0 15%;
    width: 100%;
    font-size: 18px;
    line-height: 1.9;
    box-sizing: border-box;
    order: 1;
}
body.homepage .content .page_content {
    padding: 0;
    padding-right: 5%;
    width: 100%;
}
body.news .content .page_content {
    /*padding-left: 0;
    padding-right: 5%;
    width: 65%;*/
}
body.subscription .content .page_content,
body.abonnees .content .page_content {
    width: 100%;
}
/*.content .page_content.hasmedia {
    width: 60%;
    padding-right: 7%;
}*/

.content .page_content p {
    margin-bottom: 20px;
}
.content .page_content p:last-of-type {
    margin-bottom: 0;
}
.content .page_content p:last-of-type + h2 {
    margin-top: 30px;
}

body.faq .content .page_content p {
    margin: 5px 0 25px 0;
    padding: 35px 40px 40px 40px;
    background-color: rgb(255 255 255 / 50%);
}
body.faq .content .page_content p:last-of-type {
    margin-bottom: 0;
}
body.faq .content .page_content p strong {
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Abril Fatface', serif;
    font-size: 28px;
    color: #304543;
    font-weight: 400;
    line-height: 1;
}

.content .page_content a {
    color: #867154;
}
.content .page_content a:hover {
    color: #304543;
}

.content .page_content img {
	display: inline-block;
	max-width: 100%;
}
.content .page_content p:last-of-type > img {
	margin-bottom: 0;
}
.content .page_content ul,
.content .page_content ol {
    margin: 20px 0;
}
.content .page_content ul li {
    list-style-type: disc;
    margin-left: 20px;
}
.content .page_content ol li {
    list-style-type: decimal;
    margin-left: 20px;
}
.content .page_content table {
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 1.4em;
}
.content .page_content table tr td {
    border: 1px solid #ccc;
    padding: 10px;
}

.left.news_item .tags { display: flex; flex-wrap: wrap; margin-top: 60px; }
.left.news_item .tags .tag { margin: 0 8px 8px 0; font-family: 'Abril Fatface', serif; font-size: 14px; font-weight: 400; line-height: 1; text-transform: uppercase; letter-spacing: 1px; background-color: rgb(134 113 84 / 10%); }
.left.news_item .tags .tag a { display: block; padding: 10px 15px; color: #304543; border-radius: 2px; }
.left.news_item .tags .tag a:hover { background-color: rgb(134 113 84 / 20%); }

.content .page_content form { margin-top: 45px; }
.content .page_content form > h2:first-of-type { margin-top: 60px; padding-bottom: 30px; font-family: 'Abril Fatface', serif; font-size: 48px; font-weight: 400; line-height: 1.2; }
.content .page_content form .step { margin-bottom: 45px; border: none; }
.content .page_content form .step:last-of-type { margin-top: -15px; margin-bottom: 0; }
.content .page_content form .step h2 { }
.content .page_content form .step label,
.content .page_content form .step span.wysiwyglabel { display: flex; align-items: center; margin: 0 0 15px 0; font-size: 17px; line-height: 1; }
.content .page_content form .step input,
.content .page_content form .step textarea { display: block; margin-bottom: 20px; padding: 15px 15px; width: 100%; font-family: 'Trocchi', serif; font-size: 16px; border: none; box-sizing: border-box; background-color: #fff; }
.content .page_content form .step textarea { width: 100%!important; height: 150px; }
.content .page_content form .step input[type="radio"] { position: relative; top: -1px; margin: 0; margin-left: -1px; padding: 0; width: 25px; height: 25px; font-size: 0; border: none; border-radius: 50%; cursor: pointer; overflow: hidden; -webkit-appearance: none; background-color: #fff; }
.content .page_content form .step input[type="radio"]:checked { background-color: #867154; }
.content .page_content form .step input[type="radio"] + span { padding-left: 15px; cursor: pointer; }
.content .page_content form .step input.btn.submit { margin: 0; margin-top: 60px; padding: 16px 20px 20px 20px; width: 30%; font-family: 'Abril Fatface', serif; font-size: 26px; line-height: 1; color: #fff; border-radius: 2px; background-color: #867154; }
.content .page_content form .step input.btn.submit:hover { opacity: 0.9; }

.content .page_content form .bezorging-extra { margin-top: 45px; }

.content .page_content .links {
    margin-top: 45px;
}
.content .page_content .links h3 {
	margin-bottom: 1em;
}
.content .page_content .links a,
.content .product .links a {
    display: block;
    padding-left: 0;
    color: #867154;
}
.content .page_content .links a.link svg,
.content .page_content .links a.file svg {
    fill: #867154;
    width: 16px;
    display: inline-block;
    margin-right: 20px;
    transform: translateY(5px);
}
.content .page_content .links a.link:hover,
.content .page_content .links a.file:hover {
    color: #304543;
}
.content .page_content .links a.link:hover svg,
.content .page_content .links a.file:hover svg {
    fill: #304543;
}
.content .media {
    position: relative;
    top: 14px;
    order: 1;
    width: 100%;
    box-sizing: border-box;
}
.content .media a {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 60px;
    width: 100%;
}
.content .media a:last-of-type { 
    margin-bottom: 0;
}
.content .media a img {
    width: 100%;
    display: block;
}
body.subscription .content .media { display: flex; }
body.subscription .content .media img { width: 65%; box-shadow: 3px 3px 8px rgb(0 0 0 / 35%); }
body.subscription .content .media img:nth-of-type(1) { transform: rotate(3deg); z-index: 1; }
body.subscription .content .media img:nth-of-type(2) { position: absolute; top: 5px; left: 50px; transform: rotate(10deg); }

body.abonnees .content .media { display: flex; }
body.abonnees .content .media img { width: 65%; box-shadow: 3px 3px 8px rgb(0 0 0 / 35%); }
body.abonnees .content .media img:nth-of-type(1) { transform: rotate(3deg); z-index: 1; }
body.abonnees .content .media img:nth-of-type(2) { position: absolute; top: 5px; left: 50px; transform: rotate(10deg); }

.content .media a .icon, .fotoalbum a .icon, .news-overview .item a .image .icon, .productmedia a .icon, .product a .icon {
    position: absolute;
    left: 50%;
    top: 50%; 
    transform: translate(-50%,-50%);
    width: 30px;
    height: 30px;
    display: none;
}
.content .media a .icon svg, .fotoalbum a .icon svg, .news-overview .item a .image .icon svg, .productmedia a .icon svg, .product a .icon svg {
    fill: #fff;
    display: block;
    width: 100%; 
    height: 100%; 
}
.fotoalbum a:hover .icon, .content .media a:hover .icon, .news-overview .item a:hover .image .icon, .productmedia a:hover .icon, .product a:hover .icon {
    display: block;
}
.content .media a.video .icon, .productmedia a.video .icon {
    display: block;
}
.content .media .caption, .content .page_content .fotoalbum a .caption {
    display: block;
    padding: 30px 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    opacity: 1;
    transition: opacity 300ms;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; 
    line-height: 1;
    background-color: rgb(4 4 4 / 50%);
}


/* ALBUMS */
.content .page_content .fotoalbum {
    width: 104%;
    margin-left: -2%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 1em;
}
.content .page_content .fotoalbum a {
    display: block;
    position: relative;
    overflow: hidden;
    width: 29.333%;
    margin: 2%;
}
.content .page_content .fotoalbum a.foto {
    width: 29.333%;
}
.content .page_content .fotoalbum a img {
    display: block;
    width: 100%;
}
.content .page_content .single_album {
    margin-top: 2em;
    padding: 2em 2em;
    background: #efefef;
}
.content .page_content .single_album h2 {
    margin-bottom: 1em;
}
.content .page_content .single_album .fotoalbum a .caption {
    padding: 5px 10px;
    font-size: 0.8em;
}


/* NEWS/CALENDAR */
.news-overview {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 102%;
    margin-left: -1%;
}
.news-overview .item {
    width: 31.333%;
    margin: 1%;
    box-sizing: border-box;
    background: #efefef;
    position: relative;
}
.news-overview .item a {
    display: flex;
    flex-direction: column;
    color: #000;
}
.news-overview .item a .image {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}
.news-overview .item a .image img {
    display: block;
    width: 100%;
}
.news-overview .item a .news-overview-content {
    padding: 2em;
    line-height: 1.5;
    box-sizing: border-box;
    width: 100%;
}
.news-overview .item a .news-overview-content .title {
    font-weight: 600;
}
.news-overview .item a .news-overview-content .meta,
.page_content .date {
    position: relative;
    margin-bottom: 15px;
    color: #040404;
    opacity: 0.5;
    text-transform: lowercase;
}
p a.back {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 60px;
    font-family: 'Abril Fatface', serif;
    font-size: 28px;
    color: #304543!important;
    line-height: 1;
}
p a.back:hover {
    opacity: 0.7;
}
p a.back svg {
    position: relative;
    top: 4px;
    margin-right: 15px;
    width: 27px;
    height: 27px;
    fill: #304543;
    opacity: 0.8;
}
p a.back.goto svg {
    margin-left: 15px;
    margin-right: 0;
}
.news_item .section {
    margin-top: 40px;
    padding: 40px;
    background-color: #efefef;
}
.pagination { display: flex; justify-content: center; margin: 40px auto; margin-bottom: 0; width: 70%; }
.pagination div { display: flex; align-items: center; justify-content: center; margin: 0 6px; width: 50px; height: 50px; font-family: 'Abril Fatface', serif; font-size: 22px; line-height: 1; text-align: center; border-radius: 2px; transition: all ease 0.15s; background-color: #040404; }
.pagination div a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: #fff; transition: all ease 0.15s; }
.pagination div:hover,
.pagination div.active { background-color: #867154; }
.pagination div:hover a,
.pagination div.active,
.pagination div.active a { color: #fff; }


/* MAPS */
#map_canvas {
    height: 90vh; 
    width: 100%; 
    clear: both; 
}


/* CONTACT */
#contact_thanks {
    background: #7ac142;
    color: #fff;
    padding: 30px;
    max-width: 500px;
}
.content #contact {
    margin-top: 50px;
}
.content #contact form {
    width: 100%;
    position: relative;
    max-width: 800px;
}
.content #contact form .field {
    padding-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.content #contact form .field label {
   
}
.content #contact form .field label.checkbox {

}
.content #contact form .field.radio label, 
.content #contact form .field.checkbox label,
.content #contact form .field.checkboxes label {
    display: flex;
    flex-direction: row;
}
.content #contact form .field.radio label span, 
.content #contact form .field.checkbox label span,
.content #contact form .field.checkboxes label span {
    width: calc(100% - 25px);
}
.content #contact form input[type=text],
.content #contact form textarea, 
.content #contact form select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: 0px solid #ccc;
    background: #efefef;
    width: 100%;
    margin-top: 3px;
    border-radius: 2px;
    box-sizing: border-box;
    padding: 10px;
}
.content #contact form input[type=text], 
.content #contact form textarea,
.content #contact form select {
    -webkit-appearance: none;
}
.content #contact form select {
    background-image: url('../../images/icons/arrow-dropdown.svg');
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}
.content #contact form textarea {
    min-height: 150px;
    max-height: 300px;
    max-width: 100%;
}
.content #contact form input[type=checkbox],
.content #contact form input[type=radio] {
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    margin-right: 5px;
    margin-top: 0px;
    height: 20px;
    width: 20px;
    border: 0px solid #ccc;
    background: #efefef;
    margin-right: 10px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transform: translateY(6px); 
}
.content #contact form input[type=radio] {
    border-radius: 20px;
}
.content #contact form input[type=checkbox]:checked,
.content #contact form input[type=radio]:checked {
    background-image: url('../../images/icons/checkmark.svg');
    background-size: 12px 12px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.content #contact form .field.header {
    margin-top: 20px;
}
.content #contact form br {
    display: none;
}
.content #contact form label.error {
    display: inline-block;
    color: #fff;
    width: auto;
    padding: 12px 12px;
    line-height: 1;
    border-radius: 3px;
    font-size: 0.8em;
    position: absolute;
    right: 1em;
    top: -2px;
    background-color: #ed2024;
}
.content #contact form label.error.checked {
    color: #7ac142;
    background-image: url('../../images/icons/form-checkmark.svg');
    background-repeat: no-repeat;
    background-size: 16px 16px;    
    width: 26px;
    padding-right: 0;
    background-position: 50% 50%;
    background-color: #7ac142;
}
.content #contact form label.error:after {
    content: "";
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ed2024;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
}
.content #contact form label.error.checked:after {
    border-top-color: #7ac142;
}
.content #contact div.field.bc {
    display: none;
}
.content #contact form .btn.submit {
    margin-top: 10px;
}


/* SOCIALPLUGIN (unchecked css) */
.row.social {
    background: #e2f1f5;
}
#socialcontent {
    clear: both;
    padding-bottom: 2em;
    width: 102%;
    margin-left: -1%;
    display: flex;
    flex-wrap: wrap;
}
#socialcontent .item {
    width: 31.333%;
    margin: 1%;
    position: relative;
    overflow: hidden;
    background: #efefef;
}
#socialcontent .item .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    background: #4267b2;
    display: flex;
    justify-content: center;
    align-items: center;
}
#socialcontent .item .icon svg {
    fill: #fff;
    width: 20px;
}
#socialcontent .item .item-content {
    padding: 30px;
    padding-bottom: 20px;
}
#socialcontent .item .info {
    font-size: 0.7em;
    padding: 30px;
    padding-top: 0;
    text-transform: lowercase;
}
#socialcontent .item .info a {
    color: #000;
}
#socialcontent .item .media-msg {
    width: 100%;
    min-width: 100%;
    width: 100%;
}
#socialcontent .item .media-msg img {
    width: 100%;
    display: block;
}


/* FOOTER */
#footer {
    padding: 100px 0;
    background-color: #867154;
}
#footer,
#footer a,
#footer a svg {
    color: #000;
    text-transform: lowercase;
    fill: #000;
}
#footer li .back-to-top {
    display: none;
}
#footer .column:nth-of-type(1) li:hover a,
#footer .column:nth-of-type(1) li:hover svg,
#footer .column:nth-of-type(1) li .back-to-top:hover,
#footer .column:nth-of-type(2) li:hover a,
#footer .column:nth-of-type(2) li:hover svg,
#footer .column:nth-of-type(2) li .back-to-top:hover {
    /*color: #fff;
    fill: #fff;*/
    opacity: 0.7;
    cursor: pointer;
}
#footer #footer-container {
    /*max-width: 1200px;*/
    width: 90%;
    position: relative;
    margin: 0px auto;
}
#footer #footer-container .footer-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between; 
}
#footer #footer-container .footer-row .column {
    box-sizing: border-box;
}
#footer #footer-container .footer-row .column ul {
    display: flex;
}
#footer #footer-container .footer-row .column ul li {
    margin-right: 30px;
    white-space: nowrap;
}
#footer #footer-container .footer-row .column ul li.inline-icon svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    transform: translateY(3px);
    margin-right: 15px;
}
#footer #footer-container .footer-row .column.social {
    padding-right: 0;
}
#footer #footer-container .footer-row .column.social ul li {
    margin: 0; margin-left: 15px;
}
ul.social-buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}
ul.social-buttons li {
    margin-left: 15px;
}
ul.social-buttons li a {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
    background-color: #304543;
    border-radius: 2px;
}
ul.social-buttons li:hover a {
    background-color: #3b4e4d;
}
#footer ul.social-buttons li a {
    background-color: #040404;
}
#footer ul.social-buttons li:hover a {
    background-color: #141414;
}
ul.social-buttons a svg {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    fill: #fff!important;
    transform: translate(-50%,-50%);
}
ul.social-buttons li.lvc a svg {
    width: 30px;
    height: 30px;
}
#footer #footer-container .footer-row.credits {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 3px dotted rgba(0,0,0,0.1);
    font-size: .8em;
}
#footer #footer-container .footer-row.credits .column {
    width: 50%;
}    
#footer #footer-container .footer-row.credits .column ul {
    display: flex;
}
#footer #footer-container .footer-row.credits .column:first-of-type ul li {
    margin-right: 1.5em;
}
#footer #footer-container .footer-row.credits .column:last-of-type ul {
    justify-content: flex-end;
}
#footer #footer-container .footer-row.credits .column:last-of-type ul li {
    /*margin-left: 1.5em;*/
}
#footer #footer-container .footer-row .column ul li .cybox-tag {
    text-transform: lowercase;
}
#footer #footer-container .footer-row .column:first-of-type ul li svg {
    margin-right: 0;
    width: 16px;
    height: 16px;
    margin-left: 12px;
    transform: translateY(3px);
}
#footer #footer-container .footer-row .column:first-of-type ul li a svg {
    margin-left: 12px;
}


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

}


/* KIEK > jquery.kiek.css (lightweight image viewer by Cybox) */
#kiek {
    position: fixed;
    top: 10%;
    left: 0;
    width: 100%;
    height: 80%;
    box-sizing: border-box;
    z-index: 11;
    text-align:center;
    background-image: url('../../images/icons/loading.gif');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size:32px 32px;
}
#kiek img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25%;
    margin-top: -25%;
    display: none;
    max-width:100%;
    max-height:100%;
    cursor: pointer;
}
#kiek iframe {
    z-index: 13;
}
#kiek-overlay {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0.99;
    opacity: 1;
    z-index: 9;
    border-radius: 3px;
    cursor: pointer;
    background-color: #f3f1ee;
}
#kiek-close {
    position: fixed;
    z-index: 999999999999999;
    right: 45px;
    top: 40px;
    text-align: center;
    font-size: 16px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    color: transparent;
    background-image: url('../../images/icons/close.svg');
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor:pointer;
    display: block
}
/*#kiek-close:hover {
    background-size: 35px 35px;
}*/
#kiek-close span.kiek-close {
    display: block;
    width: 60px;
    height: 60px;
}
#kiek-title {
    position: fixed;
    z-index: 99999999999;
    left: 0;
    bottom: 3.5%;
    width: 100%;
    text-align: center;
    font-size: 1em;
    cursor:pointer;
    pointer-events: none;
    display: none; /* i don't like this */
}
div#kiek-left,
div#kiek-right {
    position: fixed;
    height: 100%;
    top:0;
    z-index: 12;
    cursor:pointer;
    text-align: center;
    width: 150px;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    color: transparent;
}
/*div#kiek-left:hover,
div#kiek-right:hover {
    background-size: 35px 35px;
}*/
div#kiek-left {
    left:0px;
    background-image: url('../../images/icons/arrow-left.svg');
}
div#kiek-right {
    right: 0px;
    background-image: url('../../images/icons/arrow-right.svg');
}
div#kiek-close span.kiek-close {
    cursor: pointer;
}


/* CLOSE OVERLAY */
#close-overlay /* overlay that closes slideouts: menu, search, language */ {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 600ms ease-in-out;
}
#close-overlay.active {
    cursor: pointer;
    pointer-events: all;
    opacity: .5;
}


/* SEARCH (OVERLAY) */
#search {
    box-sizing: border-box;
    padding: 15px 20px;
    overflow-y: auto;
    display: block;
    z-index: 9;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #fff;
    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: #efefef;
    padding: 10px 15px;
    margin-bottom: 30px;
}
#search ul.list {
    line-height: 1.5;
}
#search ul.list li a {
    display: block;
    color: #000;
    margin: 30px 0;
}
#search ul.list li a:hover {
    color: #7ac142;
}
#search ul.list li strong {
    display: block;
}
#search ul.list li span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.close-menus {
    position: absolute;
    right: 20px;
    top: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #efefef;
    border-radius: 40px;
}
.close-menus svg {
    fill: #000;
    width: 20px;
    height: 20px;
}


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