* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.responsetable {
  margin: 1em 0;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: #024457;
  border-radius: 10px;
  border: 1px solid #167f92;
}
.responsetable tr {
  border: 1px solid #d9e4e6;
}
.responsetable tr:nth-child(odd) {
  background-color: #eaf3f3;
}
.responsetable th {
  display: none;
  border: 1px solid #fff;
  background-color: #167f92;
  color: #fff;
  padding: 1em;
}
.responsetable th:first-child {
  display: table-cell;
  text-align: center;
}
.responsetable th:nth-child(2) {
  display: table-cell;
}
.responsetable th:nth-child(2) span {
  display: none;
}
.responsetable th:nth-child(2):after {
  content: attr(data-th);
}
@media (min-width: 480px) {
  .responsetable th:nth-child(2) span {
    display: block;
  }
  .responsetable th:nth-child(2):after {
    display: none;
  }
}
.responsetable td {
  display: block;
  word-wrap: break-word;
  max-width: 7em;
}
.responsetable td:first-child {
  display: table-cell;
  text-align: center;
  border-right: 1px solid #d9e4e6;
}
@media (min-width: 480px) {
  .responsetable td {
    border: 1px solid #d9e4e6;
  }
}
.responsetable th,
.responsetable td {
  text-align: left;
  margin: 0.5em 1em;
}
@media (min-width: 480px) {
  .responsetable th,
  .responsetable td {
    display: table-cell;
    padding: 1em;
  }
}

body {
  font-family: Arial, sans-serif;
  color: #024457;

}

h1 {
  font-family: Verdana;
  font-weight: normal;
  color: #024457;
}
h1 span {
  color: #167f92;
}
