/** Shopify CDN: Minification failed

Line 53:11 Expected identifier but found whitespace
Line 53:13 Unexpected "{"
Line 53:22 Expected ":"
Line 53:56 Expected ":"
Line 58:11 Expected identifier but found whitespace
Line 58:13 Unexpected "{"
Line 58:22 Expected ":"
Line 58:57 Expected ":"

**/
/* START_SECTION:flip_menu (INDEX:28) */
.image-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.image-slider {
  display: flex;
  transition: transform 0.6s ease;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.image-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
}
.image-slide img {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  background: #ccc;
  border: none;
  border-radius: 50%;
}
.slider-dots button.active {
  background: #000;
}
@media screen and (max-width: 749px) {
  .image-slide img {
    height: {{ section.settings.image_height_mobile }}px;
  }
}
@media screen and (min-width: 750px) {
  .image-slide img {
    height: {{ section.settings.image_height_desktop }}px;
  }
}
/* END_SECTION:flip_menu */
