/** Shopify CDN: Minification failed

Line 94:13 Expected identifier but found whitespace
Line 94:15 Unexpected "{"
Line 94:24 Expected ":"
Line 94:52 Expected ":"
Line 101:13 Expected identifier but found whitespace
Line 101:15 Unexpected "{"
Line 101:24 Expected ":"
Line 101:53 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-slider-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.custom-slider-pagination .dot-bar {
  width: 28px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.custom-slider-pagination .dot-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: white;
  animation: none;
}

@keyframes dotProgress {
  from { width: 0%; }
  to { width: 100%; }
}

  
  .custom-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }

  .custom-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .custom-slider-slide {
    flex: 0 0 100%;
    position: relative;
    cursor: pointer;
  }

  .custom-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .custom-slider-slide .img-desktop {
    display: block;
  }

  .custom-slider-slide .img-mobile {
    display: none;
  }

  @media screen and (max-width: 768px) {
    .custom-slider-slide .img-desktop {
      display: none;
    }

    .custom-slider-slide .img-mobile {
      display: block;
    }

    .custom-slider-wrapper {
      width: 100%;
      height: {{ section.settings.mobile_height }}px;
    }
  }

  @media screen and (min-width: 769px) {
    .custom-slider-wrapper {
      width: 100%;
      height: {{ section.settings.desktop_height }}px;
    }
  }

  .custom-slider-content {
    position: absolute;
    width: 100%;
    color: white;
  }

  .custom-slider-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .custom-slider-content p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .custom-slider-content a {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
  }

  .custom-slider-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
  }

  .custom-slider-pagination span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    opacity: 0.4;
    cursor: pointer;
  }

  .custom-slider-pagination span.active {
    opacity: 1;
    background: black;
  }

  .custom-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 2rem;
    padding: 5px;
    z-index: 9;
    border-radius: 50px;
    cursor: pointer;
  }

  .custom-slider-arrow.prev {
    left: 10px;
  }

  .custom-slider-arrow.next {
    right: 10px;
  }

  .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #fff;
    width: 0%;
    animation: fill-bar linear forwards;
  }

  @keyframes fill-bar {
    to {
      width: 100%;
    }
  }