.global-loader-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(255, 255, 255, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.global-loader span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #16a085;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.global-loader span:nth-child(1) { animation-delay: -0.32s; }
.global-loader span:nth-child(2) { animation-delay: -0.16s; }
.global-loader span:nth-child(3) { animation-delay: 0s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
