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

    .leaflet-div-label {
        margin-left: -80px;
        text-align: center;

    }

    .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; }
    }
}