/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-brand[b-rwaded4kcc] {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 40px;
    text-decoration: none;
    color: var(--mud-palette-appbar-text);
}

.app-brand:hover[b-rwaded4kcc],
.app-brand:visited[b-rwaded4kcc],
.app-brand:focus-visible[b-rwaded4kcc] {
    color: var(--mud-palette-appbar-text);
    text-decoration: none;
}

.app-brand-logo[b-rwaded4kcc] {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
}

.app-brand-text[b-rwaded4kcc] {
    color: inherit;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.main-content[b-rwaded4kcc] {
    padding-top: 2.25rem;
    padding-bottom: 4rem;
}

.site-footer[b-rwaded4kcc] {
    margin-top: 0;
    background: var(--mud-palette-surface);
    border-top: 1px solid var(--mud-palette-lines-default);
}

.footer-buffer[b-rwaded4kcc] {
    height: 3.5rem;
}

.footer-bottom-row[b-rwaded4kcc] {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.footer-logo-link[b-rwaded4kcc] {
    line-height: 0;
}

.footer-logo[b-rwaded4kcc] {
    width: 42px;
    height: 42px;
    display: block;
}

#blazor-error-ui[b-rwaded4kcc] {
    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-rwaded4kcc] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@media (max-width: 959.98px) {
    .app-brand-logo[b-rwaded4kcc] {
        width: 32px;
        height: 32px;
    }

    .app-brand-text[b-rwaded4kcc] {
        font-size: 1.05rem;
    }

    .footer-buffer[b-rwaded4kcc] {
        height: 2.5rem;
    }

    .footer-bottom-row :global(.mud-stack)[b-rwaded4kcc] {
        justify-content: center;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-menu[b-my2ay0hwp0] {
    padding: 0.75rem;
}

.menu-header[b-my2ay0hwp0] {
    color: var(--mud-palette-primary);
    letter-spacing: 0.06rem;
    margin-left: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-x7zb4baeac],
.components-reconnect-repeated-attempt-visible[b-x7zb4baeac],
.components-reconnect-failed-visible[b-x7zb4baeac],
.components-pause-visible[b-x7zb4baeac],
.components-resume-failed-visible[b-x7zb4baeac],
.components-rejoining-animation[b-x7zb4baeac] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-x7zb4baeac],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-x7zb4baeac],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-x7zb4baeac],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-x7zb4baeac],
#components-reconnect-modal.components-reconnect-retrying[b-x7zb4baeac],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-x7zb4baeac],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-x7zb4baeac],
#components-reconnect-modal.components-reconnect-failed[b-x7zb4baeac],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-x7zb4baeac] {
    display: block;
}


#components-reconnect-modal[b-x7zb4baeac] {
    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-x7zb4baeac 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-x7zb4baeac 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-x7zb4baeac 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-x7zb4baeac]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-x7zb4baeac 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-x7zb4baeac {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-x7zb4baeac {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-x7zb4baeac {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-x7zb4baeac] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-x7zb4baeac] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-x7zb4baeac] {
    border: 0;
    background-color: #3cadd4;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-x7zb4baeac] {
        background-color: #51b6d9;
    }

    #components-reconnect-modal button:active[b-x7zb4baeac] {
        background-color: #2da2ca;
    }

.components-rejoining-animation[b-x7zb4baeac] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-x7zb4baeac] {
        position: absolute;
        border: 3px solid #8d93a0;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-x7zb4baeac 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-x7zb4baeac] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-x7zb4baeac {
    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/History.razor.rz.scp.css */
.history-hero-container[b-l2ul1xnw9j] {
    overflow: hidden;
    border-radius: 14px;
}

.history-hero-image[b-l2ul1xnw9j] {
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.history-narrative[b-l2ul1xnw9j] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 249, 252, 0.98) 100%);
}

.history-paragraph[b-l2ul1xnw9j] {
    line-height: 1.7;
    color: var(--mud-palette-text-primary);
}

.history-paragraph :global(p)[b-l2ul1xnw9j] {
    margin: 0 0 1rem 0;
}

.history-paragraph :global(p:last-child)[b-l2ul1xnw9j] {
    margin-bottom: 0;
}

.history-paragraph :global(ul)[b-l2ul1xnw9j],
.history-paragraph :global(ol)[b-l2ul1xnw9j] {
    margin: 0 0 1rem 1.2rem;
}

.history-gallery-item[b-l2ul1xnw9j] {
    overflow: hidden;
    border-radius: 12px;
}

.history-gallery-image[b-l2ul1xnw9j] {
    display: block;
    height: 240px;
    object-fit: cover;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-carousel-shell[b-2og5z8nfcx] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
}

.home-carousel[b-2og5z8nfcx] {
    height: clamp(320px, 42vw, 560px);
}

.home-carousel-slide[b-2og5z8nfcx] {
    position: relative;
    height: 100%;
}

.home-carousel-image[b-2og5z8nfcx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-section[b-2og5z8nfcx] {
    margin-top: 1.5rem;
    padding: 2.5rem 2rem;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 252, 0.98) 100%);
}

.testimonials-subtitle[b-2og5z8nfcx] {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card[b-2og5z8nfcx] {
    height: 100%;
    border-radius: 14px;
}

.testimonial-avatar[b-2og5z8nfcx] {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--mud-palette-secondary);
}

.testimonial-year[b-2og5z8nfcx] {
    letter-spacing: 0.02em;
    color: var(--mud-palette-text-secondary);
}

.testimonial-quote[b-2og5z8nfcx] {
    position: relative;
    color: var(--mud-palette-text-secondary);
    line-height: 1.55;
    font-style: italic;
    padding-inline: 1rem;
}

.testimonial-quote[b-2og5z8nfcx]::before,
.testimonial-quote[b-2og5z8nfcx]::after {
    position: absolute;
    color: var(--mud-palette-secondary);
    font-size: 1.3rem;
    line-height: 1;
}

.testimonial-quote[b-2og5z8nfcx]::before {
    content: "\201C";
    left: 0;
    top: 0;
}

.testimonial-quote[b-2og5z8nfcx]::after {
    content: "\201D";
    right: 0;
    bottom: 0;
}

.testimonials-cta-copy[b-2og5z8nfcx] {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 959.98px) {
    .home-carousel[b-2og5z8nfcx] {
        height: clamp(240px, 52vw, 420px);
    }

    .testimonials-section[b-2og5z8nfcx] {
        padding: 2rem 1.25rem;
    }
}
/* /Components/Pages/Register.razor.rz.scp.css */
.nexio-payment-iframe[b-moxk86vk5t] {
    display: block;
    width: 100%;
    min-height: 620px;
    height: 620px;
    margin-bottom: 20px;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 10px;
    background: #fff;
}

@media (max-width: 960px) {
    .nexio-payment-iframe[b-moxk86vk5t] {
        min-height: 700px;
        height: 700px;
    }
}

.register-payment-frame-row[b-moxk86vk5t] {
    padding-bottom: 10px;
}

.register-payment-actions-row[b-moxk86vk5t] {
    clear: both;
    position: relative;
    margin-top: 6px;
    margin-bottom: 20px;
}

.saved-payment-summary[b-moxk86vk5t] {
    background: var(--mud-palette-surface);
}

.saved-payment-actions[b-moxk86vk5t] {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.register-recaptcha-row[b-moxk86vk5t] {
    margin-top: 8px;
}

.register-recaptcha-widget[b-moxk86vk5t] {
    min-height: 78px;
}

.alternative-payment-summary[b-moxk86vk5t] {
    background: var(--mud-palette-surface);
}

.alternative-payment-instructions[b-moxk86vk5t] {
    white-space: pre-line;
}

