/*body.wpc-full-loader:before {
    content: "";
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 999;
}

body.wpc-full-loader:after {
    content: "Please Wait...";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: #fff;
    z-index: 999;
}*/

body.wpc-full-loader:before {
    position: absolute;
    background: rgba(0,0,0,0.5);
    content: "";
    height: 100%;
    width: 100%;
    z-index: 9999999;
}

body.wpc-full-loader:after {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    content: "";
    top: 50%;
    position: fixed;
    left: 50%;
    z-index: 9999999;
}

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


/*============================= Modile CSS ========================*/
@media only screen and (max-width: 768px) {
    body.wpc-full-loader:after {
        transform: translate(-50%, -50%);
        top: 50%;
        left: calc( 100% - 55%);
    }
}