/** Shopify CDN: Minification failed

Line 32:18 Expected identifier but found bad string token
Line 32:19 Unterminated string token

**/
.product-gallery-slider{
  margin-bottom: 20px;
}

.product-gallery-slider-main {
  position: relative;
  overflow: hidden;
}

.product-gallery-slider-media{
  display: none;
  width: 100%; 
  height: auto; 
  max-height: 250px; 
  object-fit: cover;
}

.product-gallery-slider-media.active{
  display: block;
}

.thumb-image{
  width: 80px; 
  height: 80px; 
  object-fit: cover; 
  cursor: pointer;'
}

.gallery-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border:none;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}

.gallery-slider-arrow--prev {
  left: 0px;
}

.gallery-slider-arrow--next {
  right: 0px;
}

.arrow-flip {
  transform: scaleX(-1);
}

.product-gallery-slider-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
}

@media screen and (min-width: 750px) {
  .product-gallery-slider{
    display: block;
    position: sticky;
    top: 3rem;
    z-index: 2;
    margin-bottom: 0px;
  }

  .product-gallery-slider-media{
    max-height: 550px; 
  }

  .thumb-image{
    width: 150px; 
    height: 150px; 
  }
}

