/* =====================
   DriveHK Risk Marker
   ===================== */


.risk-marker {

    font-size: 32px;

    cursor: pointer;

    filter:
    drop-shadow(
        0 2px 3px rgba(0,0,0,.4)
    );

}



.marker-icon {

    animation:
    pulse 2s infinite;

}



@keyframes pulse {


    0% {

        transform: scale(1);

    }


    50% {

        transform: scale(1.15);

    }


    100% {

        transform: scale(1);

    }


}



.popup-card {

    font-family:
    Arial,
    sans-serif;

    min-width:220px;

}



.popup-card h3 {

    margin-top:0;

}