.global-loading {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
    z-index: 2000;
}
.global-loading.is-active {
    opacity: 1;
    visibility: visible;
}
.global-loading-content {
    text-align: center;
    color: #fff;
}
.global-loading-text {
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
}
