.loading-circle {
  width: 6rem;
  height: 6rem;
  border: .7rem solid rgba(0, 0, 0, 0.2);
  border-top-color: #11181f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 2rem;
}

.loading-circle--white {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #00bee8;
}

.loading-circle--button {
  margin-left: 0;
  margin-right: 1rem;
  width: 2rem;
  height: 2rem;
  border-width: .2rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.remodal.remodal--content-loading [data-modal-fetcher] {
  opacity: 0.45;
  animation: remodal-loading-pulse 1.2s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.remodal.remodal--content-loading .remodal-close {
  pointer-events: none;
  opacity: .5;
}

@keyframes remodal-loading-pulse {
  0% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.65;
  }
  100% {
    opacity: 0.45;
  }
}
