.responsive-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 3px; }
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  .responsive-table caption {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold; }
  .responsive-table thead {
    background: #f8f8f8;
    color: #0a0a0a; }
  .responsive-table tfoot {
    background: #f1f1f1;
    color: #0a0a0a; }
  .responsive-table thead tr,
  .responsive-table tfoot tr {
    background: transparent; }
  .responsive-table thead th,
  .responsive-table thead td,
  .responsive-table tfoot th,
  .responsive-table tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold;
    text-align: left; }
  .responsive-table tbody th,
  .responsive-table tbody td {
    padding: 0.5rem 0.625rem 0.625rem;
    border: 1px solid #e5e5e5;}
  /* .responsive-table tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f7f7f7; } */
  .responsive-table.unstriped tbody {
    background-color: #fefefe; }
    .responsive-table.unstriped tbody tr {
      border-bottom: 0;
      border-bottom: 1px solid #f7f7f7;
      background-color: #fefefe; }

@media screen and (max-width: 63.9375em) {
  .responsive-table.stack thead {
    display: none; }
  .responsive-table.stack tfoot {
    display: none; }
  .responsive-table.stack tr,
  .responsive-table.stack th,
  .responsive-table.stack td {
    display: block; }
  .responsive-table.stack td {
    border-top: 0; } }

.responsive-table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto; }

.responsive-table.hover thead tr:hover {
  background-color: #f3f3f3; }

.responsive-table.hover tfoot tr:hover {
  background-color: #ececec; }

.responsive-table.hover tbody tr:hover {
  background-color: #f9f9f9; }

.responsive-table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec; }

.table-scroll {
  overflow-x: auto; }
  .table-scroll .responsive-table {
    width: auto; }