table {
  border: 0px;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
}

table tr {
  background-color: #ffffff;
  border: 0px;
}

table th,
table td {
  text-align: left;
  border: 0px;
}

table th {
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 0px;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
          border: 0;
    border-bottom: 0px;
    display: block;
    text-align: left;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}


