/*Cela permet d'avoir des tableaux à 5 colonnes avec un espace de 20% à chaque fois*/
.table_4width td,
.table_4width th {
  width: 20%;
}

/*Cela permet d'avoir des tableaux à 6 colonnes avec un espace de 15% pour la premiere et 17% pour les 5 dernières*/
.table_5width td:nth-child(1),
.table_5width th:nth-child(1) {
  width: 15%; /*Ici cest la largeur de la première colonne*/
}

.table_5width td:nth-child(2),
.table_5width th:nth-child(2),
.table_5width td:nth-child(3),
.table_5width th:nth-child(3),
.table_5width td:nth-child(4),
.table_5width th:nth-child(4),
.table_5width td:nth-child(5),
.table_5width th:nth-child(5),
.table_5width td:nth-child(6),
.table_5width th:nth-child(6) {
  width: 17%; /*Ici cest la largeur des 5 dernières colonnes*/
}

/*Cela permet d'avoir des tableaux à 8 colonnes avec un espace de 10% à chaque fois*/
.table_7width td,
.table_7width th {
  width: 12.5%;
}

/*Cela permet d'avoir des tableaux à 9 colonnes avec un espace de 11% à chaque fois*/
.table_8width td:nth-child(1),
.table_8width th:nth-child(1) {
  width: 12%; /*Ici cest la largeur de la première colonne*/
}

.table_8width td:nth-child(2),
.table_8width th:nth-child(2),
.table_8width td:nth-child(3),
.table_8width th:nth-child(3),
.table_8width td:nth-child(4),
.table_8width th:nth-child(4),
.table_8width td:nth-child(5),
.table_8width th:nth-child(5),
.table_8width td:nth-child(6),
.table_8width th:nth-child(6),
.table_8width td:nth-child(7),
.table_8width th:nth-child(7),
.table_8width td:nth-child(8),
.table_8width th:nth-child(8)
.table_8width td:nth-child(9),
.table_8width th:nth-child(9){
  width: 11%; /*Ici cest la largeur des 8 dernières colonnes*/
}

/*Cela permet d'avoir des tableaux à 10 colonnes avec un espace de 10% à chaque fois*/
.table_9width td,
.table_9width th {
  width: 10%;
}



/* Forcer l’alignement en haut dans toutes les cellules du haut pour le tableau voulu */
#ekit-table-container-3836be2 th, 		/* le tableau de comparaison des gateways LoRaWAN Indoor */
#ekit-table-container-36086471 th, 		/* le tableau de comparaison des gateways LoRaWAN Outdoor */
#ekit-table-container-2c85157d th			/* le tableau de comparaison des routeur 5G Semtech */
{
  vertical-align: top;
}


/*Mettre toutes les cellules hors header au centre*/
.dataTable td {
  vertical-align: middle;
}

/*Enlève cette margin de 10px sous le */
.ekit-wid-con p {
  margin-bottom: 5px !important;
		margin-top: 5px;
}

/* Uniformiser la hauteur des cartes blog */
.display_blog_post {
  display: flex;
  flex-direction: column;
  height: 100%;
}