 
/*--- Wait / Delay / Loading ---*/


@-webkit-keyframes spinner {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

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


#wait{
 display: none;
}
#pageloading{
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
     background-color: rgb(255,255,255); /* Fallback color */
  background-color: rgba(255,255,255,0.7); /* Black w/ opacity */
                
}

.pageloading{
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
     background-color: rgb(255,255,255); /* Fallback color */
  background-color: rgba(255,255,255,0.8); /* Black w/ opacity */
                
}

#wait_message{
  font-family: "Nunito,", sans-serif;
  color: #FFFFFF;
  margin: 2% auto 2% auto;
  font-weight: normal;
  font-size: 17px;
  letter-spacing: 1px;
  background: #000000;
  padding: 5px 4px 3px 7px; /*padding: 5px 5px 8px 7px;*/
  width: 51%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 5px 10px -2px #777777;
  display: none;
}
.waitloader {
  border: 10px solid transparent;
  border-radius: 50%;
  border-top: 10px solid #8a9df9;  /*9babfa*/
  border-right: 10px solid #8a9df9; 
  border-bottom: 10px solid #8a9df9;
  width: 70px;
  height: 70px;
  -webkit-animation: spinner 1000ms linear infinite;
  animation: spinner 1000ms linear infinite;
  margin: 5% auto 2% auto;
}


#notify_loading {
 width: 100%;
 margin-top: 20%;
 text-align: center;
 font-size: 16px;"
}
