@media screen and (max-width: 760px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    margin: 0 0 1rem 0;
  }

  tr:nth-child(odd) {
    background: #ccc;
  }

  table.table tbody td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }

  td::before {
    position: absolute;
    top: 0;
    left: 6px;
    width: 45%;
    padding: 1rem 1rem 0 0;
    white-space: nowrap;
    content: attr(data-label);
    font-weight: bold;
  }

  td:nth-of-type(1):before {
    content: "";
  }

  table.table tbody td:nth-of-type(1) {
    padding: .75rem;
    text-align: center;
    font-size: 1.5rem;
  }
}
