/** Shopify CDN: Minification failed

Line 41:10 Expected identifier but found whitespace
Line 41:12 Unexpected "{"
Line 41:19 Expected ":"
Line 41:24 Expected ":"
Line 42:11 Expected identifier but found whitespace
Line 42:13 Unexpected "{"
Line 42:21 Expected ":"
Line 42:26 Expected ":"
Line 46:10 Expected identifier but found whitespace
Line 46:12 Unexpected "{"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
.image-slider {
    width: 100%;
  }
  .image-slider ul {
    display: flex;
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow-x: scroll;
    overscroll-behavior-x: contain;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    list-style: none;
    scrollbar-color: transparent transparent;
  }
  .image-slider ul::-webkit-scrollbar {
    display: none;
  }
  .image-slider ul li{
    flex: none;
    margin: 0 10px;
    scroll-snap-align: start;
    width: {{ width }}px;
    height: {{ height }}px;
  }
  .image-slider ul li img{
    display: block;
    width: {{ width }}px;
    height: {{ height }}px;
    border-radius: var(--FND-Radius);
  }

  .disable-scrollbars::-webkit-scrollbar {
    background: transparent; /* Chrome/Safari/Webkit */
    width: 0px;
  }
      
  .disable-scrollbars {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
  }
  .image-slider .nav{
    display: flex;
     justify-content: flex-end;
  }
  .image-slider .nav .navBtn{
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .image-slider .nav .navBtn.active svg path{
    stroke: #000;
  }
  .image-slider .nav .navBtn svg path{
    stroke: transparent;
  }