.form-v {
    min-width: 100%;
    flex-grow: 1;
}
.input-group {
    gap: 16px;
}

button[type=submit][disabled] > .btn-x {
    display: none;
}

button[type=submit]:not([disabled]) > span:not(.btn-x) {
    display: none;
}

.card-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-container > .card {
    width: min(52rem, 100%);
}

.navbar-brand {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
@media screen and (max-width: 512px) {
    .navbar-brand {
        grid-template-columns: 1fr auto;
    }
}
.navbar-brand > h3 {
    font-weight: bold;
}
nav.navbar {
    box-shadow: 0px 5px 8px #eee;
    flex-direction: column;
}

.navbar-prog {
    display: grid;
    grid-template-columns: auto auto auto auto;
    width: 100%;
    text-align: center;
    margin-top: 1em;
    background: #eee;
    border-radius: 0.5em;
}
.navbar-prog > div {
    background: #eee;
    color: #333;
}
.navbar-prog > div.active {
    background: var(--bs-primary);
    color: white;
}

.navbar-prog > div.current {
    border-radius: 0 0.5em 0.5em 0;
    background: var(--bs-success);
    color: white;
}
.navbar-prog > div.active:has(+div.active,+div.current) {
    border-right: 2px solid;
}

.navbar-prog > div:first-child {
    border-radius: 0.5em 0 0 0.5em;
}
.navbar-prog > div:last-child {
    border-radius: 0 0.5em 0.5em 0;
}

body {
    background-color: #FFFFFE;
}


.pin-field > .form-control {
    border-radius: var(--bs-border-radius)!important;
    width: 48px;
    height: 48px;
    flex: none;
    text-align: center;
    font-size: 14pt;
    font-weight: 800;
    caret-color: transparent;
}
.pin-field > input.form-control::placeholder {
    color: #ccc;
}
.pin-field {
    gap: 16px;
    justify-content: center;
}
.show-pin {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    border: none;
}
.show-pin > :first-child {
    display: none;
}
.show-pin > :last-child {
    display: block;
}
.show-pin.dss > :first-child {
    display: block;
}
.show-pin.dss > :last-child {
    display: none;
}

/*
.breadcrumb > .breadcrumb-item.active > span.badge {
    background-color: rgba(var(--bs-primary-rgb));
}
.breadcrumb > .breadcrumb-item:not(.active) > span.badge {
    background-color: rgba(var(--bs-secondary-rgb));
}
.breadcrumb > .breadcrumb-item.active {
    color: rgba(var(--bs-primary-rgb));
    --bs-breadcrumb-divider-color: var(--bs-primary-rgb);
}
.breadcrumb > .breadcrumb-item:not(.active) {
    color: rgba(var(--bs-secondary-rgb));
}
.breadcrumb {
    --bs-breadcrumb-divider: '❯';
    display: flex;
    align-items: center;
}
.breadcrumb-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.breadcrumb-item > span.badge {
    width: 1.75em;
    height: 1.75em;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
}*/