#step_container{
    display: flex;
    flex-direction: row;
    width: 60%;
    margin: auto;
    margin-bottom: 20px;
}

.step_item{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border:2px solid white;
    background-color: white;
    width: 30px;
    height: 30px;
    position: relative;
}

.step_item>h3{
    color:var(--primary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: small;

}

.step_item>p{
    position: absolute;
    bottom: -15px;
    font-size: xx-small;
    color: white;
}

.step_spacer{
    width: 100%;
    height: 3px;
    margin: auto;
    background-color: white;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
}
.step_selected{
    background-color: var(--primary);
}
.step_selected>h3{
    color: white;
}