@charset "UTF-8";
/*Table of Contents
Item Name: PayApp
*/


.loading {
  position: fixed;
  inset: 0; /* same as top:0; right:0; bottom:0; left:0 */
  z-index: 99999;

  /* Dim background only */
  background: rgba(50, 139, 100, 0.6);

  /* Center content */
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 0 10%;
}

/* Optional: basic spinner */
.loading::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  border-top-color: transparent;
  display: inline-block;
  margin-bottom: 12px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* loading ends */
.hide{display:none;}