.comparison-table-new {
  color: var(--color);
  background-color : var(--bgcolor);

  .ctn__heading {
    color: var(--color);
  }

  /* Heading */
  .ctn__heading--center {
    text-align: center;
    & + .ctn__subheading {
      text-align: center;
    }
  }

  .ctn__heading--left   {
    text-align: left;
    & + .ctn__subheading {
      text-align: left;
    }
  }  

  .ctn__heading--right  {
    text-align: right;
    & + .ctn__subheading {
      text-align: right;
    }
    
  }

  .ctn__heading h2 {
    margin: 0 0 10px;
  }

  /* Container */
  .ctn__container {
    background-color: var(--container-bgcolor);
    margin: 30px auto 0;
    max-width: 1100px;
    overflow: hidden;
  }

  /* Table */
  .ctn__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  /* Header row */
  .ctn__header-row {
    border-bottom: 1px solid #e8e4de;
  }

  .ctn__header-cell {
    padding: 35px 20px;
    text-align: center;
    vertical-align: middle;
    font-size: 20px;
    font-weight: 400;
    width: 22%;
    border-left: 1px solid #e5e7eb;

    &:first-child {
      border: none;
    }
  }

  .ctn__header-cell--label {
    width: 34%;
    text-align: left;
  }

  .ctn__col-title {
    display: block;
    line-height: 1.3;
  }

  /* Body rows */
  .ctn__row {
    border-bottom: 1px solid #e8e4de;
    transition: background-color 0.15s ease;
  }

  .ctn__row:last-child {
    border-bottom: none;
  }

  .ctn__cell {
    line-height: 1.2;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    width: 22%;
    border-left: 1px solid #e5e7eb;

    &:first-child {
      border: none;
    }
  }

  .ctn__cell--label {
    text-align: left;
    font-weight: 600;
    width: 34%;
  }

  .ctn__row-title {
    display: block;
  }

  .ctn__cell-text {
    display: block;
    line-height: 1.4;
  }

  .ctn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ctn__icon--star {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--highlight-color);
    color: #fff;
  }

  .ctn__icon--star svg {
    width: 18px;
    height: 18px;
  }

  .ctn__icon--check {
    color: var(--highlight-color);
    width: 20px;
    height: 20px;

    svg {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  .ctn__icon--dash {
    color: #bbb;
    font-size: 24px;
    line-height: 1;
  }

  .table-footer {
    margin: 30px auto 0;
    max-width: 700px;
  }

  .table-footer--wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 30px;
    background-color: #f7f0fb;
    @media (max-width: 749px) {
      font-size: 10px;
      gap: 10px;
      padding: 10px 5px;
    }
  }

  .table-footer--item {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    @media (max-width: 749px) {
      gap: 3px;
    }

    .item-left {
      flex-shrink: 0;

      &.ctn__icon--star {
        width: 26px;
        height: 26px;
        @media (max-width: 749px) {
          width: 16px;
          height: 16px;
        }
      }

      &.ctn__icon--check {
        @media (max-width: 749px) {
          width: 13px;
          height: 13px;
        }
      }
    }
  }

  @media screen and (max-width: 749px) {

    .ctn__header-cell {
      padding: 20px 10px;
    }

    .ctn__header-cell--label {
      width: 22%;
    }

    .ctn__col-title {
      font-size: 14px;
    }

    .ctn__cell {
      padding: 15px 10px;
      font-size: 12px;
    }

    .ctn__icon--star {
      width: 20px;
      height: 20px;
    }

    .ctn__icon--star svg {
      width: 12px;
      height: 12px;
    }

    .ctn__icon--dash {
      font-size: 18px;
    }

    .ctn__icon--check {
      width: 16px;
      height: 16px;
    }
  }

  @media screen and (max-width: 479px) {
    .ctn__cell--label {
      text-align: center;
    }

    .ctn__col-title {
      font-size: 12px;
    }

    .ctn__cell {
      padding: 10px 4px;
      font-size: 12px;
    }
  }
}