.table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}

.table th,
.table td {
  border: 1px solid #FFFFFF;  
  padding: 8px;
}

.table th { 
  font-size: 16px;
  font-weight: normal;
  background: #dedede;
  text-align: center;
  width: 35%;
}
.table td {
  font-size: 16px;
  font-weight: normal;	
  background: #F4F4F4;
  text-align: left;
}



@media only screen and (max-width: 800px) {
  .table tr,
  .table th,
  .table td {
    display: block;
    width: auto;
  }
  
  .table tr:first-child {
    border-top: 1px solid #FFFFFF;  
  }
  
  .table th,
  .table td {
    border-top: none;
  }
}