﻿.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;
    padding: 3.38rem 0;

    .item {
        display: inline-block;
        vertical-align: top;
        width: 7.69rem;
        white-space: normal;
        margin: 0 1.38rem;

        .img-box {
            width: 7.69rem;
            height: 7.69rem;
            max-width: 100%;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 50%;
            }
        }

        .title {
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 0.5rem;
            line-height: 2.2;
            white-space: normal;
        }
    }
}