.cm-loader {
  align-items: center;
  background: rgba(248, 250, 252, 0.86);
  backdrop-filter: blur(10px);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
  z-index: 99999;
}

.cm-loader.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.cm-loader__panel {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(60, 64, 67, 0.16);
  display: flex;
  gap: 14px;
  min-width: 220px;
  padding: 16px 18px;
}

.cm-loader__spinner {
  animation: cmLoaderSpin 0.82s linear infinite;
  border: 3px solid #e8f0fe;
  border-top-color: #1a73e8;
  border-radius: 999px;
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.cm-loader__text {
  color: #202124;
  font-family: "Inter", "Nunito", "Work Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.cm-loader__text span {
  color: #64748b;
  display: block;
  font-size: 11px;
  font-weight: 650;
  margin-top: 2px;
}

@keyframes cmLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 575.98px) {
  .cm-loader__panel {
    min-width: 190px;
    padding: 14px 16px;
  }
}
