staged-progress {
    position: relative;
    display: block;
    width: 100%;
    height: 5rem;

    .progress {
        span {
            display: block;
            position: absolute;
            top: calc(50% - 0.15rem);
            width: 0;
            height: 4px;
            border-radius: 5px;
            background: var(--color-brand-dark);
        }
    }
    &:after {
        content: '';
        position: absolute;
        width: 100%;
        top: calc(50% - 0.3rem);
        height: 10px;
        z-index: -1;
        background: #ddd;
    }
}

staged-indicator {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    position: absolute;
    top: calc(50% - 1rem);
    z-index: 1;
    border-radius: 50%;
    background: #ddd;
    text-align: center;
    .major {
        border-radius: 0;
    }
    svg {
        position: relative;
        visibility: hidden;
        fill: white;
        top: calc(50% - 1rem);
    }
}

staged-indicator.completed {
    background: var(--color-brand-light);
    svg {
        visibility: visible;
    }
}
