﻿.ati-main-loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 1.2rem;
    height:100vh;
    gap:1rem;
}

.ati-main-loading-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:1rem;
}

    .ati-main-loading-logo h6 {
        font-family: "Dm Sans";
        font-weight: 600;
        font-size: 1.6rem;
        letter-spacing: -0.09rem !important;
        margin: 0 !important;
        text-decoration: none;
        color: #242E5D;
    }


@keyframes fade {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.ati-main-loading-logo svg {
    animation: fade 1.5s ease-in;
}

.ati-main-loading-loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #424242;
        stroke-width: 0.3rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #424242;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    font-family: "Dm Sans";
    text-align: center;
    font-weight: 400;
    color: #242E5D;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text);
    }
