#srw_loading_main{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999999999999999;
}

.loading_wait{
    position: relative;
    pointer-events: none;
}
.loading_wait span.loading_wait_span{
    display: inline-block;
    position: absolute;
    left: -1px;
    top: -1px;
    right: -1px;
    bottom: -1px;
}
.loading_wait span.loading_wait_span::after{
    content: " ";
    position: absolute;
    left: -1px;
    top: -1px;
    right: -1px;
    bottom: -1px;
    background-color: white;
    opacity: .8;
    z-index: +1;  
}

.loading_wait div.loading_wait_text{
    position: absolute;
    width: 100%;
    top: 50%;
    font-weight: 400;
    font-size: 120%;
    text-align: center;
    z-index: +2;
}