body {
  margin: 0;
  padding: 0;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

h1 {
  font-size: 14px;
  line-height: 16px;
}
h3 {
  border-top: 12px blue;
}

p {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
  font-family: "Roboto Serif", serif;
}

a {
  text-decoration: none;
  color: #2dc4b2;
}

#console {
  position: absolute;
  width: 300px;
  height: 100vh;
  left: 10px;
  padding: 10px;
  background-color: #f5f1ef;
  display: flex;
  flex-direction: column;
  font-family: "Roboto Serif", serif;
}

.session {
  margin-bottom: 20px;
}

.row {
  height: 12px;
  width: 100%;
}
/* Geocoder Control*/
.mapboxgl-ctrl-geocoder {
  width: 290px !important;
  font-family: "Roboto Serif", serif;
}
/* D3 LINEGRAPH COMPONENTS*/
#linegraph {
  position: absolute;
  margin-top: 320px;
  left: 0px;
  font-family: "Roboto Serif", serif;
}

#selectButton {
  position: absolute;
  margin-top: 290px;
  left: 10px;
  background-color: #f5f1ef;
  font-family: "Roboto Serif", serif;
}
/* LEGEND*/
#legend {
  position: absolute;
  line-height: 20px;
  bottom: 30px;
  margin-left: 950px;
  background-color: #f5f1ef;
  font-size: 16px;
  width: 280px;
  justify-content: center;
}
.legend-key {
  display: inline-block;
  border-radius: 20%;
  width: 25px;
  height: 20px;
  padding: 0px;
  margin: 3px;
  font-size: 16px;
}

/* INFO BUTTON */
* {
  transition: 0.3s ease;
}
.extra-info {
  display: none;
  line-height: 30px;
  font-size: 11px;
  position: absolute;
  top: 0px;
  left: 40px;
  font-family: "Roboto Serif", serif;
  color: white;
}

.info:hover .extra-info {
  display: block;
}

.info {
  font-size: 20px;
  padding-left: 5px;
  width: 20px;
  border-radius: 15px;
  margin-top: 0px;
}

.info:hover {
  background-color: #31a354;
  padding: 0 0 0 5px;
  width: 280px;
  text-align: left !important;
}