
#blazor-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-video {
    position: relative;
    margin: 0 auto;
    width: 300px;
    height: 300px;
}

.loading-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-orange-fallback {
    display: none;
    width: 96px;
    height: 96px;
    background: #ff7a00;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.loading-progress-text {
    max-width: 450px;
    max-height: 300px;
    font-size: 25px;
    position: relative;
    margin: 30px auto 0 auto;
    color: #ff9a3d;
    text-align: center;
    font-family: "Roboto", "Helvetica", "Arial", "sans-serif";
}

@media (max-width: 768px) {  
    
    .loading-video {
        width: 60px;
        height: 60px;
    }

    .loader-orange-fallback {
        width: 42px;
        height: 42px;
    }

    .loading-progress-text {
        max-width: 250px;
        max-height: 200px;
        font-size: 12px;
        font-family: "Roboto", "Helvetica", "Arial", "sans-serif";
        margin: 10px auto 0 auto;
    }
}

