.table-mobile {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.table-mobile caption {
  margin: .5em 0 .75em;
}

.table-mobile tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
}

@media screen and (max-width: 600px) {
  .table-mobile {
    border: 0;
  }
  
  .table-mobile thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .table-mobile tr {
    display: block;
    margin-bottom: 10px !important;
  }
  
  .table-mobile td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
  }
  
  .table-mobile td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    color:#757575!important;
    font-weight: 600;
  }
  
  .table-mobile td:last-child {
    border-bottom: 0;
  }
}