.supply-please-wait {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: auto;
}

.supply-please-wait.hiddenWait {
  display: none;
}

.supply-please-wait .modalBackgroundWait {
  position: absolute;
  inset: 0;
  background-color: #808080;
  opacity: 0.7;
}

.supply-please-wait .modalPopupWait {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  background-color: #fff;
  border: 3px solid #808080;
  padding: 12px 16px;
  text-align: center;
  min-width: 200px;
  min-height: 80px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}

.supply-wait-spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid #ccc;
  border-top-color: #5672b8;
  border-radius: 50%;
  animation: supply-wait-spin 0.8s linear infinite;
}

@keyframes supply-wait-spin {
  to {
    transform: rotate(360deg);
  }
}
