﻿.overlay-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 9999;
}

#loadingText::after {
    content: '■ ■ ■';
    white-space: nowrap;
    overflow: hidden;
    color: white;
    font-size: 24px;
    animation: moveDots 1s linear infinite;
}

.loadingImage {
    width: 150px;
    height: 150px;
}

@keyframes moveDots {
    0%, 100% {
        opacity: 0;
    }

    10%, 90% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}
