/* https://tobiasahlin.com/spinkit/ */
.ids-spinner {
  width: 4.375rem;
  height: 1.25rem;
  text-align: center;
  white-space: nowrap;
}
.ids-spinner div {
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--IDS-SPINNER__BACKGROUND-COLOR);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.ids-spinner .ids-bounce-1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.ids-spinner .ids-bounce-2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.ids-spinner.ids-spinner--2 div {
  background-color: var(--IDS-SPINNER__BACKGROUND-COLOR-2);
}
.ids-spinner.ids-spinner--3 div {
  background-color: var(--IDS-SPINNER--LIGHT__BACKGROUND-COLOR);
}

.ids-spinner-sr {
  position: absolute;
  overflow: hidden;
  width: 0.063rem;
  height: 0.063rem;
  margin: -0.063rem;
  padding: 0;
  border: 0;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}