.leaflet-attribution-flag {
	display: none !important;
}

.leaflet-container .cluster-marker {
	background-color: #393562;
	border: 1px solid #ccc;
	border-radius: 50%;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	transition: all 0.3s;
	position: relative;
	top: 2.5px;
	left: 2.5px;
}

.leaflet-container .cluster-marker:hover {
	background-color: #fff;
	border: 1px solid #ccc;
	color: #393562;
}

.pulse-animation {
	display: inline-block;
	position: absolute;
	width: 45px;
	height: 45px;
	top: -3px;
	left: -3px;
	z-index: -1;
	border-radius: 50%;
	background: #bcb9d9;
	opacity: 0.5;
	-webkit-animation: pulsate-fwd 1.5s ease-in-out infinite both;
	animation: pulsate-fwd 1.5s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-fwd {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulsate-fwd {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
