.growin-global-loading {
    align-items: center;
    background: rgba(15, 23, 42, .32);
    display: none;
    inset: 0;
    justify-content: center;
    pointer-events: auto;
    position: fixed;
    z-index: 200000;
}

.growin-global-loading.is-visible {
    display: flex;
}

/* The platform-wide loader is the single loading surface. Hide legacy modal
   loaders so they cannot appear underneath it during the same request. */
[id^="load-modal"],
[id^="load-eva"],
.loading-overlay[data-js-loading-overlay] {
    display: none !important;
}

.growin-global-loading__panel {
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .24);
    color: #1e3a5f;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    gap: .85rem;
    min-width: 236px;
    padding: 1.35rem 1.5rem 1.2rem;
    text-align: center;
}

.growin-global-loading__brand {
    align-items: center;
    display: flex;
    height: 88px;
    justify-content: center;
    position: relative;
    width: 88px;
}

.growin-global-loading__brand::before {
    animation: growin-global-loading-spin 1.1s linear infinite;
    background: conic-gradient(from 30deg, #1779ba, #2aa66f 48%, #b9ddf7 66%, #1779ba);
    border-radius: 50%;
    content: '';
    inset: 0;
    position: absolute;
}

.growin-global-loading__brand::after {
    background: #fff;
    border-radius: 50%;
    content: '';
    inset: 6px;
    position: absolute;
}

.growin-global-loading__logo {
    height: auto;
    max-width: 64px;
    position: relative;
    width: 64px;
    z-index: 1;
}

@keyframes growin-global-loading-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .growin-global-loading__brand::before { animation: none; }
}
