.suspend-loader {
    display: block;
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3.125px solid rgba(0,0,0,0);
    animation: spinner 1.2s linear infinite;
    box-shadow: -1.5625px -1.5625px 0 1.5625px #af0775;
  }
  
  @keyframes spinner {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  #suspend {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background-color: rgba(0,0,0,0);
    justify-content: center;
    align-items: center;
  }

  #suspend.active {
    display: flex;
  }