.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .table-responsive table {
    min-width: 600px;
  }
}

@media (max-width: 768px) {
  .table-responsive thead {
    display: none;
  }

  .table-responsive tbody tr {
    display: block;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px;
  }

  .table-responsive tbody td {
    display: block;
    text-align: left;
    border: none;
    padding: 5px 0;
  }

  .table-responsive tbody td:before {
    content: attr(data-label) ": ";
    font-weight: bold;
    display: inline-block;
    width: 120px;
  }
}
