﻿/* Base suppl. */
.row {
    display: flex;
    flex-wrap: wrap;
}
.col {
    /*display: flex;
    flex-direction: column;
    gap: 32px;*/
}
.col-3 {
    width: 25%;
    padding: 24px;
}
.col-4 {
    width: 33.33333%;
    padding: 24px;
}
.col-5 {
    width: 40%;
    padding: 24px;
}
.col-7 {
    width: 60%;
    padding: 24px;
}
.col-8 {
    width: 66.66666%;
    padding: 24px;
}
.col-9 {
    width: 75%;
    padding: 24px;
}

@media all and (max-width: 1559px) {
    .col-m-5 {
        width: 40%;
    }

    .col-m-7 {
        width: 60%;
    }
}
@media all and (min-width: 1440px) {
    .col-xl-3 {
        width: 25%;
    }

    .col-xl-9 {
        width: 75%;
    }
}
.bg-light {
    background-color: #eee;
}
.text-dark {
    color: #333;
}

.search-box.clerk-search .search-box-text {
    position: relative;
    z-index: 10004;
}
.search-box.clerk-search .search-box-button {
    z-index: 10004;
    pointer-events: none;
}

.c-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
    z-index: 10003;
    display: none;
    pointer-events: none;
}

.list-links {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
    .list-links li {
        display: inline-block;
    }
        .list-links li a {
            display: inline-block;
            padding: 4px 8px;
            background: #F5F9EE;
            border-radius: 4px;
            font-weight: 500;
        }
.list-pros {
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(4,1fr);
    font-size: 14px;
}
@media all and (min-width: 1200px) {
    .list-pros {
        grid-template-columns: repeat(5,1fr);
    }
}
@media all and (min-width: 1440px) {
    .list-pros {
        grid-template-columns: repeat(6,1fr);
    }
}
@media all and (min-width: 1700px) {
    .list-pros {
        grid-template-columns: repeat(7,1fr);
    }
}
    .list-pros li {
    }
    .list-pros li:first-child {
    }
    .list-pros a {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0;
        height: 100%;
    }
    .list-pros li a:hover {
        text-decoration: none;
    }
    .list-pros li a:hover picture {
        box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.08);
    }
    .list-pros picture {
        position: relative;
        width: 100%;
        aspect-ratio: 4/2.7;
        display: block;
        border: 1px solid #e2e2e2;
        background-color: #fff;
        overflow: hidden;
    }
    .list-pros picture img {
        width: 100%;
    }
    .list-pros .c-title {
        font-weight: 600;
    }
    .list-pros .c-price {
        font-size: 12px;
        
    }
    .list-pros .c-itemno {
        position: absolute;
        z-index: 1;
        background: #f0f0f0;
        padding: 1px 6px;
        top: 0;
        right: 0;
        font-size: var(--fs-xxs);
        opacity: .8;
        pointer-events: none;
        line-height: 1.4;
    }

.list-cats {
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(2,1fr);
    margin-bottom: 28px;
}
@media all and (min-width: 1700px) {
    .list-cats {
        grid-template-columns: repeat(3,1fr);
    }
}
.list-cats li {
}
    .list-cats li a {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        padding: 8px 8px 6px;
        height: 100%;
        border: 1px solid #ddd;
        background-color: #f8f8f8;
    }
        .list-cats li a:hover {
            text-decoration: none;
            background-color: #fff;
            box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.08);
        }
    .list-cats li a span {
        font-size: 14px;
        font-weight: 600;
        display: block;
        padding: 0;
        text-align: center;
    }
.list-pages {
    padding-left: 0;
    list-style: none;
    /*display: grid;*/
    font-size: 14px;
    /*grid-gap: 15px;
    grid-template-columns: repeat(1,1fr);*/
}
    .list-pages li {
        /*display: flex;
        background: #fff;*/
        padding-block: 3px;
    }
    .list-pages picture {
        position: relative;
        overflow: hidden;
        width: 60px;
        height: 60px;
        display: block;
        border: 1px solid rgba(0,0,0,0.16);
        flex-shrink: 0;
    }
    .list-pages a {
        font-weight: 500;
    }
    .list-pages p {
        display: flex;
        flex-wrap: wrap;
        padding: 15px;
        line-height: 1.25;
    }

.img-cover {
    position: absolute;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
/* Clerk styling */
.clerk-search:hover .c-modal, .clerk-search:focus .c-modal {
    display: block;
}
.clerk-search:hover .c-overlay, .clerk-search:focus .c-overlay {
    display: block;
}
.c-modal-inner {
    display: flex;
    height: 100%;
}

.c-modal {
    font-family: var(--b-font-family);
    position: absolute;
    display: none;
    top: 50px;
    left: 50%;
    z-index: 10005;
    background: #fff;
    box-shadow: 0px 2px 6px 2px rgba(0,0,0,0.14);
    width: 90vw;
    height: 88vh;
    max-height: 88vh;
    overflow-y: auto;
    transform: translateX(-50%);
}
    .c-modal .row {
        /*min-height: 450px;
        max-height: 850px;*/
        /*height: 100%;*/
        width: 100%;
    }
    .c-modal .row > .col {
        /*overflow-y: auto;*/
    }
    .c-modal section > p {
        font-size: 24px;
        font-family: var(--h-font-family);
        font-weight: 700;
        line-height: 1.5;
        border-bottom: 1px solid rgba(0,0,0, .15);
        margin-bottom: 15px;
    }
    .c-modal a:hover {
        text-decoration: underline;
    }
.clerk-block {
}
    .clerk-block .slick-prev:before, .clerk-block .slick-next:before {
        font-size: 25px;
    }
@media all and (min-width: 1201px) {
    .clerk-inline {
        padding-top: 50px;
    }
    .category-page .clerk-inline {
        padding-top: 0;
    }
}
.clerk-inline {
    position: relative;
    pointer-events: none;
}
    .clerk-inline .clerk-block {
        background: #f5f5f5;
    }
        .clerk-inline .c-header {
            padding-top: 20px;
        }
        .clerk-inline .slick-prev {
            left: -28px;
        }
            .clerk-inline .slick-next {
                right: -23px;
            }

.clerk-block.topic-block a {
    text-decoration: none;
}
.clerk-block .slick-prev:before, .clerk-block .slick-next:before {
    color: #000;
}

.clerk-block .slick-dots {
    bottom: -40px;
}
    .clerk-block .slick-track {
        margin-left: unset;
        margin-right: unset;
    }
.clerk-block .slick-arrow {
    z-index: 1150;
    pointer-events: all;
}
.clerk-section {
    text-align: left;
}
.clerk-hide {
    display: none !important;
}
.c-header {
    font-size: 25px;
    font-family: var(--h-font-family);
    line-height: 1.2;
    margin: 0 0 20px;
}
.item-box.c-card {
    /*width: 150px !important;*/
    clear: none !important;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.item-box.c-card .brandImage {
    right: 23px;
}
.c-card .product-item {
    margin: 0 7.5px;
}
.c-slider-wrapper {
    margin: 0 -7.5px;
    padding-bottom: 5px;
}

@media all and (min-width: 769px) {
    .c-header {
        font-size: 45px;
        margin: 0 15px 35px;
    }
    .c-card .product-item {
        margin: 0 15px;
    }
    .c-slider-wrapper {
        margin: 0;
        padding-bottom: 30px;
    }
    .clerk-inline .c-header {
        font-size: 35px;
        margin-bottom: 20px;
    }
}

@media all and (min-width: 1400px) {
    .c-modal {
        /*width: 80vw;*/
    }
    .list-pages picture {
        width: 75px;
        height: 75px;
    }
}
@media all and (min-width: 1560px) {
    .c-modal {
        /*width: 70vw;*/
    }
    .list-pages {
        /*grid-template-columns: repeat(2,1fr);*/
    }
}

@media all and (min-width: 1920px) {
    .c-modal {
        /*width: 1350px;*/
    }
    .list-pages picture {
        width: 90px;
        height: 90px;
    }
}

.mega-menu .row {
    display: block;
}

.show-more {
    text-align: center;
    padding: 0.5rem;
}

.product-image-background {
    background-color: #fff;
}

.slick-slide {
    height: auto;
}

/*mobile*/
@media all and (max-width: 1024px) {
    .c-overlay {
       /* display: none !important;*/
    }

    .header-lower.sticky {
        z-index: unset;
    }
    .overlayOffCanvas.active + .header-wrapper .clerk-search {
        display: none !important;
    }

    .c-modal {
        width: 100vw;
        height: 83vh;
        max-height: 83vh;
        top: 50px;
        font-size: 14px;
    }
    .col-4 {
        width: 100%;
        padding: 0 16px;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .col-8 {
        width: 100%;
        padding: 0 16px;
        height: auto;
    }
    .c-modal section > p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .list-cats {
        grid-template-columns: repeat(2,1fr);
        font-size: 14px;
        margin-bottom: 0;
        grid-gap: 6px 16px;
    }
  
        .list-cats li a {
            display: block;
            padding: 0;
            height: unset;
            border: 0;
            background-color: transparent;
        }
            .list-cats li a span {
                font-weight: 500;
                text-align: unset;
                padding: 0;
            }
        .list-cats li a picture {
            display: none;
        }
        .col-4.bg-light {
            background-color: transparent;
        }
    .c-modal .row {
        width: 100%;
        gap: 16px;
        padding-block: 16px;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .list-pros {
        grid-template-columns: repeat(3,1fr);
        grid-gap: 8px;
        font-size: 12px;
        margin-bottom: 16px;
    }
    .list-pros a {
        gap: 2px;
    }
    .list-pros .c-itemno {
        padding: 1px 3px;
        font-size: 10px;
    }
    .list-pros li {
        overflow: hidden;
    }
}