* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  color: #222;
}
hotspot-map {
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
  display: block;
}
hotspot-map .image-container {
  position: relative;
}
hotspot-map img {
  width: 100%;
}
hotspot-map p.legend-label {
  font-family: "Roboto Condensed", sans-serif;
  margin: 0;
}
hotspot-map .spot {
  position: absolute;
  border-radius: 100%;
  opacity: .5;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  margin-top: -15px;
}
@media (max-width: 720px) {
  hotspot-map .spot {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
  }
}
hotspot-map .spot.contamination {
  background: #cc3300;
}
hotspot-map .spot.narrative {
  background: #004488;
}
hotspot-map .spot.show {
  opacity: 1;
  z-index: 999;
}
hotspot-map .spot.show .popup {
  display: block;
}
hotspot-map .ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  padding: 8px;
  background: white;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 720px) {
  hotspot-map .ui {
    position: relative;
    width: 100%;
  }
}
hotspot-map .ui input[type=radio] {
  display: none;
}
hotspot-map .ui input[type=radio] + label {
  display: block;
  margin: 4px 0;
  padding: 4px;
  color: #888;
  cursor: pointer;
}
hotspot-map .ui input[type=radio] + label:last-child {
  border-radius: 0 4px 4px 0;
}
@media (max-width: 720px) {
  hotspot-map .ui input[type=radio] + label {
    width: 100%;
    border-radius: 4px;
    float: none;
  }
}
hotspot-map .ui input[type=radio] + label h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-weight: normal;
  font-size: 14px;
}
hotspot-map .ui input[type=radio] + label h2::before {
  content: " ";
  margin-right: 8px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  display: inline-block;
  text-align: center;
  background: #CCC;
  border-radius: 100%;
  vertical-align: top;
}
hotspot-map .ui input[type=radio] + label h3 {
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  margin: 0 0 0 24px;
}
hotspot-map .ui input[type=radio]:checked + label {
  color: black;
}
hotspot-map .ui input[type=radio]:checked + label h2::before {
  content: "✔";
  color: white;
}
hotspot-map .ui input[type=radio]:checked + label[for=narrative] h2::before {
  background: #004488;
}
hotspot-map .ui input[type=radio]:checked + label[for=measurements] h2::before {
  background: #cc3300;
}
.popup {
  position: absolute;
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
  background: white;
  border: 1px solid #DDD;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
  width: 300px;
  padding: 12px;
}
@media (max-width: 720px) {
  .popup,
  .popup-left .popup {
    position: fixed;
    top: 5px !important;
    left: 3% !important;
    width: 94%;
    margin-top: 25px;
    bottom: auto !important;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.popup-left .popup {
  right: 100%;
  left: auto;
}
.popup h1 {
  font-size: 16px;
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-weight: normal;
}
.popup .content {
  font-size: 16px;
  margin-top: 8px;
}
.popup .photo {
  margin-top: 8px;
}
.popup .photo img {
  width: 100%;
  max-width: 320px;
}
@media (max-width: 720px) and (orientation: landscape) {
  .popup .photo {
    float: left;
    width: 50%;
  }
  .popup .photo + .content {
    float: left;
    width: 50%;
    padding: 0 8px;
  }
}
.popup .graph {
  margin-top: 10px;
  clear: both;
}
.popup .graph label {
  display: block;
  font-size: 13px;
}
.popup .graph .bar {
  height: 1em;
  line-height: 1em;
  margin: 2px 0 8px 0;
}
.popup .graph .bar.lead {
  background: darkred;
  width: 100%;
  text-align: right;
  padding-right: 4px;
  color: white;
}
.popup .graph .bar.acceptable {
  float: left;
  background: gray;
}
.popup .graph .label {
  line-height: 1em;
  height: 1em;
  float: left;
}
sup {
  vertical-align: text-top;
}
