div[class*='marker-cluster'] {
  background-color: rgba(8, 104, 64, .6);
}

div[class*='marker-cluster'] div {
  background-color: var(--fni-color-2);
}

div.marker-cluster-small {
  width: 40px;
  height: 40px;
}

div.marker-cluster-small div {
  width: 30px;
  height: 30px;
}

.marker-cluster-small span {
  line-height: 30px;
}

div.marker-cluster-medium {
  width: 50px !important;
  height: 50px !important;
}

div.marker-cluster-medium div {
  width: 40px;
  height: 40px;
}

.marker-cluster-medium span {
  line-height: 40px;
}

div.marker-cluster-large {
  width: 60px !important;
  height: 60px !important;
}

div.marker-cluster-large div {
  width: 50px;
  height: 50px;
}

.marker-cluster-large span {
  line-height: 50px;
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 50%;
}

.marker-cluster div {
  margin-top: 5px;
  margin-left: 5px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}