
table#rtable {
  margin: 0 auto;
  border-collapse: collapse;
  font-family: 'Titillium Web', serif;
  font-weight: 100;
  background: #425A8C;
  color: #fff;
  text-rendering: optimizeLegibility;
  border-radius: 5px;
}

table#rtable caption {
  font-size: 16px;
  color: #444;
  margin: 1rem;
}

table#rtable thead th {
  font-weight: 600;
  font-family: Titillium Web', sans-serif;
}

table#rtable thead th,
table#rtable tbody td {
  padding: .8rem;
  font-size: 18px;
}

table#rtable tbody td {
  padding: .8rem;
  font-size: 16px;
  color: #444;
  background: #fff;
}

table#rtable tbody tr:not(:last-child) {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 600px) {
  table#rtable caption {
    background-image: none;
  }
  table#rtable thead {
    display: none;
  }
  table#rtable tbody td {
    display: block;
    padding: .6rem;
  }
   table#rtable tbody tr td:first-child {
    background: #425A8C;
    color: #fff;
  }
  table#rtable a {
    color: #ff6a00;
  }
  table#rtable tbody td:before {
    content: attr(data-th);
    font-weight: bold;
    display: inline-block;
    width: 6rem;
  }
}