#nbpf_shield{
    background: rgba(255,255,255,.7);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 6666;
    margin-top: 0px;
    top: 0px;
}
#nbpf_shield_white{
    background: rgba(255,255,255,1);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 6666;
    margin-top: 0px;
    top: 0px;
}
#loading-center-new{
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -0.75rem;
    margin-left: -0.75rem;
}
#loading-center-new img{width: 100%}
#loading_mask{
    position: absolute;
    width: 1.12rem;
    height: 0.27rem;
    top: 0.32rem;
    left: -0.11rem;
    border-top-left-radius: 0.08rem;
    border-top-right-radius: 0.08rem;
    background-color: transparent;
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
    -webkit-animation: light 0.9s infinite;
    -moz-animation: light 0.9s infinite;
    animation: light 0.9s infinite;
}
#loading_mask::before{
    content: '';
    position: absolute;
    width: 0.67rem;
    height: 0.67rem;
    top: 0.46rem;
    border-bottom-left-radius: 0.08rem;
    background-color: transparent;
    -webkit-animation: light 0.9s infinite;
    -moz-animation: light 0.9s infinite;
    animation: light 0.9s infinite;
    -webkit-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
#loading_mask::after{
    content: '';
    position: absolute;
    width: 0.27rem;
    height: 0.66rem;
    top: 0.46rem;
    left: 0.86rem;
    border-bottom-right-radius: 0.08rem;
    background-color: transparent;
    -webkit-animation: light 0.9s infinite;
    -moz-animation: light 0.9s infinite;
    animation: light 0.9s infinite;
    -webkit-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
@keyframes light{
    0%{
        background-color: transparent;
    }
    50%{
        background-color: rgba(255, 255, 255, 0.5);
    }
    100%{
        background-color: transparent;
    }
}

@-webkit-keyframes light{
    0%{
        background-color: transparent;
    }
    50%{
        background-color: rgba(255, 255, 255, 0.5);
    }
    100%{
        background-color: transparent;
    }
}