#mask {
    z-index:99998;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    width: 100%;
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    max-height: 100%;
    max-width: 100%;
}

.loadingIMG {
    margin: 0px auto 0;
    height: 120px;
    width: 120px;
    text-align: center;
    z-index: 1000;
}

.loadingIMG div {
    color: #444;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.6s infinite ease-in-out both;
    animation: sk-bouncedelay 1.6s infinite ease-in-out both;
}

.loadingIMG span {
    white-space: nowrap;
    font-size: 1.5em;
    width: 150px;
    height: 40px;
    -webkit-animation: sk-textdelay 1.6s infinite ease-in-out both;
    animation: sk-textdelay 1.6s infinite ease-in-out both;
}

.loadingIMG .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.4s;
}

.loadingIMG .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.2s;
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    80% {
        color: #555;
        -webkit-transform: scale(0.5)
    }
    100% {
        color: #bbb;
    }
    40% {
        color: #111;
        -webkit-transform: scale(1.0)
    }
}

@-o-keyframes sk-bouncedelay {
    0%,
    80% {
        color: #555;
        -webkit-transform: scale(0.5)
    }
    100% {
        color: #bbb;
    }
    40% {
        color: #111;
        -webkit-transform: scale(1.0)
    }
}

@-moz-keyframes sk-bouncedelay {
    0%,
    80% {
        color: #555;
        -webkit-transform: scale(0.5)
    }
    100% {
        color: #bbb;
    }
    40% {
        color: #111;
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%,
    100% {
        color: #bbb;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    80% {
        color: #555;
    }
    40% {
        color: #111;
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@-webkit-keyframes sk-textdelay {
    0%,
    80% {
        color: #555;
    }
    100% {
        color: #bbb;
    }
    40% {
        color: #111;
    }
}

@-o-keyframes sk-textdelay {
    0%,
    80% {
        color: #555;
    }
    100% {
        color: #bbb;
    }
    40% {
        color: #111;
    }
}

@-moz-keyframes sk-textdelay {
    0%,
    80% {
        color: #555;
    }
    100% {
        color: #bbb;
    }
    40% {
        color: #111;
    }
}

@keyframes sk-textdelay {
    0%,
    100% {
        color: #bbb;
    }
    80% {
        color: #555;
    }
    40% {
        color: #111;
    }
}