.mmm-processing-overlay {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(6, 22, 62, .34);
  z-index: 2147483000;
  backdrop-filter: blur(2px);
}

.mmm-processing-overlay.show {
  display: grid;
}

.mmm-processing-card {
  width: min(260px, calc(100vw - 40px));
  min-height: 216px;
  border: 1px solid #d8e3f7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6, 22, 62, .24);
  padding: 24px 22px 20px;
  text-align: center;
  color: #062b72;
  font-family: Arial, sans-serif;
  display: grid;
  align-content: center;
}

.mmm-processing-mark {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #2454d5 0 64deg, #26b9d6 64deg 116deg, #d8e3f7 116deg 152deg, #2454d5 152deg 216deg, #26b9d6 216deg 278deg, #d8e3f7 278deg 314deg, #2454d5 314deg 360deg);
  animation: mmm-processing-spin 1s linear infinite;
  display: grid;
  place-items: center;
}

.mmm-processing-mark::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px #eef3ff;
}

.mmm-processing-mark img {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  object-fit: contain;
  animation: mmm-processing-counterspin 1s linear infinite;
}

.mmm-processing-title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #062b72;
}

.mmm-button-processing {
  position: relative;
  pointer-events: none;
  cursor: wait !important;
  opacity: .82;
}

.mmm-button-processing::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  animation: mmm-processing-spin .8s linear infinite;
}

@keyframes mmm-processing-spin {
  to { transform: rotate(360deg); }
}

@keyframes mmm-processing-counterspin {
  to { transform: rotate(-360deg); }
}
