﻿:root {
    --green: #009432;
    --green-hover: #007829;
    --blue-light: #edf1f2;
    --blue-light-hover: #d8e2e4;
    --skeleton-base: #e6eaec;
    --skeleton-highlight: #f6f8f9;
    --grey: #999999;
    --grey-form: #808080;
    --grey-light: #cccccc;
    --orange: #f79f1f;
    --white: #ffffff;
    --white-hover: #edf1f2;
    --red: #fe2a39;
    --red-hover: #de1e2c;
    --blue: #1289a7;
    --blue-hover: #066e88;
    --black: #121212;
    --black-hover: #2f2f2f;
    --transition-default: all .3s linear;
    --app-height: 100%;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

::-moz-selection {
    color: #fff;
    background: var(--blue);
}

::selection {
    color: #fff;
    background: var(--blue);
}

html {
    font-size: 62.5%;
    height: 100%;
}

body {
    font-family: Inter, sans-serif;
    font-size: 1.4rem;
    line-height: 2.6rem;
    color: var(--black);
    height: 100%;
    /*
    display: flex;
    flex-flow: column;
    */
    -webkit-backface-visibility: visible !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    body.menu-open {
        overflow: hidden;
    }

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.15);
    display: none;
    z-index: 15;
    transition: var(--transition-default);
}

body.menu-open .backdrop {
    display: block;
}

/* Verberg de chat-widget (iframe #launcher, via extern script ingeladen) zolang het menu open staat */
body.menu-open #launcher {
    display: none !important;
}

main {
    display: flex;
    flex-direction: column;
}

h1 {
    font-family: Changa;
    font-weight: 800;
    font-size: 6rem;
    line-height: 6rem;
    white-space: pre-wrap;
}

h2 {
    font-family: Changa;
    font-weight: 800;
    font-size: 4rem;
    line-height: 6rem;
}

h3 {
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 3rem;
}

h4 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2rem;
}

@media(max-width: 991px) {
    h1 {
        font-size: 4rem;
        line-height: 4rem;
    }

    h3 {
        font-size: 2.2rem;
    }
}

.subheader {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.intro {
    font-size: 2rem;
    line-height: 3.2rem;
}

time {
    color: var(--grey);
}

button {
    transition: var(--transition-default);
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: var(--transition-default);
    outline: none !important;
}

    a:hover {
        color: var(--blue-hover);
        text-decoration: none;
    }

.richtext a {
    background-image: linear-gradient(var(--blue), var(--blue));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
}

    .richtext a:hover {
        background-image: linear-gradient(var(--blue-hover), var(--blue-hover));
        background-size: 100% 1px;
    }

.cta,
.cta a {
    font-size: 1.6rem;
    color: var(--blue);
    position: relative;
    transition: var(--transition-default);
}

    .cta:hover,
    .cta a:hover {
        color: var(--blue-hover);
    }

    .cta:after,
    .cta a:after {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='10' fill='none' stroke='%231289a7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath d='M11,15l4-4L11,7M7,11h8' fill='none' stroke='%231289a7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
        width: 2rem;
        height: 2rem;
        position: absolute;
        top: .1rem;
        right: -3rem;
        transition: var(--transition-default);
    }

    .cta:hover:after,
    .cta a:hover:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='10' fill='none' stroke='%23066e88' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath d='M11,15l4-4L11,7M7,11h8' fill='none' stroke='%23066e88' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
        right: -3.3rem;
    }

    .cta.cta--lg {
        font-weight: 600;
    }

        .cta.cta--lg:after {
            content: "";
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%231289a7' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
            width: .6rem;
            height: 1.2rem;
            position: absolute;
            top: .8rem;
            right: -2rem;
            transition: var(--transition-default);
        }

        .cta.cta--lg:hover:after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%23066e88' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
        }

        .cta.cta--lg:hover:after {
            right: -2.3rem;
        }

.button {
    min-height: 5rem;
    line-height: 2rem;
    padding: 1.4rem 6rem 1.6rem 4rem;
    border-radius: 2.5rem;
    background-color: #000;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: none;
    border: none;
    outline: none;
}

    .button:hover {
        color: #fff;
    }

    .button:active,
    .button:focus {
        /*box-shadow: 0 0 0 .2rem #000;*/
        outline: none !important;
        box-shadow: none !important;
    }

.button--darkbg:active,
.button--darkbg:focus {
    box-shadow: 0 0 0 .2rem #fff;
}

.button span {
    position: relative;
}

    .button span:after {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
        width: .6rem;
        height: 1.2rem;
        position: absolute;
        top: .5rem;
        right: -2rem;
        transition: var(--transition-default);
    }

.button--white span:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
}

.button:hover span:after {
    right: -2.3rem;
}

.button--red {
    background-color: var(--red);
}

    .button--red:hover {
        background-color: var(--red-hover);
    }

.button--blue {
    background-color: var(--blue);
}

    .button--blue:hover {
        background-color: var(--blue-hover);
    }

.button--green {
    background-color: var(--green);
}

    .button--green:hover {
        background-color: var(--green-hover);
    }

.button--white {
    background-color: var(--white);
    color: var(--black);
}

    .button--white:hover {
        background-color: var(--white-hover);
        color: var(--black);
    }

.button--blue-outline {
    border: .1rem solid var(--blue);
    background-color: #fff;
    color: var(--blue);
}

    .button--blue-outline:hover {
        border: .1rem solid var(--blue-hover);
        color: var(--blue-hover);
    }

    .button--blue-outline span:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%231289a7' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
    }

    .button--blue-outline:hover span:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%23066e88' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
    }

.button--collapse span:after {
    transform: rotate(90deg);
}

.button--collapse:hover span:after {
    right: -2rem;
    top: .8rem;
}

.button--collapse[aria-expanded=true] span:after {
    transform: rotate(-90deg);
}

.button--collapse[aria-expanded=true]:hover span:after {
    right: -2rem;
    top: .3rem;
}

.button--blue-transparent {
    background-color: transparent;
    color: var(--blue);
}

    .button--blue-transparent:hover {
        color: var(--blue-hover);
    }

    .button--blue-transparent span:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%231289a7' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
    }

    .button--blue-transparent:hover span:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%23066e88' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
    }

@media(max-width: 991px) {
    .button {
        min-height: 4.6rem;
        padding: 1.2rem 4.5rem 1.4rem 2.5rem;
    }
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

input[type="text"].form-control,
[type="number"].form-control,
[type="password"].form-control,
[type="email"].form-control,
textarea.form-control {
    height: 5.2rem;
    border-radius: 2.6rem;
    border: .1rem solid var(--grey-light);
    font-size: 1.4rem;
    line-height: 2.6rem;
    padding: 1.3rem 2rem;
}

    input[type="text"].form-control[readonly],
    [type="number"].form-control[readonly],
    [type="password"].form-control[readonly],
    [type="email"].form-control[readonly],
    textarea.form-control[readonly] {
        background-color: #fff;
    }

textarea.form-control {
    min-height: 15rem;
}

.form--styled .form-group {
    position: relative;
}

    .form--styled .form-group + .form-group {
        margin-top: 1.6rem;
    }

.form--styled .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 2rem;
    align-items: start;
    margin-left: 0;
    margin-right: 0;
}

    .form--styled .form-row + .form-group,
    .form--styled .form-group + .form-row,
    .form--styled .form-row + .form-row {
        margin-top: 1.6rem;
    }

    .form--styled .form-row > .form-group + .form-group {
        margin-top: 0;
    }

@media (max-width: 575px) {
    .form--styled .form-row {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
}

.form--styled .form-section {
    position: relative;
    border: .1rem solid var(--grey-light);
    border-radius: 1.6rem;
    padding: 2.4rem;
    background-color: #fff;
}

    .form--styled .form-section + .form-section {
        margin-top: 2rem;
    }

    .form--styled .form-section__title {
        position: absolute;
        top: 0;
        left: 1.8rem;
        transform: translateY(-50%);
        margin: 0;
        padding: 0 .8rem;
        background-color: #fff;
        font-size: 1.4rem;
        line-height: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05rem;
        color: var(--black);
    }

    .form--styled .form-section + .form-group--submit {
        margin-top: 2.4rem;
    }

.form--styled input[type="text"].form-control,
.form--styled [type="number"].form-control,
.form--styled [type="password"].form-control,
.form--styled [type="email"].form-control,
.form--styled [type="date"].form-control,
.form--styled textarea.form-control,
.form--styled select.form-control {
    height: 4rem;
    border-radius: 0;
    border: none;
    border-bottom: .1rem solid var(--blue-light);
    font-size: 1.4rem;
    line-height: 2rem;
    padding: 1.25rem 0 .75rem;
    color: var(--black);
}

    .form--styled input[type="text"].form-control:focus,
    .form--styled [type="number"].form-control:focus,
    .form--styled [type="password"].form-control:focus,
    .form--styled [type="email"].form-control:focus,
    .form--styled [type="date"].form-control:focus,
    .form--styled textarea.form-control:focus,
    .form--styled select.form-control:focus {
        border-bottom-color: var(--black);
        box-shadow: none;
    }

    .form--styled input[type="text"].form-control + label,
    .form--styled [type="number"].form-control + label,
    .form--styled [type="password"].form-control + label,
    .form--styled [type="email"].form-control + label,
    .form--styled [type="date"].form-control + label,
    .form--styled textarea.form-control + label,
    .form--styled select.form-control + label {
        color: var(--grey-form);
        position: absolute;
        top: 1.5rem;
        left: 0;
        margin-bottom: 0;
        height: 2rem;
        line-height: 2rem;
        cursor: pointer;
        transition: var(--transition-default);
    }

        .form--styled input[type="text"].form-control + label:after,
        .form--styled [type="number"].form-control + label:after,
        .form--styled [type="password"].form-control + label:after,
        .form--styled [type="email"].form-control + label:after,
        .form--styled [type="date"].form-control + label:after,
        .form--styled textarea.form-control + label:after,
        .form--styled select.form-control + label:after {
            content: "…";
            margin-left: .2rem;
        }

    .form--styled input[type="text"].form-control:user-invalid + label,
    .form--styled [type="number"].form-control:user-invalid + label,
    .form--styled [type="password"].form-control:user-invalid + label,
    .form--styled [type="email"].form-control:user-invalid + label,
    .form--styled [type="date"].form-control:user-invalid + label,
    .form--styled textarea.form-control:user-invalid + label,
    .form--styled select.form-control:user-invalid + label {
        color: var(--red);
    }

    .form--styled input[type="text"].form-control:focus + label,
    .form--styled input[type="text"].form-control.has-value + label,
    .form--styled input[type="text"].form-control.fixed-label + label,
    .form--styled input[type="number"].form-control:focus + label,
    .form--styled input[type="number"].form-control.has-value + label,
    .form--styled input[type="number"].form-control.fixed-label + label,
    .form--styled input[type="password"].form-control:focus + label,
    .form--styled input[type="password"].form-control.has-value + label,
    .form--styled input[type="password"].form-control.fixed-label + label,
    .form--styled input[type="email"].form-control:focus + label,
    .form--styled input[type="email"].form-control.has-value + label,
    .form--styled input[type="email"].form-control.fixed-label + label,
    .form--styled input[type="date"].form-control:focus + label,
    .form--styled input[type="date"].form-control.has-value + label,
    .form--styled input[type="date"].form-control.fixed-label + label,
    .form--styled textarea.form-control:focus + label,
    .form--styled textarea.form-control.has-value + label,
    .form--styled textarea.form-control.fixed-label + label,
    .form--styled select.form-control:focus + label,
    .form--styled select.form-control.has-value + label,
    .form--styled select.form-control.fixed-label + label {
        top: -.75rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--black);
    }

    /* Group labels (radio/checkbox groups). Static-position label, so it should
       use the normal label font-size — not the smaller "raised floating label" size. */
    .form--styled label.fixed-label {
        display: block;
        margin-bottom: 1rem;
        font-size: 1.4rem;
        line-height: 2rem;
        font-weight: 600;
        color: var(--black);
    }

        .form--styled input[type="text"].form-control:focus + label:after,
        .form--styled input[type="text"].form-control.has-value + label:after,
        .form--styled input[type="number"].form-control:focus + label:after,
        .form--styled input[type="number"].form-control.has-value + label:after,
        .form--styled input[type="password"].form-control:focus + label:after,
        .form--styled input[type="password"].form-control.has-value + label:after,
        .form--styled input[type="email"].form-control:focus + label:after,
        .form--styled input[type="email"].form-control.has-value + label:after,
        .form--styled input[type="date"].form-control:focus + label:after,
        .form--styled input[type="date"].form-control.has-value + label:after,
        .form--styled textarea.form-control:focus + label:after,
        .form--styled textarea.form-control.has-value + label:after,
        .form--styled select.form-control:focus + label:after,
        .form--styled select.form-control.has-value + label:after {
            content: none;
        }

    .form--styled select.form-control + label {
        /*opacity: 0;*/
    }

    .form--styled select.form-control:focus + label,
    .form--styled select.form-control.has-value + label {
        opacity: 1;
    }

    .form--styled input[type="text"].form-control.form-datepicker {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='22' viewBox='0 0 20 22'%3E%3Cpath d='M3,3H17a2,2,0,0,1,2,2V19a2,2,0,0,1-2,2H3a2,2,0,0,1-2-2V5A2,2,0,0,1,3,3ZM1,9H19M14,1V5M6,1V5' fill='none' stroke='%231289a7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: 100% 1rem;
    }

.form--styled select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 3.5' width='7' height='3.5'%3E%3Cpolygon points='7 0 0 0 3.5 3.5 7 0' fill='%231389a7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: .7rem .35rem;
    background-position: 100% 50%;
    color: var(--grey);
    -webkit-appearance: none;
    -moz-appearance: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .form--styled select.form-control.has-value {
        color: var(--black);
    }

.form--styled hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

    .form--styled hr.hr--black {
        border-color: var(--black);
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

.form--styled .small {
    margin-bottom: 0;
    color: var(--grey);
}

.form--styled .small--error {
    color: var(--red);
}

.form--styled .form-checks .form-group {
    margin-left: 3rem;
}

.form-group--geinteresseerdinoverigtekst {
    display: none;
}

#geinteresseerdin_overig:checked + label + .form-group--geinteresseerdinoverigtekst {
    display: block;
}

ul.form-radios,
ul.form-checks {
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.form-radios li input[type="radio"],
    ul.form-checks li input[type="checkbox"] {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

        ul.form-radios li input[type="radio"] ~ label,
        ul.form-checks li input[type="checkbox"] ~ label {
            position: relative;
            padding-left: 3rem;
            cursor: pointer;
            transition: var(--transition-default);
        }

            ul.form-radios li input[type="radio"] ~ label:hover,
            ul.form-checks li input[type="checkbox"] ~ label:hover {
                color: var(--blue);
            }

            ul.form-radios li input[type="radio"] ~ label:before,
            ul.form-checks li input[type="checkbox"] ~ label:before {
                content: "";
                width: 2rem;
                height: 2rem;
                border-radius: 50%;
                border: .1rem solid var(--grey-light);
                background-color: var(--blue-light);
                position: absolute;
                top: .4rem;
                left: 0;
                transition: var(--transition-default);
            }

        ul.form-radios li input[type="radio"]:checked ~ label:before,
        ul.form-checks li input[type="checkbox"]:checked ~ label:before {
            border-color: var(--blue);
            background-color: var(--blue);
        }

        ul.form-radios li input[type="radio"]:checked ~ label:after,
        ul.form-checks li input[type="checkbox"]:checked ~ label:after {
            content: "";
            position: absolute;
            top: 1.2rem;
            left: .8rem;
            width: .4rem;
            height: .4rem;
            border-radius: 50%;
            background-color: #fff;
            background-size: 1.2rem auto;
            background-position: 50% 50%;
            background-repeat: no-repeat;
        }

        ul.form-checks li input[type="checkbox"] ~ label:before {
            border-radius: .2rem;
        }

        ul.form-checks li input[type="checkbox"] ~ label:after {
            content: none !important;
        }

.dropdown-menu.datepicker {
    font-size: 1.2rem;
}

    .dropdown-menu.datepicker td,
    .dropdown-menu.datepicker th {
        width: 3rem;
        height: 3rem;
        text-transform: capitalize;
    }

    .dropdown-menu.datepicker table tr td.disabled,
    .dropdown-menu.datepicker table tr td.disabled:hover {
        color: var(--grey-light);
        opacity: .8;
    }

    .dropdown-menu.datepicker table tr td.new,
    .dropdown-menu.datepicker table tr td.old {
        color: var(--grey);
    }

    .dropdown-menu.datepicker table tr td.active {
        background-color: var(--blue) !important;
        background-image: none;
        border-radius: 0;
    }

.form--styled .button {
    margin-top: 3rem;
}

hr {
    border-top: .1rem solid var(--grey-light);
    border-bottom: none;
}

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1170px;
    }
}

@media (min-width: 1500px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1440px;
    }
}

.usps ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.usps li {
    height: 3.5rem;
    line-height: 1.5rem;
    padding: 1rem 0 1rem;
    position: relative;
    display: flex;
}

    .usps li svg {
        margin-right: 1rem;
    }

    .usps li a {
        font-weight: 600;
        color: var(--black);
    }

        .usps li a:hover {
            color: var(--blue);
        }

.usps--top {
    background-color: var(--black);
    color: #fff;
    font-size: 1.2rem;
    height: 3.5rem;
}

    .usps--top .container {
        display: flex;
        justify-content: space-between;
    }

    /* Alleen op echte desktop (>= 1200px) een statische flex-rij met alle USP's.
       Op mobiel én tablet (incl. iPad-landschap) wordt deze ul een slick-carousel;
       flex hier zou slick's display:block overschrijven waardoor de slick-track
       de pagina horizontaal laat scrollen. Tot 1200px past de volledige rij niet
       naast het secundaire menu, dus daar toont de carousel één roterende USP. */
    @media (min-width: 1200px) {
        .usps--top .navbar-usps {
            display: flex;
            justify-content: flex-start;
            gap: 3.2rem;
        }
    }


        .usps--top .navbar-usps li a {
            color: #fff;
        }

            .usps--top .navbar-usps li a:hover {
                color: var(--grey-light)
            }

    .usps--top .navbar-nav {
        display: flex;
        flex-flow: row;
        justify-content: flex-end;
        gap: 1.6rem;
    }

        .usps--top .navbar-nav li a {
            color: #fff;
            font-weight: 400;
            padding-top: 0;
            padding-bottom: 0;
        }

/* Carousel-behandeling van de bovenbalk t/m tablet-landschap (< 1200px):
   vangnet tegen horizontale overflow van de slick-track en elke USP gecentreerd. */
@media (max-width: 1199px) {
    .usps--top {
        overflow: hidden;
    }

    .usps .navbar-usps li {
        display: flex !important;
        justify-content: center;
    }
}

/* Onder 992px is het secundaire menu verborgen, dus de carousel mag de volle breedte
   pakken. Zonder breedte zou de wrapper naar 0 krimpen (slick heeft geen intrinsieke
   breedte), waardoor de tekst onzichtbaar wordt. */
@media (max-width: 991px) {
    .usps--top .usps__wrapper {
        width: 100%;
    }
}

/* Op tablet-landschap (992–1199px) staat het secundaire menu er nog náást, dus deelt
   de carousel de rij: een flex-item dat de resterende ruimte pakt. min-width:0 zodat
   slick zijn breedte correct kan berekenen en niet buiten de balk uitloopt. */
@media (min-width: 992px) and (max-width: 1199px) {
    .usps--top .usps__wrapper {
        flex: 1;
        min-width: 0;
    }
}

.navbar {
    padding: 0;
}

    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar .navbar__top,
    .navbar .navbar__bottom {
        width: 100%;
        display: flex;
        height: 7rem;
        align-items: center;
    }

    .navbar .navbar__bottom {
        height: 5.5rem;
        margin-bottom: 1.5rem;
    }


    .navbar .navbar__top {
        border-bottom: .1rem solid var(--blue-light);
    }

        .navbar .navbar__top .header__search {
            width: 100%;
            flex-wrap: nowrap;
            position: relative;
        }

            .navbar .navbar__top .header__search input {
                height: 4.4rem;
                width: calc(100% - 4.4rem);
                background-color: #f2f6f7;
                border: .1rem solid #e6e6e6;
                border-right: none;
                border-radius: 2.2rem 0 0 2.2rem;
                margin-left: 4rem;
                font-size: 1.2rem;
                padding-left: 2rem;
                padding-right: 2rem;
                color: #000;
            }

            .navbar .navbar__top .header__search .button__reset,
            .navbar .navbar__top .header__search .button__search {
                width: 4.4rem;
                height: 4.4rem;
                background-color: #f2f6f7;
                border: .1rem solid #e6e6e6;
                border-left: none;
                border-radius: 0 2.2rem 2.2rem 0;
                background-position: 0 50%;
                background-repeat: no-repeat;
                outline: none !important;
            }

            .navbar .navbar__top .header__search .button__search {
                background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='9' cy='9' r='8' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cline x1='19' y1='19' x2='14.65' y2='14.65' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
            }

            .navbar .navbar__top .header__search .button__close {
                display: none;
            }

        .navbar .navbar__top .header__button {
            background: none;
            border: none;
            box-shadow: none;
            outline: none !important;
            font-weight: 300;
            color: #000;
            white-space: nowrap;
        }

        .navbar .navbar__top .header__button--account,
        .navbar .navbar__top .header__button--cart,
        .navbar .navbar__top .dropdown__lang button {
            margin-left: 4rem;
            padding-left: 3.5rem;
            height: 3rem;
            line-height: 3rem;
            position: relative;
        }

            .navbar .navbar__top .header__button--account:hover,
            .navbar .navbar__top .header__button--cart:hover,
            .navbar .navbar__top .dropdown__lang button:hover {
                color: var(--blue);
            }

            .navbar .navbar__top .header__button--account:before,
            .navbar .navbar__top .header__button--cart:before,
            .navbar .navbar__top .dropdown__lang button:before {
                content: "";
                width: 3rem;
                height: 3rem;
                background-position: 0 50%;
                background-repeat: no-repeat;
                position: absolute;
                top: 0;
                left: 0;
            }

            .navbar .navbar__top .header__button--account:before {
                background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='20' viewBox='0 0 18 20'%3E%3Cpath d='M17,19V17a4,4,0,0,0-4-4H5a4,4,0,0,0-4,4v2' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Ccircle cx='9' cy='5' r='4' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
            }

            .navbar .navbar__top .header__button--cart:before {
                background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='23' viewBox='0 0 24 23'%3E%3Cpath d='M9,20a1,1,0,1,1-1,1A1,1,0,0,1,9,20Zm11,0a1,1,0,1,1-1,1A1,1,0,0,1,20,20ZM1,1H5L7.68,14.39a2,2,0,0,0,2,1.61H19.4a2,2,0,0,0,2-1.61L23,6H6' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
            }

            .navbar .navbar__top .dropdown__lang button:before {
                background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='10' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cline x1='1' y1='11' x2='21' y2='11' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath d='M11,1a15.32,15.32,0,0,1,4,10,15.32,15.32,0,0,1-4,10A15.32,15.32,0,0,1,7,11,15.32,15.32,0,0,1,11,1Z' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
            }

        .navbar .navbar__top .header__button--account-active:after {
            content: "";
            width: 0.7rem;
            height: 0.7rem;
            border-radius: 50%;
            background-color: var(--green);
            position: absolute;
            top: 0.1rem;
            left: 1.1rem;
        }

        .navbar .navbar__top .header__button--cart .cart__count {
            position: absolute;
            top: -.2rem;
            left: 1.3rem;
            width: 1.7rem;
            height: 1.7rem;
            border-radius: .8rem;
            background-color: var(--red);
            font-size: 1rem;
            line-height: 1.7rem;
            text-align: center;
            color: #fff;
            font-weight: 600;
        }

        .navbar .navbar__top .header__button--cart .cart__count--lg {
            width: 2.4rem;
            left: 1rem;
        }

        .navbar .navbar__top .header__button--cart.animate .cart__count {
            animation: updateCart .3s ease-in-out forwards;
        }

    .navbar .nav-item:not(:last-of-type) {
        margin-right: 5rem;
    }

    .navbar .navbar__top .dropdown__lang button,
    .navbar .navbar__top .dropdown__account button {
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 2rem;
        position: relative;
    }

        .navbar .navbar__top .dropdown__lang button:after,
        .navbar .navbar__top .dropdown__account button:after {
            border: none;
            content: "";
            background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpolyline points='1 1 7 7 13 1' fill='none' stroke='%23ccc' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: 100% 50%;
            width: 1.5rem;
            height: 3rem;
            position: absolute;
            top: 0;
            right: 0;
            transition: transform .2s linear;
        }

        .navbar .navbar__top .dropdown__lang button:hover:after,
        .navbar .navbar__top .dropdown__account button:hover:after {
            transform: translateY(.3rem);
        }

#navbarMain {
    position: relative;
}

.navbar .nav-item.dropdown {
    position: initial;
}

    .navbar .nav-item.dropdown.dropdown--small {
        position: relative;
    }

.navbar .nav-link {
    font-weight: 600;
    color: #000;
    height: 5.5rem;
    padding: 0 !important;
    display: flex;
    align-items: center;
    position: relative;
}

    .navbar .nav-link:hover,
    .navbar .nav-item:hover .nav-link {
        color: var(--blue);
    }

    .navbar .nav-link.dropdown-toggle {
        padding: 0 2.5rem 0 0 !important;
        position: relative;
    }

        .navbar .nav-link.dropdown-toggle:after {
            border: none;
            content: "";
            background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpolyline points='1 1 7 7 13 1' fill='none' stroke='%23ccc' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: 100% 50%;
            width: 1.5rem;
            height: 3rem;
            position: absolute;
            top: 1.4rem;
            right: 0;
            transition: transform .2s linear;
        }

    .navbar .nav-link:hover:after {
        transform: translateY(.3rem);
    }

.navbar .nav-item.dropdown:hover .nav-link:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent var(--blue-light) transparent;
    position: absolute;
    left: 0;
    bottom: 0;
}

.navbar .nav-link {
    position: relative;
}

    .navbar .nav-link .count {
        position: absolute;
        top: 1.4rem;
        right: -1.7rem;
        width: 1.7rem;
        height: 1.7rem;
        border-radius: .8rem;
        background-color: var(--blue);
        font-size: 1rem;
        line-height: 1.7rem;
        text-align: center;
        color: #fff;
        font-weight: 600;
    }

@media(max-width: 991px) {
    .navbar .navbar__bottom {
        height: 0;
        margin: 0;
    }

    /* In het mobiele menu geen absolute positionering, anders kun je horizontaal scrollen */
    .navbar .nav-link .count {
        position: relative;
        top: unset;
        right: unset;
        margin-left: 1rem;
    }
}

.dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border: .1rem solid var(--blue-light);
    border-radius: .5rem;
    margin-top: 1rem;
}

.dropdown-item {
    font-size: 1.4rem;
}

    .dropdown-item.active {
        background-color: var(--blue);
    }

    .dropdown-item:active {
        background-color: #fff;
        color: var(--blue);
    }

    .dropdown-item:not(.active):hover {
        background-color: #fff;
        color: var(--blue);
    }

    .dropdown-item:first-of-type {
        border-radius: .5rem .5rem 0 0;
    }

    .dropdown-item:last-of-type {
        border-radius: 0 0 .5rem .5rem;
    }

.navbar-nav .dropdown--small .dropdown-menu {
    width: 100%;
    min-width: 24rem;
}

@media (min-width: 768px) {
    .navbar-nav .dropdown--large .dropdown-menu {
        width: 722px;
    }
}

@media (min-width: 992px) {
    .navbar-nav .dropdown--large .dropdown-menu {
        width: 962px;
    }
}

@media (min-width: 1200px) {
    .navbar-nav .dropdown--large .dropdown-menu {
        width: 1142px;
    }
}

.navbar-nav .dropdown-menu {
    background-color: var(--blue-light);
    border: none;
    border-radius: 0;
    top: calc(100% - .1rem);
    left: 0;
    padding: 1.5rem 2rem;
    margin-top: 0;
    font-size: 1.4rem;
}

    .navbar-nav .dropdown-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .navbar-nav .dropdown-menu ul.megamenu-level-1 {
            column-count: 4;
        }

            .navbar-nav .dropdown-menu ul.megamenu-level-1 li {
                break-inside: avoid;
            }

        .navbar-nav .dropdown-menu ul.megamenu-level-2 {
            margin-bottom: 1.5rem;
        }

    .navbar-nav .dropdown-menu a {
        color: var(--black);
        line-height: 3rem;
        padding: .5rem 0;
        display: block;
        width: 100%;
    }

        .navbar-nav .dropdown-menu a:hover {
            color: var(--blue);
        }

    .navbar-nav .dropdown-menu .megamenu-item-1 {
        font-weight: 600;
    }

.navbar-nav .dropdown--large ul.colmenu-level-1 {
    width: 20rem;
    min-height: 46rem;
}

.navbar-nav .dropdown-menu ul.colmenu-level-1 .colmenu-wrapper {
    display: none;
    column-count: 4;
}

.navbar-nav .dropdown-menu ul.colmenu-level-2 {
    break-inside: avoid;
    margin-right: 3rem;
}

    .navbar-nav .dropdown-menu ul.colmenu-level-2 > li {
        break-inside: avoid;
    }

.navbar-nav .dropdown-menu ul.colmenu-level-3 {
    margin-bottom: 1.5rem;
    margin-left: 1rem;
}

@media(min-width: 992px) {
    .navbar-nav .dropdown-menu ul.colmenu-level-3 {
        opacity: .8;
    }
}

.navbar-nav .dropdown-menu .colmenu-item-1 {
    display: block;
    font-size: 1.6rem;
    line-height: 2rem;
    padding: .5rem 0 2rem 0;
    position: relative;
}

.navbar-nav .dropdown--large .dropdown-menu .colmenu-item-1.has--children:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
    width: .6rem;
    height: 1.2rem;
    position: absolute;
    top: 1rem;
    right: 0;
    transition: var(--transition-default);
}

.navbar-nav .dropdown--large .dropdown-menu .colmenu-level-1 > li:hover .colmenu-item-1.has--children:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%231289a7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
    width: .6rem;
    height: 1.2rem;
    position: absolute;
    top: 1rem;
    right: 0;
    transition: var(--transition-default);
}

.navbar-nav .dropdown--large .dropdown-menu ul.colmenu-level-1 li:hover .colmenu-item-1 {
    color: var(--blue);
}

.navbar-nav .dropdown-menu .colmenu-item-2 {
    font-weight: 600;
}

.navbar-nav .dropdown--small .dropdown-menu ul.colmenu-level-1 .colmenu-wrapper {
    display: flex !important;
    column-count: unset;
}

.navbar__mobile {
    display: none;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

@media(min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }

        .navbar .nav-item.dropdown:hover .dropdown-menu:before {
            content: "";
            width: 100%;
            height: 1.5rem;
            position: absolute;
            top: -1.5rem;
            left: 0;
            background: transparent;
        }

    .navbar-nav .dropdown--large .dropdown-menu ul.colmenu-level-1 li:hover .colmenu-wrapper {
        display: block;
        position: absolute;
        top: 1.5rem;
        left: 20rem;
        padding-left: 6rem;
        height: 100%;
        max-height: 46rem;
    }

    .dropdown__close,
    .dropdown__title,
    .dropdown__trigger,
    .dropdown__all {
        display: none;
    }

    .navbar-nav .dropdown-menu--brands ul.colmenu-level-1 {
        width: calc(4 * 20rem);
        column-count: 4;
    }

        .navbar-nav .dropdown-menu--brands ul.colmenu-level-1 li {
            width: 20rem;
            display: inline-block;
        }
}

#navbarMain .nav-item.nav-item--lang {
    display: none;
}

@media(max-width: 991px) {
    #jsMenuSecondary {
        display: none;
    }

    #jsMenuMain {
        width: 100%;
        height: calc(100vh - 5.5rem);
        overflow-y: auto;
        padding-bottom: 10rem;
    }

    .navbar-brand {
        margin: 0 auto;
    }

    .header__button {
        display: none;
    }

    .navbar .navbar__top .header__search {
        width: 0;
    }

        .navbar .navbar__top .header__search > input,
        .navbar .navbar__top .header__search > button {
            display: none;
        }

    body.menu-open .navbar__bottom {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        background-color: transparent;
        z-index: 16;
    }

    .navbar__mobile {
        display: flex;
        justify-content: space-evenly;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100vw;
        height: 5.8rem;
        padding: 0;
        border-top: .1rem solid var(--grey-light);
        background-color: #fff;
        z-index: 10;
    }

        .navbar__mobile button,
        .navbar__mobile a {
            font-size: .9rem;
            line-height: .9rem;
            color: var(--grey);
            text-transform: lowercase;
            text-align: center;
            width: 20%;
            min-width: 20%;
            max-width: 20%;
            border: none;
            outline: none;
            box-shadow: none;
            background-color: #fff;
            margin: 0;
            padding: 1rem 0;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            align-content: flex-end;
        }

        .navbar__mobile .button__toggler span {
            position: absolute;
            width: 1.8rem;
            height: .2rem;
            background-color: var(--black);
            transform-origin: center center;
            transition: all .3s ease-in-out;
        }

        .navbar__mobile .button__toggler[aria-expanded="false"] span:nth-child(1) {
            top: 1.4rem;
        }

        .navbar__mobile .button__toggler[aria-expanded="false"] span:nth-child(2) {
            top: 2rem;
        }

        .navbar__mobile .button__toggler[aria-expanded="false"] span:nth-child(3) {
            top: 2.6rem;
        }

        .navbar__mobile .button__toggler[aria-expanded="true"] span:nth-child(1) {
            top: 2rem;
            transform: rotate(-45deg);
        }

        .navbar__mobile .button__toggler[aria-expanded="true"] span:nth-child(2) {
            top: 2rem;
            transform: scaleX(0);
        }

        .navbar__mobile .button__toggler[aria-expanded="true"] span:nth-child(3) {
            top: 2rem;
            transform: rotate(45deg);
        }

        .navbar__mobile .button__search:before,
        .navbar__mobile .button__account:before {
            content: "";
            width: 3rem;
            height: 3rem;
            background-position: 0 50%;
            background-repeat: no-repeat;
            position: absolute;
            top: 1rem;
            left: calc(50% - 1.5rem);
            background-position: 50% 0;
        }

        .navbar__mobile .button__search:before {
            background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='9' cy='9' r='8' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cline x1='19' y1='19' x2='14.65' y2='14.65' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
        }

        .navbar__mobile .button__account:before {
            background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='20' viewBox='0 0 18 20'%3E%3Cpath d='M17,19V17a4,4,0,0,0-4-4H5a4,4,0,0,0-4,4v2' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Ccircle cx='9' cy='5' r='4' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
        }

        .navbar__mobile .header__button--cart {
            margin-left: 0 !important;
            padding-left: 0 !important;
            height: unset !important;
            line-height: .9rem !important;
        }

            .navbar__mobile .header__button--cart:before {
                top: 1rem !important;
                left: calc(50% - 1.5rem) !important;
                background-position: 50% 0 !important;
            }

            .navbar__mobile .header__button--cart .cart__count {
                top: .5rem !important;
                left: calc((50% - 1.5rem) + 1.8rem) !important;
            }

    #navbarMain {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        z-index: 16;
        transform: translateX(100vw);
        transition: transform .3s ease-in-out !important;
        background-color: #fff;
        overflow: hidden;
        padding: 0;
        font-size: 1.6rem;
    }

        #navbarMain.show {
            transform: translateX(0);
        }

        #navbarMain .nav-item {
            border-bottom: .1rem solid var(--blue-light-hover);
            padding-left: 2rem;
        }

            #navbarMain .nav-item.dropdown {
                position: relative;
            }

            #navbarMain .nav-item.nav-item--secondary .nav-link {
                font-weight: 400;
            }

            #navbarMain .nav-item.nav-item--lang {
                padding-left: 3rem;
                padding-top: 2rem;
                padding-bottom: 2rem;
                display: list-item;
            }

                #navbarMain .nav-item.nav-item--lang svg {
                    margin-bottom: 1rem;
                }

                #navbarMain .nav-item.nav-item--lang .nav-link {
                    font-size: 1.4rem;
                    font-weight: 400;
                    height: 4rem;
                    line-height: 4rem;
                }

                    #navbarMain .nav-item.nav-item--lang .nav-link.active {
                        font-weight: 600;
                        opacity: 1;
                        color: var(--blue);
                    }

        #navbarMain .dropdown__trigger,
        #navbarMain .dropdown__back,
        #navbarMain .dropdown__close,
        .productfilter__wrapper .dropdown__close {
            width: 5.5rem;
            height: 5.5rem;
            position: absolute;
            top: 0;
            right: 0;
            border: none;
            outline: none;
            box-shadow: none;
            margin: 0;
            padding: 0;
            background-color: var(--blue-light);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
            background-position: 50% 50%;
            background-repeat: no-repeat;
        }

        #navbarMain .dropdown__close,
        .productfilter__wrapper .dropdown__close {
            background-color: rgba(255, 255, 255, .1);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M13,1,1,13M1,1,13,13' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
            position: fixed;
            z-index: 2;
        }

        #navbarMain .dropdown__trigger {
            background-color: #fff;
        }

            #navbarMain .dropdown__trigger:before {
                content: "";
                width: 100vw;
                height: 100%;
                position: absolute;
                top: 0;
                right: 0;
            }

        #navbarMain .nav-item:not(:last-of-type) {
            margin-right: 0;
        }

        #navbarMain a:hover,
        #navbarMain li:hover a {
            color: var(--black) !important;
        }

        #navbarMain .nav-item.dropdown:hover .nav-link:before {
            content: none;
        }

        #navbarMain .nav-link.dropdown-toggle {
            padding: 0 !important;
        }

        #navbarMain .dropdown-menu,
        #navbarMain .dropdown-menu ul.colmenu-level-1 li .colmenu-wrapper,
        #navbarMain .dropdown-menu ul.colmenu-level-3 {
            position: fixed !important;
            top: 0;
            left: 0;
            width: 100vw;
            min-width: 100vw;
            height: 100vh;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            background-color: #fff;
            font-size: 1.6rem;
            z-index: 1;
            display: flex;
            flex-flow: column;
            transition: all .5s ease-out !important;
            transform: translateX(100vw);
        }

            #navbarMain .dropdown-menu.show,
            #navbarMain .dropdown-menu ul.colmenu-level-1 li .colmenu-wrapper.show,
            #navbarMain .dropdown-menu ul.colmenu-level-3.show {
                transform: translateX(0);
            }

        #navbarMain .dropdown__title {
            background-color: var(--black);
            height: 5.5rem;
            min-height: 5.5rem;
            width: 100%;
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0;
            color: #fff;
        }

            #navbarMain .dropdown__title span {
                font-size: 2rem;
            }

        #navbarMain .dropdown__back {
            right: unset;
            left: 0;
            transform: scaleX(-1);
            background-color: rgba(255, 255, 255, .1);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14'%3E%3Cpolyline points='1 13 7 7 1 1' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
        }

        #navbarMain .navbar-nav:last-of-type .nav-link {
            font-weight: 400;
        }

        #navbarMain .dropdown__all a {
            font-weight: 600 !important;
        }

        #navbarMain .navbar-nav:last-of-type,
        #navbarMain .dropdown-menu .colmenu-level-1,
        #navbarMain .dropdown-menu .colmenu-level-2,
        #navbarMain .dropdown-menu .colmenu-level-3 {
            width: 100%;
            overflow-y: auto;
            padding-bottom: 10rem;
        }

            #navbarMain .dropdown-menu .colmenu-level-1 > li,
            #navbarMain .dropdown-menu .colmenu-level-2 > li,
            #navbarMain .dropdown-menu .colmenu-level-3 > li:not(.dropdown__title) {
                border-bottom: 0.1rem solid var(--blue-light-hover);
                padding-left: 2rem;
                position: relative;
            }

            #navbarMain .dropdown-menu .colmenu-level-3 > li.dropdown__title {
                padding: 0;
                margin: 0;
            }

        #navbarMain .dropdown-menu .colmenu-item-1,
        #navbarMain .dropdown-menu .colmenu-item-2,
        #navbarMain .dropdown-menu .colmenu-item-3 {
            height: 5.5rem;
            padding: 0;
            display: flex;
            align-items: center;
            font-weight: 400;
        }

            #navbarMain .dropdown-menu .colmenu-item-1.has--children:after {
                content: none;
            }
}

.breadcrumb__space {
    height: 3rem;
}

.breadcrumb__container {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 2rem;
    position: relative;
}

    .breadcrumb__container .title__back {
        margin-block: 0;
        display: none;
    }

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item {
    font-size: 1.2rem;
    line-height: 2.6rem;
}

    .breadcrumb-item a {
        color: var(--grey);
    }

        .breadcrumb-item a:hover {
            color: var(--blue);
        }

    .breadcrumb-item.active {
        color: var(--black);
        font-weight: 500;
    }

    .breadcrumb-item + .breadcrumb-item {
        padding-left: 1.5rem;
    }

        .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            color: var(--grey);
            padding-right: 1.5rem;
        }

@media(max-width: 767px) {
    .breadcrumb {
        display: none;
    }

    body.shopproduct .breadcrumb__container .title__back,
    body.collection .breadcrumb__container .title__back {
        display: flex;
        transform: translateY(-6rem);
    }

    body.tekst .breadcrumb__container {
        height: 0;
    }

        body.tekst .breadcrumb__container .title__back {
            display: flex;
            transform: translateY(-4.5rem);
        }
}

.title__bar {
    display: flex;
    flex-flow: column;
}

.title__back {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    border: .1rem solid var(--blue-light);
    margin: 0 2rem .75rem 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='11' viewBox='0 0 8 14'%3E%3Cpolyline points='7 13 1 7 7 1' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
    background-size: .5rem auto;
    background-position: calc(50% - .1rem) 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: -.25rem;
    left: -4rem;
    display: flex;
}

    .title__back:hover {
        background-color: var(--blue-light);
        background-position-x: calc(50% - .4rem);
    }

.title__results {
    font-size: 1.2rem;
    margin-left: 2rem;
}

.autosuggest__wrapper {
    width: calc(100% - 4rem);
    min-height: 4.4rem;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 1rem;
    background-color: #fff;
    display: none;
    z-index: 16;
}

    .autosuggest__wrapper.--hasresults {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .autosuggest__wrapper .autosuggest__form {
        display: flex;
    }

        .autosuggest__wrapper .autosuggest__form input {
            margin-left: 0 !important;
            background-color: #fff !important;
            border: none !important;
            border-radius: 1rem !important;
            font-size: 1.4rem !important;
        }

            .autosuggest__wrapper .autosuggest__form input:focus {
                outline: none;
                box-shadow: none;
            }

        .autosuggest__wrapper .autosuggest__form button {
            background-color: #fff !important;
            border: none !important;
        }

        .autosuggest__wrapper .autosuggest__form .button__reset {
            background-image: none;
            position: relative;
        }

            .autosuggest__wrapper .autosuggest__form .button__reset:after {
                content: "";
                width: 2rem;
                height: 2rem;
                position: absolute;
                top: 1.2rem;
                left: 0;
                background-color: var(--blue-light);
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M13,1,1,13M1,1,13,13' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
                background-size: .9rem auto;
                background-repeat: no-repeat;
                background-position: 50% 50%;
                background-repeat: no-repeat;
                border-radius: 50%;
            }


.autosuggest__results,
.quickadd__results {
    background-color: #fff;
    position: absolute;
    top: 4.4rem;
    right: 0;
    width: 100%;
    border-radius: 0 0 1rem 1rem;
}

.autosuggest__noresults p {
    margin: 10px 0;
    color: var(--blue);
}

.autosuggest {
    margin: 0 2rem;
    padding: 0 0 1rem;
}

    .autosuggest a,
    .autosuggest a mark {
        color: var(--black);
        transition: var(--transition-default);
    }

        .autosuggest a:hover,
        .autosuggest a:hover mark {
            color: var(--blue);
        }

.autosuggest__categories {
    display: flex;
    flex-flow: column;
}

    .autosuggest__categories a {
        padding-bottom: 1.5rem;
    }

        .autosuggest__categories a mark {
            font-weight: 600;
            padding: 0;
            background-color: transparent;
        }

.autosuggest__products {
    border-top: .1rem solid var(--blue-light);
}

    .autosuggest__products > div {
        display: flex;
        align-items: center;
    }

        .autosuggest__products > div .button {
            margin-left: auto;
        }

        .autosuggest__products > div a:not(.button) {
            width: 100%;
            margin-right: 1.5rem;
        }

    .autosuggest__products a {
        display: flex;
    }

    .autosuggest__products img {
        width: 7rem;
        height: auto;
        margin: 1rem 1rem 1rem 0;
    }

    .autosuggest__products a > div {
        display: flex;
        flex: 1;
    }

        .autosuggest__products a > div > span {
            display: flex;
            flex-flow: column;
            justify-content: center;
        }

    .autosuggest__products .autosuggest__brand {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

    .autosuggest__products .autosuggest__title {
        font-size: 1.6rem;
        line-height: 2rem;
        font-weight: 700;
    }

        .autosuggest__products .autosuggest__title mark {
            padding: 0;
            background-color: transparent;
        }

    .autosuggest__products .autosuggest__sku {
        font-size: 1rem;
        line-height: 1.6rem;
        color: var(--grey);
    }

        .autosuggest__products .autosuggest__sku strong {
            color: var(--black);
            font-weight: 500;
        }

    .autosuggest__products .autosuggest__price {
        align-items: flex-end;
        margin-left: auto;
        min-width: 8rem;
    }

.autosuggest__news,
.autosuggest__brands {
    border-top: .1rem solid var(--blue-light);
    padding-top: 1.5rem;
    display: flex;
    flex-flow: column;
}

    .autosuggest__news > p {
        margin: 2rem 0;
    }

    .autosuggest__news a,
    .autosuggest__brands a {
        padding-bottom: 1.5rem;
        font-weight: 600;
    }

        .autosuggest__news a mark,
        .autosuggest__brands a mark {
            padding: 0;
            background-color: transparent;
        }

body.mobile-autosuggest {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    overflow: hidden;
}

@media(max-width: 991px) {
    .autosuggest__wrapper {
        display: flex;
        position: fixed;
        top: unset;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: var(--app-height);
        padding: 1.5rem;
        z-index: 2000;
        background-color: transparent;
        transform: translateY(100vh);
        transition: var(--transition-default);
    }

        .autosuggest__wrapper:before {
            content: "";
            width: 100vw;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, .5);
        }

        .autosuggest__wrapper.show {
            transform: translateY(0);
        }

        .autosuggest__wrapper .autosuggest__form {
            position: relative;
            width: 100%;
            z-index: 1;
        }

            .autosuggest__wrapper .autosuggest__form input {
                border-top-right-radius: 0 !important;
                border-bottom-right-radius: 0 !important;
                width: 100% !important;
            }

        .autosuggest__wrapper.--hasresults .autosuggest__form input {
            border-bottom-left-radius: 0 !important;
        }

    .navbar .navbar__top .header__search .button__reset {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .navbar .navbar__top .header__search .button__search {
        border-top-right-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
    }

    .autosuggest__wrapper.--hasresults .autosuggest__form .button__search {
        border-bottom-right-radius: 0 !important;
    }


    .navbar .navbar__top .header__search .button__close {
        display: flex;
        position: fixed;
        left: calc(50% - 25vw);
        bottom: 1.5rem;
        width: 50vw;
        justify-content: center;
        padding-right: 2.5rem;
        z-index: 2;
    }

    .autosuggest__form {
        font-size: 0;
    }

    .autosuggest__results {
        max-width: calc(100% - 3rem);
        right: unset;
        left: 1.5rem;
        top: 5.8rem;
        z-index: 2;
    }

    .autosuggest__products > div {
        width: 100%;
        margin: 1rem 0;
    }

        .autosuggest__products > div:last-of-type {
            margin-bottom: 0;
        }

    .autosuggest__products a > div {
        display: block;
        flex: unset;
        width: 100%;
    }

    .autosuggest__products .autosuggest__price {
        display: none;
    }

    .autosuggest__products img {
        width: 4rem;
        max-height: 4rem;
    }
}

@media (min-width: 992px) {
    .modal-dialog {
        max-width: 700px;
    }
}

.modal-content {
    border: none;
    border-radius: 1rem;
    font-size: 1.4rem;
}

.modal-header {
    padding: 2rem;
    border-bottom: none;
    position: relative;
}

    .modal-header:after {
        content: "";
        width: calc(100% - 4rem);
        height: .1rem;
        background-color: var(--blue-light);
        position: absolute;
        bottom: 0;
        left: 2rem;
    }

    .modal-header button.close {
        position: relative;
        opacity: 1;
        height: 4rem;
        width: 4rem;
        margin-top: 0;
        margin-right: 0;
    }

        .modal-header button.close:after {
            content: "";
            width: 2rem;
            height: 2rem;
            position: absolute;
            top: 1rem;
            left: 1rem;
            background-color: var(--blue-light);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M13,1,1,13M1,1,13,13' fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
            background-size: .9rem auto;
            background-repeat: no-repeat;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            border-radius: 50%;
        }

.modal-body {
    padding: 2rem;
}

.notification {
    font-size: 1.2rem;
    line-height: 2rem;
    color: var(--grey);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Cpath d='M11,21A10,10,0,1,0,1,11,10,10,0,0,0,11,21ZM11,7v4m0,4h0' fill='none' stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
    background-position: 0 1rem;
    background-repeat: no-repeat;
    padding-left: 4rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    min-height: 4rem;
}

.iframe__container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

    .iframe__container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.cookies__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
}

.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 0;
    background-color: var(--blue-light);
}

    .cookies .container {
        position: relative;
        z-index: 1;
    }

    .cookies .cookies__buttons {
        margin-top: 3rem;
    }

    .cookies .button {
        margin-right: 2rem;
    }

@keyframes updateCart {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(.5);
    }

    70% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

.modal__add .modal-dialog {
    max-width: 600px;
}

.modal__add .modal-header {
    align-items: center;
}

    .modal__add .modal-header .close {
        transform: translateY(-.3rem);
        outline: none;
    }

.modal__add .modal-body {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
}

.modal__add .modal-footer {
    padding: 1.5rem;
}

    .modal__add .modal-footer .button:first-of-type {
        padding-right: 4rem;
    }

    .modal__add .modal-footer .button--cart {
        width: 100%;
        justify-content: center;
        padding-left: 8rem;
    }

@media(max-width: 991px) {
    .modal__add .modal-footer .button {
        width: 100%;
        justify-content: center;
    }

    .modal__add .modal-footer .button--cart {
        order: 0;
    }

    .modal__add .modal-footer .button:not(.button--cart) {
        order: 1;
        border: none !important;
    }
}

@media(min-width: 992px) {
    .modal__add .modal-footer {
        flex-wrap: nowrap;
    }

        .modal__add .modal-footer .button + .button {
            margin-left: 1.5rem;
        }
}

.modal__add .addpopup__amount {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    min-width: 14rem;
    width: 14rem;
}

.modal__add .product__discounts + .addpopup__amount {
    margin-top: 3rem;
}

.addpopup__amount input.cart__amount::-webkit-outer-spin-button,
.addpopup__amount input.cart__amount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.addpopup__amount input.cart__amount[type=number] {
    -moz-appearance: textfield;
}

.addpopup__amount input.cart__amount {
    width: 3.5rem;
    height: 4rem;
    text-align: center;
    border: none;
    border-bottom: .1rem solid var(--blue-light);
    padding: 0;
    margin: 0 1rem;
}

    .addpopup__amount input.cart__amount:focus {
        outline: none;
        border-bottom-color: var(--blue);
    }

.addpopup__amount .button {
    width: 4rem;
    height: 4rem;
    min-height: unset;
    max-height: 4rem;
    border-radius: 50%;
    padding: 0;
    background-color: var(--blue-light);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 1.2rem auto;
    border: none;
    transition: var(--transition-default);
}

    .addpopup__amount .button:hover,
    .addpopup__amount .button:active,
    .addpopup__amount .button:focus {
        background-color: var(--blue-light-hover);
        border: none;
        outline: none;
    }

    .addpopup__amount .button.button--minus {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='3' viewBox='0 0 16 2'%3E%3Cline x1='1' y1='1' x2='15' y2='1' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
    }

    .addpopup__amount .button.button--plus {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M8,1V15M1,8H15' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
    }

.addpopup__complete {
    display: none;
    width: 100%;
    text-align: center;
}

    .addpopup__complete p {
        color: var(--green);
        font-weight: 700;
    }

    .addpopup__complete .button {
        position: relative;
        padding-right: 7rem;
        margin-left: auto;
    }

        .addpopup__complete .button i {
            font-style: normal;
            width: 2.4rem;
            height: 2.4rem;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background-color: #fff;
            color: var(--green);
            border-radius: 50%;
            position: absolute;
            top: calc(50% - 1.2rem);
            right: 2rem;
        }

@media(max-width: 991px) {
    .zopim {
        bottom: 70px !important;
    }

    #launcher {
        bottom: 65px !important;
    }

    .u-userLauncherColor:not([disabled]) svg path {
        fill: #fff !important;
    }
}

.video__back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999999;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transition: all .3s linear;
    -webkit-backface-visibility: hidden;
}

    .video__back:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #000;
        opacity: .4;
    }

    .video__back.active {
        display: flex;
        opacity: 1;
    }

.video__popup {
    position: relative;
}

.video__content {
    width: 70vw;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 56.25%;
    background-color: #000;
    z-index: 0;
}

    .video__content iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        float: unset;
        padding: 0;
        margin: 0;
    }

.video__close {
    outline: none;
    border: none;
    box-shadow: none;
    position: absolute;
    top: -1.6rem;
    right: -1.6rem;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .15);
    z-index: 2;
    transform-origin: center center;
    transition: var(--transition-default);
    animation: videoClose .3s ease-in-out forwards;
    animation-delay: 2s;
    opacity: 0;
}

@media(max-width: 767px) {
    .video__content {
        width: 90vw;
    }
}

@keyframes videoClose {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        opacity: 1;
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
