/* Component: Stepper
 * Description: Styles for a horizontal stepper component, including step circles, connecting lines, 
 *              and state variations for active and completed steps.
 */

 
.smd-component_stepper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.smd-component_stepper-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.smd-component_stepper-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-background-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.smd-component_stepper-circle--active {
    background: var(--color-branding-primary);
}

.smd-component_stepper-circle--completed {
    background: var(--color-branding-verified);
}

.smd-component_stepper-line {
    width: 40px;
    height: 2px;
    background: var(--color-background-lighter);
}

.smd-component_stepper-line--completed {
    background: var(--color-branding-verified);
}