.cw-ajax-loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(0,0,0,0.4);
}
.cw-ajax-loading-box {
  position: relative;
  min-width: 220px;
  padding: 18px 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  /* font-family: Arial, sans-serif; */
  text-align: center;
  user-select: none;
}
.cw-ajax-loading-box .cw-close-x {
  position: absolute;
  right: 8px;
  top: 6px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}
.cw-ajax-loading-box .cw-close-x:hover { background: rgba(0,0,0,0.04); }
.cw-ajax-loading-box .cw-message { font-size: 16px; padding: 6px 0; }