.page-list-async {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 6rem;
    max-width: 1600px;
    margin: 0 auto;

}

@media screen and (min-width: 1280px) {
    .page-list-async {
        grid-template-columns: 2fr 5fr;
    }
}

@media screen and (max-width: 1280px) {
    .page-list-filter {
        /* display: none; */
        transform: translateX(-100%);
        transition: all 0.5s ease-out;
        /* transform: translateX(0); */
        box-shadow: 1px 2px 5px #eee;
        padding: 40px;
        padding-top: 60px;
        position: fixed;
        width: 80vw;
        top: 0;
        left: 0;
        background: white;
        z-index: 999;
        min-height: 100%;
        /* bod */
    }

}

@media screen and (min-width: 1280px) {
    .product-filter-toggle {
        display: none;
    }

    .page-list-filter {
        justify-self: end;
        max-width: 400px;

    }

    .filter-mob {
        display: none !important;
    }
}




.omslides .product {
    background: white;
}

/* .kleuren-carousel:empty {
    display: none;
} */
.binnencontent {
    /* background-color: #fbf4ee !important; */
}

.page-type-structuur .omcontent>.content {
    /* max-width: initial; */
}

/* .page-type-structuur .omcontent .content .omslides
{
    max-width: 100vw;
}
.page-type-structuur .omcontent .breadcrump,
.page-type-structuur .omcontent .ommaintekst {
    max-width: 1080px;
    margin: 0 auto;
} */

.page-list-filter input {
    border: 1px solid #ccc;
    padding: 15px 15px;
    background: #fff;
}

.page-list-filter h2 {
    line-height: initial;
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.page-list-filter h3 {
    margin: 20px auto;
}

.page-list-filter #slider {
    margin-top: 50px;
}


/* Hide the default checkbox */
.filter-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom label styling */
.custom-checkbox {
    font-weight: 400 !important;
    display: inline-block;
    position: relative;
    padding-left: 30px;
    /* Adjust based on checkmark size */
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.2;
    user-select: none;
    /* Prevent text selection when clicking */
}

/* Custom checkmark box */
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    /* Height of the checkbox */
    width: 20px;
    /* Width of the checkbox */
    background-color: #fff;
    /* Background color of the checkbox */
    border: 1px solid #ccc;
    /* Optional border */
    /* border-radius: 4px; */
    transition: background-color 0.2s;
}

.custom-checkbox.disabled .checkmark {
    background-color: #eee;
    cursor: default;
    /* not-allowed */
}

.custom-checkbox.disabled:hover .checkmark {
    background-color: #eee !important;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Change background color of checkmark on hover */
.custom-checkbox:hover .checkmark {
    background-color: #ccc;
}

.filter-checkbox:checked+.checkmark:after {
    display: block;
}

.filter-checkbox:checked+.checkmark {
    background-color: #a08a73;
    border-color: #a08a73;
}

.product-filter-toggle {
    position: fixed;
    left: 0px;
    top: 8rem;
    transform: translateX(-0.25rem);
    cursor: pointer;
    border-radius: 0.375rem;
    background-color: white;
    border: solid 1px #000;
    padding: 0.5rem;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    z-index: 9999;
}

.product-filter-toggle:hover {
    background-color: #eee;
}

.filter-x svg {
    height: 20px;
    cursor: pointer;
}

.button {
    background: rgb(161 138 114 / 80%);
    padding: 10px 25px;
    color: whitesmoke;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;
    cursor: pointer;
}

.page-list-filter .dimensions {
    display: flex;
    margin: 20px auto;
    column-gap: 10px;
}

.page-list-filter .dimensions div {
    display: grid;
}

.page-list-filter .dimensions input {
    width: 111px;
}

.page-list-filter label {
    font-weight: bold;
}

#filter-settings {
    display: grid;
    justify-items: center;
    row-gap: 3px;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 5px 10px;
    width: fit-content;
    margin: 0 auto;
}

#filter-settings:hover {
    background: #eee;
    cursor: pointer;
}


#pages-wrapper {
    position: relative;
}

/* The loading overlay and spinner */
#pages-wrapper.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    /* Semi-transparent background */
    z-index: 1;
    /* z-index: 999;
display: block; */
}

/* Spinner */
#pages-wrapper.loading::after {
    display: flex;
    justify-content: center;
    align-items: center;
    content: '';
    border: 8px solid #f3f3f3;
    /* Light gray */
    border-top: 8px solid #a08a73;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 125px;
    /* 50% */
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Keyframes for the spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.noUi-connect {
    background: #a08a73 !important;
}

.product-wrapper {
    box-shadow: 1px 2px 5px #eee;
    padding-top: 20px;
    padding-bottom: 20px;
}

.product-wrapper .kleurtjes {
    margin-top: 0px;
}

.omvloerkleed {
    max-width: 250px;
}

.omslides {
    /* max-width: 1080px; */
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
    padding: 10px;
    max-width: 100vw;

}

@media screen and (min-width: 768px) {
    .omslides {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (min-width: 1280px) {
    .omslides {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 1700px) {
    .omslides {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

#products {
    scroll-margin-top: 120px;
}


.discount-sun-badge {
    position: absolute;
    /* top: 14px; */
    top: 56px;
    right: -10px;
    z-index: 9;
    width: 92px;
    height: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    line-height: 1;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #ffcf33, #ff7a18);
    color: #1f1f1f;
    box-shadow: 0 10px 25px rgba(255, 122, 24, 0.35); */
    background: linear-gradient(135deg, #f2e6c9, #d4b483);
    color: #3a3126;
    box-shadow: 0 10px 25px rgba(164, 140, 114, 0.35);
    transform: rotate(-8deg);
    padding-bottom: 10px;
}

.discount-sun-badge::before {
    content: "";
    position: absolute;
    inset: -9px;
    background: inherit;
    z-index: -1;
    clip-path: polygon(50% 0%, 58% 18%, 75% 7%, 76% 28%,
            97% 25%, 84% 42%, 100% 50%, 84% 58%,
            97% 75%, 76% 72%, 75% 93%, 58% 82%,
            50% 100%, 42% 82%, 25% 93%, 24% 72%,
            3% 75%, 16% 58%, 0% 50%, 16% 42%,
            3% 25%, 24% 28%, 25% 7%, 42% 18%);
}

.discount-percent {
    font-size: 25px;
    letter-spacing: -1px;
}

.discount-text {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 3px;
}

.discount-date {
    font-size: 10px;
    margin-top: 5px;
    font-weight: 700;
}