#bits-loader {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
}

#bits-loader div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ccc;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

#bits-loader div:nth-child(1) {
    left: 8px;
    animation: bits-loader-ellipsis1 0.6s infinite;
}

#bits-loader div:nth-child(2) {
    left: 8px;
    animation: bits-loader-ellipsis2 0.6s infinite;
}

#bits-loader div:nth-child(3) {
    left: 32px;
    animation: bits-loader-ellipsis2 0.6s infinite;
}

#bits-loader div:nth-child(4) {
    left: 56px;
    animation: bits-loader-ellipsis3 0.6s infinite;
}

@keyframes bits-loader-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bits-loader-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes bits-loader-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}