/**MyStyle: Show thumbnail in cart larger than default 32px**/
.woocommerce-cart table.cart img {
width: auto;
min-width: 32px;
max-width: 100px;
}
@media(max-width:768px) {
/**Show thumbnail in cart on mobile **/
.woocommerce-page table.cart 
.product-thumbnail {
display: inline-block !important;
  }
  /**hide colon above thumbnail for mobile **/
.woocommerce-page table.cart
  .product-thumbnail:before {
    display: none;
  }
}