/* /Components/Infrastructure/Footer.razor.rz.scp.css */
footer[b-th3b2noubw] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: var(--size-spacing-24) var(--size-spacing-16);
    background-color: rgb(var(--color-neutral-900-rgb));
}

    footer p[b-th3b2noubw] {
        color: var(--color-mask-tint-50);
    }

.content[b-th3b2noubw] {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--size-page-max-width);
    gap: var(--size-spacing-24);
}

.info[b-th3b2noubw]{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}

.about[b-th3b2noubw] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-16);
    width: fit-content;
}

.line[b-th3b2noubw] {
    width: 100%;
    height: 1px;
    background-color: var(--color-mask-tint-10);
}

.additional[b-th3b2noubw]{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}

@media (max-width: 500px){
    .additional[b-th3b2noubw] {
        flex-direction: column;
        align-items: center;
        gap: var(--size-spacing-4);
    }
}
/* /Components/Infrastructure/Header.razor.rz.scp.css */
header[b-ei3x94eqg4] {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: var(--size-spacing-16);
    background-color: rgb(var(--color-secondary-0-rgb));
    box-shadow: 0 4px 24px 0 var(--color-mask-shade-5);
    border-bottom: 1px solid var(--color-mask-shade-5);
    z-index: 999;
}

.content[b-ei3x94eqg4] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: var(--size-page-max-width);
    width: 100%;
}

.content-left[b-ei3x94eqg4] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--size-spacing-16);
    width: fit-content;
}
/* /Components/Landing/Audience.razor.rz.scp.css */
.page-section-content[b-hj2lp09gyd] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-24);
    align-items: center;
}




.cards[b-hj2lp09gyd] {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    height: fit-content;
    grid-template-columns: repeat(4, 1fr);
}


.card-local[b-hj2lp09gyd] {
    flex: 1;
    height: 100%;
}

.card-content[b-hj2lp09gyd] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-16);
}

ul[b-hj2lp09gyd] {
    padding-left: 0;
    margin-left: 0;
}

li[b-hj2lp09gyd] {
    margin-left: var(--size-spacing-16);
    color: rgb(var(--color-neutral-400-rgb));
}

.card-text[b-hj2lp09gyd] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-8);
}

    .card-text .title[b-hj2lp09gyd] {
        font-weight: 600;
    }

    .card-text .description[b-hj2lp09gyd] {
        color: rgb(var(--color-neutral-600-rgb));
    }


@media (max-width: 1000px) {
    .cards[b-hj2lp09gyd] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .cards[b-hj2lp09gyd] {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* /Components/Landing/BetaNotice.razor.rz.scp.css */
.section[b-vbwf0qcbdi] {
    background-color: rgb(var(--color-yellow-100-rgb));
    border-top: 1px solid var(--color-mask-shade-10);
    border-bottom: 1px solid var(--color-mask-shade-10);
}

.container[b-vbwf0qcbdi]{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.notice[b-vbwf0qcbdi] {
    display: flex;
    flex-direction: column;
    padding: var(--size-spacing-24) var(--size-spacing-32);
    border-radius: var(--size-radius-xl);
    border: 1px solid rgb(var(--color-yellow-600-rgb));
    background-color: rgb(var(--color-secondary-0-rgb));
    max-width: 1000px;
    height: fit-content;
}

.notice-content[b-vbwf0qcbdi] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-32);
    align-items: center;
}

.warning-icon[b-vbwf0qcbdi] {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    flex-direction: row;
    background-color: rgb(var(--color-yellow-200-rgb));
    border-radius: var(--size-radius-base);
    justify-content: center;
    align-items: center;
}

.notice-message[b-vbwf0qcbdi] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-16);
}

.message-header[b-vbwf0qcbdi] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-16);
    align-items: center;
    width: fit-content;
}

.message-items[b-vbwf0qcbdi] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-32);
}

@media (max-width: 750px){
    .message-items[b-vbwf0qcbdi] {
        flex-direction: column;
        gap: var(--size-spacing-8);
    }
}


@media (max-width: 600px){
    .warning-icon[b-vbwf0qcbdi] {
        display: none;
    }
}

@media (max-width: 450px){
    .message-header[b-vbwf0qcbdi] {
        flex-direction: column;
        align-items: start;
        gap: var(--size-spacing-4);
    }
}

/* /Components/Landing/Donate.razor.rz.scp.css */
.page-section-content[b-h088fvdw6u] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-24);
    align-items: center;
}
/* /Components/Landing/Feedback.razor.rz.scp.css */
.page-section-content[b-g8wac96cfr] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-24);
    align-items: center;
}
/* /Components/Landing/Hero.razor.rz.scp.css */
.hero[b-7eqyxge1ja]{
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-48);
}

.info[b-7eqyxge1ja] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-24);
    flex: 3
}

.info-primary[b-7eqyxge1ja] {
    color: rgb(var(--color-neutral-600-rgb));
}

.info-additional[b-7eqyxge1ja] {
    color: rgb(var(--color-neutral-300-rgb));
}

    .buttons[b-7eqyxge1ja] {
        display: flex;
        flex-direction: row;
        gap: var(--size-spacing-12);
    }

.image-wrapper[b-7eqyxge1ja] {
    flex: 4;
}




@media(max-width: 1000px) {
    .hero[b-7eqyxge1ja] {
        flex-direction: column;
    }

    .info[b-7eqyxge1ja]{
        align-items: center;
    }

        .info h1[b-7eqyxge1ja] {
            text-align: center;
        }

        .info > p[b-7eqyxge1ja] {
            text-align: center;
        }

        .buttons[b-7eqyxge1ja] {
            flex-direction: row;
        }
}

@media(max-width: 600px){
    .buttons[b-7eqyxge1ja] {
        flex-direction: column;
        align-items: center;
    }


}
/* /Components/Landing/HowItWorks.razor.rz.scp.css */
.page-section-content[b-2y5o7odoge] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-24);
    align-items: center;
}

.steps[b-2y5o7odoge] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-32);
    width: 100%;
}


.step[b-2y5o7odoge] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--size-spacing-32);
    height: 300px;
    width: 100%;
}

    .step:nth-child(2n)[b-2y5o7odoge] {
        flex-direction: row-reverse;
    }

    .step-info[b-2y5o7odoge] {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: var(--size-spacing-16);
    }

.number-title[b-2y5o7odoge] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-16);
}

.image[b-2y5o7odoge] {
    flex: 1;
    height: 300px;
}

.step-number[b-2y5o7odoge] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-16);
    align-items: center;
}

.number[b-2y5o7odoge] {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(var(--color-primary-200-rgb));
}

.description[b-2y5o7odoge] {
    color: rgb(var(--color-neutral-400-rgb));
}

.image-wrapper[b-2y5o7odoge]{
    flex:1;
}

@media (max-width: 700px) {
    .step[b-2y5o7odoge] {
        flex-direction: column;
        height: auto;
        gap: var(--size-spacing-16);
    }

        .step:nth-child(2n)[b-2y5o7odoge] {
            flex-direction: column;
        }

    .number-title[b-2y5o7odoge] {
        flex-direction: row;
        align-items: center;
    }


    .image[b-2y5o7odoge] {
        width: 100%;
        height: 500px;
    }
}
/* /Components/Landing/Performance.razor.rz.scp.css */

.page-section-content[b-y72d6hctex] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-24);
    align-items: center;
}



.cards[b-y72d6hctex] {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    height: fit-content;
    grid-template-columns: repeat(3, 1fr);
}


.card-local[b-y72d6hctex] {
    flex: 1;
    height: 100%;
}

.card-content[b-y72d6hctex] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-12);
}

.value-uom[b-y72d6hctex] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-8);
}

.value[b-y72d6hctex] {
    font-size: var(--size-font-h1);
    line-height: var(--size-line-height-h1);
    font-weight: 700;
}

.uom[b-y72d6hctex] {
    color: rgb(var(--color-neutral-400-rgb));
}

.card-info[b-y72d6hctex] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-6);
}

.description[b-y72d6hctex] {
    color: rgb(var(--color-neutral-400-rgb));
}

.perfomance-notice[b-y72d6hctex] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-12);
    padding: var(--size-spacing-24);
    border-radius: var(--size-radius-base);
    border: 1px solid rgb(var(--color-primary-300-rgb));
    background-color: rgb(var(--color-primary-50-rgb));
    width: fit-content;
    height: fit-content;
}

.notice-items[b-y72d6hctex] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-8);
}

.notice-item[b-y72d6hctex] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-8);
    align-items: center;
}

    .notice-item p[b-y72d6hctex]{
        flex: 1;
    }

    .notice-item-dot[b-y72d6hctex] {
        width: 0.3rem;
        height: 0.3rem;
        border-radius: 50%;
        background-color: rgb(var(--color-primary-500-rgb));
    }


@media (max-width: 1000px) {
    .cards[b-y72d6hctex] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .cards[b-y72d6hctex] {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* /Components/Landing/ProblemStatement.razor.rz.scp.css */
.page-section-content[b-0z6l1ksczm] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-24);
    align-items: center;
}

.cards[b-0z6l1ksczm] {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    height: fit-content;
    grid-template-columns: repeat(4, 1fr);
}

.card-local[b-0z6l1ksczm] {
    flex: 1;
    height: 100%;
}

.card-content[b-0z6l1ksczm] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-16);
}

.card-text[b-0z6l1ksczm] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-8);
}

.card-text .title[b-0z6l1ksczm]{
    font-weight: 600;
}

    .card-text .description[b-0z6l1ksczm] {
        color: rgb(var(--color-neutral-600-rgb));
    }


    @media (max-width: 1000px){
        .cards[b-0z6l1ksczm] {
            grid-template-columns: repeat(2, 1fr);
        }
    }

@media (max-width: 580px) {
    .cards[b-0z6l1ksczm] {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* /Components/Landing/SupportAndDocumentation.razor.rz.scp.css */
.page-section-content[b-d49i020y4b] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-24);
    align-items: center;
}

.cards[b-d49i020y4b] {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    height: fit-content;
    grid-template-columns: repeat(4, 1fr);
}

.card-local[b-d49i020y4b] {
    flex: 1;
    height: 100%;
}

.card-content[b-d49i020y4b] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-16);
}

.card-text[b-d49i020y4b] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-8);
}

    .card-text .title[b-d49i020y4b] {
        font-weight: 600;
    }

    .card-text .description[b-d49i020y4b] {
        color: rgb(var(--color-neutral-600-rgb));
    }


@media (max-width: 1000px) {
    .cards[b-d49i020y4b] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .cards[b-d49i020y4b] {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* /Components/Layout/Layout.razor.rz.scp.css */
.page[b-dg31mwvnk2] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

main[b-dg31mwvnk2] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgb(var(--color-secondary-0-rgb));
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-4alk7l3g8g] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-4alk7l3g8g] {
    flex: 1;
}

.sidebar[b-4alk7l3g8g] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-4alk7l3g8g] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-4alk7l3g8g]  a, .top-row[b-4alk7l3g8g]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-4alk7l3g8g]  a:hover, .top-row[b-4alk7l3g8g]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-4alk7l3g8g]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-4alk7l3g8g] {
        justify-content: space-between;
    }

    .top-row[b-4alk7l3g8g]  a, .top-row[b-4alk7l3g8g]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-4alk7l3g8g] {
        flex-direction: row;
    }

    .sidebar[b-4alk7l3g8g] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-4alk7l3g8g] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-4alk7l3g8g]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-4alk7l3g8g], article[b-4alk7l3g8g] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-4alk7l3g8g] {
    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-4alk7l3g8g] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ki0gswmm4l] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-ki0gswmm4l] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ki0gswmm4l] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ki0gswmm4l] {
    font-size: 1.1rem;
}

.bi[b-ki0gswmm4l] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ki0gswmm4l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ki0gswmm4l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ki0gswmm4l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ki0gswmm4l] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ki0gswmm4l] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ki0gswmm4l] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ki0gswmm4l]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-ki0gswmm4l]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ki0gswmm4l]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-ki0gswmm4l] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ki0gswmm4l] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ki0gswmm4l] {
        display: none;
    }

    .nav-scrollable[b-ki0gswmm4l] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-75t8qcayvh],
.components-reconnect-repeated-attempt-visible[b-75t8qcayvh],
.components-reconnect-failed-visible[b-75t8qcayvh],
.components-pause-visible[b-75t8qcayvh],
.components-resume-failed-visible[b-75t8qcayvh],
.components-rejoining-animation[b-75t8qcayvh] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-75t8qcayvh],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-75t8qcayvh],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-75t8qcayvh],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-75t8qcayvh],
#components-reconnect-modal.components-reconnect-retrying[b-75t8qcayvh],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-75t8qcayvh],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-75t8qcayvh],
#components-reconnect-modal.components-reconnect-failed[b-75t8qcayvh],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-75t8qcayvh] {
    display: block;
}


#components-reconnect-modal[b-75t8qcayvh] {
    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-75t8qcayvh 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-75t8qcayvh 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-75t8qcayvh 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-75t8qcayvh]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-75t8qcayvh 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-75t8qcayvh {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-75t8qcayvh {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-75t8qcayvh {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-75t8qcayvh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-75t8qcayvh] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-75t8qcayvh] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-75t8qcayvh] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-75t8qcayvh] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-75t8qcayvh] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-75t8qcayvh] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-75t8qcayvh 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-75t8qcayvh] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-75t8qcayvh {
    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/Shared/BetaLabel.razor.rz.scp.css */
.beta-label[b-y30v37lzlp] {
    display: flex;
    flex-direction: row;
    padding: var(--size-spacing-4) var(--size-spacing-8);
    gap: var(--size-spacing-6);
    border: 1px solid rgb(var(--color-primary-200-rgb));
    background-color: rgb(var(--color-primary-50-rgb));
    border-radius: var(--size-radius-s);
    width: fit-content;
    height: fit-content;
    justify-content: center;
    align-items: center;
}

    .beta-label p[b-y30v37lzlp] {
        color: rgb(var(--color-primary-700-rgb));
    }

    .pin[b-y30v37lzlp] {
        width: 0.5rem;
        height: 0.5rem;
        background-color: rgb(var(--color-green-500-rgb));
        border-radius: 0.5rem;
    }
/* /Components/Shared/Button.razor.rz.scp.css */
.button[b-5s6cujh0fq] {
    display: flex;
    flex-direction: row;
    padding: var(--size-spacing-12) var(--size-spacing-24);
    gap: var(--size-spacing-12);
    border-radius: var(--size-radius-base);
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    box-sizing: border-box;
    transition: background-color var(--transition-medium), border-color var(--transition-medium), color var(--transition-medium);
}

    .button p[b-5s6cujh0fq] {
        transition: color var(--transition-medium);
    }


    /* ===== SIZES ===== */
    .button.xsmall[b-5s6cujh0fq] {
        padding: var(--size-spacing-4) var(--size-spacing-8);
        border-radius: var(--size-radius-xs);
    }

    .button.xsmall p[b-5s6cujh0fq]{
        font-size: 0.75rem;
    }


    /* ===== STYLES ===== */
    /* ===== Primary ===== */
    .button.primary[b-5s6cujh0fq] {
        color: var(--text-color-basic-light);
    }

        .button.primary p[b-5s6cujh0fq] {
            color: var(--text-color-basic-light);
        }

    .button.primary.enabled[b-5s6cujh0fq] {
        background-color: var(--color-primary-default);
    }

        .button.primary.enabled:hover[b-5s6cujh0fq] {
            background-color: var(--color-primary-hover);
        }
        .button.primary.enabled:active[b-5s6cujh0fq] {
            background-color: var(--color-primary-active);
        }

        .button.primary.disabled[b-5s6cujh0fq] {
            background-color: var(--color-primary-disabled);
            cursor: auto;
        }

    /* ===== Secondary-Blue ===== */

    .button.secondary-blue[b-5s6cujh0fq] {
        background-color: transparent;
        color: var(--text-color-basic-dark);
        border: 1px solid var(--color-mask-shade-10);
    }

        .button.secondary-blue p[b-5s6cujh0fq] {
            color: var(--text-color-basic-dark);
        }

        .button.secondary-blue.enabled:hover[b-5s6cujh0fq] {
            /*color: rgb(var(--color-primary-500-rgb));*/
            background-color: rgb(var(--color-primary-50-rgb));
            border-color: rgb(var(--color-primary-200-rgb));
        }

            .button.secondary-blue.enabled:hover p[b-5s6cujh0fq] {
                /*color: rgb(var(--color-primary-500-rgb));*/
            }


        .button.secondary-blue.enabled:active[b-5s6cujh0fq] {
            /*color: rgb(var(--color-primary-600-rgb));*/
            background-color: rgb(var(--color-primary-100-rgb));
            border-color: rgb(var(--color-primary-400-rgb));
        }

            .button.secondary-blue.enabled:active p[b-5s6cujh0fq] {
                /*color: rgb(var(--color-primary-600-rgb));*/
            }


        .button.secondary-blue.disabled[b-5s6cujh0fq] {
            color: rgb(var(--color-neutral-300-rgb));
            cursor: auto;
        }

            .button.secondary-blue.disabled p[b-5s6cujh0fq] {
                color: rgb(var(--color-neutral-300-rgb));
            }

    /* ===== Secondary-Yellow ===== */

    .button.secondary-yellow[b-5s6cujh0fq] {
        background-color: transparent;
        color: var(--text-color-basic-dark);
        border: 1px solid var(--color-mask-shade-10);
    }

        .button.secondary-yellow p[b-5s6cujh0fq] {
            color: var(--text-color-basic-dark);
        }

        .button.secondary-yellow.enabled:hover[b-5s6cujh0fq] {
            /*color: rgb(var(--color-yellow-500-rgb));*/
            background-color: rgb(var(--color-yellow-50-rgb));
            border-color: rgb(var(--color-yellow-200-rgb));
        }

            .button.secondary-yellow.enabled:hover p[b-5s6cujh0fq] {
                /*color: rgb(var(--color-yellow-500-rgb));*/
            }


        .button.secondary-yellow.enabled:active[b-5s6cujh0fq] {
            /*color: rgb(var(--color-yellow-600-rgb));*/
            background-color: rgb(var(--color-yellow-100-rgb));
            border-color: rgb(var(--color-yellow-400-rgb));
        }

            .button.secondary-yellow.enabled:active p[b-5s6cujh0fq] {
                /*color: rgb(var(--color-yellow-600-rgb));*/
            }


        .button.secondary-yellow.disabled[b-5s6cujh0fq] {
            color: rgb(var(--color-neutral-300-rgb));
            cursor: auto;
        }

            .button.secondary-yellow.disabled p[b-5s6cujh0fq] {
                color: rgb(var(--color-neutral-300-rgb));
            }


    /* ===== Secondary-Red ===== */

    .button.secondary-red[b-5s6cujh0fq] {
        background-color: transparent;
        color: var(--text-color-basic-dark);
        border: 1px solid var(--color-mask-shade-10);
    }

        .button.secondary-red p[b-5s6cujh0fq] {
            color: var(--text-color-basic-dark);
        }

        .button.secondary-red.enabled:hover[b-5s6cujh0fq] {
            /*color: rgb(var(--color-red-500-rgb));*/
            background-color: rgb(var(--color-red-50-rgb));
            border-color: rgb(var(--color-red-200-rgb));
        }

            .button.secondary-red.enabled:hover p[b-5s6cujh0fq] {
                /*color: rgb(var(--color-red-500-rgb));*/
            }


        .button.secondary-red.enabled:active[b-5s6cujh0fq] {
            /*color: rgb(var(--color-red-600-rgb));*/
            background-color: rgb(var(--color-red-100-rgb));
            border-color: rgb(var(--color-red-400-rgb));
        }

            .button.secondary-red.enabled:active p[b-5s6cujh0fq] {
                /*color: rgb(var(--color-red-600-rgb));*/
            }


        .button.secondary-red.disabled[b-5s6cujh0fq] {
            color: rgb(var(--color-neutral-300-rgb));
            cursor: auto;
        }

            .button.secondary-red.disabled p[b-5s6cujh0fq] {
                color: rgb(var(--color-neutral-300-rgb));
            }

/* /Components/Shared/Card.razor.rz.scp.css */
.card[b-3xag5njv52] {
    display: flex;
    flex-direction: column;
    padding: var(--size-spacing-24);
    border-radius: var(--size-radius-base);
    border: 1px solid rgb(var(--color-secondary-500-rgb));
    transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
    background-color: rgb(var(--color-neutral-0-rgb));
}

    .card:hover[b-3xag5njv52] {
        border-color: rgb(var(--color-primary-400-rgb));
        box-shadow: 0 0 10px 0 var(--color-mask-shade-10);
    }
/* /Components/Shared/DonateForm.razor.rz.scp.css */

.donate-form[b-ppsx0yrsg1] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-24);
    justify-content: center;
    align-items: center;
    background-color: rgb(var(--color-yellow-50-rgb));
    border-radius: var(--size-radius-base);
    border: 1px solid rgb(var(--color-yellow-700-rgb));
    padding: var(--size-spacing-32) var(--size-spacing-40);
    width: fit-content;
}

.header[b-ppsx0yrsg1] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-16);
    justify-content: center;
    align-items: center;
}

.buttons[b-ppsx0yrsg1] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-16);
}

.disclaimer[b-ppsx0yrsg1] {
    color: rgb(var(--color-neutral-300-rgb));
    text-align: center;
}

@media(max-width: 580px) {
    .buttons[b-ppsx0yrsg1] {
        flex-direction: column;
        align-items: center;
    }
}
/* /Components/Shared/FeedbackForm.razor.rz.scp.css */
.feedback-form[b-9vxxxrue56] {
    max-width: 680px;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: var(--size-spacing-24);
    gap: var(--size-spacing-16);
    border-radius: var(--size-radius-base);
    border: 1px solid var(--color-mask-shade-10);
    background-color: rgb(var(--color-secondary-0-rgb));
    box-shadow: 0 0 10px 0 var(--color-mask-shade-10);
}

.who[b-9vxxxrue56] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-16);
    width: 100%;
}

.error-message[b-9vxxxrue56] {
    display: flex;
    flex-direction: column;
    padding: var(--size-spacing-12);
    background-color: rgb(var(--color-red-50-rgb));
    border-radius: var(--size-radius-base);
    border: 2px dashed rgb(var(--color-red-700-rgb));
    width: 100%;
    height: fit-content;
}


@media(max-width: 550px) {
    .who[b-9vxxxrue56] {
        flex-direction: column;
    }
}
/* /Components/Shared/HeaderMenu.razor.rz.scp.css */
.menu[b-c2pisxn5an] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-16);
}
/* /Components/Shared/HeaderMenuItem.razor.rz.scp.css */
.item.enabled[b-exptv5d1n2]{
    cursor: pointer;
}

    .item.enabled p[b-exptv5d1n2] {
        color: var(--text-color-basic-dark);
    }

    .item.enabled:hover p[b-exptv5d1n2] {
        color: rgb(var(--color-primary-500-rgb));
    }

    .item.enabled:active p[b-exptv5d1n2] {
        color: rgb(var(--color-primary-700-rgb));
    }



.item.disabled p[b-exptv5d1n2] {
    color: rgb(var(--color-neutral-300-rgb));
}
/* /Components/Shared/Icon.razor.rz.scp.css */
/*.icon {
    --color-icon: rdb(var(--text-color-basic-dark));
}*/

    .icon path[b-s5xcviwtiz] {
        fill: var(--color-icon);
    }
/* /Components/Shared/IconMark.razor.rz.scp.css */
.mark[b-xpn97nvjvw] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 25%;
}
/* /Components/Shared/Image.razor.rz.scp.css */
.image-wrapper[b-n68tbdpvem] {
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 100%;
    border: 1px solid rgb(var(--color-secondary-400-rgb));
    background-color: rgb(var(--color-secondary-100-rgb));
    border-radius: var(--size-radius-base);
    box-shadow: 0 0 20px 0 var(--color-mask-shade-10);
}

.image[b-n68tbdpvem] {
    width: auto;
    height: 100%;
    object-fit: none;
    object-position: left center;
}
/* /Components/Shared/Input.razor.rz.scp.css */
.container[b-qkwjf8pn2o] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-4);
    width: 100%;
    height: fit-content;
}

.input-wrapper[b-qkwjf8pn2o] {
    display: flex;
    flex-direction: row;
}

.input-field[b-qkwjf8pn2o]{
    height: 100%;
}

input[b-qkwjf8pn2o] {
    width: 100%;
    outline: none;
}

textarea[b-qkwjf8pn2o] {
    width: 100%;
    height: 100%;
    outline: none;
    resize: none;
}

    .input-in-progress[b-qkwjf8pn2o] {
        border: 1px solid rgb(var(--color-primary-500-rgb));
        box-shadow: 0 0 0 4px rgb(var(--color-primary-50-rgb));
    }

.input-invalid[b-qkwjf8pn2o] {
    border: 1px solid rgb(var(--color-red-500-rgb));
}
/* /Components/Shared/Label.razor.rz.scp.css */
p[b-3j0g0xhb3g] {
    color: rgb(var(--color-neutral-600-rgb));
}
/* /Components/Shared/LanguageSwitcher.razor.rz.scp.css */
.switcher[b-kuic1gzhhl] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-4);
    padding: var(--size-spacing-4);
    border: 1px solid var(--color-mask-shade-5);
    border-radius: var(--size-radius-base);
    align-items: center;
    background-color: rgb(var(--color-secondary-50-rgb));
}
/* /Components/Shared/Logo.razor.rz.scp.css */
div > svg[b-mhg2tuks0n] {
    width: 100%;
    height: 100%;
    display: block;
}
/* /Components/Shared/NoticeItem.razor.rz.scp.css */
.item[b-hziketh2be] {
    display: flex;
    flex-direction: row;
    gap: var(--size-spacing-8);
    align-items: center;
}

    .item p[b-hziketh2be] {
        color: rgb(var(--color-neutral-600-rgb));
    }
/* /Components/Shared/NoticeVersion.razor.rz.scp.css */
.version[b-jrspzljrmi] {
    border-radius: var(--size-radius-xs);
    border: 1px solid rgb(var(--color-yellow-700-rgb));
    background-color: rgb(var(--color-yellow-100-rgb));
    padding: var(--size-spacing-4) var(--size-spacing-8);
    width: fit-content;
    height: fit-content;
}

    .version p[b-jrspzljrmi] {
        color: rgb(var(--color-yellow-700-rgb));
    }
/* /Components/Shared/SectionHeader.razor.rz.scp.css */
.section-header[b-i3sesqqrkm] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-8);
    align-items: center;
    max-width: 600px;
}

h2[b-i3sesqqrkm]{
    text-align: center;
}

.section-header .description[b-i3sesqqrkm] {
    color: rgb(var(--color-neutral-400-rgb));
    text-align: center;
}
/* /Components/Shared/Select.razor.rz.scp.css */
.container[b-9vvlq6f95k] {
    display: flex;
    flex-direction: column;
    gap: var(--size-spacing-4);
}

.input-field[b-9vvlq6f95k]{
    
}

select[b-9vvlq6f95k] {
    border: 0;
    background-color: transparent;
    padding: 0;
    outline: none;
    font-size: var(--size-font-p);
    line-height: var(--size-line-height-p);
    font-weight: 400;
    outline: none;
    width: 100%;
}
