.elis-throbber {
  position: fixed;
  z-index: 9999999999;
  display: none;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.elis-throbber--active {
  display: block;
  opacity: 1;
}
.elis-throbber__object {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.elis-throbber__circle {
  margin: 0;
  height: 1rem;
  width: 1rem;
  border: 0.0625rem solid var(--elis-primary);
  border-radius: 100%;
  -webkit-animation: elis-throbber-anim 2s infinite ease-in-out;
          animation: elis-throbber-anim 2s infinite ease-in-out;
}
.elis-throbber__circle:nth-child(1n) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.elis-throbber__circle:nth-child(2n) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.elis-throbber__circle:nth-child(3n) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes elis-throbber-anim {
  0% {
    transform: scale(0.5);
    background: var(--elis-primary);
  }
  50% {
    transform: scale(1);
    background: white;
  }
  100% {
    transform: scale(0.5);
    background: var(--elis-primary);
  }
}

@keyframes elis-throbber-anim {
  0% {
    transform: scale(0.5);
    background: var(--elis-primary);
  }
  50% {
    transform: scale(1);
    background: white;
  }
  100% {
    transform: scale(0.5);
    background: var(--elis-primary);
  }
}
