﻿.offers-cat-list {
    .items-holder {
        padding: 3rem 0;

        .cat-item {
            margin: 0 2rem;

            .img-box {
                position: relative;
                width: 86px;
                height: 86px;

                &:before {
                    content: '';
                    position: absolute;
                    top: 8px;
                    right: 8px;
                    bottom: 8px;
                    left: 8px;
                    border-radius: 50%;
                    -webkit-border-radius: 50%;
                    -moz-border-radius: 50%;
                    -ms-border-radius: 50%;
                    -o-border-radius: 50%;
                    background-color: #fff;
                }

                &:after {
                    content: '';
                    position: absolute;
                    top: 2px;
                    right: 2px;
                    bottom: 2px;
                    left: 2px;
                    border-radius: 50%;
                    -webkit-border-radius: 50%;
                    -moz-border-radius: 50%;
                    -ms-border-radius: 50%;
                    -o-border-radius: 50%;
                    border: solid 2px #fff;
                }

                img {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    z-index: 1;
                }
            }

            .title {
                font-size: 1rem;
                color: #fff;
                margin-top: 0.5rem;
            }
        }
    }
}

.thumbnail-cat-list {
    text-align: center;
    margin-bottom: 3.6875rem;
    .thumbnail-cat{
        gap:0.75rem
    }
    .item {

        .img-box {
            height: auto;
            max-width: 100%;

            img {
                border-radius:0.5rem;
                width: 100%;
                height: 100%;
                object-fit: cover;
                /* border-radius: 50%; */
            }
        }

        .title {
            
            right: 1.4375rem;
            top: 3.3125rem;
            position: absolute;
            a{
                color:var(--Black)
            }
        }

        .countProducts {
            font-size: 0.8rem;
        }
    }

    .swiper-slide {
        height: unset;
    }
}