﻿.loader-backdrop
{
    top: 0;
    position: absolute;
    background: #cd774b;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    z-index: 100003;
    cursor: url('/Wait.png') 16 15, wait;
}

.loader-wrapper
{
    position: absolute;
    min-width: 200px;
    min-height: 200px;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
}

.loader-logo
{
    position: absolute;
    width: 150px;
    height: 150px;
    top: calc(50% - 75px);
    left: calc(50% - 75px);
}

.loader-text
{
    position: absolute;
    width: 300px;
    height: 150px;
    top: calc(50% + 100px);
    left: calc(50% - 150px);
    font-size: 1em;
    font-weight: bold;
    color: rgb(128, 64, 32);
    text-align: center;
}

.loader-main-statusbox
{
    position: absolute;
    width: 300px;
    height: 12px;
    top: calc(50% + 130px);
    left: calc(50% - 150px);
    border: 2px solid rgb(128, 64, 32);
}

.loader-main-statusbox-progress
{
    width: var(--blazor-load-percentage, 0%);
    height: 100%;
    border: 0px;
    margin: 0;
    padding: 0;
    background-color: rgb(128, 64, 32);
}

.fox-spinner
{
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid #804020;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: 1.5s linear infinite spinner-border;
    animation: 1.5s linear infinite spinner-border;
}

@-webkit-keyframes spinner-border
{
    to
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner-border
{
    to
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
