﻿.stepper-header{
    display:flex;
    align-items: center;
    padding: 0px 0.5rem;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing:content-box;
    background-clip: content-box;
    width: 30px;
    height: 30px;
    padding: 2px;
    border-radius: var(--border-radius-round);
    background-color: var(--black);
    color: var(--white);
    /*heading-sm*/
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--font-weight-semibold);
}
.step.active {
    border: 2px solid rgba(0, 0, 0, 0.8);
    outline: 2px solid rgba(0, 0, 0, 0.3);
    outline-offset: 2px;
    margin-left: -1px;
    margin-right: -1px;
}
.step:not(.active){
    margin-right: 1px;
    margin-left: 1px;
}

.stepper-line {
    /*width: 131px;*/
    flex-grow: 1;
    height: 0px;
    border: 1px solid var(--black);
    border-radius: var(--border-radius-round);
}

.inactive{
    opacity:0.3;
}

.stepper-footer{
    display:flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0.75rem;
}