/* Stepper Container */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Step Circle */
.step {
    display: flex;
    padding: 4px 12px;
    align-items: center;
    gap: 16px;
    border-radius: 200px;
    background: var(--color-primary, #00264B);
    color: white;
    width: 40px;
    height: 40px;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

/* Line */
.line {
    display: flex;
    width: 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    height: 2px;
    background: #E0E0E0;
}

.stepper-candidate .line {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    height: 2px;
    flex-grow: 1;
    background: #E0E0E0;
}

/* Step Inactive */
.step:not(.active) {
    background: #E0E0E0;
    color: #999;
}

@media (max-width: 767px) {
    .step {
        width: 30px;
        height: 30px;
    }

    .stepper {
        padding: 0 var(--padding-xxl);
    }
}