.initializer-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;

  /* LOADER REGION */
  .loading-container {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #e5e5e5;

    .logo-wrapper {
      width: 100%;
      padding: 0 20px;
      max-width: 500px;

      img.logo {
        width: 100%;
        color: #cddc39;
        font-size: 18px;
        font-weight: 700;
      }
    }

    .loading-ellipsis {
      display: inline-block;
      position: relative;
      width: 80px;
      height: 80px;

      div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background-color: #cddc39;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
      }

      div:nth-child(1) {
        left: 8px;
        animation: loading-ellipsis1 0.6s infinite;
      }

      div:nth-child(2) {
        left: 8px;
        animation: loading-ellipsis2 0.6s infinite;
      }

      div:nth-child(3) {
        left: 32px;
        animation: loading-ellipsis2 0.6s infinite;
      }

      div:nth-child(4) {
        left: 56px;
        animation: loading-ellipsis3 0.6s infinite;
      }
    }
  }
  /* LOADER REGION END */


  /* ERROR REGION */
  .error-container {
    text-align: center;
    padding: 2rem;
    color: #721c24;

    button {
      padding: 12px 24px;
      font-size: 1.2rem;
      background: #cddc39;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 20px auto;
    }
  }
  /* ERROR REGION END */
}




@keyframes loading-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes loading-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes loading-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}
