.sbs-container {
    display: none;
}

.sbs-container.active {
    display: block;
}

.btn-next-step {
    display: none;
}

.btn-next-step.showing {
    display: unset;
}

.sbs-nav-control {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.sbs-nav-contrl .sbs-nav-control-link {
    cursor: pointer;
}

.sbs-nav-control .sbs-nav-control-item {
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 25px;
    background-color: #919EAB;
    color: #fff;
    cursor: pointer;
    position: relative;
    margin-left: 55px;
    margin-right: 55px;
}

.sbs-nav-control .sbs-nav-control-item.active {
    background-color: var(--bs-theme);
}

.sbs-nav-control .sbs-nav-control-link:not(:last-child) .sbs-nav-control-item::after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background: #e5e8eb;
    width: 100px;
    left: calc(100% + 5px);
    top: calc(50% - 1px);
}

.sbs-nav-control .sbs-nav-control-label {
    text-align: center;
    margin-top: .25rem;
}