
#Loading {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1000;
    background-color: #e6e6e6;
    display: none;
  }

  #Loading2 {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1000;
    display: none;
  }

  #LoadingImg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
  }

  #LoadingImg2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
  }

  .LoadingBox {
    height: 100px;
    width: 100px;
    animation: rotate 2s linear infinite;
  }

  .LoadingBox .LoadingCircle {
    stroke-width: 1;
    stroke: #fff;
    stroke-linecap: round;
    animation: circle 2s infinite;
  }

  @keyframes rotate {
    to {
      transform: rotate(1turn);
    }
  }

  @keyframes circle {
    0% {
      stroke-dasharray: 1 125;
      stroke-dashoffset: 0;
    }

    50% {
      stroke-dasharray: 120, 125;
      stroke-dashoffset: 0;
    }

    to {
      stroke-dasharray: 120 125;
      stroke-dashoffset: -125px;
    }
  }