/* danh sach san pham */
@media (min-width: 640px) {
    .product_list > .product{
      position: relative;
      z-index: 1;
    }
    .product_list .product .inner{
      /* overflow: unset; */
    }
    .product_list a.product-thumbnail{
      overflow: unset;
    }
    .product_list a.product-thumbnail img {
      transition: transform 0.2s ease;
    }
    .product_list > .product:hover .product-thumbnail img {
      -webkit-filter: unset;
      filter: unset;
      transform: scale(1.06);
      z-index: 1;
    }
}