.box {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .box .loadingText {
    margin-top: 20px;
    color: gray;
  }

  .loading,
  .loading>div {
    position: relative;
    box-sizing: border-box;
  }

  .loading {
    display: block;
    font-size: 0;
    color: #55a1ff;
  }

  .loading.la-dark {
    color: #55a1ff;
  }

  .loading>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
  }

  .loading {
    width: 65px;
    height: 66px;
  }

  .loading>div:nth-child(1),
  .loading>div:nth-child(2) {
    position: absolute;
    left: 0;
    width: 100%;
  }

  .loading>div:nth-child(1) {
    top: -25%;
    z-index: 1;
    height: 100%;
    border-radius: 10%;
    animation: square-jelly-box-animate 0.6s -0.1s linear infinite;
  }

  .loading>div:nth-child(2) {
    bottom: -9%;
    height: 10%;
    background: #0A5693;
    border-radius: 50%;
    opacity: 0.2;
    animation: square-jelly-box-shadow 0.6s -0.1s linear infinite;
  }

  .loading.la-sm {
    width: 16px;
    height: 16px;
  }

  .loading.la-2x {
    width: 64px;
    height: 64px;
  }

  .loading.la-3x {
    width: 96px;
    height: 96px;
  }

  @keyframes square-jelly-box-animate {
    17% {
      border-bottom-right-radius: 10%;
    }

    25% {
      transform: translateY(25%) rotate(22.5deg);
    }

    50% {
      border-bottom-right-radius: 100%;
      transform: translateY(50%) scale(1, 0.9) rotate(45deg);
    }

    75% {
      transform: translateY(25%) rotate(67.5deg);
    }

    100% {
      transform: translateY(0) rotate(90deg);
    }
  }

  @keyframes square-jelly-box-shadow {
    50% {
      transform: scale(1.25, 1);
    }
  }