.--glob-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(255, 255, 255, 1); */
    background-color: rgba(255, 255, 255, 0.8);
    /* Светлый фон */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    color: #003730;
    /* Чёрный текст */
    font-size: 32px;
}

.--glob-loading-overlay-text {
    display: inline-flex;
    align-items: center;
    animation: text-highlight 3s infinite;
}

.--glob-loading-overlay-text span {
    display: inline-block;
}

@keyframes text-highlight {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.--glob-loading-overlay-dots::after {
    content: '';
    animation: --glob-loading-overlay-dots-animation 1.5s infinite;
}

@keyframes --glob-loading-overlay-dots-animation {
    0% {
        content: '';
    }

    33% {
        content: '.';
    }

    66% {
        content: '..';
    }

    100% {
        content: '...';
    }
}