 .cssload-loader {
    position: fixed;
	left: calc(50% - 50px);
	top: 30%;
        width: 100px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        z-index: 9999;
    }

    .cssload-loader > div {
        width: 24px;
        height: 24px;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .cssload-loader .bounce1 {
        background-color: rgb(112,113,117);
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .cssload-loader .bounce2 {
        background-color: rgb(13,176,73);
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

    .cssload-loader .bounce3 {
        background-color: rgb(0,153,218);
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

    @-webkit-keyframes sk-bouncedelay {
        0%, 80%, 100% {
            -webkit-transform: scale(0)
        }
        40% {
            -webkit-transform: scale(1.0)
        }
    }

    @keyframes sk-bouncedelay {
        0%, 80%, 100% {
            -webkit-transform: scale(0);
            transform: scale(0);
        }
        40% {
            -webkit-transform: scale(1.0);
            transform: scale(1.0);
        }
    }