/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-e4emu7ozye] { position: relative; display: flex; flex-direction: column; }

main[b-e4emu7ozye] { flex: 1; }

.sidebar[b-e4emu7ozye] { background-color: rgb(5, 39, 103); }
.top-row[b-e4emu7ozye] { background-color: #f7f7f7; border-bottom: 1px solid #d6d5d5; justify-content: flex-end; height: 3.5rem; display: flex; align-items: center; }

    .top-row[b-e4emu7ozye]  a, .top-row .btn-link[b-e4emu7ozye] { white-space: nowrap; margin-left: 1.5rem; }

    .top-row a:first-child[b-e4emu7ozye] { overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-e4emu7ozye] { display: none; }

    .top-row.auth[b-e4emu7ozye] { justify-content: space-between; }

    .top-row a[b-e4emu7ozye], .top-row .btn-link[b-e4emu7ozye] { margin-left: 0; }
}

@media (min-width: 641px) {
    .page[b-e4emu7ozye] { flex-direction: row; }

    .top-row[b-e4emu7ozye] { position: sticky; top: 0; z-index: 1; }

    .top-row[b-e4emu7ozye], article[b-e4emu7ozye] { padding-left: 2rem !important; padding-right: 1.5rem !important; }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-bgi5kqtem9] { background-color: rgba(255, 255, 255, 0.1); }

.top-row[b-bgi5kqtem9] { height: 3.5rem; background-color: rgba(0,0,0,0.4); }

.navbar-brand[b-bgi5kqtem9] { font-size: 1.2rem; }

.oi[b-bgi5kqtem9] { width: 2rem; font-size: 1.1rem; vertical-align: text-top; top: -2px; }

.nav-item[b-bgi5kqtem9] { font-size: 0.9rem; padding-bottom: 0.5rem; }

.nav-item:first-of-type[b-bgi5kqtem9] { padding-top: 1rem; }

.nav-item:last-of-type[b-bgi5kqtem9] { padding-bottom: 1rem; }

.nav-item[b-bgi5kqtem9]  a { color: #d7d7d7; border-radius: 4px; height: 3rem; display: flex; align-items: center; line-height: 3rem; }

.nav-item[b-bgi5kqtem9]  a.active { background-color: rgba(255,255,255,0.25); color: white; }

.nav-item[b-bgi5kqtem9]  a:hover { background-color: rgba(255,255,255,0.1); color: white; }

@media (min-width: 10000px) {
    .navbar-toggler[b-bgi5kqtem9] { display: none; }

    .collapse[b-bgi5kqtem9] { /* Never collapse the sidebar for wide screens 
        display: block;*/ }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-mhtkp4mw4s],
.components-reconnect-repeated-attempt-visible[b-mhtkp4mw4s],
.components-reconnect-failed-visible[b-mhtkp4mw4s],
.components-pause-visible[b-mhtkp4mw4s],
.components-resume-failed-visible[b-mhtkp4mw4s],
.components-rejoining-animation[b-mhtkp4mw4s] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-mhtkp4mw4s],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-mhtkp4mw4s],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-mhtkp4mw4s],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-mhtkp4mw4s],
#components-reconnect-modal.components-reconnect-retrying[b-mhtkp4mw4s],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-mhtkp4mw4s],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-mhtkp4mw4s],
#components-reconnect-modal.components-reconnect-failed[b-mhtkp4mw4s],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-mhtkp4mw4s] {
    display: block;
}


#components-reconnect-modal[b-mhtkp4mw4s] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-mhtkp4mw4s 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-mhtkp4mw4s 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-mhtkp4mw4s 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-mhtkp4mw4s]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-mhtkp4mw4s 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-mhtkp4mw4s {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-mhtkp4mw4s {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-mhtkp4mw4s {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-mhtkp4mw4s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-mhtkp4mw4s] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-mhtkp4mw4s] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-mhtkp4mw4s] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-mhtkp4mw4s] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-mhtkp4mw4s] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-mhtkp4mw4s] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-mhtkp4mw4s 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-mhtkp4mw4s] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-mhtkp4mw4s {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
