    /*
    *
    * Theme Name:
    * Author:
    *
    * DO NOT CHANGE BELOW THIS LINE
    *--------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
    * {
        outline: none;
        border: none;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    *,
    *::before,
    *::after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    /*  1.5 Fontello fix
    -------------------------------------------------------------- */
    [class^="icon-"]::before,
    [class*=" icon-"]::before {
        margin-right: 0;
        margin-left: 0;
        width: auto;
        display: block;
        line-height: inherit;
        text-shadow: none;
    }

    /*  1.6 vars
    -------------------------------------------------------------- */
    :root {
        --font-main: Arial, san-serif;
        --font-weight: 300;
        --row-width: 1088px;
        --gutter-mobile: 10px;
        --gutter-desktop: 20px;
        
        /* colors */
        --clr-black: #000000;
        --clr-white: #ffffff;
        --clr-grey: #cccccc;		
        --clr-grey-70: #707070;
        
        /* percentages*/
        --percentage-50: 50%;
        --percentage-minus50: -50%;
    }    

    /*  1.7 Font base
    -------------------------------------------------------------- */
    body, h1, h2, h3, h4, h5, h6, p, ul, ol, label, .button, button, input, textarea, address {
        font-family: var(--font-main);
        font-weight: var(--font-weight);
        font-style: normal;
    }

    /*  =================================================================
    3.0 Standards
    ================================================================== */
    html,
    body {
        color: var(--clr-black);
        margin: 0;
        padding: 0;
        min-height: 100%;
    }

    html.noScroll,
    body.noScroll {
        overflow-y: hidden;
        height: 100%;
    }

    .large-only,
    .hidden,
    .hide-for-mobile,
    .scroll-only {
        display: none !important;
    }

    p,
    ul,
    ol,
    ul li,
    ol li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    figure {
        margin: 0;
        padding: 0;
    }

    h1,
    h1 span,
    h1 small,
    h2,
    h2 span,
    h2 small,
    h3,
    h3 span,
    h3 small,
    h4,
    h4 span,
    h4 small,
    h5,
    h5 span,
    h5 small,
    h6,
    h6 span,
    h6 small {
        display: block;
    }

    h1 small {
        margin-top: -10px;
    }

    .clear:after {
        clear: both;
    }

    .text-left,
    .text-small-left {
        text-align: left;
    }
    .text-xsmall-center,
    .text-small-center,
    .text-medium-center,
    .text-center,
    .text-large-left,
    .text-large-right {
        text-align: center;
    }
    .text-right {
        text-align: right;
    }
    .text-justify {
        text-align: justify;
    }
    .text-italic {
        font-style: italic;
    }

    /*  3.0.1 Text wrap fix
    -------------------------------------------------------------- */
    .hdrIMG figcaption h2,
    .hdrIMG figcaption p,
    .producten figure h3 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    ul,
    ol {
        list-style: none;
    }

    button,
    select,
    select:focus,
    a,
    a:active,
    a:visited,
    a:focus {
        outline: none !important;
        outline: 0 !important;
        text-decoration: none;
    }

    .evContainer:not(#searchFORM):not(#mainNAV):not(aside):not(#collectionInfo) {
        display: none;
    }
    .evContainer:not(#searchFORM):not(#mainNAV):not(aside):not(#collectionInfo).showed {
        display: block;
    }

    /*
    * PANELS
    ***************/	
    .panel/*,
    .freeform-form-errors*/ {
        position: relative;
        width: 100%;
        display: block;
        margin: 0 auto;
        background-color: #f5f5f5;
        border: 1px solid #585858;
        padding: 14px;
        padding-bottom: 13px;
        font-size: 16px;
        line-height: 23px;
        margin-bottom: 20px;
        text-align: center;
    }
    .panel.alert/*,
    .freeform-form-errors*/ {
        border-color: #cc3300;
        background-color: #cc330025;
        color: #cc3300;
    }
    .freeform-form-errors,
    .freeform-form-success	{
        margin-bottom: 20px;
    }
    .panel.alert p,	
    .panel.alert a,
    .freeform-form-errors p {
        color: #ff0000;
    }
    .panel.notice {
        border-color: #ff9966;
        background-color: #ff996625;
        color: #ff9966;
    }
    .panel.success {
        border-color: #5cba47;
        background-color: #5cba4725;
        color: #5cba47;
    }

    /*  3.1 Rows 
    -------------------------------------------------------------- */
    .row {
        width: 100%;
        position: relative;
        max-width: var(--row-width);
        margin-right: auto;
        margin-left: auto;
    }
    .row.xl {
        max-width: none;
    }
    .row::before, .floated::before,
    .row::after, .floated::after {
        display: table;
        content: '';
    }
    .row::after, .floated::after {
        clear: both;
    }

    .row .row {
        margin-bottom: 0;
    }
    .row .row .padded {
        padding: 0;
    }
    .row.collapsed,
    .row.collapsed .row {
        margin-left: 0;
        margin-right: 0;
    }
    /*.row.padded {
        padding-left: 10px;
        padding-right: 10px;
    }*/

    /*  3.2 Column setup
    -------------------------------------------------------------- */
    .col {
        position: relative;
        display: block;
        float: left;
        margin: 0;
        width: 100%;
        padding: 15px;
    }
    .row.collapsed .col {
        padding: 0;
    }
    .row.collapseHor .col {
        padding-left: 0;
        padding-right: 0;
    }
    .col.centered {
        float: none;
        margin: 0 auto;
    }

    /*  3.3 Blocks
    -------------------------------------------------------------- */
    #siteContainer,
    nav,
    header,
    section,
    footer,
    iframe,
    hgroup,
    .block {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }
    #siteContainer {
        min-height: 100%;
        /*overflow: hidden;*/
    }

    details summary {
        list-style: none !important;
    }
    details summary::-webkit-details-marker {
        display: none !important;
    }

    /*  3.4 Figure Tags
    -------------------------------------------------------------- */
    figure {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    figure a {
        display: block;
        overflow: hidden;
    }
    img {
        width: 100%;
    }
    figure img {
        float: left;
    }

    /*  3.6 Box
    -------------------------------------------------------------- */
    .pBox {
        position: absolute;
        width: 100%;
        padding: 0 30px;
        top: var(--percentage-50);
        left: var(--percentage-50);
        -webkit-transform: translate(var(--percentage-minus50), var(--percentage-minus50));
        transform: translate(var(--percentage-minus50), var(--percentage-minus50));
        z-index: 10;
    }

    /*  3.7 Responsive Video Embed
    -------------------------------------------------------------- */
    .flex-frame {
        position: relative;
        height: 0;
        margin: 0;
        padding-bottom: 75%;
        overflow: hidden;
    }
    .flex-frame .iframe,
    .flex-frame iframe,
    .flex-frame object,
    .flex-frame embed,
    .flex-frame video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .flex-frame.widescreen {
        padding-bottom: 56.25%;
    }
    .flex-frame.panorama {
        padding-bottom: 31.64062%;
    }
    .flex-frame.fullScreen {
        padding-bottom: 100vh;
    }
    .flex-frame.fixedHeight {
        padding-bottom: 0;
    }
    .flex-frame.fixedHeight iframe {
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }

    /*  3.12 form fixes
    -------------------------------------------------------------- */
    input,
    textarea,
    select,
    button {
        outline: none !important;
        resize: none;
        border-radius: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        appearance: none;
        box-shadow: none;
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
    }
    select {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d9d9d9' d='M11.9997 13.1714L16.9495 8.22168L18.3637 9.63589L11.9997 15.9999L5.63574 9.63589L7.04996 8.22168L11.9997 13.1714Z'%3E%3C/path%3E%3C/svg%3E") center right no-repeat;
    }

    select::-ms-expand { 
        display: none;
    }
    @media screen and (min-width:0\0) {
        select {
            background:none\9;
            padding: 5px\9;
        } 
    }
    input[type="email"] {
        text-transform: lowercase !important;
    }

    input::-webkit-input-placeholder,
    select::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder {
        color: #9c9c9c;
        opacity: 1.0;
    }
    input::-moz-placeholder,
    select::-moz-placeholder,
    textarea::-moz-placeholder {
        color: #9c9c9c;
        opacity: 1.0;
    }
    input:-ms-input-placeholder,
    select:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
        color: #9c9c9c;
        opacity: 1.0;
    }
    input:-moz-placeholder,
    select:-moz-placeholder,
    textarea:-moz-placeholder {
        color: #9c9c9c;
        opacity: 1.0;
    }
    select,
    option {
        color: #9c9c9c;
    }
    option:not(:first-of-type) {
        color: var(--clr-black);
    }

    input[type="email"]::-webkit-input-placeholder {
        text-transform: capitalize !important;
    }
    input[type="email"]::-moz-placeholder {
        text-transform: capitalize !important;
    }
    input[type="email"]:-ms-input-placeholder {
        text-transform: capitalize !important;
    }
    input[type="email"]:-moz-placeholder {
        text-transform: capitalize !important;
    }

    input[type="checkbox"],
    input[type="radio"] {
        position: relative;
    }
    input[type="checkbox"]:after,
    input[type="radio"]:after {
        content: '';
        position: absolute;
        background-color: transparent;
    }
    input[type="checkbox"]:checked:after,
    input[type="radio"]:checked:after {
        background-color: var(--clr-black);
    }
    input[type="radio"],
    input[type="radio"]:after {
        border-radius: 50%;
    }

    /*	3.13 Page Fader
    -------------------------------------------------------------- */
    .fade-in {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 99999;
        -webkit-animation-name: fadeIn;
        animation-name: fadeIn;
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.5, 0, 0.2, 1);
        pointer-events: none;
    }
    @-webkit-keyframes fadeIn {
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }
    @keyframes fadeIn {
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }


    /*  =================================================================
    4.0 CSS GRID BUILD ~ NOT FOR IE11
    ================================================================== */
    /*  4.1 CSS GRID BUILD
    *
    *	4.1.1 GRID MAIN LAYER
    -------------------------------------------------------------- */
    ._xl-only {
        display: none;
    }
    .gridFrame {
        grid-template-columns: repeat(4, minmax(50px, 1fr));
        display: grid;
        grid-gap: var(--gutter-mobile);
    }
    .gridFrame.noGap {
        grid-gap: 0;
    }
    .gridFrame.align-end {
        align-items: end;
    }
    /*	4.1.2 GRID ITEM
    -------------------------------------------------------------- */	
    .grid-item {
        position: relative;
    }
    .grid-item.show-for-medium,
    .grid-item.show-for-large,
    .grid-item.show-for-xLarge {
        padding: 0;
        width: 0;
        height: 0;
        overflow: hidden;
        display: none;
    }

    .grid-item,
    .grid-item._s1-4 {
        grid-column: span 1;
    }
    .grid-item._s2-4 {
        grid-column: span 2;
    }
    .grid-item._s3-4 {
        grid-column: span 3;
    }
    .grid-item._s4-4,
    .grid-item._full {
        grid-column: span 4;
    }
    /*  4.2.* IMAGEGRID pinterest style
    *
    *	4.2.1 column counter
    -------------------------------------------------------------- */
    .floated.grid {
        font-size: 0;
        line-height: 0;
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
    }
    /*.floated.grid > * {
        display: inline-block;
    }*/
    .floated.grid._1cls,
    .floated.grid._2cls,
    .floated.grid._3cls,
    .floated.grid._4cls,
    .floated.grid._5cls {
        columns: 1 100px;
    }
    .floated.grid .grd-item {
        display: block;
        break-inside: avoid-column;
    }

    /*  4.2.2 gap counter
    -------------------------------------------------------------- */
    .floated.grid._0px {
        grid-gap: 0px;
    }
    .floated.grid._0px .grd-item {
        padding: 0;
    }
    .floated.grid._1px {
        grid-gap: 1px;
    }
    .floated.grid._1px .grd-item {
        padding: 0 0 1px 0;
    }
    .floated.grid._4px {
        grid-gap: 4px;
    }
    .floated.grid._4px .grd-item {
        padding: 0 0 4px 0;
    }
    .floated.grid._5px {
        grid-gap: 5px;
    }
    .floated.grid._5px .grd-item {
        padding: 0 0 5px 0;
    }
    .floated.grid._10px {
        grid-gap: 10px;
    }
    .floated.grid._10px .grd-item {
        padding: 0 0 10px 0;
    }
    .floated.grid._16px {
        grid-gap: 16px;
    }
    .floated.grid._16px .grd-item {
        padding: 0 0 16px 0;
    }
    .floated.grid._20px {
        grid-gap: 20px;
    }
    .floated.grid._20px .grd-item {
        padding: 0 0 20px 0;
    }

    /*  4.1.3.3 grid extras
    -------------------------------------------------------------- */
    .floated.grid figure {
        width: 100%;
    }
    .floated.grid:not(.noHover) figure figcaption {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        /*-webkit-transition: all 300ms ease-in;
                transition: all 300ms ease-in;*/
    }
    .floated.grid:not(.noHover) figure figcaption span {
        color: #fff;
        position: absolute;
        left: 50%;
        top: 50%;
        padding: 20px;
        font-size: 14px;
        display: inline-block;
        width: 100%;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        /*-webkit-transition: all 300ms ease-in;
                transition: all 300ms ease-in;*/
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%)
    }


    /*  =================================================================
    7.0 General
    ================================================================== */
    /*  7.1 Sections
    -------------------------------------------------------------- */
    section {
        padding: 20px 0;
    }

    /*  7.2 Buttons
    -------------------------------------------------------------- */
    .button, button {
        display: inline-block;
        margin: 0;
        width: auto;
        cursor: pointer;
        font-weight: 400;
        padding: 5px 20px;
        text-align: center;
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
    }

    /*  7.4 Spacers
    -------------------------------------------------------------- */
    .spacer_35 {
        height: 35px;
    }
    .spacer_50 {
        height: 50px;
    }
    .spacer_75 {
        height: 75px;
    }
    .spacer_100 {
        height: 100px;
    }


/*  =================================================================
MEDIA QUERIES
================================================================== *//*
/* MOBILE */
@media only screen and (min-width: 572px) {

    .grid-item.show-for-medium {
        width: auto;
        height: auto;
        display: inline;
    }

    .gridFrame._medium-4 {
        grid-template-columns: repeat(4, minmax(10px, 1fr));
    }
    .gridFrame._medium-6 {
        grid-template-columns: repeat(6, minmax(10px, 1fr));
    }
    .grid-item._m1-4,
    .grid-item._m1-6 {
        grid-column: span 1;
    }
    .grid-item._m2-4,
    .grid-item._m2-6 {
        grid-column: span 2;
    }
    .grid-item._m3-4,
    .grid-item._m3-6 {
        grid-column: span 3;
    }
    .grid-item._m4-4,
    .grid-item._m4-6,
    ._medium-4 .grid-item._full {
        grid-column: span 4;
    }
    .grid-item._m5-6 {
        grid-column: span 5;
    }
    .grid-item._m6-6,
    ._medium-6 .grid-item._full {
        grid-column: span 6;
    }

    /*  4.2.* IMAGEGRID pinterest style
        4.2.1 column counter
    -------------------------------------------------------------- */
    .floated.grid._2cls,
    .floated.grid._3cls,
    .floated.grid._4cls,
    .floated.grid._5cls {
        columns: 2 100px;
    }

}

/* IPADS portrait */
@media only screen and (min-width: 768px) and (min-height: 600px) {    

    .hide-for-mobile {
        display: block !important;
    }

    /*  4.2.* IMAGEGRID pinterest style
        4.2.1 column counter
    -------------------------------------------------------------- */
    .floated.grid._3cls {
        columns: 3 100px;
    }
    .floated.grid._4cls,
    .floated.grid._5cls {
        columns: 4 100px;
    }
}

/* IPADS landscape AND mini laptops */
@media only screen and (min-width: 960px) {

    .large-only {
        display: block !important;
    }
    .hide-for-large {
        display: none !important;
    }

    .gridFrame {
        grid-gap: var(--gutter-desktop);
    }

    .grid-item.show-for-large {
        width: auto;
        height: auto;
        display: inline;
    }

    /*  4.1 CSS GRID BUILD
        4.1.1 GRID MAIN LAYER
        -------------------------------------------------------------- */
    .gridFrame._large-8 {
        grid-template-columns: repeat(8, minmax(10px, 1fr));
    }
    .gridFrame._large-9 {
        grid-template-columns: repeat(9, minmax(10px, 1fr));
    }
    .gridFrame._large-10 {
        grid-template-columns: repeat(10, minmax(10px, 1fr));
    }
    .gridFrame._large-12 {
        grid-template-columns: repeat(12, minmax(10px, 1fr));
    }

    .grid-item._l1-8,
    .grid-item._l1-9,
    .grid-item._l1-10,
    .grid-item._l1-12 {
        grid-column: span 1;
    }
    .grid-item._l2-8,
    .grid-item._l2-9,
    .grid-item._l2-10,
    .grid-item._l2-12 {
        grid-column: span 2;
    }
    .grid-item._l3-8,
    .grid-item._l3-9,
    .grid-item._l3-10,
    .grid-item._l3-12 {
        grid-column: span 3;
    }
    .grid-item._l4-8,
    .grid-item._l4-9,
    .grid-item._l4-10,
    .grid-item._l4-12 {
        grid-column: span 4;
    }
    .grid-item._l5-8,
    .grid-item._l5-9,
    .grid-item._l5-10,
    .grid-item._l5-12 {
        grid-column: span 5;
    }
    .grid-item._l6-8,
    .grid-item._l6-9,
    .grid-item._l6-10,
    .grid-item._l6-12 {
        grid-column: span 6;
    }
    .grid-item._l7-8,
    .grid-item._l7-9,
    .grid-item._l7-10,
    .grid-item._l7-12 {
        grid-column: span 7;
    }
    .grid-item._l8-8,
    ._large-8 .grid-item._full,
    .grid-item._l8-9,
    .grid-item._l8-10,
    .grid-item._l8-12 {
        grid-column: span 8;
    }
    .grid-item._l9-9,
    ._large-9 .grid-item._full,
    .grid-item._l9-10,
    .grid-item._l9-12 {
        grid-column: span 9;
    }
    ._large-10 .grid-item._full,
    .grid-item._l10-10,
    .grid-item._l10-12 {
        grid-column: span 10;
    }
    .grid-item._l11-12 {
        grid-column: span 11;
    }
    ._large-12 .grid-item._full,
    .grid-item._l12-12 {
        grid-column: span 12;
    }

    /*  4.2.* IMAGEGRID pinterest style
        4.2.1 column counter
    -------------------------------------------------------------- */
    .floated.grid._5cls {
        columns: 5 100px;
    } 
}

/* SMALL SCREENS */
@media only screen and (min-width: 1200px) {

    ._xl-only {
        display: block;
    }	
    .grid-item.show-for-xLarge {
        width: auto;
        height: auto;
        display: inline;
    }

    /*  4.1 CSS GRID BUILD
        4.1.1 GRID MAIN LAYER
        -------------------------------------------------------------- */
    .gridFrame._xLarge-12 {
        grid-template-columns: repeat(12, minmax(10px, 1fr));
    }
    .grid-item._xl1-12 {
        grid-column: span 1;
    }
    .grid-item._xl2-12 {
        grid-column: span 2;
    }
    .grid-item._xl3-12 {
        grid-column: span 3;
    }
    .grid-item._xl4-12 {
        grid-column: span 4;
    }
    .grid-item._xl5-12 {
        grid-column: span 5;
    }
    .grid-item._xl6-12 {
        grid-column: span 6;
    }
    .grid-item._xl7-12 {
        grid-column: span 7;
    }
    .grid-item._xl8-12 {
        grid-column: span 8;
    }
    .grid-item._xl9-12 {
        grid-column: span 9;
    }
    .grid-item._xl10-12 {
        grid-column: span 10;
    }
    .grid-item._xl11-12 {
        grid-column: span 11;
    }
    .grid-item._xl12-12,
    ._xLarge-12 .grid-item._full {
        grid-column: span 12;
    }

}
/*@media only screen and (min-width: 1600px) { 
    .floated.grid._3cls {
        columns: 4 100px;
    }
}*/

/*  =================================================================
HOVER STATES
================================================================== */
@media (any-hover: hover) {

    a, a i, button {
        cursor: pointer;
        -webkit-transition: all 200ms ease-in;
                transition: all 200ms ease-in;
    }

    .floated.grid:not(.noHover) .grd-item a:hover figcaption,
    .floated.grid:not(.noHover) .grd-item a:hover {
        cursor: pointer;
    }
    .floated.grid:not(.noHover) .grd-item:hover figcaption,
    .floated.grid:not(.noHover) .grd-item:hover figcaption span {
        opacity: 1;
        visibility: visible;
    }	

}