 .loadmask{
    border:10px solid;
    width:50px;
    height:50px;
    border-radius:50%;
    border-color:rgba(168, 177, 1191, .5) rgba(19, 97, 221, .5) rgba(168, 177, 1191, .5) rgba(19, 97, 221, .5);
    animation:spin 2s linear infinite;
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    z-index:999999999;
 }
 
 .lwrap{
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto; 
    color:rgba()
    border:2px solid black;
    border-radius:30px;
    height:0px;
    width:150px;
    text-align:center;
    padding-top:150px;
    /* animation:fadetext 2s linear infinite; */
    text-shadow:0px 0px 3px  rgba(19,97,221,.4);
    z-index:999999999;
    color:rgba(255, 255, 255, .5);
     font-weight:bold;
     font-size:1.2em;
 }

 @keyframes fadetext{
   50%{
     opacity:0.02;  
   }
   100%{
     opacity:1; 
   }
 }
 
 @keyframes spin{
   100%{transform:rotate(360deg);
   filter:hue-rotate(360deg);
 }
     
.hidemask{
    display:none;
}