.results {
  display: none;
  margin-top: 40px;
  margin-bottom: 0;
}
.results h3 {
  text-align: center;
  font-size: 1rem;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #CCC;
  margin-bottom: 10px;
}
.results ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0 0 -10px;
}
.results ul:empty::before {
  display: block;
  text-align: center;
  content: '-----';
  width: 100%;
  margin-left: 10px;
}
.results ul li {
  position: relative;
  padding: 5px;
  background-color: #FFF;
  font-size: .75rem;
  text-align: center;
  word-break: break-all;
  width: calc(25% - 10px);
  margin: 10px 0 0 10px;
}
.results ul li[data-col="2"] {
  width: calc(50% - 10px);
}
.results ul li span[id] {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1;
}
.results ul li span.unit {
  font-size: .5em;
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  .results ul li {
    width: calc(50% - 10px);
  }
  .results ul li[data-col="2"] {
    width: calc(100% - 10px);
  }
}