/* /Components/SingleComponents/ProcessesList.razor.rz.scp.css */
.running-dots[b-zh9kxm8m9b] {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px;
}

.running-dots span[b-zh9kxm8m9b] {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: currentColor;
    opacity: 0.3;
    animation: running-dots-blink-b-zh9kxm8m9b 1.2s infinite ease-in-out both;
}

.running-dots span:nth-child(2)[b-zh9kxm8m9b] {
    animation-delay: 0.2s;
}

.running-dots span:nth-child(3)[b-zh9kxm8m9b] {
    animation-delay: 0.4s;
}

@keyframes running-dots-blink-b-zh9kxm8m9b {
    0%, 80%, 100% {
        opacity: 0.3;
    }
    40% {
        opacity: 1;
    }
}
