.map-marker{
    display: block;
    position: relative;
    overflow: visible;
    pointer-events: none;
    transition: all .8s ease;
    opacity: 1;
}

.map-marker-hidden{
    opacity: 0!important;
}

.map-marker-removed {
    display: none !important;
}



/*--------------------------*/
.user-location-marker {
    position: relative;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.user-location-marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: userLocationPulse 2s infinite;
}

.user-location-marker-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

@keyframes userLocationPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}