

/* APPARENCES */
.table-acf {
  border-collapse: collapse;
  text-align: left;
}
.table-acf thead th:first-child{
  border-radius: 20px 0 0px 0;
}
.table-acf thead th:last-child{
  border-radius: 0 20px 0px 0;
}
.table-acf thead th {
  background-color: #a730dd !important;
  color: #ffffff;
  font-weight: bold;
  padding: 15px 15px;
  border: 2px solid rgba(113, 0, 151, 1);
}

.table-acf tbody tr:nth-child(even) {
  background-color: #F3ECF9;
}

.table-acf tbody tr:nth-child(odd) {
  background-color: #E6D8F3;
}

.table-acf td {
  padding: 12px 15px;
  border: 2px solid rgba(113, 0, 151, 1);
  color: rgba(113, 0, 151, 1); 
}


/* couleur de fond - mauve fonce */

/* couleur de fond - blanc */
.tableau.bg-white{
    margin-top: -6rem;
    margin-bottom: -6rem;
}

/* couleur de fond - mauve gradients */
.tableau.bg-gradient{
    background: #710097;
    background: linear-gradient(90deg,rgba(113, 0, 151, 1) 0%, rgba(167, 48, 220, 1) 50%, rgba(113, 0, 151, 1) 100%);
    z-index: 11;
}
.tableau.bg-gradient2{
    background: #710097;
    background: linear-gradient(180deg, rgba(167, 48, 220, 1) 0%, rgba(113, 0, 151, 1) 90%);
    z-index: 11;
}
.tableau.bg-gradient, .tableau.bg-gradient2{
    margin-top: -6rem;
    margin-bottom: -6rem;
}

/* couleur de fond - mauve */
.tableau.bg-mauve{
    background: #830FAE;
    z-index: 11;
}
.tableau.bg-mauve{
    margin-top: -6rem;
    margin-bottom: -6rem;
}

.tableau + .tableau {
    margin-top: 0;
}

/* MOBILE */

@media (max-width: 1180px) {
    .tableau.bg-white, .tableau.bg-mauve, .tableau.bg-gradient, .tableau.bg-gradient2{
        margin-top: 0rem;
        margin-bottom: 0rem;
    }
    .tableau + .tableau{
        margin-top: 0;
    }

  .table-acf,
  .table-acf thead,
  .table-acf tbody,
  .table-acf th,
  .table-acf td,
  .table-acf tr {
    display: block;
  }

  .table-acf thead {
    display: none;
  }

  .table-acf tr {
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
  }

  .table-acf td {
    padding: 10px;
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: left;
    padding-bottom: 50px;
  }

  .table-acf td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: bold;
    color: #710097;
    width: 50%;
  }


}