.woocommerce-product-gallery {
    width: 100% !important;
    float: none !important;
    overflow: hidden;
}

.woocommerce-product-gallery__image a {
    display: block;
}

.woocommerce-product-gallery__trigger {
    display: none;;
}

.wooswipe__thumb {
    width: 100%;
    height: auto;
    padding: 0 10px;
    margin-top: 10px;
    list-style: none;
    overflow: hidden;
}

.wooswipe__thumb ul {
    padding: 0;
    margin: 0;
    position: relative;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.wooswipe__thumb li {
    padding: 0 5px;
    margin: 0 0 15px;
    outline: none !important;
    cursor: pointer;
}

.woocommerce-product-gallery__image {
    width: 100%;
    overflow: hidden;
    text-align: center;
  }  

.slick-next,
.slick-prev {
  width: 22px;
  height: 14px;
  margin: -16px auto 0;
  box-shadow: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 10;
}

.slick-next {
   background: url(../images/nav-right.png) center no-repeat;
   right: 0;
}

.slick-prev {
    background: url(../images/nav-left.png) center no-repeat;
    left: 0;
}

@media (min-width: 992px) {
    .woocommerce-product-gallery {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .woocommerce-product-gallery__image {
        width: calc(100% - 110px);
        order: 2;
    }
    
    .wooswipe__thumb {
        width: 100px;
        margin-top: 0;
        padding: 1rem 0;
        order: 1;
    }

    .slick-next {
        top: auto;
        bottom: 0.2rem;
    }

    .slick-prev {
        top: 0.2rem;
    }

    .slick-next,
    .slick-prev {
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: rotate(90deg);
    }
}