#main-loading {
    background-color: #fff;
    position: relative;
}

    #main-loading #app-loading {
        background-image: url('images/Loading_Page.png');
        position: absolute;
        background-repeat: no-repeat;
        width: 1048px;
        height: 800px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

#bg {
    display: none;
}

@media screen and (max-width: 700px) {
    #main-loading #app-loading {
        background-image: none;
    }

     #bg {
        display: block;
    }
}

.spinner {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px;
    text-align: center;
}

    .spinner > div {
        width: 18px;
        height: 18px;
        background-color: dimgray;
        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;
    }

.loading-container .spinner {
    position: relative;
    width: 70px;
    text-align: center;
}

    .loading-container .spinner > div {
        width: 18px;
        height: 18px;
        background-color: #333;
        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;
    }

    .loading-container .spinner .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .loading-container .spinner .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

.spinner-report {
   padding-top:10px;
    text-align: center;
}

    .spinner-report > div {
        width: 18px;
        height: 18px;
        background-color: dimgray;
        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;
    }

.loading-container .spinner-report{
    position: relative;
    width: 70px;
    text-align: center;
}

    .loading-container .spinner-report > div {
        width: 18px;
        height: 18px;
        background-color: #333;
        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;
    }

    .loading-container .spinner-report .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .loading-container .spinner-report .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }


.spinner-report .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner-report .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@-moz-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        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);
    }
}


.loading-container > img {
    display: none !important;
}
