#fakeLoader {

    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 999;
}
    
    #fakeLoader > div {
    
        position: fixed;
        top: calc(40%);
        overflow: hidden;
    }
    
    /* MULTI SPINNER */
    
    .multi-spinner-container {
      width: 150px;
      height: 150px;
      position: relative;
      overflow: hidden;
    }
    
    .multi-spinner {
      position: absolute;
      width: calc(100% - 9.9px);
      height: calc(100% - 9.9px);
      border: 5px solid transparent;
      border-top-color: #467fcf;
      border-radius: 50%;
      -webkit-animation: spin 5s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
      animation: spin 5s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
    }
    
    
    
    
    @keyframes spin {
      from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
      }
      to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
      }
    }
    
    
    