/** Shopify CDN: Minification failed

Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:34 Unexpected "{"
Line 20:16 Expected identifier but found whitespace
Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 20:53 Expected ":"
Line 21:19 Expected identifier but found whitespace
Line 21:21 Unexpected "{"
Line 21:30 Expected ":"
... and 99 more hidden warnings

**/


/* CSS from section stylesheet tags */
#shopify-section-{{ section.id }} {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    background-color: {{ section.settings.background_color }} !important;
    color: {{ section.settings.text_color }} !important;
  }
  .custom-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }
  .custom-slider .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  .custom-slider .slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .custom-slider .slide figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .custom-slider .slide img {
    max-height: 100%;
    max-width: 100%;
    
  }
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    position: relative;
    height: 16px;
    max-width: 60%;
    margin-top: -20px;
  }
  .slider-dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
  }
  .slider-dot.active {
    background: #fff;
  }

  #saltt-title {
    margin-bottom: .8em;
  }

  #saltt-price {
    margin-bottom: 1.5em;
  }
/* Section base variables */

.ns-{{ section.id }} .comparison-section {
  overflow-x: auto;
  background: transparent;
}
.ns-{{ section.id }} .comparison-table {
  display: block;
  margin-top: 2em;
}

/* Desktop flex layout */
.ns-{{ section.id }} .comparison-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

/* Columns */
.ns-{{ section.id }} .comparison-col {
  flex: 0 0 auto;
  border-radius: 12px;
  z-index: 1;
}

/* Images */
.ns-{{ section.id }} .comparison-image {
  display: block;
  max-width: 100%;
  max-height: 350px;
  margin: 0 auto 1rem;
  border-radius: 6px;
}

/* Title + selector wrapper */
.ns-{{ section.id }} .comparison-header-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 0.5rem;
}

.ns-{{ section.id }} .comparison-subheader-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 0.25rem;
  font-size: 0.85rem;
}

/* Title */
.ns-{{ section.id }} .comparison-header {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 26px;
}

/* Rows */
.ns-{{ section.id }} .comparison-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 0.6rem 0;
  font-size: 0.95rem;
}
.ns-{{ section.id }} .comparison-row .icon img {
  width: auto;
  display: block;
}

.ns-{{ section.id }} .comparison-icon {
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}

/* Inline dropdown styled like the title */
.ns-{{ section.id }} .comparison-selector {
  display: none;
  background: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: inherit;
  text-align: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* Mobile: two-column view & inline selector */
@media screen and (max-width: 768px) {
  .ns-{{ section.id }} .comparison-scroll {
    flex-direction: row;
  }
  .ns-{{ section.id }} .comparison-col {
    width: 50% !important;
    display: none;
  }
  .ns-{{ section.id }} .comparison-col[data-index="0"],
  .ns-{{ section.id }} .comparison-col.mobile-second {
    display: block;
  }
  /* Hide duplicate title in the second column */
  .ns-{{ section.id }} .comparison-col.mobile-second .comparison-header {
    display: none;
  }
  /* Show the wrapper & dropdown in the mobile-second column */
  .ns-{{ section.id }} .comparison-col.mobile-second .comparison-header-wrapper {
    display: flex;
  }
  .ns-{{ section.id }} .comparison-col.mobile-second .comparison-selector {
    display: inline-block;
  }
}

@media screen and (min-width: 769px) {
  .ns-{{ section.id }} .force-two-col .comparison-scroll {
    flex-direction: row !important;
  }
  .ns-{{ section.id }} .force-two-col .comparison-col {
    width: 50% !important;
    display: none;
  }
  .ns-{{ section.id }} .force-two-col .comparison-col[data-index="0"],
  .ns-{{ section.id }} .force-two-col .comparison-col.mobile-second {
    display: block;
  }
  .ns-{{ section.id }} .force-two-col .comparison-col.mobile-second .comparison-header {
    display: none;
  }
  .ns-{{ section.id }} .force-two-col .comparison-col.mobile-second .comparison-header-wrapper {
    display: flex;
  }
  .ns-{{ section.id }} .force-two-col .comparison-col.mobile-second .comparison-selector {
    display: inline-block;
  }
}

/* Accordion */
.ns-{{ section.id }} .accordion-container {
  position: relative;
  background: #f9f9f9;
  border-radius: 6px;
  padding: 1rem;
}
.ns-{{ section.id }} [data-accordion-mode="true"] .comparison-body {
  display: none;
}
.ns-{{ section.id }} .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.ns-{{ section.id }} .accordion-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
}
#shopify-section-{{ section.id }} {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    background-color: {{ section.settings.background_color }} !important;
    color: {{ section.settings.text_color }} !important;
  }
  .custom-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }
  .custom-slider .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    
    height: 100%;
  }
  .custom-slider .slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .custom-slider .slide figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .custom-slider .slide img {
    max-height: 100%;
    max-width: 100%;
  }
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    position: relative;
    height: 16px;
    max-width: 60%;
    margin-top: -20px;
  }
  .slider-dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
  }
  .slider-dot.active {
    background: #fff;
  }
#shopify-section-{{ section.id }} {
    --section-padding-top: {{ section.settings.padding_top }}px;
    --section-padding-bottom: {{ section.settings.padding_bottom }}px;
  }