.loading-js {
    position: fixed;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACAQMAAACjTyRkAAAAA1BMVEUQEBN1IM0lAAAAAXRSTlPM0jRW/QAAAApJREFUCNdjAAIAAAQAASDSLW8AAAAASUVORK5CYII=") repeat;
    background: rgba(0, 0, 0, 0.4) !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.loading-portion {
    position: relative !important;
}

.loading-portion-content {
    position: absolute;
}

.glass-back.filter {
    filter: blur(3px);
}

.loading-js .loading-container {
    top: 40%;
    left: 45%;
    position: absolute;
    width: 120px;
    height: 25px;
    background: url("loading.gif") 0 0 no-repeat;
}

.loading-js .loading-container.mask {
    background: none;
}

.loading-js .loading-container .circle-outer {
    background-color: rgba(0, 0, 0, 0);
    border: 5px solid rgba(236, 194, 141, 0.9);
    opacity: 0.9;
    border-top: 5px solid rgba(0, 0, 0, 0);
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-radius: 50%;
    box-shadow: 0 0 2px rgb(236, 194, 141);
    width: 80px;
    height: 80px;
    margin: 0 auto;
    animation: spin 0.5s infinite linear;

}

.loading-js .loading-container .circle-inner {
    border: 5px solid rgba(236, 194, 141, 0.9);
    opacity: 0.9;
    border-top: 5px solid rgba(0, 0, 0, 0);
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-radius: 50%;
    box-shadow: 0 0 1px rgb(236, 194, 141);
    width: 40px;
    height: 40px;
    position: relative;
    top: -58px;
    left: 80px;
    animation: spin 0.5s infinite reverse linear;
}

.loading-js .loading-logo {
    background: url("logo.png") center center no-repeat;
    position: absolute;
    width: 220px;
    height: 85px;
    top: 46%;
    left: 45%;
    animation: pulse 1s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}