* {
    box-sizing: border-box;
}

    *::-webkit-scrollbar {
        width: 6px;
        height: 6px;
        background-color: transparent;
    }

    *::-webkit-scrollbar-thumb {
        background: #fff8;
        border-radius: 3px;
    }

html, body {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    margin: 0;
    background: linear-gradient(#0f0f1f, #1f0f0f);
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

html, body, a, button {
    color: #ccc;
    text-decoration: none;
}

.bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

    .bg > * {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        animation: bg-elements-anim 25s linear infinite;
        bottom: -150px;
    }

        .bg > *:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }


        .bg > *:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .bg > *:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .bg > *:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .bg > *:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .bg > *:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .bg > *:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .bg > *:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .bg > *:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .bg > *:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }

@keyframes bg-elements-anim {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.glass {
    background: #ffffff10;
    backdrop-filter: blur(12px);
    box-shadow: inset #fff4 0px 1px 1px, 0px 3px 3px -2px rgba(0,0,0,0.2), 0px 3px 4px 0px rgba(0,0,0,0.14), 0px 1px 8px 0px rgba(0,0,0,0.12), #fff0 0px 1px 1px, inset 0px 2px 4px -1px rgba(0,0,0,0), inset 0px 4px 5px 0px rgba(0,0,0,0), inset 0px 1px 10px 0px rgba(0,0,0,0);
    border-radius: 12px;
}

.glass-hoverable {
    transition: all .2s ease;
    cursor: pointer;
}

    .elevated,
    .glass-hoverable:hover {
        background: #ffffff18;
        box-shadow: inset #fff4 0px 1px 1px, 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12), #fff0 0px 1px 1px, inset 0px 2px 4px -1px rgba(0,0,0,0), inset 0px 4px 5px 0px rgba(0,0,0,0), inset 0px 1px 10px 0px rgba(0,0,0,0);
    }

    .pressed,
    .glass-hoverable:active {
        background: #00000008;
        box-shadow: inset #fff0 0px 1px 1px, 0px 3px 3px -2px rgba(0,0,0,0), 0px 3px 4px 0px rgba(0,0,0,0), 0px 1px 8px 0px rgba(0,0,0,0), #fff4 0px 1px 1px, inset 0px 2px 0px -1px rgba(0,0,0,0.2), inset 0px 4px 2px 0px rgba(0,0,0,0.14), inset 0px 1px 4px 0px rgba(0,0,0,0.12);
    }

.btn {
    text-align: center;
    padding: .5rem;
    border-radius: .5rem;
    text-transform: uppercase;
    font-size: .9rem;
    font-weight: bold;
    border: 2px solid #fff0;
    transition: all .2s ease;
}

    .btn:not(.btn-disabled) {
        cursor: pointer;
    }

    .btn:not(.btn-disabled):hover {
        background: #fff1;
    }

.btn-loading {
    background: #0001;
    border: 2px solid #fff1;
}

::-webkit-scrollbar {
    height: 6px;
    width: 6px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #fff2;
    -webkit-border-radius: 1ex;
    -webkit-box-shadow: 0px 0px 0px transparent;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #fff8;
    }

::-webkit-scrollbar-corner {
    background: transparent;
}


#blazor-error-ui {
    background: black;
    color: #ccc;
    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;
    border-top: 1px solid red;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
