/* lightblue	#66b3e6	rgb(102,179,230)
blue	#0078c8	rgb(0,120,200)
grey	#78777a	rgb(120,119,122)
dark	#1d1d1d	rgb(29,29,29)
darkblue	#0a1633	rgb(10,22,51)
lightgrey #f2f2f2 */

:root {
  font-size: 1em;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html, body {
  background: white;
  /* overflow: hidden; */
}
html, body, h1, p {
  margin: 0;
  padding: 0;
}
#container {
  max-width: 610px;
}
#header {
  border-top: 2px solid #0078c8;
}
#title {
  color: #0a1633;
  font-size: 1.5rem;
  padding-top: 15px;
  font-weight: bold;
}
#selectorDiv {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  font-size: .9rem;
  text-align: center;
}
.option {
  padding: 5px;
  background-color: #f2f2f2;
  color: #0a1633;
  border: solid #0a1633;
  border-radius: 10px;
  width: 100%;
  margin-right: 15px;
}
.option:last-child {
  margin-right: 0px;
}
.option:hover {
  background: #0078c8;
  color: white;
}
.selected {
  background-color: #0a1633;
  color: white;
}
#tip {
  position: absolute;
  color: white;
  background-color: #0078c8;
  padding: 5px;
  border-radius: 5px;
  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;
  font-size: .8rem;
}
#tip h1 {
  font-size: .9rem;
  font-weight: bold;
}
#footer {
  border-bottom: 2px solid #0078c8;
  padding: 15px;
  background: #f2f2f2;
  font-size: .9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#mapGroup {
  -webkit-clip-path: url(#mask);
          clip-path: url(#mask);
}
.water {
  fill: #0078c8;
  pointer-events: none;
}
.border {
  fill: none;
  stroke: #f2f2f2;
  stroke-width: 2;
  stroke-dasharray: 3 3;
  pointer-events: none;
}
.suburb {
  stroke: white;
  fill: #78777a;
  pointer-events: none;
}
#mapContainer {
 background-color: #0a1633;
}
.cell {
  fill: rgba(0, 0, 0, 0);
}
#legend {
  background: #0A1633;
}
#legend line, #legend path {
  stroke: white;
}
#legend text {
  fill: white;
  font-size: .7rem;
}
#axis text {
  font-size: .6rem;
}
