/** Shopify CDN: Minification failed

Line 167:16 Expected identifier but found whitespace
Line 167:18 Unexpected "{"
Line 167:27 Expected ":"
Line 167:53 Expected ":"
Line 168:19 Expected identifier but found whitespace
Line 168:21 Unexpected "{"
Line 168:30 Expected ":"
Line 168:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.comparison-section {
    padding: 60px 20px;
    max-width: 1240px;
    margin: 0 auto;
  }

  .comparison-container {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 80px;
    align-items: flex-start;
  }

  .comparison-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin: 0 0 30px;
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
  }

  .comparison-table thead th {
    padding: 35px 15px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #000;
}

.featured-badge img {
    width: 100%;
    height: 60px;
    display: block;
    object-fit: cover;
}

  .comparison-table thead th:first-child {
    text-align: left;
  }

  .featured-column {
    background: linear-gradient(180deg, #FF9B44 0%, #FFA94D 100%);
    color: #000;
    position: relative;
    border-radius: 8px 8px 0 0;
  }

  .featured-column-other{
    position: relative;
  }

 .featured-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%);
    color: #fff;
    padding: 0px 0px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

  .comparison-table tbody tr {
    border-bottom: 1px solid #000;
  }

  .comparison-table tbody td {
    padding: 20px 15px;
    text-align: center;
    font-size: 15px;
    color: #000;
  }

  .comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
  }

  .featured-column-cell {
    background: #FFA94D;
  }

  .check-icon,
  .cross-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

.check-icon {
    background: #000;
    color: #fff;
}

  .cross-icon {
    background: #fff;
    border: 2px solid #000;
    color: #000;
  }

.comparison-table tbody tr:last-child {
    border-bottom: 0px solid #000;
}

td.featured-border-bottom {
    background: #ffa94d;
    border-radius: 0px 0px 10px 10px;
}

  @media (max-width: 992px) {
    .comparison-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .comparison-heading {
      font-size: 32px;
      text-align: center;
    }

    .comparison-table {
      font-size: 14px;
    }

    .comparison-table tbody td:first-child{
        width: 32.33%;
    }

    .comparison-table tbody td{
        width: 32.33%;
    }

    .comparison-table thead th {
        padding: 35px 10px 15px;
        font-size: 14px;
    }
    .comparison-table tbody td{
        padding: 15px 10px;
    }
  }
.sbb-promo-banner-wrapper {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }