
.loading {
    position: relative;
    pointer-events: none;
}

.loading .loading-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-animation: loadingStart 300ms 300ms linear 1 both;
    -moz-animation: loadingStart 300ms 300ms linear 1 both;
    -o-animation: loadingStart 300ms 300ms linear 1 both;
    animation: loadingStart 300ms 300ms linear 1 both;
    background: #fff;
    text-align: center;
}

.loading.ta .loading-overlay {
    top: 64px;
    bottom: 1px;
    left: 1px;
    right: 1px;
}


.loading .loading-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 30px;
    width: 30px;
    margin-top: -15px;
    margin-left: -15px;
    animation: loading-center-absolute 2s infinite;
}


.object {
    width: 10px;
    height: 10px;
    background-color: #4184f3;
    float: left;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    margin-right: 10px;
    margin-bottom: 10px;
}

#object_one {
    animation: object_one 2s infinite;
}

#object_two {
    animation: object_two 2s infinite;
}

.object:nth-child(2n+0) {
    margin-right: 0px;
}

#object_three {
    animation: object_three 2s infinite;
}

#object_four {
    animation: object_four 2s infinite;
}

@keyframes object_one {
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes object_two {
    50% {
        transform: translate(-20px, 20px);
    }
}

@keyframes object_three {
    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes object_four {
    50% {
        transform: translate(-20px, -20px);
    }
}

@keyframes loading-center-absolute {
    100% {
        transform: rotate(360deg);
    }
}