.custom-item-product {
    padding-bottom: 20px;
    height: 100%;
    .thumnail-product {
        height: 250px;
        a {
            height: 100%;
            img {
                height: 100%;
                object-fit: cover;
            }
        }
    }
    .box-image {
        width: 100%;
    }
    .box-text {
        padding-left: 10px;
        padding-right: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
        gap: 12px;
    }
    .product-small.box {
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 849px) {
    .custom-item-product {
        .box-image {
            padding-top: 16px !important;
        }
        .thumnail-product {
            a {
                img {
                    position: static;
                }
            }
        }
    }
}
