/** Shopify CDN: Minification failed

Line 180:40 Unexpected "*"

**/
/* Dual Slider Layout */
.slideshow-wrapper--dual {
  display: flex;
  align-items: stretch;
  gap: 20px;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

/* Main Image Slider (70% width) */
.slideshow-main-container {
  flex: 0 0 70%;
  width: 70%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

/* When dual layout, ensure main slider doesn't have absolute positioning issues */
.slideshow-wrapper--dual .slideshow-main-container {
  position: relative;
}

/* Text Slider Container (30% width) */
.slideshow-text-container {
  flex: 0 0 30%;
  width: 30%;
  /*background-color: #eeeeee;*/
  background-color: #ECF8FD;
  display: flex;
  align-items: stretch;
  position: relative;
  border-radius: 15px;
  border: 2px solid #000;
}

.slideshow-text-container:before, .slideshow-text-container:after {
  z-index: 10;
  pointer-events: none;
}

.slideshow-text-container:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 175px;
  background-image: url('TopSwoosh.png');
  background-size: cover;
  background-position: bottom center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.slideshow-text-container:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 175px;
  background-image: url('BottomSwoosh.png');
  background-size: cover;
  background-position: top center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

@media (max-width: 1080px) {
  .slideshow-text-container:before, .slideshow-text-container:after {
    height: 75px;
  }
}

@media (max-width: 720px) {
  .slideshow-text-container:before, .slideshow-text-container:after {
    height: 50px;
  }
}

/* Text Slideshow Styles */
.text-slideshow {
  width: 100%;
  height: 100%;
  position: relative;
  background: inherit;
  border-radius: 15px;
}

/* Ensure text slideshow inherits hero height classes */
.text-slideshow.hero--450px { height: 450px; }
.text-slideshow.hero--550px { height: 550px; }
.text-slideshow.hero--650px { height: 650px; }
.text-slideshow.hero--750px { height: 750px; }
.text-slideshow.hero--100vh { height: 100vh; }

@media (max-width: 768px) {
  .text-slideshow.hero--450px { height: 250px; }
  .text-slideshow.hero--550px { height: 250px; }
  .text-slideshow.hero--650px { height: 250px; }
  .text-slideshow.hero--750px { height: 250px; }
}

.text-slideshow__slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  z-index: 10;
}

.text-slideshow__content {
  max-width: 90%;
}

.text-slideshow__subtitle {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.text-slideshow__title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.text-slideshow__link {
  margin-top: 1.5rem;
}

.text-slideshow__link .btn {
  display: inline-block;
  min-width: 140px;
}

/* Flickity Dots for Text Slider */
.text-slideshow .flickity-page-dots {
  bottom: 2rem;
  width: 100%;
  text-align: center;
  position: absolute;
  z-index: 20;
}

.text-slideshow .flickity-page-dots .dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #999;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.text-slideshow .flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: #000;
}

/* Fix height inheritance for natural height mode */
.slideshow-wrapper--dual .hero-natural--* {
  height: auto !important;
}

/* Ensure both sliders maintain same height */
@media only screen and (min-width: 769px) {
  .slideshow-wrapper--dual {
    position: relative;
  }
  
  /* Match text slider height to main slider */
  .slideshow-wrapper--dual .text-slideshow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
  }
}

/* Mobile Styles - Stack vertically */
@media screen and (max-width: 1080px) {
  .slideshow-wrapper--dual {
    flex-direction: column;
  }
  
  .slideshow-main-container,
  .slideshow-text-container {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .slideshow-text-container {
    min-height: 300px;
    order: 2; /* Place text slider below image slider */
  }
  
  /* Mobile heights for text slider */
  .text-slideshow.hero--250px { height: 250px; }
  .text-slideshow.hero--300px { height: 300px; }
  .text-slideshow.hero--400px { height: 400px; }
  .text-slideshow.hero--500px { height: 500px; }
  .text-slideshow.hero--auto { height: auto; min-height: 300px; }
  
  .text-slideshow__slide {
    padding: 2rem 1.5rem;
  }
  
  .text-slideshow__subtitle {
    font-size: 0.75rem;
  }
  
  .text-slideshow__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .text-slideshow__link {
    margin-top: 1rem;
  }
  
  .text-slideshow .flickity-page-dots {
    bottom: 1rem;
  }
}

/* Tablet Adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .text-slideshow__title {
    font-size: 1.5rem;
  }
  
  .text-slideshow__slide {
    padding: 2rem 1.5rem;
  }
}

/* Large Screen Adjustments */
@media screen and (min-width: 1400px) {
  .text-slideshow__subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .text-slideshow__title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
  
  .text-slideshow__slide {
    padding: 4rem 3rem;
  }
}

/* Loading state for text slider */
.text-slideshow.loading {
  opacity: 0;
}

.text-slideshow.loading--delayed {
  transition: opacity 0.3s ease-in-out;
}

/* Sync animations between sliders */
.text-slideshow.flickity-enabled {
  opacity: 1;
}

/* Optional: Add subtle animation to text slider transitions */
.text-slideshow .flickity-slider {
  /*transition: transform 0.5s ease-in-out;*/
}

/* Ensure Flickity viewport takes full height */
.text-slideshow .flickity-viewport {
  height: 100% !important;
}

/* Fix for when only image slides exist */
.slideshow-wrapper:not(.slideshow-wrapper--dual) .slideshow-main-container {
  width: 100%;
  flex: 1 1 100%;
}

/* Fix for prev/next buttons */
.hero[data-arrows=true] .flickity-prev-next-button {
  bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .hero[data-arrows=true] .flickity-prev-next-button {
    bottom: 20px;
  }
}

/* Image slider BG */
.hero__text-shadow {
  width: 100%;
}

.hero__text-shadow:before {
  background: linear-gradient(180deg, rgba(0, 130, 204, 0) 0%, rgba(0, 130, 204, 0.85) 100%);
}

/* Buttons */
.slideshow-wrapper.slideshow-wrapper--dual .btn {
  border-top-left-radius: 15px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 5px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.text-slideshow__link .btn {
  background: #ffffff !important;
  color: #000 !important;
  opacity: 1;
  transition: all .2s ease-in-out;
}

.slideshow-wrapper--dual a.btn:hover {
  color: var(--tft-brand-color) !important;
}