/**
 * FIT SIZE: 500PX
 */
@media screen and (min-width: 500px) {
    .swiper-cards-inner {
        display: flex !important;
        width: 100% !important;
        overflow: hidden !important;
        gap: 16px !important; 
    }

    .swiper-cards-item {
        display: block !important;
        margin-right: 0 !important;
        flex: 0 0 calc((100% - 16px * 1) / 2) !important;
    }
}    

/**
 * FIT SIZE: 768PX
 */
@media screen and (min-width: 768px) {
    /* Components */

    /**
     * CARDS
     */
    .card-search { flex-direction: row; }

    .card-search .img-search { max-width: 250px; }

    .card-search .card-body { flex-direction: row; }
}

/**
 * FIT SIZE: 992px
 */
@media screen and (min-width: 992px) {
    .swiper-cards-item.lg-swiper-col-2 { flex: 0 0 calc((100% - 16px * 1) / 2) !important; }

    .swiper-cards-item.lg-swiper-col-3 { flex: 0 0 calc((100% - 16px * 2) / 3) !important; }

    .swiper-cards-item.lg-swiper-col-4 { flex: 0 0 calc((100% - 16px * 3) / 4) !important; }

    .swiper-cards-item.lg-swiper-col-5 { flex: 0 0 calc((100% - 16px * 4) / 5) !important; }

    .swiper-cards-item.lg-swiper-col-6 { flex: 0 0 calc((100% - 16px * 5) / 6) !important; }
}

/**
 * FIT SIZE: 1440px
 */
@media screen and (min-width: 1440px) {
    .swiper-cards-item {
        display: block !important;
        flex: 0 0 calc(100% / 3) !important;
    }

    .swiper-cards-item.xl-swiper-col-4 { flex: 0 0 calc((100% - 16px * 3) / 4) !important; }

    .swiper-cards-item.xl-swiper-col-5 { flex: 0 0 calc((100% - 16px * 4) / 5) !important; }

    .swiper-cards-item.xl-swiper-col-6 { flex: 0 0 calc((100% - 16px * 5) / 6) !important; }

    .swiper-cards-item.xl-swiper-col-7 { flex: 0 0 calc((100% - 16px * 6) / 7) !important; }

    .swiper-cards-item.xl-swiper-col-8 { flex: 0 0 calc((100% - 16px * 7) / 8) !important; }

    .swiper-cards-item.xl-swiper-col-9 { flex: 0 0 calc((100% - 16px * 8) / 9) !important; }

    .swiper-cards-item.xl-swiper-col-10 { flex: 0 0 calc((100% - 16px * 9) / 10) !important; }
}