
/* // Spinner  */
@keyframes Spinner-animation {
    0% {
      opacity: 1
    }

    100% {
      opacity: 0
    }
  }

  .Spinner-items div {
    left: 95px;
    top: 48px;
    position: absolute;
    animation: Spinner-animation linear 1.1627906976744184s infinite;
    background: #001ddd;
    width: 10px;
    height: 24px;
    border-radius: 5px / 5.5200000000000005px;
    transform-origin: 5px 52px;
  }

  .Spinner-items div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.065891472868217s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -0.9689922480620154s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.872093023255814s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.7751937984496123s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.6782945736434108s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.5813953488372093s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.4844961240310077s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.38759689922480617s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.29069767441860467s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.19379844961240308s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.09689922480620154s;
    background: #001ddd;
  }

  .Spinner-items div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
    background: #001ddd;
  }

  .Spinner {
    z-index: 999999;
    background-color: gray;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* display: inline-block; */
    overflow: hidden;
  }

  .Spinner-items {
    width: 200px;
    height: 200px;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
    /* see note above */
  }

  .Spinner-items div {
    box-sizing: content-box;
  }