@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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 | FIETSFEEST LAND VAN CUIJK
   2022 - Cybox Backstage CMS

*/

/* BASICS */
html, body {
    height: auto;
}
body {
    /* design color vars*/
    --background: #fff; /* main background and light color for buttons etc */
    --accents: #fdf8f4; /* secondary backgrounds */
    --accents2: #fff; /* secondary backgrounds */
    --main: #111; /* general text color, previously all that was #000; */
    --titles: #102f4a; /* colors for general h1, h2, h3 */
    --primarycta: #d77f1b; /* buttons and menu active class */
    --secondarycta: #935680; /* buttons hover and menu hovers */
    --error: #ff006c; /* buttons hover and menu hovers */

    /* general */
    background: var(--accents2);
    color: var(--main);
    font-family: "Inter", sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: 0px; /* #header-height */
}
a {
    text-decoration: none;
    color: var(--primarycta);
}
a:hover {
    color: var(--secondarycta);
}

/* OVERALL TYPE & BUTTONS */
h1 {
    padding-bottom: 0px;
    font-family: "Inter", sans-serif;
    font-size: 2em;
    color: var(--titles);
    font-weight: 700;
    line-height: 1.2;
}
h1 + p {
    margin-top: 20px;
}
h2 {
    padding-bottom: 0.2em;
    font-family: "Inter", sans-serif;
    font-size: 1.4em;
    color: var(--titles);
    font-weight: 700;
    line-height: 1.2;
}
h3 {
    padding-bottom: 0.2em;
    font-size: 1.2em;
    color:  var(--titles);
    font-weight: 700;
    line-height: 1.2;
}
.btn {
	padding: 17px 25px;
    margin: 0px 0;
    border-radius: 35px;
	border: 0;
	display: inline-block;
	background: var(--primarycta);
	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;
}
.description-content .btn,
.btn:hover {
	background: var(--titles);
	color: var(--background);
}
.description-content .btn:hover {
    background: var(--background);
    color: var(--primarycta);
}
.btn.grey {
	opacity: 0.5;
	background: var(--accents);
	color: var(--main);
}

/* HEADER (MENU) */
#header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    pointer-events: none;
}
#header #header-container {
    /*max-width: 1400px;
    width: 90%;*/
    margin: 0 auto;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0px;
    box-sizing: border-box;
}
/* MENU - logo */
#header #logo {
    width: 160px;
    display: none;
}
#header #logo a {
    display: block;
}
#header #logo img {
    display: block;
    width: 100%;
    pointer-events: none;
}
/* MENU - main nav */
#menu-holder {
    display: flex;
    flex-direction: column;  
    position: fixed;
    left: 0;
    top: 0;
    width: 400px;
    height: 100%;
    z-index: 3;
    background: var(--accents);
    transform: translateX(-100%);
    transition: transform 600ms cubic-bezier(0.76, 0, 0.24, 1);    
    box-sizing: border-box;    
    padding: 30px 0px;  
    align-items: center; 
    justify-content: center;
    column-gap: 30px;
    font-size: 1.6em; 
    overflow-y: auto;   
    pointer-events: all;
    font-family: "Inter", sans-serif;
    font-weight: 700;
}
#menu-holder.active {
    transform: translateX(0%);
} 
#menu-holder .logo {
    width: 200px;
    margin: 0 auto;
    margin-bottom: 40px;
    transform: scale(1.15);
    transform-origin: left center;     
}  
#menu-holder .logo img {
    display: block;
    width: 100%;
} 
ul#menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    line-height: 1;
    order:  0;
    column-gap: 0px;
    row-gap:  20px;
}
ul#menu li.hassub ul.sub,
ul#menu li.hassub:hover ul.sub {
    position: relative;
    transform: none;
    bottom: auto;
    left: auto;
    background: transparent;
    visibility: visible;
    padding-top: 10px;
    padding-bottom: 10px;
}
ul#menu li {
    margin-left: 0;
}
ul#menu li a {
    display: block;
    white-space: nowrap;
    color: var(--titles);
}
ul#menu li.active a,
ul#menu li a:hover {
    color: var(--primarycta);
}



/*body.scroll ul#menu-second {
    top: -50px;
} */
/* MENU - nav buttons divs */
.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 30px;
    cursor: pointer;
    pointer-events: all;
    background: var(--primarycta);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-button a {
    display: block;
    width: 100%;
    height: 100%;
}
.nav-button svg {
    fill: var(--background);
    width: 22px;
    height: 22px;
}
.nav-button#menu-button {
    left: 30px;
    z-index: 3;  
}



/* BREADCRUMBS */
.content .page_content .breadcrumbs {
    padding: 20px 0;
}
/*.content .page_content .breadcrumbs ul {
    display: flex;
    align-items: center;
    font-weight: 400;
    margin-left: 0!important;
    margin-top: 5px;
}
.content .page_content .breadcrumbs ul li {
    list-style-type: none;
    margin: 0;
    padding-right: 20px;
    margin-right: 10px; 
    color: var(--main);
    position: relative;   
}
.content .page_content .breadcrumbs ul li:not(:last-child):after {
    content: "›";
    position: absolute;
    right: 0;
    top:  0;
}*/



/* CONTENT */
.row {
    padding: 60px 0;
}
.row .content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 600px;
    width: 85%;
    margin: 0px auto;
    column-gap:  0px;
    row-gap: 0px;
}
/* CONTENT > page_content */
.content .page_content {
    width: 100%;
    box-sizing: border-box;
    order: 1;

    padding: 40px;
    background: var(--accents);
/*    min-height: 500px;*/
}
/*.content .page_content.hasmedia {
    width: 60%;
}*/
.content .page_content p {
    margin-bottom: 2em;
}
.content .page_content p:first-of-type {
    font-size: 1.2em;
}
.content .page_content p:last-of-type {
    margin-bottom: 0;
}
.content .page_content img {
	display: block;
	width: 100%;
}
.content .page_content p:last-of-type > img {
	margin-bottom: 0;
}
.content .page_content ul,
.content .page_content ol,
#infoholder .content ul,
#infoholder .content ol {
    margin: 1.4em 0;
    margin-left: 2em;
    margin-left: 0;
}
.content .page_content ul li,
#infoholder .content ul li {
    list-style-type: disc;
    margin-left: 20px;
}
.content .page_content ol li,
#infoholder .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;
}
.content .media {
    order: 1;
    width: 100%;
    box-sizing: border-box;
}
.content .media a {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom:0px;
}
.content .media a:last-of-type { 
    margin-bottom: 0;
}
.content .media a img {
    width: 100%;
    display: block;
}
.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: 80px;
    height: 80px;
    display: none;
    filter: drop-shadow(0px 0px 30px #000);
}
.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: var(--accents);
    display: block;
    width: 80px; 
    height: 80px; 
}
.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: var(--background);
    opacity: 1;
    transition: opacity 300ms;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; 
    line-height: 1;   
}


/* eerste image */
.first-image {
    display: block;
}
.first-image img {
    display: block;
    width: 100%;
}


/* OVERALL downloads/links */
.content .links {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
a.file,
a.link {
    display: flex;
    flex-wrap: nowrap;
    padding-left: 0;
    color: var(--primarycta);
    font-size: 1.2em;
    font-weight: bold;
    font-family: "Inter", sans-serif;
}
a.link svg,
a.file svg  {
    fill: var(--primarycta);
    width: 20px;
    display: inline-block;
    margin-right: 20px;
    transform: translateY(2px);
}
a.link:hover,
a.file:hover {
    color: var(--primarycta);
}


/* CONTENT > submenu on page */
#submenu {
    width: 100%;
    background: var(--primarycta);
    padding:  30px 40px; 
    padding-bottom: 37px;
    box-sizing: border-box;
    order: 3;
}
#submenu ul li {
    line-height: 1.5;
    margin-bottom: 10px;    
}
#submenu ul li:last-of-type {
    margin-bottom: 0;
}
#submenu ul li a {
    color: var(--background);
    display: block;
    display: flex;
    justify-content: space-between;
}
#submenu ul li a em {
    font-style: normal;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
#submenu ul li a em.routenaam {
    /*padding-right: 20px;*/
    padding-right: 5px;
    max-width: 80%;
}
#submenu ul li.parent a,
#submenu ul li a.master {
    /* if these needs to be bigger etc. */
    font-family: "Inter", sans-serif;
    font-weight: bold;
    font-size: 1em;
}
#submenu ul li.parent a {
    display: none;
}
#submenu ul li a.master {

}
#submenu ul li ul {
    margin: 5px 0;
    margin-top: 10px;
    margin-left: 15px;
}
#submenu-trigger {
    display: none;
}
#submenu ul li a:hover {
    color: var(--accents);
}
#submenu ul li.parent.active a,
#submenu ul li.active a.master,
#submenu ul li.active ul li.subactive a {
    color: var(--primarycta);
}
#submenu ul li:hover a.master,
#submenu ul li.active a.master {
   color: var(--accents);
   opacity: 0.8;
}

/* ELEMENTS - tweak to your purposes & likings! */
.elements {
    margin: 2em 0;
    display: flex;
    flex-wrap: wrap;
}
.elements .element {
    width: 50%;
    background: var(--accents);
}
.elements .element div {
    padding:  10px 15px;
    border-bottom:  1px solid rgba(0,0,0,.1);
}
.elements .element div a {
    display: block;
}
.elements .element .image {
    padding:  0;
}
.elements .element .image img {
    display: block;
    width: 100%;
}
.elements .element .media {
    padding:  0;
    width: 100%;
}
.elements .element .media a {
    margin-bottom: 0;
}


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


/* FOOTER */
#footer {
    background: var(--accents);
    padding: 60px 0;
    display: none;
}
#footer,
#footer a,
#footer a svg {
    color: var(--main);
    fill: var(--main);
}
#footer li a:hover ,
#footer li a:hover svg,
#footer li .back-to-top:hover  {
    color: var(--primarycta);
    fill: var(--primarycta);
    cursor: pointer;
}
#footer #footer-container {
    max-width: 1400px;
    width: 90%;
    position: relative;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;  
    column-gap: 100px;   
}
#footer #footer-container .column {
    box-sizing: border-box;
}
#footer #footer-container .column.two-col ul {
    columns:  2;
    column-gap:  30px;
}
#footer #footer-container .column ul li {
    white-space: nowrap;
}
#footer #footer-container .social-buttons {
    position: absolute;
    right: 0;
    top: 0;
}
#footer #footer-container .social-buttons ul {
    display: flex;
    column-gap: 15px;
}
#footer #footer-container .social-buttons ul li a {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;  
    cursor: pointer;  
}
#footer #footer-container .social-buttons ul li a svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: translateY(0px);
    margin: 0;
}


/* CREDITS */
#credits {
    background: var(--accents2);
    padding: 30px 0;   
    font-size: .8em;
    display: none;
}
#credits #credits-container {
    /*max-width: 1400px;
    width: 90%;*/
    position: relative;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;

    box-sizing: border-box;
    padding: 0 20px;
}
#credits #credits-container ul {
    display: flex;
    column-gap: 20px;
}
#credits #credits-container ul li a {
    color: var(--main);
}
#credits #credits-container ul li svg {
    margin-right: 0;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    transform: translateY(1px);
    fill: var(--main);
}
#credits #credits-container ul li .back-to-top {
    cursor: pointer;
}

.cybox-tag {
    position: absolute;
    left: 23px;
    bottom: 20px;
    padding: 0px 0;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    text-transform: lowercase;
}
.cybox-tag a {
    display: flex;
    align-items: center;
    color: var(--main);
}
.cybox-tag svg {
    margin-right: 0;
    width: 11px;
    height: 11px;
    margin-left: 6px;
    transform: translateY(1px);
    fill: var(--main);
}


/* 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(--main);
    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;
}
.close-menus svg {
    fill: var(--main);
    width: 30px;
    height: 30px;
}


/* 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 */
#notfication-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;
}
#notfication-wrapper.hidden {
    opacity: 0;
}
#notfication-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(--primarycta);
}
#notification-window.error {
    background: var(--error);
}
#notification-window .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.4em;
    line-height: .5;
    cursor: pointer;
}
