html, body {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-family: regulator-nova, sans-serif;
    font-weight: 900;
    font-style: normal;
}

html {
    --font-heading: regulator-nova, sans-serif;
    --font-text: filson-pro, sans-serif;
    --font-light: filson-soft, sans-serif;
    --color-white: #fff;
    --color-text: #02144C;
    --color-primary: #CAB5FF;
    --color-light: #ECE5FE;
    --color-secondary: #D7FFB5;
    --color-red-primary: #e60755;
    --color-red-secondary: #ffb9d1;
    --gradient: linear-gradient(0deg, #FFFFFF 0%, #FDFCFF 45%, #e3ddef 100%);
    --gradientr: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 45%, #e3ddef 100%);
    --max-width: 1290px;
    --shadow: 10px 13px 40px #02144C26;
    --shadow-light: 30px 33px 40px #02144c0b;

    font-family: var(--font-light);
    font-weight: 400;
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

body {
    background-color: #fff;
}

#wrap {
    overflow-x: hidden;
}

.inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.pagination .screen-reader-text {
    display: none;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination .page-numbers {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    text-decoration: none;
    color: var(--color-primary);
    cursor: default;
}

.pagination .page-numbers.current {
    color: var(--color-text);
    font-weight: 900;
}

.pagination a.page-numbers {
    cursor: pointer;
    transition: all 300ms ease-in;
    outline: solid 0px transparent;
    color: var(--color-text);
    cursor: pointer;
}

.pagination a.page-numbers:hover {
    outline: solid 2px var(--color-text);
    outline-offset: 3px;

    transition: all 150ms ease-out;
}

.pagination .page-numbers + .page-numbers {
    margin-left: 10px;
}


@media only screen and (max-width: 1330px) {
    html {
        --max-width: calc(100vw - 40px);
    }
}


@media only screen and (max-width: 400px) {
    html {
        --max-width: calc(100vw - 20px);
    }
}


.list-items {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.list-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.list-item::after {
    content: '';
    display: block;
    clear: both;
}

.list-item:not(:last-of-type) {
    margin-bottom: 20px;
}

.list-item-image {
    position: relative;
    float: left;
    width: 25%;
    margin-bottom: 5px;
}

.list-item-image a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.list-item-image img {
    border-radius: 0;
    width: 100%;
    aspect-ratio: 2.5;
    object-fit: contain;
    object-position: 50% 50%;
}

.list-item-image span {
    margin-top: 10px;
}

.list-item-image a,
.list-item-link a {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none!important;
    text-align: center;
}

.list-item-image a:hover span,
.list-item-link a:hover {
    text-decoration: underline!important;
}

body.has-sidemenu section .inner,
body.has-sidemenu #footer .inner {
    padding-left: 40px;
}

.list-items .list-item-description {
    flex-basis: 50%;
}

.list-items .list-item-description2 {
    clear: both;
    padding-top: 20px;
    width: 100%;
}

#kennisbank-content .list-items .list-item-description p:last-child,
#oplossingen-content .list-items .list-item-description p:last-child {
    margin-bottom: 0;
}

.dont-crop {
    object-fit: contain!important;
}

.grecaptcha-badge { visibility: hidden; }
.captcha-notice {
    font-size: 12px;
}
.captcha-notice a {
    color: inherit;
    text-decoration: underline;
}


@media only screen and (max-width: 1330px) {
    .woocommerce-cart-wrapper {
        flex-direction: column;
    }
    .woocommerce-cart-wrapper .woocommerce-cart-form,
    .woocommerce-cart-wrapper .cart-collaterals,
    .woocommerce-cart #payment, .woocommerce-checkout #payment, #add_payment_method #payment {
        width: 100%;
    }
}