:root {
  font-size: 1em;
  font-family: "PT Sans", sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  background: white;
}
h1, p {
  margin: 0;
  padding: 0;
}
#container {
  max-width: 800px;
}
#header {
  border-top: 1px solid #d9172f;
}
#title {
  font-family: "PT Serif", serif;
  font-size: 1.75rem;
  font-weight: bold;
  padding: 10px 0;
}
#description {
  font-size: 1.1rem;
  color: white;
  padding: 15px 15px 15px 15px;
  background: #0A1633;
}
#mapContainer {
  background: #0A1633;
  padding-bottom: 15px;
}
#map {
  background: #0A1633;
}
#footer {
  border-top: 1px solid #d9172f;
  background: #f4f5f7;
  color: #4A4A4A;
  font-size: .9rem;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.area {
  stroke: #0A1633;
  stroke-width: .5;
}
.cell {
  fill: none;
  pointer-events: all;
}
#tip {
  position: absolute;
  color: white;
  background: #096DD2;
  padding: 10px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  text-align: center;
  -webkit-box-shadow: 0.1rem 0.1rem 1rem black;
          box-shadow: 0.1rem 0.1rem 1rem black;
}
#info {
  position: absolute;
  color: white;
  background: #0A1633;
  padding: 10px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  text-align: center;
  -webkit-box-shadow: 0.1rem 0.1rem 1rem black;
          box-shadow: 0.1rem 0.1rem 1rem black;
}
#tip h1, #tip p, #info h1, #info p {
  margin: 0;
}
#info h1 {
  font-size: 1rem;
}
#tip p, #info p {
  font-size: 0.8rem;
}
#legend {
  margin: 15px 15px 0 15px;
  background: #0A1633;
}
#legend line, #legend path {
  stroke: white;
}
#legend text {
  fill: white;
  font-size: .7rem;
}

#selectorDiv {
  padding-bottom: 15px;
}
select {
  background: #0A1633;
  border-radius: 10px;
  color: white;
  padding: 5px 15px;
  outline: none;
  font-size: 1rem;
}
