
* {
  font-family: sans-serif;
  font-size: 1em;
}
  
p {
  font-size: 0.9rem;
  font-weight: 400;
  color: black;
  margin: 1px;
}

p.white {
  font-size: 0.9rem;
  font-weight: 400;
  color: white;
  margin: 1px;
}

p.sm {
  font-size: 1rem;
  color: #0078A8;
  font-weight: 800;
  margin: 1px;
}

p.med {
  font-size: 1rem;
  color: rgb(0, 0, 0);
  font-weight: 800;
  margin: 1px;
}

p.max {
  font-size: 1.2rem;
  color: rgb(0, 0, 0);
  font-weight: 900;
  margin: 1px;
}

p.maxWhite {
  font-size: 1.2rem;
  color: white;
  font-weight: 900;
  margin: 1px;
}

p.min {
  font-size: 1rem;
  color: rgb(61, 43, 43);
  font-weight: 400;
  margin: 1px;
}

body {
  padding: 0;
  margin: 0;
}

html, body, #map {
  height: 100%;
  width: 100vw;
}

.toolTipMoisture {
  font-family: sans-serif;
  font-size: 1.4em;
  background-color: greenyellow;
  border-color: greenyellow;
}

.toolTipTemperature {
  font-family: sans-serif;
  font-size: 1.4em;
  background-color: lightblue;
  border-color: lightblue;
}

.toolTipWbgtGreen {
  font-family: sans-serif;
  font-size: 1.4em;
  color: blue;
  background-color: rgb(0, 255, 0);
  border-color: rgb(0, 255, 0);
  
}

.toolTipWbgtYellow {
  font-family: sans-serif;
  font-size: 1.4em;
  background-color: rgb(255, 255, 0);
  border-color: rgb(255, 255, 0);
}

.toolTipWbgtOrange {
  font-family: sans-serif;
  font-size: 1.4em;
  background-color: rgb(255, 126, 0);
  border-color: rgb(255, 126, 0);
}

.toolTipWbgtRed {
  font-family: sans-serif;
  font-size: 1.4em;
  background-color: rgb(255, 0, 0);
  border-color: rgb(255, 0, 0);
}

.toolTipWbgtPurple {
  font-family: sans-serif;
  font-size: 1.4em;
  background-color: rgb(143, 63, 151);
  border-color: rgb(143, 63, 151);
}

.toolTipWbgtMaroon {
  font-family: sans-serif;
  font-size: 1.4em;
  background-color: rgb(126, 0, 35);
  border-color: rgb(126, 0, 35);
  color: white !important;
}

.toolTipWbgtBlack {
  font-family: sans-serif;
  font-size: 1.4em;
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
}

.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
  text-align: center;
}

.leaflet-container a {
  color: #0078A8;
  font-weight: 800;
  text-decoration: none;
}


/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}