/* Cart */
.cart .img-wrapper {
  padding: 10px;
  max-width: 150px!important;
  max-height: 150px!important;
}

.cart .product-thumbnail a {
    display: flex;
    justify-content: center;
    align-items: center;
}




/* WooCommerce Product Table */
.wc-product-table .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 100%;
}

.wc-product-table .img-wrapper img {
  max-width: 100%;
  max-height: 100%;
}




.img-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;

  height: 256px; /* shitty browser fallback */
  padding: 5%;
}

@supports (aspect-ratio: 1) {
  .img-wrapper {
    aspect-ratio: 1;
    height: unset;
  }
}

.img-wrapper.square {
  align-items: unset;
  padding: 0;
}

.img-wrapper img {
  mix-blend-mode: multiply;
  width: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  padding: 2%;
}

.woocommerce-mini-cart-item .img-wrapper {
  position: absolute;
  max-width: 4em;
  max-height: 64px;
  left: 0;

  top: 50%;
  transform: translateY(-50%) !important;
}

.woocommerce-mini-cart-item .img-wrapper img {
  position: unset !important;
  transform: unset !important;
  top: 0;
}

#kco-order-review .cart_item .img-wrapper {
  width: 50px;
  height: 50px;
  vertical-align: middle;
}

#kco-order-review .cart_item .img-wrapper img {
  padding: 0;
}

/* Admin thumbnail */
table.wp-list-table .column-thumb .img-wrapper img {
	max-height: 70px;	
}



