#pgaLoader {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#pgaLoader .pgaSpinner {
  width: 56px !important;
  height: 56px !important;
  border: 6px solid rgba(255, 255, 255, 0.25) !important;
  border-top-color: rgba(255, 255, 255, 0.95) !important;
  border-radius: 50% !important;
  animation: pgaSpin 0.8s linear infinite !important;
  will-change: transform;
}

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