/** Shopify CDN: Minification failed

Line 17:2 Unexpected "#"
Line 17:4 Unexpected "{"
Line 17:13 Expected ":"
Line 21:2 Unexpected "#"
Line 21:4 Unexpected "{"
Line 21:13 Expected ":"
Line 29:2 Unexpected "#"
Line 29:4 Unexpected "{"
Line 29:13 Expected ":"
Line 33:2 Unexpected "#"
... and 29 more hidden warnings

**/

  #{{ section.id }} .slideshow-wrapper {
    position: relative;
  }

  #{{ section.id }} .slides-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: hidden;
  }

  #{{ section.id }} .slide-item {
    flex: 0 0 100%;
  }

  #{{ section.id }} .slide-image-wrap {
    position: relative;
    overflow: hidden;
    background: #000;
  }

  #{{ section.id }} .slide-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
  }

  #{{ section.id }} .slide-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
  }

  #{{ section.id }} .slideshow-nav {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 80%;
    transform: translateY(50%);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #{{ section.id }} .slideshow-nav-btn {
    background: #fff;
    border: 0;
    border-radius: 9999px;
    padding: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease;
    cursor: pointer;
    line-height: 0;
  }

  #{{ section.id }} .slideshow-nav-btn:hover {
    transform: scale(1.1);
  }

  #{{ section.id }} .slideshow-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  @media (min-width: 1024px) {
    #{{ section.id }} .slideshow-nav {
      left: 90%;
      gap: 10px;
    }

    #{{ section.id }} .slideshow-nav-btn {
      padding: 10px;
    }

    #{{ section.id }} .slideshow-nav-btn svg {
      width: 20px;
      height: 20px;
    }
  }
