.Easy-Loader {
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
}

  .Easy-Loader.is-local {
    position: absolute;
  }

  .Easy-Loader.is-global {
    position: fixed;
  }

.easy-loader-spinner {
  width: clamp(28px, 12vmin, 96px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: max(3px, 0.18em) solid rgba(255, 255, 255, 0.35);
  border-top-color: #4da3ff;
  animation: easy-spin 0.9s linear infinite;
}

@keyframes easy-spin {
  to {
    transform: rotate(360deg);
  }
}
