/* App bootstrap loader styles (referenced from index.html). */
.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: #1e88e5;
    stroke-dasharray: calc(3.141 * 6.5rem), 20rem;
    stroke-dashoffset: calc(3.141 * 6.5rem * (1 - var(--blazor-load-percentage, 0)));
    transition: stroke-dashoffset 0.1s ease-in-out;
}

.loading-progress-text {
    text-align: center;
    font-weight: bold;
    color: #1e88e5;
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}
