div.table {
   display: table; 
}

div.table > div.tr {
  display: table-row;
}

div.table > div.tr > div.th,
div.table > div.tr > div.td {
  display: table-cell;
  text-align: left;
  padding: 5px;
}

div.th {
  font-size: 15px;
  font-weight: bold;
}

/**
 * Desktop specific
 */
@media screen and (min-width: 1025px) {
  div.table > div.tr > div.th,
  div.table > div.tr > div.td {
    border: 0px;
  }
  div.table > div.tr:nth-child(even) {

  }
  div#jquery_form tr:nth-child(even) {
  }
}


/**
 * Tablet specific
 */
@media screen and (max-width: 1024px) and (min-width: 769px)  {
  div.table > div.tr:nth-child(even) {
    background: #E3F2F9;
  }
  div#jquery_form tr:nth-child(even) {
    background: white;
  }
}

/**
 * Phone specific
 */
@media screen and (max-width: 768px)  {
  div.table > div.tr > div.th {
    position: absolute;
	top: -9999px;
	left: -9999px;
  }

  div.table,
  div.table > div.tr {
    display: block;
  }


  div.table > div.tr > div.td {
    position: relative;
    text-align: left;
    display: block;
  }

  div.table.with-header > div.tr > div.td {
    padding-left: 65%;
    margin-top:20px;
  }

  div.table.with-header > div.tr > div.td:before {
    content: attr(data-header);
    position: absolute;
    top: 5px;
    left: 5px;
    width: 65%;
    padding-right: 10px;
  }

}
