﻿
.ta-loaderwrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 99999999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.data-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    text-align: center;
    padding: 2px;
    transform: translate(-50%, -50%);
}

    .data-loader > div:last-child {
        position: relative;
        width: 80px;
        height: 15px;
        margin: 1em auto;
    }

        .data-loader > div:last-child > div {
            position: absolute;
            top: 0;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: #C51C1F;
            animation-timing-function: cubic-bezier(0, 1, 1, 0);
        }

            .data-loader > div:last-child > div:nth-child(1) {
                left: 8px;
                animation: data-loader-1 0.6s infinite;
            }

            .data-loader > div:last-child > div:nth-child(2) {
                left: 8px;
                animation: data-loader-2 0.6s infinite;
            }

            .data-loader > div:last-child > div:nth-child(3) {
                left: 32px;
                animation: data-loader-2 0.6s infinite;
            }

            .data-loader > div:last-child > div:nth-child(4) {
                left: 56px;
                animation: data-loader-3 0.6s infinite;
            }

@keyframes data-loader-1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes data-loader-2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

@keyframes data-loader-3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}
