<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  padding: 0;
  background-color: #333333;
  font-family: 'Public Sans', sans-serif;
  color:#ffffff;
}

a {
  /* color:darkorange */
  color: #009200;
}

a :hover {
  background-color: #f6931f;
}

#map {
  position: absolute;
  width: 75%;
  left: 25%;
  top: 0;
  bottom: 0;
  background-color: #ffffff;
  overflow: hidden;
}

.title{
  top: 1vh;
  left: 0%;
  width: 20%;
  z-index: 1000;
  padding: 0em 1em;
  display: flex;
  overflow:hidden;
}

.info{
  z-index: 1000;
  width: 20%;
  padding: 1em;
  overflow-x:auto
}

#slider-range {
  left: 1%;
  padding: 0em;
  margin-top: 5%;
}

#odate {
  border:0; 
  color:#f6931f; 
  font-weight:bold; 
  background-color: #333333;
}

.legend{
  width: 90%;
  padding: 0em 1em;
  
}

.legendTxt {
  padding-left: 1em;
  font-size: 1em;
}

#dot1 {
  height: 15px;
  width: 15px;
  background-color: #009200;
  border-radius: 50%;
  vertical-align: middle;
  display: inline-block;
}

#dot2 {
  height: 15px;
  width: 15px;
  background-color: #b6b6b6;
  border-radius: 50%;
  vertical-align: middle;
  display: inline-block;
}


.bloomExtent{
  margin-top: 5%;
  display:flex;
  align-items: center;
}

.bloomExtentTxt{
  padding-left: 1em;
}

#circle {
  margin-top: 5%;
  border-radius: 50%;
  border-style: solid;
  border-color: #009200;
  border-width: medium;
  vertical-align: middle;
  display: inline-block;
}

/* css to customize Leaflet default styles  */
.customPopup, .leaflet-popup-content-wrapper {
    background: #333333;
    color: #ffffff;
    font-size: 0.8vw;
    
}

#popupImg{
  display: inline-block;
  width: 7vw;
  height: 7vw;
  padding: 5px;
  border: 1px #008fdd;    
}

@media all and (min-width: 1400px) {
  #popupImg{
    display: inline-block;
    width: 5vw;
    height: 5vw;
    padding: 5px;
    border: 1px #008fdd;    
  }
  .title{
      font-size:80%;
 }
 .info{
  font-size:80%;
 }
}

@media all and (min-width: 850px) and (max-width: 1400px) {
  .title{
      font-size:80%;
 }
 .info{
  font-size:80%;
 }
}

@media all and (min-width: 0px) and (max-width: 850px) {
  .title{
      font-size:30%;
  }
  .info{
    font-size:50%;
   }
   #slider-range label{
    font-size:10%;
   }
   .customPopup, .leaflet-popup-content-wrapper {
    background: #333333;
    color: #ffffff;
    font-size: 1vw;
    
}
}

</pre></body></html>