/* line 1, app/assets/stylesheets/kb/spinner.scss */
.neeto-ui-spinner {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 1em;
  height: 1em;
}

/* line 9, app/assets/stylesheets/kb/spinner.scss */
.neeto-ui-spinner__item {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  -webkit-transform: scale(0.75);
      -ms-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  opacity: 0.3;
  -webkit-animation: neetoUISpinnerMove 1s infinite linear alternate;
  animation: neetoUISpinnerMove 1s infinite linear alternate;
  background-color: gray;
}

/* line 23, app/assets/stylesheets/kb/spinner.scss */
.neeto-ui-spinner__item:nth-child(1) {
  top: 0;
  inset-inline-start: 0;
}

/* line 28, app/assets/stylesheets/kb/spinner.scss */
.neeto-ui-spinner__item:nth-child(2) {
  top: 0;
  inset-inline-end: 0;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

/* line 35, app/assets/stylesheets/kb/spinner.scss */
.neeto-ui-spinner__item:nth-child(3) {
  inset-inline-end: 0;
  bottom: 0;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

/* line 42, app/assets/stylesheets/kb/spinner.scss */
.neeto-ui-spinner__item:nth-child(4) {
  bottom: 0;
  inset-inline-start: 0;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

/* line 49, app/assets/stylesheets/kb/spinner.scss */
.neeto-ui-spinner {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: neetoUISpinnerRotate 1.2s infinite linear;
  animation: neetoUISpinnerRotate 1.2s infinite linear;
}

@-webkit-keyframes neetoUISpinnerMove {
  to {
    opacity: 1;
  }
}

@keyframes neetoUISpinnerMove {
  to {
    opacity: 1;
  }
}

@-webkit-keyframes neetoUISpinnerRotate {
  to {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg);
  }
}

@keyframes neetoUISpinnerRotate {
  to {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg);
  }
}
