/* All css variables */
:root {
	--background: #fff;
    --title: #000000;
    --text: #292929;

    --topMenu: #074b70;
    --nav-bg: #666666;
    --nav-bg-accent: #444444;
    --nav-bg-h: #7d7d7d;
    --nav-sub-bg-h: #d7d7d7;
    --nav-border: #f2f2f2;
    --nav-sub-border: #074b70;
    --hamburger-border: #f2f2f2;
    --hiddenTxt-bg: #666666;
    --dropdown-bg: #f8f8f8;
    --shop-bg: #074b70;

    --primary-text: #292929;
    --topMenu-text: #c2c2c2;
    --light-text: #f2f2f2;
    --dropdown-text: #222222;
    --seo-links: #909090;
    --breadcrumb: #666666;
    --news-contact-of-color: #074b70;
    --news-contact-background: #f2f2f2;
    --contact-block-container-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    --contact-block-container-border: 1px solid #d4d4d4;

    --box-shadow-20: rgba(0,0,0,0.2);

    --button-bg: #689f38;
    --button-brown-bg: #554d46;
    --button-brown-bg-h: #074b70;
    --button-news-bg: #074b70;
    --button-news-bg-h: #666666;
    --button-text: #f2f2f2;
    --input-text: #292929;
    --placeholder-text: #c8c8c8;

    --scrollbar: transparent;
    --scrollbar-thumb: #dfdfdf;
    --scrollbar-thumb-h: #cccccc;

    --border: #dddddd;
    --border-h: #aaaaaa;

    --header-height: 240px;
}

*, 
*::before, 
*::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body { 
    font-family: "openSans", Helvetica, sans-serif;
    font-size: 1.5rem;
	line-height: 1.8em;
    background-color: var(--background);
    color: var(--primary-text);
    max-width: 100vw;
    overflow-x: hidden;
}

body.no-scroll { 
    overflow: hidden;
}

h1 { 
    font-size: 3rem;
    line-height: 1;
    margin: 0.5em 0;
}
h2 { 
    font-size: 2.3rem;
    line-height: 1.2;
    margin: 0.5em 0;
}
h3 { 
    font-size: 1.7rem;
    line-height: 1.2em;
    margin: 0.5em 0;
}
a {
    text-decoration: none;
}

/* main components */
.container {
    position: relative;
    width: 1170px;
    max-width: 90%;
    margin: 0 auto;
}

.btn {
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 0.5em 2.5em;
    font-size: 1.6rem;
    transition: background-color .2s ease;
}

.btn--brown {
    background-color: var(--button-brown-bg);
}
.btn--brown:hover,
.btn--brown:focus {
    background-color: var(--button-brown-bg-h);
}

.btn--news {
    display: inline-block;
    padding: 0.5em 1em;
    margin-top: 0.5em;
    border-radius: 3px;
    background-color: var(--button-news-bg);
}
.btn--news::after {
    content: ">";
    margin-left: 4px;
}
.btn--news:hover,
.btn--news:focus {
    background-color: var(--button-news-bg-h);
}

.layout-home .Breadcrumb {
    display: none !important;
}

.spacer, .spacers {
    height: 40px;
}
.spacer-large, .spacers-large {
    height: 80px;
}

.full-width {
    position: relative;
    width: 100vw;
    left: 50%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.flex-nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.gap-1em {
    gap: 1em;
}

input, 
textarea {
    font-family: "openSans", Helvetica, sans-serif;
    font-size: 1.6rem;
    width: auto;
    max-width: 100%;
    padding: 0.5em 0.6em;
    border: 1px solid var(--border);
    color: var(--input-text);
    -webkit-transition: border 200ms ease;
         -o-transition: border 200ms ease;
            transition: border 200ms ease;
}
input::placeholder, textarea::placeholder {
    color: var(--placeholder-text);
}
input:hover,
input:focus, 
textarea:hover,
textarea:focus {
    border-color: var(--border-h);
}
button,
input[type="submit"] {
    cursor: pointer !important;
}


/* --- header --- */
header {
    width: 100%; 
    height: auto;
}

.fixed-header {
    position: sticky;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
}

header .topMenu {
    width: 100%;
    background-color: var(--topMenu);
    color: var(--topMenu-text);
    font-size: 1.4rem;
}
header .topMenu .container {
    position: relative;
    left: 0;
    width: auto;
}
header .topMenu .container > div {
    height: 3em;
    line-height: 3em;
    background: url("../images/check-square.svg") no-repeat;
    background-position: center left;
    background-size: 2rem;
    padding-left: 2em;
}
header .topMenu .container > div:nth-child(odd) {
    display: none;
}
header .topMenu .container > div:nth-child(odd) a {
    color: var(--topMenu-text);
    text-decoration: none;
}

@keyframes slideDown {
    0%, 10% {
        transform: translateY(0em);
    }
    20%, 30% {
        transform: translateY(-3em);
    }
    40%, 50% {
        transform: translateY(-6em);
    }
    60%, 70% {
        transform: translateY(-9em);
    }
    80%, 90% {
        transform: translateY(-12em);
    }
    90.001% {
        transform: translateY(0em);
    }
}


header .mainHeader {
    width: 100%;
    background-color: var(--background);
    color: var(--primary-text);
}
header .mainHeader .container {
    padding: 1.5em 0 1.3em 0;
}
header .logo img {
    height: 4.5em;
    width: auto;
}
header .searchbar form {
    margin: 0;
}
header .searchbar input {
    width: 26em;
    max-width: 50vw;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    height: 2.4em;
    border-right: none;
}
header .searchbar button {
    all: unset;
    background-color: var(--button-bg);
    height: 2.5em;
    width: 2.5em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
header .searchbar button img {
    width: 60%;
}
header .contactInfo img {
    background-color: var(--button-bg);
    height: 2.5em;
    width: 2.5em;
    border-radius: 1rem;
    padding: 0.3em;
}
header .contactInfo div {
    margin-left: 0.8em;
}
header .contactInfo span {
    display: block;
    font-size: 1.4rem;
    line-height: 1em;
    font-weight: 600;
}
header .contactInfo span.phonenumber {
    font-size: 1.6rem;
    line-height: 1em;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--primary-text);
    margin-bottom: 0.5em;
    margin-top: 2px;
}
header .contactInfo span.phonenumber a {
    text-decoration: none;
    color: currentColor;
}
header .contactInfo span.phonenumber a:hover {
    text-decoration: underline;
}



nav.menu {
    display: block;
    background-color: var(--nav-bg, gray);
    box-shadow: 0 2px 5px var(--box-shadow-20);
}
nav.menu .container > ul {
    gap: 1em;
    /* min-height: 4.5rem; */
}
nav.menu ul li {
    position: relative;
    display: flex;
    align-items: center;
}
nav.menu a {
    background-color: transparent;
    color: var(--light-text);
    text-decoration: none;
    border-left: 3px solid transparent;
    padding: 0.5em 0.8em;
}
nav.menu .container > ul a:not(.relatiegeschenken a, .shop a):hover,
nav.menu .container > ul a:not(.relatiegeschenken a, .shop a):focus {
    background-color: var(--nav-bg-h);
    border-left: 3px solid var(--nav-border);
}
/* dropdown */
nav.menu li.HasSubmenu > a {
    padding-right: 1.8em;
    background: url(../images/angle-down-solid.svg) no-repeat;
    background-size: 0.8em;
    background-position: 93% center;
}
nav.menu li.HasSubmenu .mobileDrop {
    display: none;
}
nav.menu li.HasSubmenu ul {
    position: absolute;
    z-index: -1;
    left: 0;
    top: -100%;
    min-width: 13em;
    padding: 0.5em 0;
    background-color: var(--dropdown-bg);
    color: var(--dropdown-text);
    border: 1px solid var(--border);
    border-top: none;
    opacity: 0;
    pointer-events: none;
    transition: all 250ms cubic-bezier(0.42, 0, 0.39, 1.32) 150ms;
}
nav.menu li.HasSubmenu:not(.relatiegeschenken):hover ul,
nav.menu li.shop:hover ul,
nav.menu li.HasSubmenu:not(.relatiegeschenken):focus ul,
nav.menu li.HasSubmenu.open ul,
.relatiegeschenken.open ul {
    top: 100%;
    opacity: 1;
    pointer-events: all;
    transition-delay: 50ms;
}
nav.menu li.HasSubmenu ul a {
    font-family: "Cera Pro", Helvetica, sans-serif;
    font-weight: 500;
    color: inherit;
    display: block;
    width: 100%;
    padding: 0.4em 1em;
    opacity: 0.5;
}
nav.menu li.HasSubmenu ul a:hover,
nav.menu li.HasSubmenu ul a:focus { 
    background-color: var(--nav-sub-bg-h) !important;
    border-left: 3px solid var(--nav-sub-border) !important;
    opacity: 1;
}

/* relatiegeschenken dropdown */
.relatiegeschenken {
    background-color: var(--nav-bg-accent); 
}
.relatiegeschenken a {
    gap: 0.6em;
    background: none !important;
    padding: 0.5em 0.8em !important;
}
.relatiegeschenken img {
    height: 1.2em;
    width: auto;
}
.relatiegeschenken .dropdown-arrow {
    height: 1.6em;
    -webkit-transition: -webkit-transform 200ms ease 100ms;
    transition: -webkit-transform 200ms ease 100ms;
    -o-transition: transform 200ms ease 100ms;
    transition: transform 200ms ease 100ms;
    transition: transform 200ms ease 100ms, -webkit-transform 200ms ease 100ms;
}
.relatiegeschenken.open .dropdown-arrow {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.relatiegeschenken ul {
    padding: 0 !important;
    width: 100%;
    max-height: calc( 100vh - 230px );
    overflow-y: scroll;
    scrollbar-width: none;
}
.relatiegeschenken ul::-webkit-scrollbar {
    width: 0;
}
.relatiegeschenken ul a {
    font-size: 1.5rem;
    display: flex !important;
    align-items: center;
}
.relatiegeschenken ul .allCategories a {
    padding-top: 0.8em !important;
    padding-bottom: 0.8em !important;
    margin-top: 0.2em;
    border-top: 1px solid var(--border-h);
}



nav .home img {
    height: 1.7em;
    width: auto;
}

nav .shop {
    position: unset !important;
    font-family: "Cera Pro", Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: var(--shop-bg);
}
nav .shop > a {
    gap: 0.6em;
    padding: 0.5em !important;
    background: none !important;
}
nav .shop ul {
    right: 0;
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
}
nav .shop li {
    flex: 25%;
    border-right: 1px solid var(--border);
}
nav .shop li:nth-child(4),
nav .shop li:nth-child(8),
nav .shop li:last-child {
    border-right: none;
}
nav .shop img {
    width: 1.5em;
}
nav .shop ul {
    width: 1.5em;
}

/* mobile menu */
nav .hamburger-outer {
    position: relative;
    margin-left: 1.8em;
    cursor: pointer;
    display: none;
}
nav .hamburger {
    position: relative;
    height: 2.3rem;
    width: 3rem;
}
nav .hamburger .line {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--hamburger-border);
    transition: all 200ms ease;
}
nav .hamburger .line:nth-child(2) {
    top: calc(50% - 1.5px);
}
nav .hamburger .line:last-child {
    bottom: 0;
}
nav .hamburger-outer.active .line:nth-child(1) {
    transform: rotate(45deg) translateY(9px) translateX(4px);
}
nav .hamburger-outer.active .line:nth-child(2) {
    opacity: 0;
}
nav .hamburger-outer.active .line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px) translateX(5px);
}


/* flaoting socials */
.floating-socials {
    position: fixed;
    z-index: 999998;
    right: 0;
    top: 30%;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}
.floating-socials a {
    margin: 0;
    height: 40px;
    width: 40px;
}

/* --- end header --- */
/* --- main content styling --- */
.topBannerBlock {
    margin-bottom: -0.8em;
}
.topBannerBlock:empty {
    margin-bottom: 0;
}
.voorwaardenLink {
    border-bottom: 1px solid  #074b70;
}

/* news/content pagina */
.actions {
    margin-top: 1.8em;
}
a.button {
    color: var(--button-text);
    background-color: var(--button-bg);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 0.5em 0.5em;
    border: unset;
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 600;
}

a.button:hover {
    background-color: #000;
}

a.btn-cart:after, .header-cart button span span:after {
    content: '>';
    font-size: 15px;
    margin-left: 4px;
}

.wot-container-top, .wot-container-top img {
    width: 100%;
}

.wot-container-top {
    /*text-align: center;*/
}

.wot-col-container {
    display: flex;
    gap: 7%;
}
.wot-col-container div {
    flex: 50%;
}

.wot-col-fullwidth-container {
    width: 100%;
    text-align: center;
}

.image-row-wot span {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.image-row-wot img {
    width: 93%;
    margin-top: 20px;
}


.contact-form-left {
    background-color: #e5f8e5;
    padding: 15px;
}

.contact-col-container {
    display: flex;
    gap: 7%;
}
.contact-form-left h2, .contact-form-right h2 {
    padding-bottom: 10px;
    display: inline-block;
}
.contact-form-right h2 {
    width: 31rem;
}
.contact-form-left {
    flex: 60%;
}
.contact-form-right {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    flex: 30%;
}
.contact-colorRed {
    color: #eb0029;
}
.team-img-list {
    padding-bottom: 30px;
    display: flex;
    gap: 2%;
}
.team-img-list_left, .team-img-list_right {
    flex:50%;
}
.contact-form-right .link {
    border-radius: 5px;
    background: #00b900;
    color: #fff;    
    margin: 0 0 10px;
    padding: 10px;
    text-decoration: none;
}

.contact-form-right .link:hover {
    background-color: #000;
}

.contact-form-right p {
    width: 31rem;
    display: flex;
    flex-direction: column;
}
.contact-form-right h2 {
    text-transform: uppercase;
}

.wot-col-container-bottom {
    display: flex;
    gap: 7%;
}

.wot-col-container-bottom div {
    flex: 50%;
}

.dyst {
    display: block;
    width: 100%;
    font-family: "Cera Pro";
    font-size: 5.5rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
    padding: 0.9em 0 !important;
    background-color: #074b70;
    color: #fff;
}

.team-wot-contact {
    --team-wot-contact-gap: 3em;
    gap: var(--team-wot-contact-gap);
    margin-top: 2em;
    margin-bottom: 2em;
}
.team-wot-contact-item {
    position: relative;
    -webkit-box-flex: calc(50% - var(--team-wot-contact-gap));
        -ms-flex: calc(50% - var(--team-wot-contact-gap));
            flex: calc(50% - var(--team-wot-contact-gap));
    background-image: -o-linear-gradient(top, #303030, #666666, #303030);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#303030), color-stop(#666666), to(#303030));
    background-image: linear-gradient(180deg, #303030, #666666, #303030);
    height: 22rem;
}
.team-wot-contact-item img {
    display: block;
    margin: 1em 2em 0 auto;
    height: 20rem;
    width: auto;
}
.team-wot-contact-item .label, .team-wot-contact-item .role {
    font-family: 'Cera Pro', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--light-text);
}
.team-wot-contact-item .label {
    position: absolute;
    top: 1em;
    left: -0.4em;
    background-color: var(--topMenu);
    padding: 0.4em 1em;
}
.team-wot-contact-item .role {
    position: relative;
    background-color: var(--nav-bg);
    z-index: 99;
    bottom: 2em;
}
.team-wot-contact-item .role a {
    display: block;
    width: 100%;
    padding: 0.75em 1em;
    background: url(/templates/Wot/images/envelop.svg) no-repeat;
    background-position: calc(100% - 1em) center;
    background-size: auto 60%;
    color: inherit;
    -webkit-transition: background-size 150ms ease;
    -o-transition: background-size 150ms ease;
    transition: background-size 150ms ease;
}

.contact-col-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--news-contact-background);
    position: relative;
    -webkit-box-shadow: var(--contact-block-container-shadow);
            box-shadow: var(--contact-block-container-shadow);
    border: var(--contact-block-container-border);
    padding: 1em 2em;
}
.contact-col-container::before {
    content: "";
    z-index: -5;
    position: absolute;
    width: 100vw;
    background-color: var(--news-contact-background);
    height: 85%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.contact-form-left {
    -webkit-box-flex: 70%;
    -ms-flex: 70%;
    flex: 70%;
    padding: 15px;
    background-color: unset;
}
.contact-form-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: flex-end;
        -ms-flex-pack: flex-end;
            justify-content: flex-end;
    -webkit-box-flex: 30%;
        -ms-flex: 30%;
            flex: 30%;
    padding-bottom: 2.5em;
}
.contact-form-left h2, .contact-form-right h2 {
    padding-bottom: 10px;
    display: inline-block;
}
.contact-form-right h2 {
    text-transform: uppercase;
    width: 31rem;
}
.contact-of-color {
    color: var(--news-contact-of-color);
}
.team-img-list {
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2%;
}
.team-img-list_left, .team-img-list_right {
    -webkit-box-flex:50%;
        -ms-flex:50%;
            flex:50%;
}
.contact-form-right .link {
    border-radius: 5px;
    background: var(--button-news-bg);
    color: var(--button-text);    
    margin: 0 0 10px;
    padding: 10px;
    text-decoration: none;
}
.contact-form-right .link:hover {
    background-color: var(--button-news-bg-h);
}
.contact-form-right .link span {
    display: flex;
    align-items: center;
}
.contact-form-right .link img {
    margin-right: 0.5em;
    width: 1.5rem;
}

.contact-form-right p {
    width: 31rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}


/* contact form / page */
.contact {
    gap: 7%;
}
.contact-left, .contact-right {
    flex: 50%
}

.contact-info  {
    font-weight: 600;
}
.contact-info .flex {
    gap: 1em;
    margin: 0.5em 0;
}
.contact-info p {
    margin: 1em 0;
}

.contact-route .google-maps {
    width: 100%;
    height: 275px;
}
.contact-route * {
    height: 100%;
}
.contact-route iframe {
    max-width: 100%;
}

#form-13,
#form-14 {
    padding: 1em 1.5em;
    border: 1px solid var(--border);
}
#form-13 .Name,
#form-14 .Name {
    font-family: "openSans", Helvetica, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
}
#form-13 .Widget,
#form-14 .Widget {
    position: relative;
    width: unset !important;
}
#form-13 .Widget.Textarea,
#form-14 .Widget.Textarea {
    margin-bottom: 0;
}
#form-13 input,
#form-13 textarea,
#form-14 input,
#form-14 textarea {
    position: relative;
    border: 1px solid var(--border);
    width: 100% !important;
    -webkit-box-shadow: inset 0 0 0 500px var(--background);
            box-shadow: inset 0 0 0 500px var(--background);
    font-size: 1.4rem;
    padding: 0.8em 0.6em;
}
#form-13 input:hover,
#form-13 textarea:hover,
#form-14 input:hover,
#form-14 textarea:hover {
    border-color: var(--border-h);
}
.contact-right form textarea {
    height: 150px;
    margin: 0;
    min-height: 43px;
}

#form-13 label,
#form-14 label {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 26px;
    transform: translateY(-50%);
    font-weight: 400;
    background-color: var(--background);
    color: var(--border);
    padding: 0 5px;
    pointer-events: none;
    line-height: 1;
    transition: all 200ms ease;
}
#form-13 .Textarea label,
#form-14 .Textarea label {
    top: 20px;
}
#form-13 .Required,
#form-14 .Required {
    color: inherit;
}

#form-13 .Widget.active label,
#form-14 .Widget.active label {
    color: var(--primary-text);
    top: 5px;
}
#form-13 .Textarea.active label,
#form-14 .Textarea.active label {
    top: 0;
}
#form-13 .Widget.active input,
#form-13 .Widget.active textarea,
#form-14 .Widget.active input,
#form-14 .Widget.active textarea {
    border-color: var(--primary-text);
}

#form-13 .Widget.Textarea + p,
#form-14 .Widget.Textarea + p {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 10px;
}
#form-13 .Widget.Textarea + p > a,
#form-14 .Widget.Textarea + p > a {
    font-size: 1.2rem;
}

#form-13 button[type="submit"],
#form-14 button[type="submit"] {
    all: unset;
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 0.5em 2.5em;
    font-size: 1.6rem;
}

#form-13 .Error:not(.Message.Error),
#form-14 .Error:not(.Message.Error) {
    position: absolute;
    z-index: 5;
    top: 12px;
    right: 10px;
    font-size: 0;

    color: var(--primary-text);
    background-image: url(/templates/Wot/images/warning-filled.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center left;
    padding-left: 30px;
}
#form-13 .Widget.correct::after,
#form-14 .Widget.correct::after {
    content: "";
    position: absolute;
    top: 17px;
    right: 20px;
    width: 20px;
    height: 20px;
    background-image: url(/templates/Wot/images/correct.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center right;
}
#form-13 .Textarea .Error:not(.Message.Error),
#form-14 .Textarea .Error:not(.Message.Error) {
    top: 7px;
}

#form-13 .errormes p,
#form-14 .errormes p {
    color: var(--primary-text) !important;
    padding-left: 28px;
    background-image: url(/templates/Wot/images/warning-filled.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center left;
}

#form-13 .Message.Success,
#form-13 .Message.Error,
#form-14 .Message.Success,
#form-14 .Message.Error {
    background-color: transparent;
    color: var(--primary-text);
    background-image: url(/templates/Wot/images/correct.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left 9px;
    padding-left: 1.8em;
}
#form-13 .Message.Error,
#form-14 .Message.Error {
    background-image: url(/templates/Wot/images/warning-filled.svg);
}

#form-13 .Select,
#form-14 .Select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    column-gap: 1em;
}
#form-13 .Select label,
#form-14 .Select label {
    position: relative;
    left: unset;
    top: unset;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 0 0 0.2em 0;
}

.catalogusSend {
    background-image: url(/templates/Wot/images/correct.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left 3px;
    padding-left: 1.8em !important;
}


/* plaatsnaam pagina's -- overzicht */
.lijst.plaatsnaam {
    margin-bottom: 40px;
}
.lijst.plaatsnaam ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.lijst.plaatsnaam ul li {
    font-size: 1.4rem;
    margin: 0.3em 0;
    padding: 0;
    width: 33%;
}
.lijst.plaatsnaam ul li a {
    display: block;
    padding-right: 0.5em;
    margin-right: 0.5em;
    line-height: 1.3;
}
.lijst.plaatsnaam ul li a:hover {
    text-decoration: underline;
}


/* --- end content --- */
/* --- footer --- */
main .footerList {
    display: none !important;
}

.hiddenTxt {
    display: block;
    width: 100%;
    min-height: 2.5em;
    background-color: var(--hiddenTxt-bg);
    color: var(--light-text);
}

footer {
    position: relative;
    font-family: "Cera Pro", Helvetica, sans-serif;
    background: url(/images/footer-gebouw.webp) no-repeat rgba(255, 255, 255, 0.2);
    background-size: max(115%, 100vw);
    background-position: center 100%;
    background-blend-mode: lighten;
    padding-bottom: 1em;
    
    display: flex;
    flex-direction: column;
    min-height: 65vh;
}
footer .container { 
    row-gap: 2em;
    column-gap: 6.3%;
    padding: 2em 0;
}
footer .container:first-child { 
    margin-top: auto;
}
footer .container:last-child { 
    gap: unset;
    padding: 0;
}
footer .container > div {
    flex-basis: 21%;
    padding-left: 2.5em;
    background-repeat: no-repeat;
    background-size: 1.5em;
}
.footerPayAndDeliver { 
    flex-basis: 18% !important;
    padding: 0 !important;
}
.footerPay,
.footerDeliver {
    padding: 0.5em 0 0.8em 4rem;
    margin: 0;
    background-repeat: no-repeat;
    background-size: 1.3em;
}
.footerPayAndDeliver .BlockContent {
    padding-left: 4rem;
}
footer .footerPayAndDeliver .flex {
    gap: 1.2em;
}
footer .footerPayAndDeliver img {
    height: 27px;
    width: auto;
    max-width: 55px;
}

footer #FooterText { 
    display: none !important; 
}
footer .listRow { 
    padding: 0;
    max-width: 90%;
}
footer h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--title);
    margin-bottom: 0.8em;
}
footer h3 {
    margin: 0.2em 0;
    height: auto !important;
}
footer a {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-text);
    text-decoration: none;
    cursor: pointer;
}
footer a:hover,
footer a:focus {
    text-decoration:  underline
}

.footerCategories {
    background-image: url(/images/categories.svg);
    background-position: left 8px;
}
.footerRules {
    background-image: url(/images/rules.svg);
    background-position: left 8px;
}
.footerContact {
    background-image: url(/images/chat.svg);
    background-position: left 8px;
}
.footerSocials {
    background-image: url(/images/socialmedia.svg);
    background-position: left 8px;
}
.footerRecom {
    background-image: url(/images/recommend.svg);
    background-position: left 8px;
}
.footerAbout {
    background-image: url(/images/info-circle.svg);
    background-position: left 8px;
}
.footerWebsites {
    background-image: url(/images/websites.svg);
    background-position: left 8px;
}
.footerPay {
    background-image: url(/images/secured.svg);
    background-position: left 8px;
}
.footerDeliver {
    margin-top: 2em;
    background-image: url(/images/delivery.svg);
    background-position: left 8px;
}
/* bottom footer */
.footer-bottom {
    gap: 5% !important;
}
.footer-bottom img {
    flex: 20%;
}
.footer-bottom p {
    flex: 90%;
    font-size: 1.3rem;
    line-height: 1.4;
    text-shadow: 0px 1px 2px rgba(255, 255, 255, 0.4);
}

.copyright {
    width: fit-content;
    float: left;
    padding-left: 0 !important;
    color: #777;
}
/* css isalink */
.isadesign {
    color: #7d8282;
    width: fit-content;
    margin-left: auto;
}
.isalink {
    display: flex;
    justify-content: center;
    align-items: center;
}
.isalink-back {
    transform: rotateY(180deg);
}
 .isalink a {
    background-color: #939393;
    padding: 0 0.3em;
    text-decoration: none !important;
}
 .isalink a span {
    color: #fff;
}
 .isalink a .isazwart {
    font-weight: bold;
}
 .isalink-back a {
    background-color: #FF7800;
}
 .isalink-back a span {
    color: #fff;
}
 .isalink-back a .isazwart {
    color: #000;
}
.rotate-card {
    perspective: 1000px;
    height: 1.3em;
    display: inline-block;
    margin-right: 0;
    width: 70px;
}
.rotate-card-inner {
    transform-style: preserve-3d;
    transform: translateY(4px);
    height: 100%;
}
.rotate-card.rotated .rotate-card-inner {
    animation: rotate-card 0.6s linear forwards;
}
@keyframes rotate-card {
    to {
        transform: rotateY(180deg) translateY(4px);
    }
}
.isalink-front, .isalink-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
/* end isadesign link */


/* --- end footer --- */




/* responsive */
@media screen and (min-width: 1201px) {
    nav.menu .menu-items {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    footer .container .footerSocials {
        flex-basis: 17%;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1281px) {
    nav.menu .container, header .container {
        max-width: 95%;
        width: unset;
    }
    footer .container { 
        column-gap: 5%;
    }
}

@media screen and (max-width: 1200px) {
    header .topMenu {
        height: 3em;
    }
    nav.menu .home,
    nav.menu .menu-items {
        display: none;
    }
    nav .hamburger-outer {
        display: block;
    }
    header .searchbar input {
        max-width: 30vw;
    }
    nav .container > ul:nth-child(3) {
        margin-left: auto;
    }

    /* mobile menu */
    nav.menu .menu-items {
        position: fixed;
        top: 202px;
        right: 0;
        min-width: 15em;
        background-color: var(--dropdown-bg);
        box-shadow: 0 3px 3px 0 var(--box-shadow-20);

        max-height: calc( 100vh - var(--header-height, 240px) );
        overflow-y: scroll;
    }
    nav.menu .menu-items li {
        width: 100%;
    }
    nav.menu .menu-items li a {
        font-family: "Cera Pro", Helvetica, sans-serif;
        font-weight: 500;
        display: block;
        width: 100%;
        color: var(--dropdown-text);
        opacity: 0.5;
    }
    nav.menu .menu-items li:hover a {
        background-color: var(--nav-sub-bg-h) !important;
        border-left: 3px solid var(--nav-sub-border) !important;
        opacity: 1;
    }
    .menu-items li.HasSubmenu > a {
        background: none !important;
    }
    .menu-items li.HasSubmenu > .mobileDrop {
        display: unset !important;
        height: 4.5rem;
        width: 8rem;
        background: url(../images/angle-down-solid-dark.svg) no-repeat;
        background-size: 0.8em;
        background-position: center;
        opacity: 0.5;
    }
    .menu-items li.HasSubmenu:hover > .mobileDrop,
    nav.menu .menu-items li:hover a,
    .menu-items li.HasSubmenu:hover ul {
        background-color: transparent !important;
        border-left-color: transparent !important;
    }
    nav.menu .menu-items li:hover > a {
        border-left: 3px solid var(--nav-sub-border) !important;
    }
    nav.menu li.HasSubmenu:hover ul:not(.relatiegeschenken ul) {
        top: -100% !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    nav.menu li.HasSubmenu ul {
        transition: none !important;
    }

    nav.menu li.HasSubmenu.open:not(.relatiegeschenken) {
        display: block;
    }
    nav.menu li.HasSubmenu.open ul:not(.relatiegeschenken ul) {
        position: relative;
        top: 0 !important;
        padding: 0 0 0 1.5em;
        border: none;
        opacity: 0.5 !important;
        pointer-events: all !important;
    }
    nav.menu li.HasSubmenu.open .mobileDrop {
        position: absolute;
        right: 0;
        top: 0;
        width: 6rem;
        transform: rotate(180deg);
    }
    /* end header */

    /* news contact section */ 
    .team-wot-contact-item .label, .team-wot-contact-item .role {
        font-size: 1.6rem;
    }
    .contact-form-right {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-right: 1em;
        padding-left: 1em;
        padding-top: unset;
    }
    .contact-col-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    /* contactpage */
    #form-13 textarea,
    #form-14 textarea {
        height: 142px;
    }

    /* footer */
    footer .container {
        column-gap: 5%;
    }
    footer .container > div {
        flex-basis: 30%;
    } 
    .footerPayAndDeliver {
        position: relative;
        flex-grow: 1;
    }
    .footerPayAndDeliver .footerDeliver,
    .footerPayAndDeliver .BlockContent:last-child {
        position: absolute;
        top: 0;
        left: 60%;
        margin-top: 0;
    }
    .footerPayAndDeliver .BlockContent:last-child {
        top: 3em;
    }
}

@media screen and (max-width: 900px) {
    header .topMenu .container {
        flex-direction: column;
        justify-content: unset;
        align-items: unset;
        max-width: 70%;
        max-height: 3em;
        overflow: hidden;
        margin-right: auto;
        margin-left: 3vw;  
    }
    header .topMenu .container > div {
        min-width: 100%;
        animation: slideDown 15s ease forwards infinite;
    }
    header .topMenu .container > div:nth-child(odd) {
        display: unset;
    }
    header .logo img {
        height: 3.8em;
    }
    header .searchbar input {
        height: 2.2em;
        max-width: 25vw;
    }
    header .searchbar button {
        height: 2.2em;
        width: 2.2em;
    }

    header .contactInfo {
        font-size: 1.4rem;
    }
    header .contactInfo span.phonenumber {
        font-size: 1.4rem;
    }
    header .contactInfo span {
        font-size: 1.2rem;
    }

    nav.menu .menu-items {
        top: 191px;
    }

    .floating-socials {
        display: none;
    }
    /* end header */ 
}

@media screen and (max-width: 768px) {
    :root {
        --fixed-searchbar-height: 50px;
    }
    .spacer, .spacers {
        height: 30px;
    }
    .spacer-large, .spacers-large {
        height: 60px;
    }
    .relatiegeschenken ul {
        padding: 0 !important;
        width: 100%;
        max-height: calc( 100vh - var(--header-height, 240px) );
        overflow-y: scroll;
    }
    body {
        padding-bottom: var(--fixed-searchbar-height, 50px);
    }
    header .searchbar {
        position: fixed;
        z-index: -1;
        left: 0;
        right: 0;
        bottom: 0;
        height: var(--fixed-searchbar-height, 50px);
        display: block;
        background-color: var(--topMenu);
    }
    header .searchbar input {
        height: 30px;
        width: calc(90vw - 3em);
        max-width: none;
        margin: 10px 0;
    }
    header .searchbar button {
        height: 30px;
        width: 3em;
    }
    header .searchbar button img {
        height: 80%;
    }

    nav.menu .container {
        max-width: 95%;
    }
    nav.menu .shop {
        position: fixed !important;
        top: -6px;
        right: 15px;
    }
    nav.menu .shop a {
        margin-top: 11px;
        padding: 0 !important;
    }
    /* end header */

    .topBannerBlock {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        min-height: 15vh;
        overflow: hidden;
    }
    .topBannerBlock:empty {
        display: none;
        min-height: unset;
    }
    .topBannerBlock img {
        /*height: 100%;
        max-width: unset;
        -webkit-transform: translateX(-34%);
            -ms-transform: translateX(-34%);
                transform: translateX(-34%);*/
    }

    /* news/content pagina */
    .wot-col-container, .contact-col-container, .wot-col-container-bottom  {
        flex-direction: column;
    }
    .contact-form-right {
        align-items: flex-start;
    }
    .contact-form-right p {
        width: 100%;
    }
    .dyst {
        font-size: 3rem;
    }
    .team-wot-contact-item .label {
        top: 1em;
        font-size: 1.4rem;
    }
    .team-wot-contact-item .role a {
        font-size: 1.4rem;
    }
    .contact-form-right {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .contact-form-right p {
        width: 100%;
    }
    .wot-col-reverse {
        flex-direction: column-reverse;
    }

    .lijst.plaatsnaam ul li {
        width: 50%;
    }

    /* contactpage */
    .contact {
        flex-wrap: wrap;
        gap: 0;
    }
    .contact-left, .contact-right {
        flex: 100%;
    }
    .contact-route iframe {
        width: 100%;
    }
    .contact-route .google-maps {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .contact-right {
        max-width: 100%;
    }
    #form-13,
    #form-14 {
        padding: 1em;
        max-width: 100%;
        overflow: hidden;
    }
    #form-13 .Widget,
    #form-14 .Widget {
        width: 80vw !important;
    }
    #form-13 .Widget.Textarea + p,
    #form-14 .Widget.Textarea + p {
        max-width: 80vw;
    }
    #form-13 .g-recaptcha,
    #form-14 .g-recaptcha {
        -webkit-transform: scale(0.85) !important;
            -ms-transform: scale(0.85) !important;
                transform: scale(0.85) !important;
        -webkit-transform-origin: 0 0 !important;
            -ms-transform-origin: 0 0 !important;
                transform-origin: 0 0 !important;
    }
    
    /* footer */
    footer .container {
        column-gap: 10%;
        justify-content: center;
    }
    footer .container > div {
        flex-basis: 40%;
    } 
    .footerPayAndDeliver {
        flex-grow: unset;
        flex-basis: 40% !important;
    }
    .footerPayAndDeliver .footerDeliver {
        position: unset;
        margin-top: 2em;
    }
    .footerPayAndDeliver .BlockContent:last-child {
        position: unset;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer-bottom img {
        width: 12em;
        margin-bottom: 1em;
    }
    .footer-bottom p {
        text-align: center;
    }
    footer .container:last-child {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 650px) {
    /* news contact section */ 
    .team-wot-contact {
        gap: 2em;
    }
    .team-wot-contact-item {
        -webkit-box-flex: 100%;
            -ms-flex: 100%;
                flex: 100%;
    }
}

@media screen and (max-width: 600px) {
    header .mainHeader .container {
        padding: 0.8em 0 0.5em 0;
    } 
    nav.menu .menu-items {
        top: 169px;
    }
    section, .section {
        margin: 7% 0;
    }
    .spacer, .spacers {
        height: 20px;
    }
    .spacer-large, .spacers-large {
        height: 40px;
    }

    /* footer */
    footer h2 {
        font-size: 1.8rem;
    }
    footer h3 {
        margin: 0.5em 0;
        font-size: 1.4rem;
        line-height: 1.3;
    }
    footer .container {
        column-gap: unset;
        justify-content: space-around;
    }
    
    footer .container:last-child {
        display: flex;
        flex-direction: column;
    }
    .copyright, .isadesign {
        width: 100%;
        float: none;
        color: #505050;
        text-align: center;
    }
    .isadesign {
        margin: 0 auto;
        padding: 0;
    }
}

@media screen and (max-width: 520px) {
    footer .container {
        justify-content: unset;
        column-gap: 5%;
        row-gap: 1em;
    }
    footer .container > div {
        flex-basis: 50%;
        margin: 0 auto;
    }
    .lijst.plaatsnaam ul li {
        width: 100%;
    }
}


@media screen and (max-width: 480px) {
    header .contactInfo {
        display: none;
    }
    header .logo {
        margin: 0 auto;
    }
}
/* mobile menu on scroll */ 
@media screen and (max-width: 480px),  screen and (max-width: 768px) and (orientation: landscape) {
    :root {
        --scrolled-header-height: 93px;
        --scroll-header-transition: 200ms ease 100ms;
    }
    header .mainHeader .container,
    header .logo img {
        transition: all var(--scroll-header-transition);
    }
    .scrolled header .topMenu {
        height: 0;
        overflow: hidden;
    }
    .scrolled header .topMenu .container {
        display: none;
    }
    .scrolled header .mainHeader .container {
        display: block;
        padding: 0.35em 0 0 0 !important;
        max-width: 95%;
    }
    .scrolled header .mainHeader .contactInfo {
        display: none;
    }
    .scrolled header .logo img {
        height: 2.5em !important;
    }
    .scrolled nav.menu .shop {
        top: 0px !important;
        right: 0 !important;
        height: 51px;
        width: 8em;
        justify-content: center;
    }
    .scrolled nav.menu .shop a {
        margin: 0 !important;
    }
    nav.menu .menu-items {
        transition: top var(--scroll-header-transition);
    }
    .scrolled nav.menu .menu-items {
        top: var(--scrolled-header-height);
    }
}

@media screen and (max-width: 400px) {
    header .mainHeader .container {
        padding-bottom: 0.2em;
    }
    nav .hamburger {
        margin-right: 0.35em;
    }   
    nav.menu .menu-items {
        top: 164px;
    }
    footer .container > div {
        margin-left: 5%;
    }
    footer .container:last-child > div {
        margin-left: 0;
        padding-left: 0;
    }

    .contact-form-right h2 {
        width: unset!important;
    }
}

@media screen and (max-width: 320px) {
    .relatiegeschenken {
        font-size: 1.5rem;
    }
    .relatiegeschenken > a > img:first-child {
        display: none;
    }
    .relatiegeschenken ul {
        width: 95vw;
    }
}

/* max height */
@media screen and (max-height: 900px) {
    .relatiegeschenken ul,
    nav.menu .menu-items {
        scrollbar-color: var(--scrollbar) transparent;
        scrollbar-width: thin;
    }
    .relatiegeschenken ul::-webkit-scrollbar,
    nav.menu .menu-items::-webkit-scrollbar {
        width: 7.5px;
        right: 5px;
    }
    .relatiegeschenken ul::-webkit-scrollbar-track,
    nav.menu .menu-items::-webkit-scrollbar-track {
        background: transparent; 
    }
    .relatiegeschenken ul::-webkit-scrollbar-thumb,
    nav.menu .menu-items::-webkit-scrollbar-thumb {
        background: var(--scrollbar-thumb);
    }
    .relatiegeschenken ul::-webkit-scrollbar-thumb:hover,
    nav.menu .menu-items::-webkit-scrollbar-thumb:hover {
        background: var(--scrollbar-thumb-h); 
    }
}



/* menu fix */
@media screen and (max-width: 1200px) {
    nav.menu li.HasSubmenu ul {
        display: none;
    }
    nav.menu li.HasSubmenu.open ul {
        display: block;
    }
    .menu-items li.HasSubmenu ul {
        z-index: 1 !important;
    }
    .menu-items li.HasSubmenu ul a {
        opacity: 1 !important;
    }
}

