.global-spinner-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.global-spinner-box {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.global-spinner-logo {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: brightness(1.1);
    transform-origin: center center;
    animation: globalSpinnerSpin 1.2s linear infinite;
}

@keyframes globalSpinnerSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
