.leaflet-dhis2 {
    .leaflet-marker-label {
        position: absolute;
        display: inline-block;
        width: 160px;
        margin-left: -80px;
        text-align: center;
    }

    .leaflet-div-label {
        text-align: center;
        line-height: 12px;
        text-shadow: -1px 0 #f5f5f5, 0 1px #f5f5f5, 1px 0 #f5f5f5, 0 -1px #f5f5f5;
        min-width: 80px;
        pointer-events: none;
    }

    .leaflet-marker-highlight {
        -webkit-animation: pulse 2s ease-out;
        animation: pulse 2s ease-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }
    @-webkit-keyframes pulse {
        from { stroke-width: 15; stroke-opacity: 1; }
        to { stroke-width: 50; stroke-opacity: 0; }
    }
    @keyframes pulse {
        from { stroke-width: 15; stroke-opacity: 1; }
        to { stroke-width: 50; stroke-opacity: 0; }
    }
}