html, body { font-family: 'Roboto', sans-serif; }
.segment-row-edited { background-color: rgba(255, 235, 59, 0.12); }

/* Pulse the chip of the stage currently being processed (live tracker). */
@keyframes dubflow-pulse {
    0%   { opacity: 1; }
    50%  { opacity: 0.45; }
    100% { opacity: 1; }
}
.stage-active { animation: dubflow-pulse 1.1s ease-in-out infinite; }
.stage-active .mud-chip-icon { animation: spin 1.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
