/* /Components/Shared/LoadingPanel.razor.rz.scp.css */
.flex-container[b-4hlviqqips] {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */

    justify-content: center;
    align-items: center;
    width: 400px;
    height: 200px;
    background-color: #3498db;
}

.inner-element[b-4hlviqqips] {
    width: 100px;
    height: 100px;
    background-color: #f1c40f;
}

.overlay[b-4hlviqqips] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    backdrop-filter: blur(2px);
    background-color: rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn-b-4hlviqqips 0.15s ease-in-out;
}

@keyframes fadeIn-b-4hlviqqips {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* /Components/Shared/LoadingSection.razor.rz.scp.css */
.loading-container[b-ja4698z4pl] {
    position: relative !important;
}

.loading-overlay[b-ja4698z4pl] {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    /*background: var(--mud-palette-overlay-light) !important;*/
    z-index: 1000 !important;
    pointer-events: all !important;
    cursor: wait !important;
    backdrop-filter: blur(2px);
}
