#app-initial-splash {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3e3e3;
}

#app-initial-splash img {
    max-width: min(280px, 70vw);
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: app-wait-page-logo-spin 1.25s linear infinite;
}

@keyframes app-wait-page-logo-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    #app-initial-splash img {
        animation: none;
    }
}

body.app-shell-ready #app-initial-splash {
    display: none;
}
