@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table thead {
    display: none;
  }

  table tr {
    margin-bottom: 0px;
    border-right: 0; 
    display: block;
  }

  table td {
    display: block;
    text-align: left;
    font-size: 12px;
    border-bottom: 1px dotted #ccc;
  }

  table td:last-child {
    border-bottom: 0;
   # border-right: 0;
  }

table td: last-of-type {
border-right: 0;
}

  table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
}
