.loading-container {
    position: fixed;
    width: 100px;
    height: 100px;
    display: none;
    z-index: 999999;
    pointer-events: none;
}

.loading-dot1 {
    position: absolute;
    border-radius: 50%;
    animation: popUpFadeOut1 1s infinite ease-out;
    width: 50px;
    height: 50px;
}

.loading-dot2 {
    position: absolute;
    border-radius: 50%;
    animation: popUpFadeOut2 1s infinite ease-out;
    width: 50px;
    height: 50px;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.1s;
}


@keyframes popUpFadeOut1 {
    0% {
        transform: scale(0);
        opacity: 1;
        border: 1px solid white;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        border: 1px solid transparent;
    }
}

@keyframes popUpFadeOut2 {
    0% {
        transform: scale(0);
        opacity: 1;
        border: 1px solid rgb(0, 0, 0);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        border: 1px solid transparent;
    }
}