
@keyframes css-kqecok-antSpinMove{to{opacity:1;}}
      @keyframes css-kqecok-antRotate{to{transform:rotate(405deg);}}
      .app-loading {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }

      .app-loading .ant-spin-dot-box.ant-spin-dot.ant-spin-dot-spin {
        transform: rotate(45deg);
        animation-name: css-kqecok-antRotate;
        animation-duration: 1.2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        font-size: 20px;
        width: 1em;
        height: 1em;
      }
      
      .app-loading .ant-spin-dot-box.ant-spin-dot.ant-spin-dot-spin .ant-spin-dot-item {
        position: absolute;
        display: block;
        width: 9px;
        height: 9px;
        background-color: #1677ff;
        border-radius: 100%;
        transform: scale(0.75);
        transform-origin: 50% 50%;
        opacity: 0.3;
        animation-name: css-kqecok-antSpinMove;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-direction: alternate;
      }

      .app-loading .ant-spin-dot-box.ant-spin-dot.ant-spin-dot-spin .ant-spin-dot-item:nth-of-type(1) {
        top: 0;
        inset-inline-start: 0;
      }
      .app-loading .ant-spin-dot-box.ant-spin-dot.ant-spin-dot-spin .ant-spin-dot-item:nth-of-type(2) {
        top: 0;
        inset-inline-end: 0;
        animation-delay: 0.4s;
      }
      .app-loading .ant-spin-dot-box.ant-spin-dot.ant-spin-dot-spin .ant-spin-dot-item:nth-of-type(3) {
        inset-inline-end: 0;
        bottom: 0;
        animation-delay: 0.8s;
      }
      .app-loading .ant-spin-dot-box.ant-spin-dot.ant-spin-dot-spin .ant-spin-dot-item:nth-of-type(4) {
        bottom: 0;
        inset-inline-start: 0;
        animation-delay: 1.2s;
      }