@charset "UTF-8";

/* NIKS AANPASSEN IN DIT BESTAND */

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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{margin:0; padding:0; border:0; font-size:100%; font:inherit; vertical-align:baseline; background:transparent;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary
{display: block;}

audio, canvas, video {display: inline-block; *display:inline; *zoom:1;}

audio:not([controls]) {display:none; height:0;}

[hidden] {display:none;}

html {overflow-y:scroll; overflow-x:hidden; font-size:100%; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%;}    
    
body {line-height: 1;}

nav ul, nav ol {list-style: none; list-style-image:none;}    
ol, ul {list-style: none;}
    
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none; font-size:75%}
abbr[title], dfn[title] {border-bottom:1px dotted; cursor:help;}    

sub, sup {font-size:75%; line-height:0; position:relative; vertical-align:baseline}
sub {bottom: -0.25em;}
sup {top: -0.5em;}

table {border-collapse: collapse; border-spacing: 0;}

a:link, a:visited, a:hover, a:active {text-decoration:none;}
a img, :link img, :visited img {border:none;}
a:focus {outline: thin dotted;}
a:active, a:hover {outline: 0;}

html, button, input, select, textarea {font-family: sans-serif;}
textarea {resize:none; vertical-align:top; font-size:100%; overflow:auto;}
textarea:focus {outline:none;}
input:focus {outline:none;}
button, input, select {vertical-align: baseline; *vertical-align: middle; font-size:100%; line-height:normal; margin:0;}
legend {white-space: normal; *margin-left:-7px;}
button, input[type="button"], input[type="reset"], input[type="submit"] {-webkit-appearance:button; cursor:pointer; *overflow: visible;}
button[disabled], input[disabled] {cursor: default;}
input[type="checkbox"], input[type="radio"] {box-sizing; border-box; *height: 13px; *width: 13px;}
input[type="search"] {-webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box;}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {-webkit-appearance:none;}
button::-moz-focus-inner, input::-moz-focus-inner {border:0; padding:0;}

img {-ms-interpolation-mode: bicubic;}
svg:not(:root) {overflow:hidden;}

strong, b {font-weight:bold}

tt {font-family: "Courier New", Courier, monospace}
code, kbd, pre, samp {font-family: monospace, serif; _font-family: 'courier new', monospace; font-size:16px;}
pre {white-space: pre; white-space:pre-wrap; word-wrap: break-word;}
hr {display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0;}
i {font-style:italic}
u {text-decoration:underline}
strike, del {text-decoration:line-through}
ins {text-decoration:none}
center {text-align:center}
dfn {font-style:italic}
mark {background: #ff0; color: #000;}

/* EXTERNE FONTS */

/* GEHOSTE FONTS */
@font-face {
    font-family: 'ChopinScript';
    src: url('/fonts/chopinscript-webfont.eot');
    src: url('/fonts/chopinscript-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/chopinscript-webfont.woff') format('woff'),
         url('/fonts/chopinscript-webfont.ttf') format('truetype'),
         url('/fonts/chopinscript-webfont.svg#ChopinScript') format('svg');
    font-weight: normal;
    font-style: normal;

}
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

textarea:focus,
input:focus,
select:focus,
button:focus,
option:focus {
    outline: none;
}

input[type=text],
input[type=submit],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select,
option {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Spartan', sans-serif;
}

.gototop {
    z-index: 100;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    position: fixed;
    right: -100px;
    bottom: 40px;
    color: #353535;
    font-size: 1em;
    opacity: .8;
    cursor: pointer;
    transition: all .3s;
    border: none;
    background-color: #ffb7b2 !important;
    transition: all 1s ease;
    box-shadow: #35353544 0px 5px 15px;
}

.gototop:hover {
    transform: translateY(-10px);
}


/* KEYFRAMES */

.come-in {
    transform: translateY(150px);
    opacity: 0;
    animation: come-in 0.8s ease forwards;
}

.come-in:nth-child(odd) {
    animation-duration: 2s;
    /* So they look staggered */
}

@keyframes come-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (min-width: 800px) {
    .come-in-left {
        transform: translateX(-300px);
        opacity: 0;
        animation: come-in-left 0.8s ease forwards;
    }
    .come-in-left:nth-child(odd) {
        animation-duration: 2s;
        /* So they look staggered */
    }
}

@keyframes come-in-left {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media screen and (min-width: 800px) {
    .come-in-right {
        transform: translateX(300px);
        opacity: 0;
        animation: come-in-right 0.8s ease forwards;
    }
    .come-in-right:nth-child(odd) {
        animation-duration: 2s;
        /* So they look staggered */
    }
}

@keyframes come-in-right {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        color: #4b4b4b;
    }
    5% {
        color: #8bcf97
    }
    10% {
        color: #4b4b4b;
    }
    20% {
        color: #8bcf97
    }
    21% {
        color: #4b4b4b;
    }
    50% {
        color: #4b4b4b;
    }
    100% {
        color: #4b4b4b;
    }
}

@keyframes pulse2 {
    0% {
        color: #e0d8c36e;
    }
    5% {
        color: #353535
    }
    10% {
        color: #e0d8c36e;
    }
    20% {
        color: #353535
    }
    21% {
        color: #e0d8c36e;
    }
    50% {
        color: #e0d8c36e;
    }
    100% {
        color: #e0d8c36e;
    }
}

@keyframes pulse3 {
    0% {
        color: #e0d8c36e;
    }
    5% {
        color: #353535
    }
    10% {
        color: #e0d8c36e;
    }
    20% {
        color: #353535
    }
    21% {
        color: #e0d8c36e;
    }
    50% {
        color: #e0d8c36e;
    }
    100% {
        color: #e0d8c36e;
    }
}


/* EINDE KEYFRAMES */


/* Bevestiging */

.bevestiging_bg,
.bestelling_geplaatst {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bevestiging {
    width: 100%;
    -webkit-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.10);
    -moz-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.10);
    box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.10);
    max-width: 700px;
    padding: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
}

.bevestiging i {
    font-size: 35px;
    color: #353535;
    margin-bottom: 20px;
}

.bevestiging h2 {
    text-transform: uppercase;
    color: #353535;
    font-size: 15px;
    margin: 10px 0;
}

.bevestiging h1 {
    font-weight: 400;
    font-size: 25px;
    text-align: center;
    color: #353535;
    margin-bottom: 10px;
}

.bevestiging p {
    line-height: 150%;
    color: #353535;
    font-size: 17px;
    font-weight: 200;
    text-align: center;
}

.bevestiging a {
    cursor: pointer;
    display: inline-block;
    padding: 7px 20px;
    background-color: #ffb7b2;
    font-weight: 500;
    color: #353535;
    margin-top: 20px;
    border: 1px solid #ffb7b2;
    transition: all 1s ease;
}

.bevestiging a:hover {
    background-color: transparent;
}


/* Einde Bevestiging*/


/* Cookie Melding */

.plenso_cookies {
    position: fixed;
    z-index: 9999;
    right: 10px;
    bottom: 10px;
    background-color: #fff;
    max-width: 300px;
    -webkit-box-shadow: 0px 0 45px -0 rgba(0, 29, 147, 0.15);
    -moz-box-shadow: 0px 0 45px -0 rgba(0, 29, 147, 0.15);
    box-shadow: 0px 0 45px -0 rgba(0, 29, 147, 0.15);
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px;
    transition: all .5s;
    border-bottom: 4px solid #ffb7b2;
}

.plenso_cookies>div {
    color: #353535;
    font-weight: 200;
    line-height: 140%;
    font-size: 14px;
    font-family: 'Spartan', sans-serif;
}

.plenso_cookies .btns {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.plenso_cookies a:first-of-type {
    color: #353535;
    border-bottom: 1px solid #b4b0b0;
    margin-bottom: 15px;
    width: fit-content;
    padding: 0 28px 0 0;
}
    

.plenso_cookies a:last-of-type {
    background-color: transparent;
    color: #ffb7b2;
    border: 1px solid #ffb7b2;
    width: fit-content;
    padding: 7px 30px;
    text-align: center;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Spartan', sans-serif;
    transition: all 0.8s ease;
    cursor: pointer;
}

.plenso_cookies a:last-of-type:hover {
    background-color: #ffb7b2;
    color: #353535;
}


/* Einde cookiemelding */


/* GDPR */

#content-container {
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
    margin: auto;
}

#content-container h1 {
    width: 100%;
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #353535;
    margin-bottom: 20px;
    margin-top: 150px;
    font-family: 'Nanum Myeongjo', serif;
}

#content-container h2 {
    color: #353535;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 1em;
    margin-top: 1em;
    cursor: pointer;
    padding-left: 15px;
    font-family: 'Nanum Myeongjo', serif;
}

#content-container h3 {
    background: #353535;
    color: #fff;
    font-size: 1.2em;
    padding: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    margin-top: 20px;
    font-family: 'Nanum Myeongjo', serif;
}

#content-container h3 span {
    position: absolute;
    z-index: 1;
    background: transparent url("/images/cross_w.png") no-repeat;
    display: inline-block;
    width: 15px;
}

#content-container h4 {
    margin-left: 2em;
    font-size: 1.1em;
    font-weight: bold;
}

#content-container p {
    padding: 20px;
    line-height: 170%;
    color: #7e7e7e;
    font-size: 1.1em;
    font-weight: 200;
}

#content-container ul {
    margin-left: 3em;
}

#content-container table {
    width: 100%;
}

#content-container a {
    color: #353535;
    font-weight: 700;
}

#gdpr-wrapper {
    min-height: 100%;
    position: relative;
}

#content-container thead {
    background-color: #ffb7b2;
    color: #fff;
}

#content-container thead th {
    border: 1px solid #353535;
    padding: 10px;
}

#content-container tbody td {
    border: 1px solid #353535;
    color: #7e7e7e;
    line-height: 150%;
    padding: 5px;
}

#content-container tbody td p {
    padding: 0px;
}

#content-container ul {
    padding-left: 20px;
    line-height: 170%;
    color: #7e7e7e;
    list-style-type: disc;
}


/* Einde GDPR */


/* Curtaindrop */

.topper {
    position: absolute;
    top: 10px;
    right: 7.5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    -ms-align-items: center;
}

.topper_cart {
    margin-left: 15px;
    position: relative;
}

.topper_cart.mob {
    display: none;
}

.topper_cart i {
    font-size: 22px;
}

.topper_cart .amount {
    position: absolute;
    right: -12px;
    bottom: -12px;
    font-size: .5em;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    border-radius: 200px;
    width: 20px;
    height: 20px;
    background-color: #ffb7b2;
    font-weight: 700;
    color: #000;
}

.curtain-click {
    cursor: pointer;
    background-color: #ffb7b2;
    padding: 5px 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

.curtain-click.tohide span {
    background: linear-gradient(90deg, #000, #000, #000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-size: 80%;
    animation: shine 5s linear infinite;
    position: relative;
    margin-left: 10px;
    font-size: 16px;
}

@keyframes shine {
    0% {
        background-position-x: -500%;
    }
    100% {
        background-position-x: 500%;
    }
}

.curtain-click.mob {
    display: none;
}

.curtain-click i {
    font-size: 16px;
    color: #353535;
    margin-right: 10px;
    font-weight: 200;
}

.curtain-click span {
    font-size: 16px;
}

.curtain-titel {
    cursor: pointer;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }
    70% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(25deg);
    }
    80% {
        transform: rotate(-25deg);
    }
    85% {
        transform: rotate(20deg);
    }
    95% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.curtaindrop {
    width: 100%;
    z-index: 100;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: none;
    position: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.curtaindrop>video {
    position: absolute;
    left: 50%;
    top: 50%;
    min-height: 100%;
    min-width: 100%;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.curtaindrop>div {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    text-align: center;
}

.curtaindrop>div>div:last-child {
    position: absolute;
    left: 50%;
    width: 90%;
    max-width: 1000px;
    color: #fff;
    z-index: 200;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
}

.curtaindrop .c {
    font-size: 28px;
    line-height: 140%;
    font-weight: 200;
}

.curtaindrop img:not(.closecurtain) {
    max-width: 1000px;
    width: 96%;
}

.curtaindrop .curtain-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.curtaindrop h2 {
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 30px;
}

.curtaindrop a {
    padding: 7px 20px;
    display: block;
    margin-top: 30px;
    width: fit-content;
    margin-left: 50%;
    transform: translateX(-50%);
}


/* Einde Curtaindrop */


/* NAVIGATIE DESKTOP */


/* Navigatie */

.navigatie {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    -ms-align-items: flex-end;
    align-items: flex-end;
    padding: 30px 10px 20px 10px;
    z-index: 2;
}

.navigatie nav {
    margin-left: 40px;
}

.navigatie nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.navigatie nav ul li {
    padding: 10px 25px;
    padding-bottom: 5px;
}

.navigatie nav a:not(.curtain-click):not(.shop a) {
    color: #252525;
    font-size: 18px;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    position: relative;
}

.navigatie nav a,
.navigatie nav a:after,
.navigatie nav a:before {
    transition: all .5s;
}

.navigatie nav a:not(.shop a):after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #353535;
    height: 1px;
}

.navigatie nav a:not(.shop a):hover:after {
    width: 100%;
}

.navigatie nav a:not(.shop a):hover {
    color: #353535;
}

.navigatie nav .active a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    content: '.';
    color: transparent;
    background: #353535;
    height: 1px;
}

.navigatie nav .active a {
    color: #353535;
}

.shop {
    background-color: transparent;
    border: 2px solid #ffb7b2;
    padding: 7px 20px;
    color: #353535;
    letter-spacing: 1px;
    font-size: 15px;
    transition: all 0.8s ease;
    cursor: pointer;
}

.shop a {
    color: #353535;
}

.shop:hover {
    background-color: #ffb7b2;
}

.logo {
    width: 140px;
}


/* EINDE NAVIGATIE DESKTOP */


/* RESPONSIVE NAVIGATIE */

.menubtn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: none;
    transition: all .3s;
    border: 2px solid #ffb7b2;
    padding: 10px;
}

.menubtn:hover {
    transform: scale(1.05);
}

.menuoverlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 5;
    background-color: rgba(0, 0, 0, .5);
}

.res-nav {
    width: 100%;
    max-width: 400px;
    height: 100%;
    position: fixed;
    right: -700px;
    top: 0;
    z-index: 1000;
    overflow: auto;
    transition: all .6s;
    background-color: #fff;
    padding-bottom: 100px;
    background-color: rgba(255, 255, 255, 0.945);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 60%;
}

.res-nav .res-logo {
    width: 100px;
    position: absolute;
    right: 30px;
    top: 30px;
}

.menuoverlay {
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    background-color: rgba(0, 0, 0, .4);
}

.overvisible {
    display: block;
}

.nav_top {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 30px;
}

.closebtn {
    width: 40px;
    cursor: pointer;
    transition: all .3s;
    border: 2px solid #ffb7b2;
    padding: 10px;
    cursor: pointer;
}

.menu-block {
    overflow: hidden;
}

.menu-is-open {
    right: 0;
}

.res-nav nav {
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    overflow: auto;
    padding-bottom: 50px;
    height: 100%;
    position: relative;
}

.navitem {
    width: 100%;
    padding: 20px 30px;
}

.navitem div {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.navitem div img {
    width: 20px;
    transition: all .5s;
    transform: rotate(0deg);
}

.rotateImg {
    transform: rotate(-180deg) !important;
}

.navitem a {
    text-align: left;
    display: inline-block;
    color: rgba(0, 0, 0, 0.74);
    font-size: 30px;
    font-weight: 300;
    position: relative;
}

.navitem a,
.navitem a:after,
.navitem a:before {
    transition: all .5s;
}

.navitem a:hover {
    color: #353535;
}

.navitem a:after {
    position: absolute;
    bottom: -5px;
    left: 2px;
    right: 2px;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #353535;
    height: 2px;
}

.navitem a:hover:after {
    width: 100%;
}

.navitem i {
    font-size: 25px;
    transition: all .3s;
}

.navitem .rotate {
    transform: rotate(90deg);
}

.activelink {
    color: #353535 !important;
}

.navitem ul {
    display: none;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding-top: 10px;
}

.navitem ul li {
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    padding-left: 15px;
    border-left: 2px solid #eeeeee;
}

.navitem ul li i {
    margin-left: -7px;
    color: #c8c8c8;
    font-size: .7em;
    margin-right: 20px;
}

.navitem ul a {
    font-size: 1.2em;
    color: #949494;
    padding: 7px 0;
    padding-left: 0;
}

.navi_footer>div {
    color: #353535;
}

.navi_footer img {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.navi_footer img.logo {
    position: absolute;
    top: 30px;
    width: 100px;
    right: 30px;
}

.navi_footer>div {
    position: absolute;
    bottom: 10px;
    font-size: .9em;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
}

.navi_footer>div p {
    width: 100%;
    text-align: center;
    padding: 5px;
    margin-bottom: 7px;
    color: #353535;
    font-weight: 500;
    font-size: 15px;
    font-style: italic;
    z-index: 100;
}

.navi_footer span {
    margin: 0 7px;
}

.navi_footer a {
    color: #353535;
    font-size: 10px;
}

.navi_footer i {
    color: #353535;
}


/* EINDE RESPONSIVE NAVIGATIE */


/* HOME */

.home_banner {
    width: 85%;
    margin: auto;
}

.home_banner .slick-arrow {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: transparent;
    border-radius: 200px;
    color: white;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    font-size: 25px;
    border: none;
}

.home_banner .slick-next {
    right: 10px;
    left: initial;
}

.home_banner article {
    position: relative;
}

.home_banner article img {
    max-height: 100vh;
    width: 100%;
    object-fit: cover;
}

.home_banner article>div {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    width: 60%;
    display: flex;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.home_banner article>div div {
    max-width: 800px;
}

.home_banner article h2 {
    font-weight: 700;
    line-height: 150%;
    font-size: 3.1em;
    color: white;
}

.home_banner article h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5em;
    color: white;
    text-shadow: 0px 0px 11px #000000;
    font-family: 'Big Shoulders Stencil Display';
}

.home_banner article a {
    border-radius: 4px;
    margin-top: 20px;
    color: #CDA03A;
    font-size: 20px;
    padding: 12px 30px;
    background-color: #f9f1df;
    display: inline-block;
    transition: all .3s;
}

.home_banner article a:hover {
    background-color: #CDA03A;
    color: #fff;
}


/* Powertekst */

.page_header {
    padding: 50px 20px;
    text-align: center;
}

.page_header.home {
    padding-bottom: 80px;
}

.page_header_element {
    width: 30px;
    padding-bottom: 20px;
}

.page_header i {
    font-size: 25px;
    margin-bottom: 15px;
    color: #353535;
}

.page_header h1 {
    color: #353535;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 20px;
    display: inline-block;
    width: 90%;
    font-family: 'Big Shoulders Stencil Display';
}

.page_header>h2,
.product_description h2 {
    color: #353535;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 25px;
    font-family: 'Big Shoulders Stencil Display';
    font-weight: 200;
}

.product_description h2 a {
    color: #ffb7b2;
}

.page_header .c,
.aks .c,
.product_description .c {
    line-height: 150%;
    font-weight: 200;
    font-size: 20px;
    width: 60%;
    color: #353535;
    margin: auto;
    text-align: center;
}

.product_description .c p:not(:last-of-type) {
    margin-bottom: 30px;
}


/* Aandachtskaders */

.aks {
    width: 80%;
    margin: auto;
    padding: 0;
}

.aks h3 {
    color: #353535;
    font-size: 40px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
    margin: auto;
    font-family: 'Nanum Myeongjo', serif;
    text-align: center;
    margin-bottom: 20px;
}

.line {
    width: 30px;
    height: 1px;
    background-color: #353535;
    margin: auto;
    margin-bottom: 30px;
}

.aks_items {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    justify-content: space-around;
}

.aks_items article {
    width: 31%;
    margin: 1%;
    position: relative;
}

.aks_items .maina {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.aks_items article img {
    width: 100%;
}

.aks_items article .img {
    position: relative;
}

.aks_items article .img .plus {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border: 2px solid #ffb7b2;
    width: 25px;
    height: 25px;
    color: #353535;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    transition: opacity 1s ease-out;
    opacity: 0;
    font-size: 16px;
}

.aks_items article:hover .plus {
    background-color: #ffb7b2;
    opacity: 1;
}

.aks_items .content {
    width: 100%;
    text-align: center;
    padding: 40px 10px;
}

.aks_items .content h2 {
    font-size: 25px;
    line-height: 130%;
    border-bottom: 1px solid transparent;
    position: relative;
    width: fit-content;
    text-align: center;
    margin: auto;
    cursor: pointer;
    font-family: 'Big Shoulders Stencil Display';
}

.aks_items .content h2,
.aks_items .content h2:after,
.aks_items .content h2:before {
    transition: all .5s;
}

.aks_items .content h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #353535;
    height: 1px;
}

.aks_items article:hover .content h2:after {
    width: 100%;
}

.aks_link {
    width: 100%;
    text-align: center;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.aks_link a {
    color: #353535;
    border: 1px solid #353535;
    padding: 16px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    width: fit-content;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all 0.8s ease;
}

.aks_link a:hover {
    background-color: #353535;
    color: #fff;
}


/* Producten */

.product_description {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 10px;
}

.product_description h1 {
    color: #353535;
    font-size: 40px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
    margin: auto;
    font-family: 'Spartan', sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

.product_description a.contactus {
    display: inline-block;
    margin-top: 30px;
    background-color: transparent;
    border: 2px solid #ffb7b2;
    padding: 7px 20px;
    color: #353535;
    letter-spacing: 1px;
    font-size: 15px;
    transition: all 0.8s ease;
    cursor: pointer;
}

.product_description a.contactus:hover {
    background-color: #ffb7b2;
}

.products {
    width: 60%;
    margin: auto;
    padding-top: 20px;
}

.products .grid,
.products .more_prods {
    width: 100%;
    display: inline-grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
}

.products .more_prods {
    margin-top: 40px;
}

.products .grid {
    position: relative;
}

.products>div .more_prods {
    width: 100%;
}

.products article,
.products .product_slider {
    text-align: center;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.products article a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.products .big {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row: 1 / 3;
}

.products article img {
    width: 100%;
}

.arrowUp {
    transform: rotate(180deg);
}

.seeAll {
    margin: auto;
    padding: 20px 0;
    display: block;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.seeAll i {
    font-size: 16px;
    font-weight: 200 !important;
    cursor: pointer;
    border: 2px solid #ffb7b2;
    color: #353535;
    padding: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    transition: all 0.8s ease;
}

.seeAll i:hover {
    background-color: #ffb7b2;
}

.product_slider {
    position: relative;
}

.product_slider .slick-arrow {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.397);
    border-radius: 200px;
    color: white;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    font-size: 18px;
    border: none;
}

.product_slider .slick-next {
    right: 10px;
    left: initial;
}

.openVid {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #ffb7b2;
    color: #353535;
    font-weight: 200;
    border: none;
    border: 1px solid #ffb7b2;
    padding: 5px 10px;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.8s ease;
}

.openVid:hover {
    background-color: #353535;
    color: #ffb7b2;
}

.vidContainer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    width: calc(100% + 1px);
}

.vidContainer .vid {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    height: 100%;
}

.vidContainer .vid iframe {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
}

.closeVid {
    position: absolute;
    top: -40px;
    right: 0;
    border: none;
    display: flex;
    align-items: flex-end;
    -ms-align-items: flex-end;
    background-color: #ffb7b2;
    border: 1px solid #ffb7b2;
    color: #fff;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 5px 10px;
}

.closeVid i {
    font-size: 14px;
    margin-right: 10px;
}


/* Einde producten */


/* Shop */

.shop_products {
    width: 100%;
    max-width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
}

.shop_products .noprods {
    width: calc(100% - 40px);
    text-align: center;
    padding: 30px;
    font-size: 18px;
    font-weight: 200;
    margin: 0 20px;
    border: #ededed 1px solid;
}

.shop_products article {
    width: 31.33%;
    position: relative;
    margin: 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 15px;
    border-bottom: 2px solid #f6f6f6;
}

.shop_products article img {
    width: 100%;
    position: relative;
    z-index: 0;
}

.shop_products article h2 {
    font-family: 'Spartan', sans-serif;
    font-size: 20px;
    font-weight: 200;
    margin-top: 10px;
}

.shop_products article h3 {
    font-size: 14px;
    font-weight: 200;
    margin-top: 10px;
}

.shop_products article button {
    width: 100%;
}

.shop_products article .text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.shop_products article .suba {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 200px;
    color: #353535;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Spartan', sans-serif;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}

.shop_products article .maina {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}

.shop_products article .addProduct {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: #ffb7b2 solid 1px;
    background-color: #ffb7b2;
    font-size: 16px;
    color: #353535;
    width: 40px;
    height: 35px;
    z-index: 5;
    font-family: 'Spartan', sans-serif;
    transition: all 0.8s ease;
}

.shop_products article .addProduct i {
    transition: all 0.8s ease;
}

.shop_products article .addProduct:hover {
    border: 1px solid #353535;
}

.shop_products article .addProduct:hover i {
    transform: translateX(7px);
}

.checkadd {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    border: #ffb7b2 solid 1px;
    background-color: #ffb7b2;
    font-size: 16px;
    color: #353535;
    width: initial;
    z-index: 5;
    display: none;
}


/* Product Pagina */

.product_topper {
    width: 100%;
    background-color: #FAFAFA;
}

.product_topper>div {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding: 10px;
}

.product_topper a {
    font-weight: 200;
    font-size: 16px;
    color: #1C1B1B;
    display: inline-block;
    padding: 10px 0;
}

.mainshop {
    width: 60%;
    margin: auto;
    margin-top: 30px;
    padding-left: 10px;
}

.mainshop i {
    margin-right: 10px;
    transition: all 0.8s ease;
}

.mainshop a {
    color: #353535;
}

.mainshop:hover i {
    transform: translateX(-10px);
}

.product_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    max-width: 60%;
    margin: 0 auto;
    padding: 50px 10px;
}

.product_header_image {
    width: 50%;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.product_header_image>a i {
    transition: all .3s;
    padding-left: 5px;
}

.product_header_image>a:hover i {
    padding-left: 0 !important;
    padding-right: 5px;
}

.product_header_image>img {
    width: 100%;
    transition: all .2s;
}

.product_extrafotos {
    width: 150px;
    padding: 20px 0;
}

.product_extrafotos .slick-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 2;
    border: none;
}

.product_extrafotos .slick-next {
    top: initial;
    bottom: 0;
}

.product_extrafotos article {
    padding: 10px;
    border-left: 2px solid white;
}

.product_extrafotos article img {
    width: 100%;
    cursor: pointer;
    border-left: 2px solid white;
}

.active_thumb {
    border-left: 2px solid #1C1B1B !important;
}

.mainimg {
    cursor: zoom-in;
}

.product_header_content {
    width: 48%;
    max-width: 500px;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.product_header_content h1 {
    font-size: 25px;
    line-height: 150%;
    color: #353535;
    font-weight: 400;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-family: 'Spartan', sans-serif;
}

.product_header_content h2 {
    color: #353535;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 2.4px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Spartan', sans-serif;
}

.product_header_content .aantal {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    white-space: nowrap;
}

.product_header_content .aantal input {
    border: none;
    width: 50px;
    text-align: center;
    background-color: transparent;
    font-family: 'Spartan', sans-serif;
}

.product_header_content .aantal i {
    width: 50px;
    height: 50px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.product_links {
    margin-bottom: 10px;
}

.product_links a {
    background-color: #f6f6f6;
    border: 1px solid #f6f6f6;
    color: #939393;
    padding: 2px 10px;
    font-size: .8em;
    transition: all .3s;
    margin-right: 5px;
}

.product_links a:hover {
    border: 1px solid #939393;
}

.product_intro {
    line-height: 200%;
    font-weight: 400;
    font-size: 14px;
    color: #1C1B1B;
    margin-top: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.product_intro p {
    margin-bottom: 10px;
}

.product_prijs {
    display: flex;
    justify-content: flex-start;
    padding: 10px 0;
    padding-top: 0;
    margin-bottom: 10px;
}

.product_prijs article {
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.product_prijs article p {
    font-size: 14px;
    font-weight: 700;
    color: #727272;
}

.product_afmetingen {
    display: flex;
    justify-content: flex-start;
}

.product_afmetingen article {
    padding: 15px 30px;
    background-color: #F3F3F2;
    border: 1px solid white;
}

.product_afmetingen article h2 {
    font-weight: 700;
    font-size: 1.2em;
    color: #6b6b6b;
    margin-bottom: 5px;
}

.product_afmetingen article p {
    font-size: 1.1em;
    color: #6b6b6b;
}

.product_actions {
    width: 100%;
}

.product_actions button {
    background-color: transparent;
    color: #353535;
    border: 1px solid #353535;
    font-weight: 400;
    font-size: 16px;
    width: fit-content;
    transition: all .8s ease;
    font-family: 'Spartan', sans-serif;
    padding: 7px 20px;
}

.product_actions button:hover {
    background-color: #ffb7b2;
}

.product_actions .added {
    width: 100%;
    color: #353535;
    background-color: #ffb7b2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    font-weight: 200;
    padding: 7px 7px;
    display: none;
}

.shopfilter {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.shopfilter h2 {
    font-size: 35px;
    font-weight: 700;
    color: #696969;
    font-family: 'Spartan', sans-serif;
}

.shopfilter select {
    padding: 15px;
    width: 350px;
    font-family: 'Spartan', sans-serif;
    background-image: url(/images/select.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    border: #ededed 2px solid;
    cursor: pointer;
    font-size: 20px;
}

.product_actions .added i {
    font-size: 20px;
    margin-right: 10px;
}

.product_kleuren {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
}

.product_kleuren>label {
    position: relative;
}

.product_kleuren>label div {
    width: 5pc;
    height: 3pc;
    border: 2px solid #eee;
    border-radius: 5px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    color: #eee;
    margin-right: 4px;
    z-index: 2;
    position: relative;
}

.product_kleuren>label div>span {
    display: block;
    position: relative;
    top: 2px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
}

.product_kleuren>label input {
    opacity: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.product_kleuren>label input:checked+div {
    border: 2px solid red;
}

.maat_select {
    width: 100%;
    padding: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 1em;
    color: #1C1B1B;
    letter-spacing: 4px;
    background-color: transparent;
    border: 1px solid #ddd;
    background-image: url(/images/select.png);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
}

.product_more_info {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 150%;
    font-weight: 200;
    font-size: 20px;
    color: #4C4C4C;
    width: 100%;
    margin-bottom: 20px;
    padding: 30px 10px;
}

.product_more_info h2 {
    font-size: 1.3em;
    font-weight: 700;
    color: #D23B3D;
    margin-top: 25px;
    margin-bottom: 5px;
}

.product_more_info ul {
    list-style-type: disc;
    padding-left: 20px;
}

.product_sfeerfoto {
    width: 100%;
    margin: 0 auto;
    display: flex;
    position: relative;
    background-color: black;
}

.product_sfeerfoto>div {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    max-width: 1600px;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.product_sfeerfoto h2 {
    font-size: 59px;
    font-weight: 600;
    line-height: 110%;
    max-width: 630px;
    color: #fff;
    margin-bottom: 40px;
}

.product_sfeerfoto button {
    padding: 10px 30px;
    background-color: #D23B3D;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 200px;
    font-family: Montserrat, sans-serif;
}

.product_sfeerfoto>img {
    width: 100%;
    position: relative;
    z-index: 1;
    opacity: .7;
}

.amount_select {
    width: 200px;
    padding: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 200;
    font-size: 1.2em;
    background-color: #F5F5F5;
    border: none;
}

.sharing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
}

.sharing a {
    color: #7a7979 !important;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: all .3s;
    border: 2px solid #ffb7b2;
    font-weight: 700;
    opacity: 0.5;
    background-color: #ffb7b2 !important;
}

.sharing a:hover {
    transform: scale(1.15);
}

.sharing a i {
    font-size: 16px;
    color: #666565;
}

.sharing p {
    font-weight: 400;
    color: #353535;
    padding-top: 3px;
    font-size: 14px;
    margin-right: 10px;
}


/* einde shop */


/* Winkelwagen */

.shoppingcart_holder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FAFAFA;
    position: relative;
}

.shoppingcart_holder::after {
    width: 50%;
    background-color: #fff;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    content: "";
    z-index: 0;
}

.gegevens_holder {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.winkelwagen_pagina,
.gegevens_pagina {
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
    padding: 0 10px;
}

.winkelwagen_pagina>h1,
.gegevens_pagina h1 {
    width: 100%;
    padding: 40px 0;
    padding-bottom: 10px;
    font-size: 24px;
    color: #1C1B1B;
}

.main {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.main img {
    width: 50px;
    margin-right: 20px;
}

.shopping_cart {
    width: 100%;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
}

.shopping_cart article {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding: 15px;
    border-bottom: 2px dashed #e8e8e8;
}

.shopping_cart article:first-of-type {
    background-color: #f6f6f6;
    border-bottom: none;
}

.shopping_cart article:first-of-type .title {
    color: #1C1B1B;
    font-weight: 200;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.shopping_cart article:first-of-type .aantal {
    min-width: 150px;
    color: #1C1B1B;
    text-align: center;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    border: none;
}

.shopping_cart article:first-of-type .actions {
    visibility: hidden;
    min-width: 40px;
}

.sub_article {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.shopping_cart article:last-of-type {
    border-bottom: none;
}

.shopping_cart article h2 {
    font-weight: 400;
    font-style: normal;
    color: #1c1b1b;
    transition: color 0.2s ease-in-out;
    font-size: 18px;
    line-height: 140%;
}

.shopping_cart article h3 {
    width: 100%;
    position: relative;
    z-index: 2;
    color: #6a6a6a;
    font-size: 16px;
}

.sub_article .aantal {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    white-space: nowrap;
}

.sub_article .aantal input {
    border: none;
    width: 50px;
    text-align: center;
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
}

.sub_article .aantal i {
    width: 50px;
    height: 50px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.sub_article .aantal input[type=number]::-webkit-outer-spin-button,
.sub_article .aantal input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sub_article .aantal input[type=number] {
    -moz-appearance: textfield;
}

.sub_article .price {
    min-width: 200px;
    color: #1C1B1B;
    font-size: 16px;
    text-align: center;
}

.sub_article .actions {
    background-color: #fff;
    color: #C4242C;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    -ms-align-items: center;
    align-items: center;
    padding-left: 20px;
    border-left: 1px solid #e8e8e8;
}

.sub_article .actions i {
    transition: all .5s;
}

.sub_article .actions:hover i {
    transform: scale(1.4);
}

.financial dl {
    border-top: 2px solid #e1e1e1;
    margin-top: 10px;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.financial dt {
    font-size: 16px;
    font-weight: 200;
    color: #353535;
}

.financial dl>div {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    padding: 12px 0;
}

.financial dl>div:last-of-type {
    border-top: 2px dashed #e1e1e1;
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-top: 10px;
}

.financial dl>div:last-of-type dt {
    color: #1C1B1B;
    font-weight: 700;
}

.financial dd {
    min-width: 150px;
    text-align: right;
    font-size: 15px;
    font-weight: 400;
    color: #353535;
}

.goto_prev {
    color: #1C1B1B;
}

.goto_prev i {
    margin-right: 10px;
    transition: all 0.8s ease;
}

.goto_prev:hover i {
    transform: translateX(-10px);
}

.goto_next {
    display: inline-block;
    margin-top: 30px;
    background-color: #ffb7b2;
    border: 2px solid #ffb7b2;
    padding: 7px 20px;
    color: #353535;
    letter-spacing: 1px;
    font-size: 15px;
    transition: all 0.8s ease;
    cursor: pointer;
}

.goto_next:hover {
    background-color: transparent;
}

#pay {
    padding: 15px 30px;
    background-color: #1C1B1B;
    color: white;
    font-weight: 400;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: 12px;
    border: 1px solid black;
    transition: all .3s;
    cursor: pointer;
}

#pay:hover {
    color: #1C1B1B;
    background-color: transparent;
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding: 20px 0;
    margin-top: 30px;
}

.voucher {
    width: 100%;
    border-top: 2px solid #e1e1e1;
    padding: 20px 0;
    padding-top: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.voucher>p {
    padding: 10px 20px;
    border: 1px solid #353535;
    color: #353535;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
}

.voucher .message .error {
    color: #B85348;
    padding-bottom: 5px;
    font-weight: 200;
}

.voucher>p:hover {
    transform: scale(1.1);
    background-color: #353535;
    color: #fff;
}

.voucher_code {
    display: none;
}

.voucher_code input[type=text] {
    padding: 10px;
    color: #1C1B1B;
    border: none;
    font-size: 14px;
    background-color: #f4f4f4;
    font-weight: 400;
    font-family: Montserrat, sans-serif;
    width: 400px;
}

.voucher_code button {
    padding: 12px 20px;
    color: #fff;
    border: none;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    background-color: #1C1B1B;
    font-weight: 400;
    font-family: Montserrat, sans-serif;
}


/* Einde Winkelwagen */


/* Gegevens */

.checkbox {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    height: 25px;
    font-weight: 200;
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
    transition: all .3s;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    transition: all .3s;
    width: 20px;
    font-size: .8em;
    background-color: #E4E4E4;
}

.checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.checkbox input:checked~.checkmark {
    background-color: #000;
}

.checkmark i {
    content: "";
    position: absolute;
    display: none;
    font-size: 1.1em;
}

.checkbox input:checked~.checkmark i {
    display: block;
}

.checkbox .checkmark i {
    left: 4px;
    top: 4px;
    color: white;
}

.checkbox a {
    font-weight: 700;
    color: #000;
}

.gegevens_holder aside {
    width: 500px;
    padding: 50px 0;
    margin-right: 10px;
}

.gegevens_holder aside article {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gegevens_holder aside article img {
    width: 100px;
}

.gegevens_holder aside .remove-product {
    font-size: 20px;
    cursor: pointer;
    color: #ffb7b2;
}

.gegevens_holder aside .aantal {
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 10px;
}

.gegevens_holder aside .aantal i {
    color: #252525;
    cursor: pointer;
}

.gegevens_holder aside .aantal input {}

.gegevens_holder aside .aantal input {
    width: 50px;
    border: 1px solid #D5D5D5;
    padding: 5px;
    margin: 0 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gegevens_holder aside article>div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.gegevens_holder aside article div div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 15px;
}

.gegevens_holder aside article div h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.gegevens_holder aside article div h3 {
    font-size: 14px;
    font-weight: 200;
    color: #353535;
}

.gegevens_holder .totaalprijs {
    width: 100%;
    border-top: #E1E1E1 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.gegevens_holder aside .veiligbetalen {
    width: 100%;
    background-color: #ffffff;
    margin-top: 40px;
    padding: 30px;
    border: 1px solid #D5D5D5;
}

.gegevens_holder aside .veiligbetalen h2 {
    font-size: 22px;
    margin-bottom: 15px;
    border-top: 1px solid #D5D5D5;
    padding-top: 20px;
    margin-top: 20px;
}

.gegevens_holder aside .veiligbetalen h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.gegevens_holder aside .betaalmethodes {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.gegevens_holder aside .betaalmethodes img {
    width: 35px;
    margin-right: 10px;
}

.gegevens_holder aside .veiligbetalen a {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    font-weight: 200;
    padding: 8px 0;
    color: #353535;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.gegevens_holder aside .veiligbetalen a i {
    width: 30px;
    font-size: 18px;
}

.webshop-form {
    padding: 50px;
    background-color: #fff;
    border-right: #E1E1E1 1px solid;
    width: calc(100% - 550px);
}

.webshop-form fieldset>div {
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.webshop-form .field {
    position: relative;
    margin-bottom: 15px;
}

.webshop-form .field input,
.webshop-form .field select,
.webshop-form .field textarea,
.shoppingcart_main #servicepunt,
.cadeaubon-item input {
    width: 100%;
    background-color: white;
    color: #333333;
    border: 1px solid #d9d9d9;
    letter-spacing: 0;
    padding: 13px 11px;
    font-size: 14px;
    height: initial;
    font-family: 'Spartan', sans-serif;
}

.webshop-form .field_caret {
    border-left: 1px rgba(179, 179, 179, 0.5) solid;
    height: 43%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0%, -50%);
}

.webshop-form .field_caret i {
    font-size: 20px;
    color: #919191;
    margin-left: 10px;
}

.webshop-form .field label {
    position: absolute;
    left: 13px;
    top: 16px;
    font-size: 14px;
    transition: all .2s;
}

.webshop-form .floatlabel label {
    top: 8px;
    font-size: 10px;
    color: #737373;
    font-weight: 700;
}

.webshop-form .floatlabel input,
.webshop-form .floatlabel select,
.webshop-form .floatlabel textarea {
    padding-top: 20px;
    padding-bottom: 6px;
}

.webshop-form .field input:focus {
    border: 1px solid #000;
}

.webshop-form input[type=submit] {
    display: inline-block;
    background-color: #ffb7b2;
    border: 2px solid #ffb7b2;
    padding: 7px 20px;
    color: #353535;
    letter-spacing: 1px;
    font-size: 15px;
    transition: all 0.8s ease;
    cursor: pointer;
}

.webshop-form input[type=submit]:hover {
    background-color: white;
}

.webshop-form #field_Voornaam,
.webshop-form #field_Naam {
    width: 49%;
}

.webshop-form #field_Gemeente {
    width: 80%;
}

.webshop-form #field_Huisnummer,
.webshop-form #field_Postcode {
    width: 18%;
}

.webshop-form #field_Land,
.webshop-form #field_Telefoon,
.webshop-form #field_GSM,
.webshop-form #field_Email,
.webshop-form #field_Levnaam,
.webshop-form #field_Opmerking,
.webshop-form #field_Adres,
.webshop-form #field_Bedrijfsnaam,
.webshop-form #field_BTW {
    width: 100%;
}

.leverklik {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
}

.checkboxField label {
    width: initial !important;
    margin-right: 10px;
}

.checkboxField {
    color: #000;
}

.checkboxField input {
    width: 20px !important;
}

.webshop-form h2 {
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 15px;
    padding-top: 20px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
    border-top: 2px solid #f4f4f4;
    width: 100%;
}

.gegevens_input {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    border-top: 2px solid #f4f4f4;
    padding-top: 20px;
}

.gegevens_input label a {
    color: #000;
    font-weight: 700;
}

.gegevens_controleren {
    display: none;
}

.webshop_Adres {
    width: 100% !important;
}

.webshop_Postcode {
    width: 31.33% !important;
}

.webshop_Gemeente {
    width: 66.66% !important;
}

.input_gegevens {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.input_gegevens p {
    font-size: 16px;
    font-weight: 200;
    color: #353535;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    width: 47%;
    margin-bottom: 10px;
}

.input_gegevens p span {
    font-weight: 700;
}

.input_producten {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 0;
    width: 100%;
}

.input_producten article {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    border-bottom: 2px dashed #f7f7f7;
    margin-bottom: 5px;
    padding: 10px 0;
    letter-spacing: 1px;
}

.input_producten article>div:first-of-type {
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
}

.input_producten article img {
    width: 50px;
    margin-right: 20px;
}

.input_producten article:last-of-type {
    border-bottom: none;
}

.big {
    font-size: 16px;
    font-weight: 400;
    color: #1C1B1B;
    margin-bottom: 10px;
}

.small {
    font-size: 1em;
    font-weight: 400;
    color: #8a8a8a;
}

.input_producten article div:last-of-type {
    font-size: 16px;
    color: #1C1B1B;
    font-weight: 400;
}

.input_producten article div:last-of-type span {
    margin-left: 20px;
}

.controle_part .financial {
    width: 100%;
}


/* Einde Gegevens */


/* Controleren */

.controleren_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.controleren_content>h2 {
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-top: 30px;
    border-bottom: 2px dashed #f0f0f0;
    font-size: 20px;
    color: #394056;
    font-weight: 500;
}

.controle_item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    font-size: 1.2em;
    padding: 7px 0;
    font-family: "effra", ssans-erif;
}

.controleren_content article {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.controleren_content article img {
    width: 100px;
}

.controleren_content article>div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.controleren_content article div div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 15px;
}

.controleren_content article div h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.controleren_content article div h3 {
    font-size: 14px;
    font-weight: 200;
    color: #353535;
}

.controleren_content .totaalprijs {
    width: 100%;
    border-top: #E1E1E1 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.controle_item h3 {
    font-weight: 500;
    color: #353535;
}

.controle_item p {
    font-weight: 200;
    color: #353535;
}

#subm:disabled {
    background-color: #848484;
}

.controle_product {
    width: 49%;
    margin-bottom: 2%;
    border: 2px solid #efefef;
    padding: 10px;
}

.controle_product img {
    width: 100%;
    max-width: 200px;
    margin-right: 10px;
}

.controle_product h3 {
    font-size: 1.1em;
    font-weight: 700;
    color: #353535;
    margin-bottom: 5px;
}

.product_titel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.controle_product p {
    line-height: 150%;
    color: #848484;
    margin-bottom: 5px;
    margin-top: 5px;
}

.controle_product p big {
    font-size: 1em;
}

.controle_product p small {
    font-size: .9em;
}

.controle_product p span {
    display: block;
    font-weight: 400;
    font-size: 1.1em;
    color: #CDA03A;
}

.remark_btn {
    background-color: #f9f1df;
    color: #CDA03A;
    padding: 10px;
    border: 0;
    width: 100%;
    border-radius: 4px;
    font-family: 'effra', sans-sans-serif;
    cursor: pointer;
}

.remark_btn.add_btn {
    background-color: #f9f1df;
}

.remark_btn.save_btn {
    display: none;
}

.show-disclaimer {
    cursor: pointer;
}

.remark textarea {
    width: 100%;
    border: 1px solid #39ac6a;
    margin-bottom: 5px;
    padding-left: 5px;
    padding-top: 3px;
}

.remark_holder {
    margin-bottom: 8px;
}

.gekozen_ophaalmoment {
    line-height: 150%;
    color: #353535;
    width: 100%;
    font-size: 1.2em;
}

.infoevent {
    font-size: 1.2em;
    font-weight: 200;
    text-align: center;
    color: #353535;
    background-color: #e4f8ec;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}

.gekozen_ophaalmoment small {
    width: 100%;
    font-size: .8em;
    display: inline-block;
}

.date_op h2 {
    font-size: 25px;
    color: #EC008C;
    margin-bottom: 0;
    font-family: 'effra', sans-serif;
}

.date_op p span {
    font-weight: 700;
    color: #353535;
}

.date_op p {
    font-size: 18px;
    font-weight: 200;
    color: #353535;
    display: flex;
    padding: 3px 0;
    justify-content: space-between;
    align-items: center;
}

.date_op i {
    margin-right: 10px;
}


/* Einde Controleren */


/* Parallax */

.home_ak {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.dark_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.home_ak .content {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

.home_ak .content h2 {
    color: #fff;
    font-weight: 400;
    text-align: center;
    font-size: 100px;
    padding-bottom: 50px;
}

.home_ak .content h2::after {
    content: "";
    position: absolute;
    border-top: 1px solid #fff;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 0px;
}

.home_ak .content a {
    padding: 15px 10px;
    font-weight: 200;
    font-size: 22px;
    display: inline-block;
    color: white;
    transition: all 1s ease;
    margin-top: 30px;
    letter-spacing: 2px;
}

.home_ak .content a:hover {
    transform: scale(1.1);
}


/* Blokken */

.blokken {
    width: 80%;
    margin: auto;
}

.blokken article {
    display: flex;
    flex-direction: row;
    align-items: center;
    -ms-align-items: center;
}

.blokken article:nth-of-type(even) .img {
    order: 1;
}

.blokken article:nth-of-type(even) .content {
    order: 2;
}

.blokken article:nth-of-type(odd) .img {
    order: 2;
}

.blokken article:nth-of-type(odd) .content {
    order: 1;
}

.blokken article img {
    width: 100%;
}

.blokken article .img {
    width: 45%;
}

.blokken article .content {
    width: 55%;
    padding: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    -ms-align-items: center;
}

.blokken article .content .count {
    color: #a08b56;
    font-size: 40px;
    font-family: 'Spartan', sans-serif;
    padding-right: 40px;
}

.blokken article .content .c {
    color: #353535;
    font-weight: 200;
    line-height: 130%;
    font-size: 20px;
    border-left: 1px solid #a08b568e;
    padding: 10px 0;
    padding-left: 40px;
}

.blokken article .content .c a {
    color: #a08b56;
    display: block;
    margin-top: 20px;
    letter-spacing: 2px;
    font-size: 15px;
    width: fit-content;
    border-bottom: 1px solid #a08b567c;
}


/* TIMELINE */

.timelineholder {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.timelineholder::after {
    content: '';
    position: absolute;
    width: 10px;
    background-color: #000;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.timelineoverlayholder {
    width: 10px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    z-index: 9;
    overflow: hidden;
    top: 0;
    bottom: 0;
}

.timelineoverlay {
    background-color: #ffb7b2;
}

.timeline {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.timeline h2 {
    color: #353535;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
    font-family: 'Spartan', sans-serif;
}

.timeline p {
    line-height: 150%;
    color: #a3a3a3;
    font-weight: 200;
    font-size: 18px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 5px;
    background-color: #e1e1e1;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline_quote {
    width: 100%;
    color: #252525;
    position: relative;
    padding: 45px;
    background-color: #f9f9f9;
    border-radius: 20px;
}

.timeline_quote i:first-of-type {
    color: #ffb7b2;
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 25px;
    opacity: .5;
}

.timeline_quote i:last-of-type {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 25px;
    color: #ffb7b2;
    opacity: .5;
}

.timeline_container {
    padding: 30px 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    background-color: inherit;
    width: 100%;
}

.timeline_container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 50%;
    background-color: #ffb7b2;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.timeline_item_content {
    padding: 20px 0;
    background-color: white;
    position: relative;
    border-radius: 6px;
    width: 45%;
}

.left_time {
    margin-right: 5%;
}

.right_time {
    margin-left: 5%;
}

.imageleft {
    margin-left: 5%;
}

.imageright {
    margin-right: 5%;
}

.timeline_other_content {
    width: 45%;
}

.timeline_other_content img {
    width: 100%;
}

.conclusie {
    max-width: 600px;
    width: 96%;
    margin: 0 auto;
    margin-top: -5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    background-color: #8BCF97;
    margin-bottom: 50px;
    padding: 25px;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    -webkit-box-shadow: 5px 6px 23px 0px rgba(82, 82, 82, 0.2);
    -moz-box-shadow: 5px 6px 23px 0px rgba(82, 82, 82, 0.2);
    box-shadow: 5px 6px 23px 0px rgba(82, 82, 82, 0.2);
}

.conclusie h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 30px;
    margin-top: 10px;
}

.left_time h2 {
    text-align: right;
}

.left_time p {
    text-align: right;
}

.conclusie p {
    text-align: center;
    color: #fff;
    line-height: 150%;
}


/* EINDE TIMELINE */


/* SFEERBEELDEN */

.in_beeld {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}

.in_beeld article {
    width: 24%;
    margin: .5%;
    cursor: pointer;
    overflow: hidden;
}

.in_beeld article .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    opacity: 0;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    color: white;
    font-size: 2em;
    transition: all .3s;
    z-index: 2;
}

.in_beeld article:hover .overlay {
    opacity: 1;
}

.in_beeld article:hover img {
    transform: scale(1.1);
}

.in_beeld article img {
    width: 100%;
    transition: all .5s;
}


/* EINDE SFEERBEELDEN */


/* CONTACT */

.contact_pagina {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 150px 10px 0 10px;
    margin-top: 00px;
}

.contact_info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #F4F4F4;
    padding: 120px 80px;
    margin-top: 20px;
    width: 100%;
    position: relative;
}

.contact_info p {
    font-size: 20px;
    font-weight: 200;
    color: #353535;
}

.contact_gegevens {
    width: 35%;
}

.contact_gegevens h1 {
    font-weight: 500;
    color: #353535;
    margin-bottom: 20px;
    font-size: 2em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    -ms-align-items: flex-end;
    font-family: 'Big Shoulders Stencil Display';
}

.contact_gegevens h1 i {
    font-size: 22px;
    margin-right: 15px;
}

.contact_gegevens h2 {
    font-weight: 200;
    font-size: 20px;
    line-height: 180%;
    color: #353535;
}

.contact_gegevens p {
    padding-bottom: 10px;
}

.contact_split {
    margin-top: 60px;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact_split h2 {
    font-weight: 700;
    color: #353535;
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 130%;
    font-family: 'Big Shoulders Stencil Display';
}

.contact_split div {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.contact_split div p {
    padding: 10px;
    padding-left: 50px;
    position: relative;
    color: #252525;
    font-family: 'Big Shoulders Stencil Display';
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 200;
}

.contact_split div p a {
    color: #252525;
}

.contact_split div p i {
    position: absolute;
    left: 0;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    color: #353535;
    transform: translateY(-50%);
    font-size: 16px;
}

.contact_split img {
    width: 200px;
    overflow: hidden;
    position: absolute;
    border-radius: 50%;
    top: -60px;
    right: -60px;
    border: 5px solid transparent;
    background-size: 100% 100%, 50% 50%, 50% 50%, 50% 50%, 50% 50%;
    background-repeat: no-repeat;
    background-image: linear-gradient(white, white), linear-gradient( 0deg, transparent 0, #f4f4f4 0), linear-gradient( 10deg, #ffb7b2 100%, #f4f4f4 60%), linear-gradient( 10deg, transparent 0, #f4f4f4 0), linear-gradient( 60deg, transparent 0, #f4f4f4 0);
    background-position: center center, left top, right top, left bottom, right bottom;
    background-origin: content-box, border-box, border-box, border-box, border-box;
    background-clip: content-box, border-box, border-box, border-box, border-box;
}

.contact_subject {
    color: #353535;
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 2px;
    font-family: 'Big Shoulders Stencil Display';
    margin-left: 10px;
    margin-bottom: 30px;
    padding-bottom: 2px;
    border-bottom: 1px solid #353535;
}

.contact_subject span {
    font-weight: 600;
}

.contact_formulier {
    width: 55%;
    margin-top: 40px;
}

.contact_form {
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact_label {
    width: 100%;
    font-size: 1.2em;
    font-weight: 200;
    color: #353535;
    display: inline-block;
    margin-bottom: 5px;
}

.contact_form input[type=text],
.contact_form input[type=email],
#NaamInput input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #F4F4F4;
    background-color: transparent;
    padding: 8px 0px;
    padding-bottom: 3px;
    color: #353535;
    font-size: 23px;
    font-weight: 200;
    margin-bottom: 40px;
    padding-left: 10px;
    letter-spacing: 2px;
    font-family: 'Big Shoulders Stencil Display';
}

.contact_form input[type=text]::placeholder,
.contact_form input[type=email]::placeholder,
.contact_form textarea::placeholder {
    color: #a3a3a3;
}

.contact_form input[type=text]:focus,
.contact_form input[type=email]:focus,
#NaamInput input:focus {
    border-bottom: 2px solid #353535;
    font-weight: 400;
}

.contact_form input[type=text]:focus::placeholder,
.contact_form input[type=email]:focus::placeholder,
#NaamInput input:focus::placeholder,
.contact_form textarea:focus::placeholder {
    color: #353535;
}

.contact_form textarea {
    background-color: transparent;
    border: none;
    width: 100%;
    border-bottom: 2px solid #F4F4F4;
    border-radius: 0px;
    padding: 10px 0px;
    color: #353535;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 2px;
    font-size: 23px;
    height: 100px;
    padding-left: 10px;
    font-family: 'Big Shoulders Stencil Display';
}

.contact_form textarea:focus {
    border-bottom: 2px solid #353535;
    font-weight: 400;
}

.contact_form select {
    width: 100%;
    color: #353535;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #f6f6f6;
    background-color: #F4F4F4;
    height: 50px;
    font-size: .9em;
    font-weight: 700;
    background-image: url(/images/select2.png);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

.contact_form input[type=submit] {
    padding: 5px 30px;
    background: transparent;
    border: 1px solid #353535;
    font-weight: 200;
    color: #353535;
    font-size: 1.2em;
    font-weight: 200;
    transition: all .3s;
    font-family: 'Spartan', sans-serif;
}

.contact_form input[type=submit]:hover {
    background-color: #353535;
    color: #fff;
}

.contact_formulier #NaamInput {
    width: 100%;
}

.contact_formulier #EmailInput {
    width: 100%;
}

#dasmap {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: 600px;
    position: relative;
    z-index: 0;
    margin-top: -60px;
}


/* Instagram */

.insta_titel {
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.insta_titel .line-hold {
    position: relative;
}

.insta_titel .line-hold h2 {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: #fff;
    color: #a08b56;
    display: inline-block;
    padding: 0 100px;
}

.band .insta_titel h3 {
    background-color: #f8eaf2;
}

.insta_titel .line-hold:after {
    display: block;
    height: 1px;
    background-color: #a08b56;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50%;
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.small.insta_titel {
    padding: 30px 0;
}

.instagram_feed {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px;
    padding-top: 30px;
    background-color: white;
    margin-top: 0px;
    margin-bottom: 30px;
}

.instagram_feed .instagram_post {
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    margin: 0 1%;
}

.instagram_feed .instagram_post img {
    width: 100%;
}

.instagram_feed .instagram_post video {
    width: 100%;
}

.instagram_feed .instagram_post .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    color: white;
    font-size: 3em;
    transition: all .3s;
}

.instagram_feed .instagram_post:hover .overlay {
    opacity: 1;
}


/* Einde Instagram */


/* Footer */

footer {
    background-color: #cccbc9;
    padding: 30px 10px;
    padding-bottom: 7px;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.footer_img {
    width: 100%;
    max-width: 200px;
    position: absolute;
    border-radius: 200px;
    right: 15%;
    top: -100px;
}

.innerfooter {
    display: flex;
    justify-content: space-around;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.footer_item {
    display: flex;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.sigholder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sigholder p {
    color: white;
    font-size: 14px;
    margin-bottom: 30px;
    font-family: 'Spartan', sans-serif;
}

.signature {
    max-width: 400px;
    width: 100%;
    opacity: .8;
    margin-bottom: 15px;
}

.sigholder div {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.sigholder a {
    color: white;
    font-family: 'Spartan', sans-serif;
    font-size: 18px;
    line-height: 130%;
    text-align: right;
}

.socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    margin: 0 !important;
}

.socials>a {
    border-radius: 100%;
    border: 1px solid white !important;
    background-color: white;
    color: #cccbc9;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-size: 18px;
    transition: all .5s;
}

.socials a i {
    color: #cccbc9;
}

.socials a:hover {
    background-color: #ffb7b2 !important;
    color: #353535 !important;
    border: 1px solid #ffb7b2 !important;
}

.socials a:hover i {
    color: #353535;
}

.footer_item img {
    width: 200px;
}

.footer_item h2 {
    font-size: 25px;
    font-weight: 700;
    color: white;
    font-family: 'Spartan', sans-serif;
    margin-bottom: 20px;
}

.footer_item div {
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    margin: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 200;
}

.footer_item div span {
    width: 40px;
    height: 20px;
}

.footer_item div span i {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_item div a {
    color: #fff;
    transition: all .3s;
    font-weight: 200;
    border-bottom: 1px solid transparent;
}

.footer_item div a:hover {
    border-bottom: 1px solid white;
}

.siteby {
    background-color: #3d3c3c;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.siteby>div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    -ms-align-items: center;
}

.siteby span {
    margin: 0 10px;
    color: #cccbc9;
    font-size: 14px;
    padding: 0;
}

.siteby a,
.siteby p {
    color: #cccbc9;
    font-size: 13px;
    letter-spacing: 0px;
    font-family: 'Nanum Myeongjo', serif;
}

.siteby .pulse {
    font-size: 12px;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% {
        color: #cccbc9;
    }
    5% {
        color: #fff;
    }
    10% {
        color: #cccbc9;
    }
    20% {
        color: #fff;
    }
    25% {
        color: #cccbc9;
    }
    50% {
        color: #cccbc9;
    }
    100% {
        color: #cccbc9;
    }
}

.slogan {
    padding: 100px 20px;
    padding-bottom: 130px;
    width: 70%;
    margin: auto;
    text-align: center;
    font-size: 75px;
    color: #cccbc9;
    font-weight: 700;
    line-height: 130%;
    font-family: 'Big Shoulders Stencil Display';
}

.slogan strong,
.slogan b {
    color: #353535;
}


/* Einde footer */


/* Media Query's */

@media screen and (max-width: 1500px) {
    .products,
    .navigatie,
    .mainshop {
        width: 70%;
    }
    .product_header,
    .shop_products,
    #content-container,
    .winkelwagen_pagina {
        max-width: 70%;
    }
    .product_description {
        width: 100%;
    }
    .slogan {
        width: 80%;
    }
}

@media screen and (max-width: 1400px) {
    .navigatie {
        width: 80%;
    }
    .instagram_feed .instagram_post {
        width: 270px;
        height: 270px;
    }
    footer .gegevens {
        max-width: 70%;
    }
    .blokken article .content {
        padding: 50px;
    }
}

@media screen and (max-width: 1300px) {
    .navigatie {
        width: 90%;
    }
    .products,
    .mainshop {
        width: 90%;
    }
    .product_header,
    .shop_products,
    #content-container,
    .winkelwagen_pagina {
        max-width: 90%;
    }
    .blokken {
        width: 90%;
    }
}

@media screen and (max-width: 1250px) {
    .instagram_feed .instagram_post {
        width: 260px;
        height: 260px;
    }
}

@media screen and (max-width: 1200px) {
    .shop {
        background-color: #ffb7b2;
        margin-right: 10px;
        height: 40px;
    }
    .curtain-click {
        position: relative;
        right: unset;
        top: unset;
        background-color: white;
        border: 2px solid #ffb7b2;
        width: 40px;
        height: 40px;
        padding: 10px;
        margin-right: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        -ms-align-items: center;
    }
    .curtain-click.tohide {
        display: none;
    }
    .curtain-click.mob {
        display: flex;
    }
    .curtain-click i {
        margin: 0;
        font-size: 25px;
    }
    #content-container h1 {
        margin-top: 50px;
    }
    .navigatie {
        flex-direction: row;
        justify-content: space-between;
        border: none !important;
        align-items: center;
    }
    .logo {
        width: 120px;
        margin-bottom: 0;
    }
    .contact_pagina {
        padding-top: 50px;
    }
    .contact_info {
        outline: none;
    }
    .contact_gegevens {
        margin-bottom: 20px;
        padding: 30px 10px;
    }
    .contact_gegevens h1 {
        justify-content: center;
    }
    .contact_gegevens,
    .contact_formulier {
        width: 100%;
        padding: 0 10px;
    }
    .contact_formulier {
        margin-top: 30px;
    }
    .contact_gegevens h1,
    .contact_gegevens h2 {
        text-align: center;
        line-height: 120%;
    }
    .contact_gegevens h1 {
        flex-direction: column;
        align-items: center;
        -ms-align-items: center;
    }
    .contact_gegevens>div {
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
        margin-top: 20px;
    }
    .contact_split {
        margin-top: 10px;
    }
    .contact_split div {
        padding: 20px;
    }
    #dasmap {
        margin-top: 15px;
        height: 400px;
    }
    .contact_gegevens>div a {
        display: flex;
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
        flex-direction: column;
    }
    .contact_split img {
        right: -10px;
    }
    .contact_split div {
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
    }
    .menubtn {
        display: block;
    }
    .tohide {
        display: none !important;
    }
    .home_ak .content {
        left: 0;
        transform: unset;
        transform: translateY(-50%);
        padding-left: 40px;
        padding-right: 40px;
    }
    .instagram_feed .instagram_post {
        width: 250px;
        height: 250px;
    }
    footer .gegevens {
        max-width: 80%;
    }
    .slogan {
        font-size: 60px;
    }
    .footer_img {
        right: 20px;
    }
    .aks_items .content h2 {
        font-size: 20px;
    }
    .topper_cart {
        margin-right: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .topper_cart.mob {
        display: flex;
    }
    .topper_cart i {
        font-size: 25px;
    }
}

@media screen and (max-width: 1160px) {
    .instagram_feed .instagram_post {
        width: 220px;
        height: 220px;
    }
}

@media screen and (max-width: 1150px) {
    .page_header .c,
    .aks .c,
    .product_description .c {
        width: 80%;
    }
    .page_header>h2,
    .product_description h2 {
        font-size: 22px;
    }
    .contact_split img {
        top: -30px;
    }
    .page_header {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 1100px) {
    .slogan {
        font-size: 55px;
    }
    .gegevens_holder aside .veiligbetalen {
        display: none;
    }
    .webshop-form {
        width: 100%;
        order: 2;
        border-right: none;
        padding: 20px 10px;
    }
    .gegevens_holder {
        flex-wrap: wrap;
    }
    .shoppingcart_holder::after {
        display: none;
    }
    .gegevens_holder aside {
        width: 100%;
        order: 1;
        padding: 20px 10px;
        border-bottom: #E1E1E1 1px solid;
    }
}

@media screen and (max-width: 1050px) {
    .instagram_feed .instagram_post {
        width: 200px;
        height: 200px;
    }
    .blokken article {
        flex-direction: column;
    }
    .blokken article .img {
        order: 1 !important;
        width: 100%;
    }
    .blokken article .content {
        order: 2 !important;
        width: 100%;
    }
    .aks_items .content h2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 1000px) {
    .home_ak .content h2 {
        font-size: 80px;
    }
    .contact_split img {
        width: 160px;
    }
    .product_header_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .product_header_content {
        width: 100%;
        max-width: 100%;
    }
    .product_header_content h1 {
        font-size: 20px;
        margin-bottom: 5px;
        padding-bottom: 0;
    }
    .product_header {
        flex-wrap: wrap;
        max-width: 100%;
    }
    .navigatie {
        width: 99%;
    }
    .products,
    .mainshop {
        width: 99%;
    }
    .product_header,
    .shop_products,
    #content-container,
    .winkelwagen_pagina {
        max-width: 99%;
    }
}

@media screen and (max-width: 950px) {
    .curtaindrop h2 {
        font-size: 35px;
    }
    .curtaindrop .c {
        font-size: 25px;
    }
    #content-container h1 {
        font-size: 2.5em;
        margin-bottom: 60px !important;
    }
    #content-container h2 {
        font-size: 1.8em;
    }
    .header_content>div img {
        width: 350px;
    }
    .in_beeld article {
        width: 32.33%;
    }
    .instagram_feed {
        justify-content: center;
        max-width: 90%;
    }
    .instagram_feed .instagram_post {
        width: 300px;
        height: 300px;
        margin: 1%;
    }
    footer .gegevens {
        max-width: 90%;
    }
}

@media screen and (max-width: 920px) {
    .disclaimer {
        padding-left: 0;
        margin-top: 10px;
    }
    .contact_split img {
        top: -30px;
    }
}

@media screen and (max-width: 850px) {
    .home_banner article>div div {
        display: none;
    }
    .slogan {
        width: 100%;
        padding: 80px 30px;
        font-size: 50px;
    }
    .footer_img {
        right: 1%;
        max-width: 180px;
    }
    .aks {
        width: 99%;
        padding: 60px 0;
    }
    .aks_items {
        justify-content: flex-start;
    }
    .aks article {
        width: 48%;
    }
    .products,
    .home_banner {
        width: 90%;
    }
    .blokken article .content {
        flex-direction: column;
        align-items: flex-start;
        -ms-align-items: flex-start;
        padding: 20px 0 50px 0;
    }
    .blokken article .content .count {
        padding: 0;
        padding-bottom: 5px;
        font-size: 35px;
    }
    .blokken article .content .c {
        padding: 0;
        border: none;
    }
}

@media screen and (max-width: 840px) {
    .timeline_item_content {
        width: 100%;
        padding: 0;
        order: 1;
    }
    .timeline {
        overflow: auto;
    }
    .timeline_other_content {
        width: 100%;
        order: 2;
        text-align: left;
    }
    .left_time h2 {
        text-align: left;
    }
    .left_time p {
        text-align: left;
    }
    .timeline_other_content img {
        width: 100%;
        margin-top: 10px;
    }
    .timeline_container {
        width: 90%;
        float: right;
        flex-wrap: wrap;
    }
    .timelineoverlayholder {
        left: 5%;
    }
    .timeline::after {
        left: 5%;
    }
    .timeline_container::after {
        left: -5.6%;
        width: 25px;
        height: 25px;
    }
    .timeline_quote {
        margin-top: 20px;
    }
    .right_time,
    .imageleft {
        margin-left: 0;
    }
    .imageright {
        margin-right: 0;
    }
    .timeline_container {
        padding: 10px;
    }
}

@media screen and (max-width: 800px) {
    .res-nav {
        max-width: 100vw;
        right: -100vw;
    }
    .menu-is-open {
        right: 0;
    }
    .page_header.home {
        padding-top: 60px;
    }
    .instagram_feed .instagram_post {
        width: 280px;
        height: 280px;
    }
    .suggesties article {
        margin-bottom: 0;
    }
    .slogan {
        font-size: 40px;
    }
    .shop_products article {
        width: 48%;
    }
    .producten_preview .producten article {
        width: 98%;
    }
    .winkelwagen_pagina>h1,
    .gegevens_pagina h1 {
        font-size: 18px;
    }
    .financial dt,
    .financial dd {
        font-size: 14px;
    }
    .shopping_cart article h2 {
        font-size: 15px;
    }
    .shopping_cart article {
        flex-wrap: wrap;
    }
    .goto_prev {
        font-size: 14px;
    }
    .goto_next {
        font-size: 14px;
        padding: 10px 20px;
    }
    .sub_article .price {
        font-size: 14px;
    }
    .sub_article {
        width: 100%;
    }
    .main {
        width: 100%;
    }
    .shopping_cart article:first-of-type {
        display: none;
    }
    .controle_item {
        font-size: 15px;
    }
    .controleren_content>h2 {
        font-size: 20px;
    }
    .controleren_content article div h2 {
        font-size: 16px;
    }
    .controleren_content article div h3 {
        font-size: 12px;
    }
    .controleren_content article img {
        width: 80px;
    }
    .controleren_content .totaalprijs {
        font-size: 16px;
    }
}

@media screen and (max-width: 750px) {
    .curtaindrop h2 {
        font-size: 30px;
    }
    .curtaindrop .c {
        font-size: 22px;
    }
    .page_header h1 {
        font-size: 40px;
    }
    .aks h3,
    .product_description h1 {
        font-size: 30px;
    }
    .page_header .c,
    .aks .c,
    .product_description .c {
        font-size: 18px;
        width: 90%;
    }
    .instagram_feed .instagram_post {
        width: 260px;
        height: 260px;
    }
    .home_banner .slick-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

@media screen and (max-width: 700px) {
    .curtain-click {
        padding: 0;
    }
    .home_ak .content h2 {
        font-size: 60px;
    }
    .in_beeld article {
        width: 49%;
    }
    footer .gegevens {
        max-width: 95%;
    }
    .contact_form input[type=submit] {
        margin-top: 15px;
        float: right;
    }
}

@media screen and (max-width: 680px) {
    .instagram_feed .instagram_post {
        width: 240px;
        height: 240px;
    }
}

@media screen and (max-width: 650px) {
    .page_header {
        padding-bottom: 30px;
    }
    #content-container h1 {
        font-size: 2em;
    }
    .curtaindrop h2 {
        font-size: 25px;
    }
    .curtaindrop .c {
        font-size: 20px;
    }
    .curtaindrop .curtain-close {
        top: 20px;
        right: 20px;
    }
    #content-container h1 {
        font-size: 2.1em;
    }
    #content-container h2 {
        font-size: 1.5em;
    }
    .instagram_feed {
        max-width: 100%;
        margin-bottom: 0;
    }
    .instagram_feed .instagram_post {
        width: 240px;
        height: 240px;
    }
    .slogan {
        font-size: 35px;
        padding: 50px 30px;
    }
    footer .gegevens {
        flex-direction: column;
        align-items: center;
        -ms-align-items: center;
    }
    footer .gegevens>div {
        justify-content: center;
        align-items: center;
        -ms-align-items: center;
        margin-bottom: 30px;
    }
    .contact_split img {
        top: -10px;
        width: 140px;
    }
    .contact_split div {
        justify-content: flex-start;
        align-items: flex-start;
        -ms-align-items: flex-start;
    }
    .contact_split h2 {
        font-size: 22px;
    }
    .contact_split p {
        font-size: 17px;
    }
    .aks {
        padding-top: 0;
    }
    .timeline h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .timeline p {
        font-size: 16px;
    }
    .timelineoverlayholder {
        width: 5px;
    }
    .timeline_container::after {
        left: -5.6%;
        width: 20px;
        height: 20px;
    }
    .products .grid,
    .products .more_prods {
        grid-gap: 5px;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: row;
    }
    .products .big {
        grid-row: 1 / -1;
    }
    .webshop-form #field_Voornaam,
    .webshop-form #field_Naam,
    .webshop-form #field_Huisnummer,
    .webshop-form #field_Postcode,
    .webshop-form #field_Gemeente {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .page_header h1 {
        font-size: 2em;
    }
    .page_header>h2 {
        font-size: 20px;
    }
    .aks h3,
    .product_description h1 {
        font-size: 25px;
    }
    .page_header .c,
    .aks .c,
    .product_description .c {
        font-size: 18px;
        width: 95%;
    }
    .contact_pagina {
        padding-top: 20px;
    }
    .contact_gegevens h1 {
        font-size: 1.7em;
    }
    .contact_gegevens h2:not(.contact_split h2) {
        font-size: 18px;
    }
    .instagram_feed .instagram_post {
        width: 220px;
        height: 220px;
    }
    .slogan {
        font-size: 30px;
        padding: 50px 20px;
    }
    .disclaimer,
    .socials a {
        font-size: .8em;
    }
    .disclaimer span {
        margin: 0 1px;
    }
    .aks article {
        width: 95%;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .aks_items .content {
        padding: 20px 10px;
    }
    .aks_link {
        padding: 20px 0;
    }
    .aks_link a {
        font-size: 14px;
        padding: 12px 30px;
    }
    .signature {
        max-width: 300px;
    }
    .siteby {
        font-size: 14px;
    }
    .siteby a,
    .siteby p {
        font-size: 14px;
    }
    .shop_products article {
        width: 98%;
    }
}

@media screen and (max-width: 550px) {
    .navitem a {
        font-size: 25px;
    }
    .menubtn,
    .curtain-click,
    .closebtn {
        width: 35px;
        height: 35px;
    }
    .shop {
        height: 35px;
    }
    .logo {
        width: 100px;
    }
    .navigatie nav {
        margin-left: 0;
    }
    .res-nav .res-logo {
        max-width: 80px;
    }
    .privcnt {
        flex-wrap: wrap;
        height: initial !important;
        line-height: 120%;
    }
    .contact_split img {
        border: none;
        width: 120px;
        top: -30px;
    }
    .contact_form input[type=submit] {
        font-size: 1em;
        padding: 4px 25px;
    }
    .privcnt {
        flex-wrap: wrap;
        height: initial !important;
        line-height: 120%;
    }
    .products,
    .navigatie,
    .blokken,
    .home_banner {
        width: 95%;
    }
    .shop_products,
    #content-container {
        max-width: 95%;
    }
    .blokken article .content .count {
        font-size: 30px;
    }
    .blokken article .content .c {
        font-size: 18px;
    }
}

@media screen and (max-width: 530px) {
    .instagram_feed .instagram_post {
        width: 180px;
        height: 180px;
    }
}

@media screen and (max-width: 500px) {
    #content-container h1 {
        font-size: 1.8em;
    }
    .home_ak .content h2 {
        font-size: 50px;
    }
    .disclaimer {
        display: flex;
        flex-direction: column;
        align-items: center;
        -ms-align-items: center;
        line-height: 160%;
    }
    .socials {
        padding-bottom: 10px;
    }
    .disclaimer a:last-of-type {
        display: flex;
        align-items: center;
        -ms-align-items: center;
    }
    .disclaimer span {
        display: none;
    }
    .footer_img {
        max-width: 140px;
        top: -70px
    }
    .contact_split img {
        width: 120px;
        top: -30px;
        right: -12px;
    }
}

@media screen and (max-width: 450px) {
    .navitem a {
        font-size: 25px;
    }
    .menubtn,
    .curtain-click,
    .closebtn {
        width: 30px;
        height: 30px;
    }
    .shop {
        height: 30px;
    }
    .navigatie nav a:not(.curtain-click) {
        color: #252525;
        font-size: 16px;
        padding: 4px 0;
        border-bottom: 1 px solid transparent;
        position: relative;
    }
    .menubtn {
        padding: 7px;
    }
    .topper_cart i {
        font-size: 22px;
    }
    .logo {
        width: 80px;
    }
    .curtaindrop h2 {
        font-size: 20px;
    }
    .curtaindrop .c {
        font-size: 18px;
    }
    .plenso_cookies {
        right: 10px;
    }
    .instagram_feed {
        justify-content: center;
    }
    .instagram_feed .instagram_post {
        width: 150px;
        height: 150px;
        margin: 5px;
    }
    .siteby>div {
        flex-direction: column;
        line-height: 140%;
    }
    .siteby span {
        display: none;
    }
    .shop_products article h2 {
        font-size: 16px;
        font-weight: 400;
    }
    .shop_products article h3 {
        font-size: 12px;
    }
    .gegevens_holder aside article img {
        width: 80px;
    }
    .gegevens_holder aside article div h2 {
        font-size: 16px;
        font-weight: 400;
    }
}

@media screen and (max-width: 400px) {
    .navigatie {
        width: 99%;
    }
    .shop {
        height: 30px;
        padding: 8px 20px;
        font-size: 15px;
    }
    .navigatie nav ul li {
        padding: 8px 20px;
    }
    .navigatie nav a:not(.curtain-click) {
        font-size: 16px;
    }
    .menubtn,
    .curtain-click,
    .closebtn {
        width: 30px;
        height: 30px;
        padding: 7px;
    }
    .contact_gegevens h2 {
        font-size: 16px;
    }
    .contact_split div {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: center;
    }
    .contact_split div p {
        font-size: 16px;
        padding-left: 30px;
    }
    .contact_split img {
        width: 100px;
    }
    .contact_form input[type=text],
    .contact_form input[type=email],
    .contact_form textarea,
    #NaamInput input {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .privcnt {
        flex-wrap: wrap;
        height: initial !important;
        line-height: 120%;
    }
    .contact_form input[type=submit] {
        width: 100%;
        margin-top: 10px;
    }
}