
#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;
    }

/* SPINNER */
.spinner-background {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    -webkit-backdrop-filter: blur(1.2px);
    backdrop-filter: blur(1.2px);
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.6);
}

.spinner {
    border: 8px solid silver;
    border-top: 8px solid #444;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 400ms linear infinite;
    top: 300px;
    left: 48%;
    position: absolute;
}

.mini-spinner {
    border: 4px solid silver;
    border-top: 4px solid #444;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 400ms linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}
