/* 
 * Responsive tables CSS
 * https://github.com/jerrylow/basictable 
 */
 table.bt {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4em;
  margin: 1.5em 0 3.75em;
  width: 100%; }

@media (min-width: 570px) {
  table.bt thead {
    border-bottom: 1px solid #3E434A; } }

table.bt th {
  color: #3E434A;
  display: none;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase; }

table.bt tr:nth-child(even) {
  background-color: #F5F5F4; }

table.bt th, table.bt td {
  padding: 6px 16px; }

table.bt td {
  display: block; }

table.bt th:last-child, table.bt td:last-child {
  border-right: none; }

@media (min-width: 570px) {
  table.bt th, table.bt td {
    display: table-cell;
    padding: 0.8125rem;
    } }

table.bt thead,
table.bt tbody th {
  display: none; }

table.bt tfoot th,
table.bt tfoot td,
table.bt tbody td {
  border: none;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  vertical-align: top;
  padding: 0;
  /* IE 9 */
  float: left\9;
  width: 100% \9; }

table.bt tfoot th::before,
table.bt tfoot td::before,
table.bt tbody td::before {
  border-right: 3px solid #DAE3E7;
  content: attr(data-th);
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  font-weight: bold;
  width: 8em;
  padding: 8px;
  text-transform: uppercase; }

table.bt tfoot th.bt-hide,
table.bt tfoot td.bt-hide,
table.bt tbody td.bt-hide {
  display: none; }

table.bt tfoot th .bt-content,
table.bt tfoot td .bt-content,
table.bt tbody td .bt-content {
  padding: 8px 8px 8px 16px;
  vertical-align: top;
  display: flex;
  align-items: center; }

.bt-wrapper.active {
  max-height: 310px;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

table.bt.bt--no-header tfoot td::before,
table.bt.bt--no-header tbody td::before {
  display: none; }