
.leaflet-map-pane svg { z-index: 200; max-width: 100%}
.leaflet-map-pane svg [fill="#000000"] {fill:var(--mapcolor,hsl(0,0%,30%))}

.marker-cluster, .marker-cluster *{
	position: relative;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.marker-cluster::before {
	content:'';
	width:40px;
	height:40px;
	position: absolute;
	left: 0; top:0;
	background-clip: padding-box;
	border-radius: 50%;
	border: 5px solid var(--mapcolor,hsl(0,0%,30%));
	opacity: 0.5
}
.marker-cluster div {
	width: 25px;
  height: 25px;
  position: absolute;
  left: 7px;
  top: 7px;
	text-align: center;
	border-radius: 50%;
	font-size: 12px;
	background-color: var(--mapcolor,hsl(0,0%,30%));
	color:#FFF;
	}
.marker-cluster span {
	line-height: 26px;
}
