html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;
}

#blazor-error-ui {
    color: black;
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}


.loading {
    width: 230px;
    height: 230px;
}

.loading-image {
    width: 153.7px;
    height: 28.72px;
}

.border-secondary {
  border: 2px solid #dfdfdf;
}

.loading-border {
    border: #00719B solid 4px;
}


/* increase circle from 130->210px */
@keyframes scale {
    0% {
        width: 130px;
        height: 130px;
    }
    100% {
        width: 210px;
        height: 210px;
    }
}
.loading-image-wrapper{
    width: 210px;
    height: 210px;
    animation: scale 0.5s linear ;
}