﻿table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  margin-bottom:15px;
	
}
table caption {
  font-size: 1em;
  font-weight: bold;
  background: #f5f5f5;
  border-bottom: 1px solid #e3e3e3;
  color:#666;
  padding: .625em;
  text-align: left;
	
}
table tr {
  background: #fff;
  border-bottom: 1px solid #e3e3e3;
  padding: .35em;
}
table th,
table td {
  padding: .625em;
  text-align: left;
}
table th {
  font-size: .90em;
  text-transform: uppercase;
}


@media screen and (max-width: 600px) {
  table {
    border: 0;
  }
  table caption {
    font-size: 1em;
  }
  table thead {
    display: none;
  }
  table tr {
    border-bottom: 3px solid #e3e3e3;
    display: block;
    margin-bottom: .625em;
  }
  table td {
    border-bottom: 1px solid #e3e3e3;
    display: block;
	font-size: 1.25rem;
    text-align: right;
  }
  table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  table td:last-child {
    border-bottom: 0;
  }
}