@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.web-spinner--full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.web-spinner--full .web-spinner__border {
  border-color: white;
  border-right-color: transparent;
}
.web-spinner__border {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 4px solid black;
  border-right-color: transparent;
  animation: spinner-rotate 750ms linear infinite;
}
.web-spinner__border > * {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
}
.web-spinner__border > *:focus {
  width: auto;
  height: auto;
  visibility: visible;
}

/*# sourceMappingURL=_web-spinner.css.map */
