.table {
display: table;
border: 0px solid blue;
border-collapse:collapse;
width: 90%;
}
.table-row {display: table-row;border: 0px solid blue;}
.table-cell {display: table-cell;padding: 15px;}

.thead {font-weight: bold;width:30%;}
 @media only screen and (max-width: 800px) {
.table {border:none;}
.table-row,
.table-cell {
display: block;
border: 0px solid blue;
width:90%; 
}
	
.table-row { margin-bottom: 20px; }
}
