/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-ntmljoiptl] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ntmljoiptl] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.viewport[b-ntmljoiptl] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-header[b-ntmljoiptl] {
    border-bottom: 1px solid #d6d5d5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0rem 0rem;
    align-items: center;
    background: #ffffff;
}

.page[b-ntmljoiptl] {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.left-container[b-ntmljoiptl] {
    display: flex;
    align-items: center;
}

.right-container[b-ntmljoiptl] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.logo-subtitle[b-ntmljoiptl] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-title-link[b-ntmljoiptl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-logo-consir[b-ntmljoiptl] {
    width: max(14vw, 200px);
    height: auto;
    display: block;
}

.header-logo-left[b-ntmljoiptl] {
    width: max(3vw, 50px);
    height: auto;
    display: block;
    margin-left: 10px;
}

.header-logo-right[b-ntmljoiptl] {
    width: max(10vw, 80px);
    height: auto;
    display: block;
    margin-right: 10px;
}

.subtitle[b-ntmljoiptl] {
    margin-top: 0rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    font-family: Dosis, Arial, Helvetica, sans-serif;
    color: #000070;
    text-align: center;
}

main[b-ntmljoiptl] {
    flex: 1;
}

.content[b-ntmljoiptl] {
    padding: 0;
}


@media (max-width: 640px) {
    .subtitle[b-ntmljoiptl] {
        display: none;
    }
}

@media (max-width: 500px) {
    .header-logo-left[b-ntmljoiptl] {
        display: none;
    }

    .header-logo-right[b-ntmljoiptl] {
        display: none;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-wp3520xk8i],
.components-reconnect-repeated-attempt-visible[b-wp3520xk8i],
.components-reconnect-failed-visible[b-wp3520xk8i],
.components-pause-visible[b-wp3520xk8i],
.components-resume-failed-visible[b-wp3520xk8i],
.components-rejoining-animation[b-wp3520xk8i] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-wp3520xk8i],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-wp3520xk8i],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-wp3520xk8i],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-wp3520xk8i],
#components-reconnect-modal.components-reconnect-retrying[b-wp3520xk8i],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-wp3520xk8i],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-wp3520xk8i],
#components-reconnect-modal.components-reconnect-failed[b-wp3520xk8i],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-wp3520xk8i] {
    display: block;
}


#components-reconnect-modal[b-wp3520xk8i] {
    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-wp3520xk8i 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-wp3520xk8i 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-wp3520xk8i 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-wp3520xk8i]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-wp3520xk8i 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-wp3520xk8i {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-wp3520xk8i {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-wp3520xk8i {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-wp3520xk8i] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-wp3520xk8i] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-wp3520xk8i] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-wp3520xk8i] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-wp3520xk8i] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-wp3520xk8i] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-wp3520xk8i] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-wp3520xk8i 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-wp3520xk8i] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-wp3520xk8i {
    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;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.features-intro.style-2[b-plwpa9wcz6] {
    max-width: 1128px;
    margin: 18px auto 0 auto;
    padding: 0;
    font-family: "PT Sans", Arial, Helvetica, sans-serif;
}

    .features-intro.style-2 .row-fluid[b-plwpa9wcz6] {
        display: flex;
        flex-wrap: wrap;
        margin-left: -24px;
    }

        .features-intro.style-2 .row-fluid .span6.feature-item[b-plwpa9wcz6] {
            box-sizing: border-box;
            width: 50%;
            padding-left: 24px;
        }

        .features-intro.style-2 .row-fluid .feature-item[b-plwpa9wcz6] {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 24px;
            min-height: 190px;
            margin-bottom: 24px;
            transition: all 0.35s;
            background: #fff;
        }

            .features-intro.style-2 .row-fluid .feature-item:hover[b-plwpa9wcz6] {
                border-color: #909090;
            }

            .features-intro.style-2 .row-fluid .feature-item a[b-plwpa9wcz6] {
                color: #666666;
                text-decoration: none;
                display: block;
            }

            .features-intro.style-2 .row-fluid .feature-item .feature-item-icon[b-plwpa9wcz6] {
                float: left;
                margin-right: 10px;
            }

                .features-intro.style-2 .row-fluid .feature-item .feature-item-icon img[b-plwpa9wcz6] {
                    display: block;
                    width: 42px;
                    height: auto;
                }

            .features-intro.style-2 .row-fluid .feature-item h3[b-plwpa9wcz6] {
                font-family: "PT Sans", Arial, Helvetica, sans-serif;
                font-size: 24px;
                line-height: 1.4;
                font-weight: 700;
                color: inherit;
                margin: 12px 0;
            }

            .features-intro.style-2 .row-fluid .feature-item p[b-plwpa9wcz6] {
                margin: 0;
                font-family: "PT Sans", Arial, Helvetica, sans-serif;
                font-size: 16px;
                font-weight: 400;
                line-height: 1.4;
                color: #666666;
                clear: both;
            }

        .features-intro.style-2 .row-fluid .feature-item-dummy[b-plwpa9wcz6] {
            visibility: hidden;
        }

@media (max-width: 991px) {
    .features-intro.style-2 .row-fluid[b-plwpa9wcz6] {
        margin-left: 0;
    }

        .features-intro.style-2 .row-fluid .span6.feature-item[b-plwpa9wcz6] {
            width: 100%;
            padding-left: 0;
        }

        .features-intro.style-2 .row-fluid .feature-item-dummy[b-plwpa9wcz6] {
            display: none;
        }
}
