
@media (max-width: 768px) {
  .ws-table-responsive table {
    width: auto;
    border: 1px solid lightgray;
  }
  
  .ws-table-responsive thead {
    display: none;
  }

  .ws-table-responsive tr {
    display: table;
    width: 100%;
    border-top: 1px solid gainsboro;
  }

  .ws-table-responsive tr:first-of-type {
    border-top: none;
  }

  .ws-table-responsive tr::nth-child(odd) {
    background: silver;
  }

  .ws-table-responsive td {
    display: table-row;
    border: none !important;
  }

  .ws-table-responsive td:before {
    content: attr(data-label) ":";
    font-weight: bold;
    display: table-cell;
    text-align: right;
    padding: 0 5px 0 10px;
    white-space: nowrap;
    width: 1px;
  }

  .ws-table-responsive span {
    display: table-cell;
    padding-right: 10px;
  }
}

caption {
  text-align: left;
  color: gray;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px;
}

.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
    background-color: whitesmoke !important;
}