/* TABLE Overrides */
table thead th {
  font-family: 'roboto', sans-serif;
  font-weight: 500;
}

.table {
  color: #242424;
}
.table tr {
  border-bottom: 1px solid #dee2e6;
}



.table-space{
  width: 100%;
    border-collapse: separate;
    border-spacing: 0px 10px;
}

.table-striped thead {
  background-color: #EAEAEF;  
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 1);
}

.table-borderless tr {
  border-bottom: 0px !important;
}

.table-fixed{
  table-layout: fixed;
}

@media(max-width:991px){
	.table-fixed{
  table-layout: auto;
}
}

