/*ACTION LIGNE */
.table-contenair{
  background-color: white;
  position: relative;
}
.table-header-contenair{
  background-color:#eee;
  position: sticky;      
  top: 0;   
  z-index: 2;
}
.table-action{
   flex-grow: 1;
}
.table-contenair{
  overflow-y: auto; 
}
.table{
  border-collapse: collapse;
  table-layout: auto;
  width:100%;
  border-spacing: 0px !important;
}
.table tr:hover{
	background-color: #ddd;
	cursor: pointer !important;
}
.table-thead{
  position: sticky;
  background-color:#eee;  
  z-index: 1;
  top: 0;  
}
.table-thead th{
  padding: 10px 5px 10px 5px;
  text-align: left;    
}
.table-tr{
  border: solid;
  border-width: 1px 0;
  border-color: #ddd;
}
.table-td{
  padding: 10px 5px 10px 5px;
  border-width: 0;
}
.table-count{
	padding: 7px 0px 7px 10px;
	font-weight: bold;
	background: #eee;
	font-size: 14px;
}