.custom-comparison-table {

  .custom-comparison-table__card {
    background: var(--section-bg, #f7f7f7);
    border-radius: 0;
    padding: 30px 0;
    margin-inline: calc(var(--page-padding) * -1);
    padding-inline: var(--page-padding);

    @media screen and (min-width: 750px) {
      border-radius: 20px;
      padding: 50px 40px;
      margin-inline: 0;
    }
  }

  .custom-comparison-table__heading {
    text-align: center;
    margin: 0 0 30px;

    @media screen and (min-width: 750px) {
      margin-bottom: 40px;
    }
  }

  .custom-comparison-table__wrapper {
    width: calc(100% + var(--page-padding));
    max-width: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    @media screen and (min-width: 750px) {
      width: 100%;
      max-width: 1460px;
      margin: 0 auto;
    }
  }

  .custom-comparison-table__table {
    width: 100%;
    min-width: 700px;
    border-spacing: 2px 0;
    border-collapse: separate;
    table-layout: fixed;
  }

  .custom-comparison-table__th {
    font-weight: 700;
    font-size: var(--table-header-font-size, 12px);
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;
    padding: 22px 16px;
    background: var(--table-header-bg, var(--brand-primary));

    @media screen and (min-width: 750px) {
      padding: 22px 20px;
    }
  }

  .custom-comparison-table__th--feature {
    width: 20%;
    border-radius: 10px 0 0 0;
  }

  .custom-comparison-table__th--product {
    width: 40%;
  }

  .custom-comparison-table__th--competitor {
    width: 40%;
    border-radius: 0 10px 0 0;
  }

  .custom-comparison-table__td {
    font-family: 'Poppins', sans-serif;
    font-size: var(--table-cell-font-size, 12px);
    line-height: 1.2;
    vertical-align: middle;
    padding: 18px 16px;

    @media screen and (min-width: 750px) {
      padding: 18px 20px;
    }
  }

  .custom-comparison-table__td--feature {
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    background: var(--table-feature-bg, #1C55A6);
    border-bottom: 1px solid var(--table-feature-border, #C6D0DF);
  }

  .custom-comparison-table__td--product,
  .custom-comparison-table__td--competitor {
    font-weight: 400;
    color: var(--table-cell-text, var(--brand-primary));
    text-transform: capitalize;
    background: #FFFFFF;
    border-bottom: 1px solid var(--table-cell-border, rgba(16, 59, 120, 0.24));
    text-align: center;
  }

  .custom-comparison-table__row:last-child {
    .custom-comparison-table__td--feature {
      border-radius: 0 0 0 10px;
      border-bottom: none;
    }

    .custom-comparison-table__td--product {
      border-bottom: none;
    }

    .custom-comparison-table__td--competitor {
      border-radius: 0 0 10px 0;
      border-bottom: none;
    }
  }
}
