.bs-loading-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.25rem;
    background: rgba(8, 18, 14, .42);
    backdrop-filter: blur(9px);
    overflow: auto;
    width: 100vw;
    height: 100vh;
    min-height: 100dvh;
    isolation: isolate;
    user-select: none;
    -webkit-user-select: none;
}
.bs-loading-modal.show {
    display: flex;
}
.bs-loading-card {
    width: min(92vw, 360px);
    max-height: calc(100vh - 2.5rem);
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 70px rgba(8, 18, 14, .28);
    color: #123524;
    display: grid;
    justify-items: center;
    gap: .55rem;
    padding: 1.5rem;
    text-align: center;
    font-family: inherit;
    transform: translateZ(0);
    user-select: none;
    -webkit-user-select: none;
}
.bs-loading-card strong {
    font-size: 1rem;
}
.bs-loading-card span {
    color: #64756d;
    font-size: .86rem;
}
.bs-loading-spinner {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 4px solid #dcebe2;
    border-top-color: #123524;
    animation: bs-spin .72s linear infinite;
}
.bs-loading-active {
    cursor: wait;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}
.bs-loading-active > *:not(.bs-loading-modal):not(.swal2-container) {
    pointer-events: none;
    user-select: none;
}
.bs-swal-popup {
    border-radius: 8px !important;
    font-family: inherit !important;
}
.swal2-container {
    position: fixed !important;
    inset: 0 !important;
    z-index: 100000 !important;
    display: grid !important;
    place-items: center !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(.75rem, 3vw, 1.5rem) !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    overflow-y: auto !important;
}
.swal2-popup {
    margin: auto !important;
    max-width: min(92vw, 32rem) !important;
    position: relative !important;
    transform: none !important;
}
body.swal2-shown,
body.swal2-height-auto {
    height: auto !important;
    padding-right: 0 !important;
    overflow: hidden !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}
@keyframes bs-spin {
    to { transform: rotate(360deg); }
}
