/* [project]/src/components/ui/loaders/spinner/spinner.module.css [client] (css) */
@keyframes spinner-module__ow5Bza__spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinner-module__ow5Bza__pulse {
  50% {
    background: #fff;
  }
}

.spinner-module__ow5Bza__loading {
  border: .25rem solid rgba(0, 159, 127, .3);
  border-top-color: #009f7f;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  animation: 1s linear infinite spinner-module__ow5Bza__spin;
}

.spinner-module__ow5Bza__simple_loading {
  border: 3px solid rgba(0, 159, 127, .3);
  border-top-color: #009f7f;
  border-radius: 50%;
  animation: 1s linear infinite spinner-module__ow5Bza__spin;
  display: flex;
}

/*# sourceMappingURL=src_components_ui_loaders_spinner_spinner_module_36f141ea.css.map*/