.marker__wrapper .marker__point.marker__point--holidays_inn {
background-color: #509e30;  
animation: pulse-holidays_inn 2s infinite;
}
@keyframes pulse-holidays_inn {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0  rgba(80,158,48,.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 0.8em rgba(80,158,48,0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(80,158,48,0);
}
}