.nc-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
}

.nc-loader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: newcom-spin 0.8s linear infinite;
}

.nc-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

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