﻿
.loading-Container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loading-Wall {
    opacity: .75;
    background: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.loading-ellipsis {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
    top: 18%;
}

    .loading-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #373a3c;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .loading-ellipsis div:nth-child(1) {
            left: 8px;
            animation: loading-ellipsis1 0.6s infinite;
        }

        .loading-ellipsis div:nth-child(2) {
            left: 8px;
            animation: loading-ellipsis2 0.6s infinite;
        }

        .loading-ellipsis div:nth-child(3) {
            left: 32px;
            animation: loading-ellipsis2 0.6s infinite;
        }

        .loading-ellipsis div:nth-child(4) {
            left: 56px;
            animation: loading-ellipsis3 0.6s infinite;
        }

@keyframes loading-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes loading-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes loading-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
