@media screen and (max-width: 600px) {
/* Cacher l'en-tête du tableau */
.rwd-table tr:first-child th,
.rwd-table tr:first-child td {
display: none;
}

/* Afficher chaque ligne en tant que bloc */
.rwd-table tr {
display: block;
margin-bottom: 1.25em;
border: none;
}

/* Passer chaque cellule en BLOCK*/
.rwd-table td {
display: block;
text-align: center
border: none;
}

/* Passer chaque titre de colonne en BLOCK */
.rwd-table td:before {
content: attr(data-th) ": ";
font-weight: bold;
display: inline-block;
width: 100px;
margin-right: 5px;
text-align: left;
vertical-align: top;
}
}

