.table {
  width: 100%;
  min-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  display: table;
}
.table th .table .th {
  display: table-cell;
  padding: 10px 8px 8px;
  text-align: left;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #78909c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 2px solid #e0e7ef;
}
.table th .table .th.active {
  border-bottom: 2px solid #8893a0;
}
.table td,
.table .td {
  display: table-cell;
  padding: 10px 8px;
  text-align: left;
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: capitalize;
  color: #636363;
  vertical-align: middle;
}
.table tr,
.table .tr {
  position: relative;
  display: table-row;
  width: 100%;
  vertical-align: middle;
  background: #fff;
  border-radius: 3px;
  z-index: 1;
}
.table tr--thead,
.table .tr--thead {
  background: #e0e7ef;
  box-shadow: none;
}
.table tr + tr td,
.table .tr + tr td {
  border-top: 1px solid #ddd;
}
.table .tbody tr + tr,
.table .tbody .tr + tr,
.table .tbody tr + .tr,
.table .tbody .tr + .tr {
  margin-top: 4px;
}
