/*


________________ Block Style : Table __________________________


*/


/*__________ Modifie le style par défaut _________ */

.wp-block-table td,
.wp-block-table th {
	border-color: #bbb;
}

.wp-block-table thead {
	border-color: #888;
}

.wp-block-table tr:hover>td,
.wp-block-table tr:hover>th {
	background-color: #fbfbbf;
}

.wp-block-table th,
.wp-block-table td,
.wp-block-table thead,
.wp-block-table thead th,
.wp-block-table tbody+tbody {
	border-left: 0;
	border-right: 0;
}


 /*____ rend responsive _*/

 .wp-block-table {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}


/*__________ Style : Avec Bordure _________ */

.is-style-table-avec-bordure th,
.is-style-table-avec-bordure td,
.is-style-table-avec-bordure thead,
.is-style-table-avec-bordure thead th {
	border: 1px solid #aaa;
}


/*__________ Style : Sans Bordure _________ */

.is-style-table-sans-bordure th,
.is-style-table-sans-bordure td,
.is-style-table-sans-bordure thead,
.is-style-table-sans-bordure thead th {
	border: 0;
}


