html, body {
  height: 100%;
}

#map {
  width: 100%;
  height: 100%;
}

#stats-notification {
  position: absolute;
  left: 0px;
  bottom: 0px;
  margin: 10px;
  z-index: 999;
}

.leaflet-control-attribution {
  font: 9px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif !important;
}

.popup-content {
  height: 250px;
  overflow-y: scroll;
}

.map-label {
  z-index: 9000638;
}

/* menu: https://codepen.io/mdcrtv/pen/BwKFz */
nav[role=navigation] {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-family: sans-serif;
  z-index: 999999;
}
nav[role=navigation] .toggle {
  position: absolute;
  top: 1em;
  right: 1em;
  padding: 0.5em 1em;
  letter-spacing: 0.1em;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
  /*background: rgba(255, 255, 255, .3);*/
  background: white;
  /*border: 0.1em solid #000;*/
  box-shadow: 1px 3px 5px black;
  z-index: 99;
  cursor: pointer;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 10px;
}
nav[roll=navigation] .close-nav {
  cursor: pointer;
}
nav[role=navigation] .toggle:hover {
  color: rgb(21, 140, 186);
  box-shadow: 1px 3px 5px black;
  /*border: 0.1em solid #000;*/
}
nav[role=navigation] ul {
  display: none;
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 1em;
  right: 1em;
  /*background: rgba(255, 255, 255, .3);*/
  box-shadow: 1px 3px 5px black;
  background: white;
  /*border: 0.1em solid #000;*/
  border-radius: 10px;
}
nav[role=navigation] li {
  float: left;
}
nav[role=navigation] li a {
  display: block;
  padding: 0.5em 1em;
  letter-spacing: 0.1em;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;

}
nav[role=navigation] li a:hover, nav[role=navigation] li .active {
  color: rgb(21, 140, 186);
}

@media (max-width: 767px)  {
  nav[role=navigation] {
    position: relative;
    float: right;
  }
  nav[role=navigation] a.active {
    color: #000
  }
}


#buttons-container{
  position: absolute;
  width: 40px;
  height: auto;
  top: 70px;
  right: 1em;
}

#turbine-toggle {
  background-image: url(/static/img/wind-power.svg);
}
/*
  "Icon made by Good Ware (https://www.flaticon.com/authors/good-ware) from www.flaticon.com"
*/

#future-toggle {
  margin-top: 54px;
  background-image: url(/static/img/area-with-pins-opacity-40.png);
}
/*
  "Icon made by Freepik (https://www.flaticon.com/authors/freepik) from www.flaticon.com"
*/

.tglbtn {
  border-radius: 10px;
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  background-size: 80% 80%;
  box-shadow: 1px 3px 5px;
  opacity: 1.00;
  cursor: pointer;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.tglbtn:hover{
  background-color: #efefef;
}

.tglbtn:active {
  opacity: 0.00;
}

.tglbtn .tooltiptext {
  visibility: hidden;
  background-color: white;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  box-shadow: 1px 3px 8px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: +3px;
  right: 120%;
}

.tglbtn:hover .tooltiptext {
  visibility: visible;
}

#future-tt, #turbine-tt {
  width: fit-content;
  white-space: nowrap;
  padding: 5px; 
}

.leaflet-control-zoom{
  top: 170px;
  right: 10px;
  box-shadow: 1px 3px 8px !important;
  border: none !important;
}