.create-page-loading {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 101;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 16px 24px #545f6f29,
    0 2px 8px #252d5b0a;
  @media screen and (max-width: 540px) {
    gap: 16px;
  }
  &--spinner {
    width: 48px;
    height: 48px;
    position: relative;
    border-radius: 50%;
    border: 4px solid rgba(52, 60, 106, 0.2);
    &:before {
      content: "";
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 4px solid;
      border-color: transparent #343c6a transparent transparent;
      animation: spin-loader 0.7s linear infinite;
    }
    &.small {
      width: 32px;
      height: 32px;
      border-width: 3px;
      &:before {
        border-width: 3px;
        inset: -3px;
      }
    }
    &.xsmall {
      width: 24px;
      height: 24px;
      border-width: 2.5px;
      &:before {
        inset: -2px;
        border-width: 2.5px;
      }
    }
    &.dark-navy {
      &:before {
        border-color: transparent #0a1551 transparent transparent;
      }
    }
  }
  &--icon {
    border-radius: 16px;
    background: linear-gradient(180deg, #9c4dd3 0%, #47106d 100%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    @media screen and (max-width: 540px) {
      width: 80px;
      height: 80px;
      svg {
        width: 40px;
        height: 40px;
      }
    }
  }
  &--animation {
    overflow: hidden;
  }
  &--text {
    position: relative;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    margin: 0;
    li {
      text-align: center;
      justify-content: center;
      width: 100%;
      display: flex;
      align-items: center;
      color: #0a1551;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.4;
      margin: 0;
      letter-spacing: -0.34px;
      padding: 0 16px;
      @media screen and (max-width: 540px) {
        font-size: 14px;
      }
    }
  }
}

@keyframes spin-loader {
  to {
    transform: rotate(360deg);
  }
}
