body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #181c32;
  font-family: Poppins, Helvetica, 'sans-serif';
}

.splash-screen .splash-screen-wrapper {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
}

.splash-screen img {
  z-index: 4;
  border-radius: 50%;
  padding: 10px;
  background: #ffffff;
  width: 80px;
  height: 80px;
}

.splash-screen p {
  color: #ffffff;
  margin: 1rem 0 0 0;
  text-align: center;
}

.loading-dots-content {
  align-items: center;
  background: #181c32;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  padding: 4rem 20px;
}

.loading-dots {
  display: flex;
  justify-content: space-between;
  max-width: 72px;
  margin: 0 auto;
  width: 100%;
}

.loading-dots .dot {
  animation: loading 1s cubic-bezier(.55,-0.77,.42,1.79) 0s infinite normal both running;
  background: #fff;
  border-radius: 50%;
  display: block;
  height: 1rem;
  width: 1rem;
}

.loading-dots .dot:nth-child(1) {
  animation-name: loading;
}

.loading-dots .dot:nth-child(2) {
  animation-name: loading-2;
}

.loading-dots .dot:nth-child(3) {
  animation-name: loading-3;
}

@keyframes loading {
  0%   {
    transform: translateY(0);
  }
  4%   {
    transform: translateY(22%);
  }
  25% {
    transform: translateY(100%);
  }
  50%  {
    transform: translateY(0);
  }
}

@keyframes loading-2 {
  25%   {
    transform: translateY(0);
  }
  29%   {
    transform: translateY(22%);
  }
  50%  {
    transform: translateY(100%);
  }
  75% {
    transform: translateY(0);
  }
}

@keyframes loading-3 {
  50%  {
    transform: translateY(0);
  }
  54%   {
    transform: translateY(22%);
  }
  75% {
    transform: translateY(100%);
  }
  100%  {
    transform: translateY(0);
  }
}
