.b6-listing-fashion .container .itens {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.b6-listing-fashion .container .itens .item {
    flex: 0 0 calc((100% - 2 * 10px) / 3);
    min-width: 0;
}

.b6-listing-fashion .container .itens .item .img {
    width: 100%;
    position: relative;
}

.b6-listing-fashion .container .itens .item .img::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.b6-listing-fashion .container .itens .item .img:hover::after{
    opacity: 0.3;
}

.b6-listing-fashion .container .itens .item .img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.b6-listing-fashion .container .itens .load-more {
    width: 100%;
    margin-top: 10px;
}

.b6-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0 4%;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 99999;
}

.b6-popup .container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
}

.b6-popup .container .title-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6vh;
}

.b6-popup .container .title-close .title {
    font-family: "FuturaPT", Sans-serif;
    font-size: 16px;
    letter-spacing: 0.8px;
}

.b6-popup .container .title-close .close-btn {
    cursor: pointer;
}

.b6-popup .container .slide {
    width: 100%;
    height: 94vh;
    padding: 0 8%;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b6-popup .container .popup-loading {
    text-align: center;
}

.b6-popup .container .popup-loading .loading-spinner {
    width: 25px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #414141 94%, #0000) top / 6px 6px no-repeat, conic-gradient(#0000 30%, #414141);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 6px), #000 0);
    animation: l13 1s infinite linear;
    margin: auto;
}

@keyframes l13 {
    100% {
        transform: rotate(1turn)
    }
}

.b6-popup .container .slide .swiper.mySwiper2 {
    width: 100%;
}

.b6-popup .container .slide .swiper.mySwiper2 .swiper-wrapper {}

.b6-popup .container .slide .swiper.mySwiper2 .swiper-wrapper .swiper-slide {}

.b6-popup .container .slide .swiper.mySwiper2 .swiper-wrapper .swiper-slide img {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-height: 75vh;
}

.b6-popup .container .navigation .button-next,
.b6-popup .container .navigation .button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.b6-popup .container .navigation .button-next {
    right: 0;
}

.b6-popup .container .navigation .button-prev {
    left: 0;
}

.b6-popup .container .slide .swiper.mySwiper {
    width: 100%;
    height: 10%;
    margin-top: 25px;
    overflow: visible;
}

.b6-popup .container .slide .swiper.mySwiper .swiper-wrapper {}

.b6-popup .container .slide .swiper.mySwiper .swiper-wrapper .swiper-slide {
    width: auto !important;
    height: 100% !important;
    aspect-ratio: 1/1;
    transition: all .3s ease;
}

.b6-popup .container .slide .swiper.mySwiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
    margin-top: -10px;
}

.b6-popup .container .slide .swiper.mySwiper .swiper-wrapper .swiper-slide img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}


@media only screen and (max-width: 767px) {
    .b6-popup .container .navigation {
        display: none !important;
    }

    .b6-popup .container .slide {
        padding: 0;
    }
}