/**
 * @file
 * Visual styles for Top+ Lite's tables.
 */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin: 25px 0 40px;
}
table tr th {
  padding: 15px 20px;
  font-weight: 400;
  color: #ffffff;
  background-color: #000000;
}
table tr:first-child th {
  border-width: 1px 0 1px 0;
}
table thead + tbody tr:first-child th:first-child {
  border-top-width: 0;
}
table tr th:last-child {
  border-right-width: 1px;
}
table tr td {
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: #ffffff;
  padding: 10px 20px;
  color: #000000;
}
table thead + tbody tr:first-child td {
  border-top-width: 0px;
}

/*Tables @gray regions*/
.region--black-background table tr th {
  background-color: #222222;
}
