/**
 * Headwall WP Tutorials : WooCommerce Single Product Image Gallery Grid (WPTPG)
 *
 * https://wp-tutorials.tech/refine-wordpress/woocommerce-single-product-image-gallery-grid/
 *
 */
.woocommerce .product-gallery-grid {
   float: left;
   width: 50%;
}

.woocommerce .product-gallery-grid-row {
   display: flex;
   flex-direction: row;
}

.woocommerce div.product div.images.product-gallery-grid a {
   display: block;
   padding: 10px; /* Change the padding around your image here */
}

.woocommerce div.product div.images.product-gallery-grid img {
   display: block;
   object-fit: cover;
   height: 15em; /* This is the height of your images */
   border-radius: 60px;
}

@media(min-width: 768px) {
   .woocommerce div.product div.images.product-gallery-grid img {
      height: 25em; /* This is the height of your images */
   }
}
@media(max-width: 768px) {
	.woocommerce div.product div.images.product-gallery-grid img {
   border-radius: 30px;
	}
}

