/* _content/PearDrop.Components.AlertNotifications/Components/AlertNavPanel/PearDropAlertNavPanel.razor.rz.scp.css */
.pulse[b-agrhkpehtx] {
    border: 3px solid var(--bs-red);
    -webkit-border-radius: 30px;
    height: 10px;
    width: 10px;
    position: absolute;
    right: 0px;
    top: 0px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}
