.indy-table {
  background-color: #fff !important;
  margin-top: 56px;
  height: 100%; /* important pour centrer verticalement */
}

.indy-table tr {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 20px;
  /*align-items: center;*/
  align-items: flex-start;
  border-bottom: 1px solid rgba(75, 96, 116, 0.12);
  padding: 8px 0;
}
.indy-table tr:first-child {
  align-items: center;
}
.indy-table tr:last-child,
.indy-table tr.rows-group-title {
  border-bottom: none !important;
}

.indy-table th,
.indy-table td {
  background-color: #fff !important;
  border-width: 0 !important;
  width: calc((100% - 40px) / 3);
  padding: 16px 0;
}

.indy-table .rows-group-title td {
  width: 100%;
}

.indy-table .col-head span,
.indy-table .rows-group-title .row-head span {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.32px;
}

.indy-table .row-head span {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.indy-table td.cell {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  min-width: 125px;
}
.indy-table td.cell img {
  display: block;
  margin: 0 auto;
}
.indy-table td.cell p {
  text-align: center;
  color: #222c36cc;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .indy-table-widget .content-wrapper {
    overflow-x: scroll;
  }
  .indy-table tfoot td.cell:not(.cta) {
    display: none;
  }
  .indy-table tfoot td.cell.cta {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .indy-table tr {
    column-gap: 32px;
    padding: 8px 16px;
  }
  .indy-table th:not(.col-head),
  .indy-table td.row-head.cell {
    flex-grow: 1;
  }
  .indy-table th.col-head,
  .indy-table td.cell:not(.row-head) {
    max-width: 296px;
  }
  .indy-table th.col-head.c2,
  .indy-table td.cell.c2 {
    width: calc((100% - 40px) / 2);
  }
  .indy-table th.col-head.c3,
  .indy-table td.cell.c3 {
    width: calc((100% - 40px) / 3);
  }
  .indy-table th.col-head.c4,
  .indy-table td.cell.c4 {
    width: calc((100% - 40px) / 4);
  }
}
