
.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;
}

.marker-cluster {
    background-color: transparent !important;
}
.marker-cluster div {
    position: relative;
    margin-left: 5px;
    margin-top: 5px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 36px;
    background: #1f3b64;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .5);
}
.marker-cluster div:before {
    border: 17px solid #1f3b64;
    opacity: 0.5;
    content: '';
    position: absolute;
    border-radius: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    box-sizing: border-box;
    animation: cluster-animation 2.5s infinite;
}
.marker-cluster span {
    line-height: 30px;
}
@keyframes cluster-animation {
    100% {
        transform:scale(2.8) rotate(90deg);
        opacity:0;
    }
}

.marker-red {
    background-color: transparent !important;
}
.marker-red div {
    position: relative;
    margin-left: 5px;
    margin-top: 5px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 36px;
    background: #ff0303;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .5);
}
.marker-red div:before {
    border: 10px solid #ff0303;
    opacity: 0.5;
    content: '';
    position: absolute;
    border-radius: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    box-sizing: border-box;
    animation: cluster-animation 2.5s infinite;
}
.marker-red span {
    line-height: 30px;
}

.marker-green {
    background-color: transparent !important;
}
.marker-green div {
    position: relative;
    margin-left: 5px;
    margin-top: 5px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 36px;
    background: #00a00d;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .5);
}
.marker-green div:before {
    border: 10px solid #00a00d;
    opacity: 0.5;
    content: '';
    position: absolute;
    border-radius: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    box-sizing: border-box;
    animation: cluster-animation 2.5s infinite;
}
.marker-green span {
    line-height: 30px;
}

.marker-lamo {
    background-color: transparent !important;
}
.marker-lamo div {
    position: relative;
    margin-left: 5px;
    margin-top: 5px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 36px;
    background: #bcbcbc;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .5);
}
.marker-lamo div:before {
    border: 10px solid #bcbcbc;
    opacity: 0.5;
    content: '';
    position: absolute;
    border-radius: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    box-sizing: border-box;
    animation: cluster-animation 2.5s infinite;
}
.marker-lamo span {
    line-height: 30px;
}