html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-image: url('../images/Logo.png');
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 160px;
    height: 32px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.fa-splash-indicator {
    position: relative;
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.fa-splash-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
}

.fa-splash-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 6px solid #d9d9d9;
    border-top: 6px solid #4a90e2;
    animation: fa-spin 1s linear infinite;
    box-sizing: border-box;
    z-index: 1;
}

.fa-splash-title {
    margin-top: 18px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

@keyframes fa-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}