
.table {
  display: table;
  width: 100%;
}

.thead {
  display: table-header-group;
}

.tbody {
  display: table-row-group;
}

.tr {
  display: table-row;
}

.td {
  display: table-cell;
  vertical-align: middle;
}

.col {
  display: table-column;
}

.tfoot {
  display: table-footer-group;
}
 
