:root {
  --greenDark:#6C883D;
  --green: #728F40;
  --greenLight:#7C9C46;
  --white: #ffffff;
  --black: #666666;
  --red: #E71D1D;
  --yellow: #D8B713;
  --grayLight:#f3f3f3;
  --grayMedium:#eeeeee;
  --gray: #cccccc;
  --grayDark:#666666;
}
.green{
   color: var(--green);
}
.greenDark{
   color: var(--greenDark);
}
.red{
   color: var(--red);
}
.yellow{
  color: var(--yellow);
}

.marker-cluster {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
  width: 32px;
  height: 38px;
  background-color: #1396e2;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 38px;
}
.marker-cluster:hover {
  background-color: #073855;
}

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #aaa;
  aspect-ratio: 0;
  border-radius: 5px;
  padding:10px;
}

.leaflet-tooltip {
  position: absolute;
  padding: 3px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  font-weight: normal;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}


/*
#chartContainer{
  display: none;
  background-color: #ffffff;
  width: 220px;
  padding:5px;
  border-radius: 10px;
  border:1px solid var(--greenDark);
} 

#chartContainer::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border-width: 7px;
  border-style: solid;
  border-color: var(--greenDark) transparent transparent transparent;
}
*/

#map-loading{
  transition: 0.4s;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  position: absolute;
  top:50%;
  left:46%;
  z-index: 1100;
  background-image: url("../img/AjaxLoader.gif");
  background-repeat:no-repeat;
  background-position: center center;
  background-size: 32px 32px;
  width:52px;
  height: 52px;
}
/* TEMP */
.loaded{
}
.fade-map{
  border:10px solid yellow;
}
.has-fullscreen-map{
  /*position:relative;*/
}