html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1:focus {
    outline: none;
}

#blazor-error-ui {
    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 {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiPjxwYXRoIGQ9Ik0yMy42IDM2LjdMMTUuNiA0MkwxMi45IDM2LjhMMTYuNyAzMi40TDkuMyAzMC4xTDExLjQgMjQuNkwyNi4zIDMxLjhaTTQ0LjUgMzQuN0MzOS44IDM0LjcgMzYuMSAzMSAzNi4xIDI2LjNDMzYuMSAyMS42IDM5LjggMTcuOSA0NC41IDE3LjlDNDkuMiAxNy45IDUyLjkgMjEuNiA1Mi45IDI2LjNDNTIuOSAzMSA0OS4yIDM0LjcgNDQuNSAzNC43Wk00NC41IDI5LjZDNDYuMiAyOS42IDQ3LjYgMjguMiA0Ny42IDI2LjVDNDcuNiAyNC44IDQ2LjIgMjMuNCA0NC41IDIzLjRDNDIuOCAyMy40IDQxLjQgMjQuOCA0MS40IDI2LjVDNDEuNCAyOC4yIDQyLjggMjkuNiA0NC41IDI5LjZaIiBmaWxsPSIjRkY1MDUwIi8+PC9nPjwvc3ZnPg==) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.14159265358979 * 0.8 * 8rem);
            stroke-dashoffset: calc(3.14159265358979 * 0.8 * 8rem);
            animation: loading-progress 2s ease-in-out infinite;
        }

@keyframes loading-progress {
    0% {
        stroke-dashoffset: calc(3.14159265358979 * 0.8 * 8rem);
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.loading-progress-text {
    position: relative;
    text-align: center;
    font-weight: bold;
    margin-top: 1rem;
    color: #1b6ec2;
}
