.popup__wrapper {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
}

.popup__content {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 360px;
  padding: 20px;
  height: 300px;
  background-color: #fff;
  border-radius: 4px;
  align-items: center;
  transform: translate(-50%, -50%);
}

.spinner-chase__wrapper {
  width: 40px;
  height: 40px;
  position: relative;
  animation: spinner-chase__wrapper 2.5s infinite linear both;
}

@keyframes spinner-chase__wrapper {
  100% {
    transform: rotate(360deg);
  }
}

[class^='spinner-chase__dot'] {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: spinner-chase__dot 2s infinite ease-in-out both;
}

@keyframes spinner-chase__dot {
  80%,
  100% {
    transform: rotate(360deg);
  }
}

[class^='spinner-chase__dot']::before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: spinner-chase__dot-before 2s infinite ease-in-out both;
}

.spinner-chase__dot::before {
    background-color: #063790;
}

@keyframes spinner-chase__dot-before {
  50% {
    transform: scale(0.4);
  }

  100%,
  0% {
    transform: scale(1);
  }
}

[class^='spinner-chase__dot']:nth-child(1) {
  animation-delay: -1.1s;
}

[class^='spinner-chase__dot']:nth-child(2) {
  animation-delay: -1s;
}

[class^='spinner-chase__dot']:nth-child(3) {
  animation-delay: -0.9s;
}

[class^='spinner-chase__dot']:nth-child(4) {
  animation-delay: -0.8s;
}

[class^='spinner-chase__dot']:nth-child(5) {
  animation-delay: -0.7s;
}

[class^='spinner-chase__dot']:nth-child(6) {
  animation-delay: -0.6s;
}

[class^='spinner-chase__dot']:nth-child(1):before {
  animation-delay: -1.1s;
}

[class^='spinner-chase__dot']:nth-child(2):before {
  animation-delay: -1s;
}

[class^='spinner-chase__dot']:nth-child(3):before {
  animation-delay: -0.9s;
}

[class^='spinner-chase__dot']:nth-child(4):before {
  animation-delay: -0.8s;
}

[class^='spinner-chase__dot']:nth-child(5):before {
  animation-delay: -0.7s;
}

[class^='spinner-chase__dot']:nth-child(6):before {
  animation-delay: -0.6s;
}

.page-wrapper {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999;
}
