@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';

/* /Components/Footer.razor.rz.scp.css */
footer[b-xt91hho4a9] {
    margin: 0 8px 8px 8px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(32px);

    a {
        white-space: nowrap;
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-kde7bt2qh9] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-kde7bt2qh9] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* /Components/Pages/Demo.razor.rz.scp.css */
.demo[b-0qjybkqtvc] {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: min(100%, 800px);

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;

        fieldset {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
    }

    .result[b-0qjybkqtvc] {
        width: 100%;
        min-height: 200px;
        padding: 12px 20px;
        background: black;

        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

/* /Components/Pages/Home.razor.rz.scp.css */
.container[b-hhqifhuo7d] {
    /* not nested to reduce nesting levels */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;

    h2 {
        text-align: center;
    }

    > #description[b-hhqifhuo7d] {
        text-align: center;
    }
}

#buttons[b-hhqifhuo7d] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

#parts[b-hhqifhuo7d] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;

    .arrow {
        z-index: -1;

        font-size: 200%;
        transform: rotate(90deg);

        animation-name: fade-in-arrow-b-hhqifhuo7d;
        animation-duration: 1.2s;
        animation-fill-mode: both;

        &::after {
            content: '➤';
        }
    }

    .part[b-hhqifhuo7d] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: min(100%, 280px);

        backdrop-filter: blur(32px);

        border: 1px solid #ccc;
        border-radius: 24px;
        padding: 12px 20px;

        overflow: hidden;

        &::after {
            position: absolute;
            content: '';
            height: 100%;
            width: 140%;
            top: 0;
            left: -20%;
            background: linear-gradient(0deg, transparent 0, rgba(255, 255, 255, 0.15) 50%, transparent 100%);

            animation-name: move-highlight-b-hhqifhuo7d;
            animation-duration: 15s;
            animation-delay: inherit;
            animation-fill-mode: both;
        }

        a[b-hhqifhuo7d] {
            display: block;
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }

            &[b-hhqifhuo7d]::after {
                content: "➚";
                margin-left: 6px;
                font-size: 60%;
            }
        }

        .title[b-hhqifhuo7d] {
            font-size: 140%;
        }

        .author[b-hhqifhuo7d] {
            font-size: 80%;
            color: rgb(230, 200, 200);
        }
    }
}

#reasons[b-hhqifhuo7d] {
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100vw - 32px);
    gap: 32px;
    justify-content: center;

    > .reason {
        display: flex;
        flex-direction: column;
        gap: 12px;

        width: min(100%, 350px);
        padding: 20px 28px;

        border: 1px solid #ccc;
        border-radius: 24px;

        backdrop-filter: blur(32px);

        .title {
            font-size: 140%;
        }

        .description[b-hhqifhuo7d] {
            font-size: 90%;
            line-height: 1.5;
        }
    }
}

@media screen and (min-width: 1000px) {
    .container[b-hhqifhuo7d] {
        margin-top: 128px;
    }

    #parts[b-hhqifhuo7d] {
        flex-direction: unset;

        .arrow {
            animation-name: fade-in-arrow-horizontal-b-hhqifhuo7d;
            transform: unset;
        }

        .part[b-hhqifhuo7d] {
            align-self: stretch; /* override center of parent */

            &::after {
                width: 80px;
                background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
                animation-name: move-highlight-horizontal-b-hhqifhuo7d;
            }
        }
    }
}

@keyframes fade-in-arrow-b-hhqifhuo7d {
    0% {
        opacity: 0;
        transform: translateY(-50%) rotate(92deg);
    }
    33% {
        opacity: 0;
        transform: translateY(-50%) rotate(92deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes fade-in-arrow-horizontal-b-hhqifhuo7d {
    0% {
        opacity: 0;
        transform: translateX(-50%) rotate(2deg);
    }
    33% {
        opacity: 0;
        transform: translateX(-50%) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes move-highlight-b-hhqifhuo7d {
    0% {
        transform: rotate(-8deg) translateY(-120%);
        top: 0;
    }
    15% {
        transform: rotate(5deg) translateY(30%);
        top: 100%;
    }
    100% {
        transform: rotate(5deg) translateY(30%);
        top: 100%;
    }
}

@keyframes move-highlight-horizontal-b-hhqifhuo7d {
    0% {
        transform: skew(6deg) translateX(-120%);
        left: 0;
    }
    15% {
        transform: skew(0deg) translateX(30%);
        left: 100%;
    }
    100% {
        transform: skew(0deg) translateX(30%);
        left: 100%;
    }
}
/* /Components/Pages/Licenses.razor.rz.scp.css */
.ms[b-2t6y9sk35h] {
    margin-top: 40px;

    .sm {
        margin-top: 0.25em;
        font-size: 0.85em;
        color: rgba(255, 255, 255, 0.66);
    }
}
