#wooswipe .thumbnails{
height: auto!important;
}

.pswp__bg {
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";

  /* IE 5-7 */
  filter: alpha(opacity=80);

  /* Netscape */
  -moz-opacity: 0.8!important;

  /* Safari 1.x */
  -khtml-opacity: 0.8!important;

  /* Good browsers */
  opacity: 0.8!important;
}

/**
 * @snippet       CSS to Move Gallery Columns @ Single Product Page
 * @sourcecode    https://businessbloomer.com/?p=20518
 * @author        Rodolfo Melogli
 * @testedwith    WooCommerce 2.5.5, Storefront 1.6
 */
 
@media (min-width: 0px) {
 
/* Make image 75% width to make room to its right */
 
.single-product div.product .images .woocommerce-main-image {
    width: 75%;
    float: left;
}
 
/* Make Gallery 25% width and place it beside the image */
 
.single-product div.product .images .thumbnails {
    width: 25%;
    float: left;
}
 
/* Style each Thumbnail with width and margins */
 
.single-product div.product .images .thumbnails a.zoom {
    width: 90%;
    float: none;
    margin: 0 0 10% 10%;
}
 
