table.responsive-table {
  font-size: 13px;
}
table.responsive-table THEAD TR TH {
  color: #0a0a0a;
}
table.responsive-table > tbody > tr > TD {
  color: #0a0a0a;
}
table.responsive-table > tbody > tr:nth-child(2n) {
  background-color: #86bc50;
}

@media screen and (max-width: 600px) {
  table.responsive-table thead {
    display: none;
  }
  table.responsive-table > tbody > tr:nth-child(2n-1) {
    background-color: white;
  }
  table.responsive-table tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #ddd;
  }
  table.responsive-table td {
    display: flex;
    text-align: right;
    border: none;
    justify-content: space-between;
  }
  table.responsive-table td:empty {
    display: none;
  }
  table.responsive-table td::before {
    content: attr(data-label);
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    text-align: left;
  }
}

/*# sourceMappingURL=style.css.map */
