  /* TABLA COMPARATIVA */
  .ev-compare {
    padding-bottom: 80px;
  }

  .comparativa-table table {
    display: grid;
    border-collapse: collapse;
    width: 100%;
    grid-template-columns: 46% 28% 1fr 1fr;
  }

  .comparativa-table thead,
  .comparativa-table tbody,
  .comparativa-table tr {
    display: contents;
  }

  .comparativa-table th,
  .comparativa-table td {
    padding: 0;
    background-color: #f7f7f7;
    text-align: center;
    font-size: 14px;
    position: relative;
  }

  .comparativa-table td {
    padding: 6px;
  }

  .comparativa-table th {
    align-self: flex-end;
    padding: 20px 6px;
  }

  .comparativa-table th img {
    max-width: 95%;
    width: 100px;
    height: auto;
  }

  .comparativa-table th.cell-sd img {
    max-width: 100px;
    height: auto;
  }

  .comparativa-table .cell-feature {
    font-weight: 400;
    background-color: #fff;
    color: #555555;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 20px;
  }

  .comparativa table .cell-feature p {
    margin: 0;
    padding: 0;
    z-index: 1;
  }

  .comparativa-table th.cell-feature {
    padding: 12px 6px;
    flex-wrap: wrap;
  }

  .comparativa-table th.cell-feature>div {
    display: flex;
    margin-right: 15px;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
  }

  .comparativa-table th.cell-feature img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }

  .comparativa-table td.cell-feature {
    text-align: left;
  }

  .comparativa-table .cell-feature__new {
    background-color: #ff0033;
    color: #fff;
    text-transform: uppercase;
    line-height: 20px;
    padding: 0 10px;
    border-radius: 10px;
  }

  .comparativa-table .cell-feature.cell-feature__leyend {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4px;
  }

  .comparativa-table .cell-feature__title {
    z-index: 1;
    cursor: pointer;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
  }

  .comparativa-table .cell-feature .cell-feature__title p {
    padding: 10px 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .comparativa-table .cell-feature .cell-feature__title>span {
    color: #ff0033;
    margin-left: 10px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 13px;
  }

  .comparativa-table .cell-feature .cell-feature__title.visible>span {
    opacity: 1;
  }

  .cell-feature__title .cell-feature__arrow {
    width: 20px;
    height: 14px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .cell-feature__title.visible .cell-feature__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .cell-feature__title .cell-feature__arrow:before,
  .cell-feature__title .cell-feature__arrow:after {
    content: "";
    top: 50%;
    right: 8px;
    position: absolute;
    background-color: #ff0033;
    width: 14px;
    height: 2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .cell-feature__title .cell-feature__arrow:after {
    left: 8px;
    right: auto;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .comparativa-table .cell-feature__desc {
    display: none;
    z-index: 1;
    font-weight: 300;
    font-size: 13px;
    padding-bottom: 10px;
  }

  .comparativa-table .cell-sd {
    background-color: #e3e3e3;
  }

  .comparativa-table thead .cell-sd {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 24px 10px;
  }

  .comparativa-table .medal-sd {
    position: absolute;
    background-color: #fff;
    color: #ff0033;
    text-transform: uppercase;
    transform: rotate(-90deg);
    z-index: 2;
    font-size: 14px;
    top: 52px;
    right: -45px;
    padding-right: 10px;
    line-height: 40px;
    font-weight: 400;
    box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.1);
  }

  .comparativa-table .medal-sd:after {
    content: "";
    position: absolute;
    left: 0;
    left: -38px;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 40px solid #fff;
    border-left: 38px solid transparent;
  }

  .comparativa-table .cell-sd__btn {
    padding: 30px 6px;
    grid-column: 2;
    -ms-grid-row: 15;
    grid-row: 15;
    border-bottom-right-radius: 50px;
  }

  .comparativa-table .cell-sd__btn a {
    position: relative;
    cursor: pointer;
    margin: 0 auto;
    z-index: 10;
    display: inline-block;
  }

  .comparativa-table tr:nth-of-type(odd) td:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 248, 248, 0.3);
  }

  .comparativa-table tr:nth-of-type(even) td:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: inset 0px 6px 7px -5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 6px 7px -5px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 6px 7px -5px rgba(0, 0, 0, 0.1);
  }


  .comparativa .comparativa-wrapper {
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
  }

  .comparativa-table .cell-tick {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .comparativa-table .cell-tick img {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1;
  }

  .comparativa-table .cell-sd.cell-tick img {
    width: 38px;
    height: 38px;
  }

  .comparativa-small {
    list-style: none;
    padding-left: 0;
    line-height: 15px;
  }

  @media (max-width: 960px) {
    .comparativa-table .cell-sd__btn a span {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .comparativa-table .medal-sd {
      display: none;
    }

    .comparativa-table .cell-feature__desc {
      display: none !important;
    }

    .comparativa-table .cell-feature {
      padding-right: 14px;
    }

    .comparativa-table .cell-feature .cell-feature__title>span {
      display: none;
    }

    .cell-feature__title .cell-feature__arrow {
      height: 12px;
    }

    .cell-feature__title .cell-feature__arrow:before,
    .cell-feature__title .cell-feature__arrow:after {
      width: 12px;
    }

    .comparativa-table .cell-tick img {
      width: 24px;
      height: 24px;
    }

    .comparativa-table .cell-sd.cell-tick img {
      width: 32px;
      height: 32px;
    }
  }

  @media (max-width: 580px) {
    .comparativa-table table {
      grid-template-columns: 42% 24% 1fr 1fr;
    }

    .comparativa-table thead .cell-sd {
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      padding: 20px 10px;
    }

    .comparativa-table th.cell-sd img {
      max-width: 80px;
    }

    .comparativa-table .cell-feature {
      padding-right: 8px;
    }

    .comparativa table .cell-feature p {
      font-size: 13px;
    }

    .cell-feature__title .cell-feature__arrow {
      display: none !important;
    }

    .cell-feature__title .cell-feature__arrow:before,
    .cell-feature__title .cell-feature__arrow:after {
      width: 10px;
    }

    .comparativa-table .cell-sd__btn {
      padding: 30px 6px 0;
      border-bottom-right-radius: 30px;
      grid-column: 1;
      grid-column-start: 1;
      grid-column-end: 5;
      background-color: transparent;
    }

    .comparativa-table .cell-sd__btn a {
      padding: -1px 30px;
      line-height: 50px;
      border-radius: 25px;
      font-size: 16px;
    }

    .comparativa-table .cell-sd__btn a span {
      display: inline-block;
    }

    .comparativa-table .cell-feature__new {
      font-size: 12px;
      padding: 0 5px;
    }

    .comparativa-table .cell-tick img {
      width: 20px;
      height: 20px;
    }

    .comparativa-table .cell-sd.cell-tick img {
      width: 28px;
      height: 28px;
    }
  }

  .comparativa-table table {
    grid-template-columns: 46% 28% 1fr !important;
  }

  .comparativa-table {
    margin: 70px 0;
  }

  .comparativa-table .cell-sd__btn {
    grid-row: 22;
  }

  .comparativa-table .cell-sd.first {
    background-color: #f03;
  }

  .comparativa-table .cell-sd h2 {
    font-size: 20px;
    color: white;
  }

  .comparativa-table .cell-sd.second {
    background-color: #898d8f;
  }

  .comparativa-table .cell-sd__btn a {
    background-color: #f03;
    box-shadow: none;
    color: #fff;
    border: none;
    font-family: var(--fira-sans);
    text-transform: uppercase;
    padding: 20px;
    line-height: 1.2;
    border-radius: 22px;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    padding-right: 50px;
    z-index: 10;
    display: inline-block;
    text-decoration: none;
    max-width: 100%;
  }

  .comparativa-table .cell-sd__btn a {
    line-height: 50px;
    padding: 0 50px 0 20px;
    z-index: 8;
  }

  .comparativa-table .cell-sd__btn a {
    border-radius: 5em;
  }

  .comparativa-table .cell-sd__btn a:after {
    content: "";
    width: 26px;
    height: 26px;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(/lp/html-lp/img/ico/goto_alt.svg);
    position: absolute;
    right: 14px;
    top: calc(50% - 13px);
  }

  .comparativa-table .cell-feature .cell-feature__title p {
    padding: 10px 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-weight: 900;
    font-size: 14px;
    color: #333;
  }

  @media(max-width: 768px) {
    .comparativa-table table {
      grid-template-columns: 42% 24% 1fr 1fr;
    }

    .comparativa .comparativa-wrapper {
      width: 95%;
      overflow: hidden;
      margin: 0 auto;
    }

    .comparativa-table .cell-sd h2 {
      font-size: 10px;
      color: white;
    }

    .comparativa-table .cell-sd__btn {
      grid-column: 1/4;
    }

    .comparativa-table .cell-sd__btn {
      grid-row: 27;
    }
  }