.loading-page {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: open sans,Helvetica Neue,Helvetica,Arial,sans-serif;
    /* background-color: #2f4050; */
    background-color: #ffffff;
    font-size: 24px;
    color: white;
}

/* .virtusflow-loader {
    display: inline-block;
    position: relative;
    width: 124px;
    height: 124px;
   
  }
  .virtusflow-loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 118px;
    height: 118px;
    margin: 8px;
    border: 10px solid #e94471;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #e94471 transparent transparent transparent;
  }
  
  .virtusflow-loader div.tilde {
    animation: none;
    background: url("./logo-tilde.png") 50% 50% no-repeat;
  }
  
  
  .virtusflow-loader div:nth-child(1) {
    animation-delay: -0.45s;
    
  }
  .virtusflow-loader div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .virtusflow-loader div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } */

 


.virtusflow-loader {
  display: inline-block;
  position: relative;
  width: 124px;
  height: 124px;
  z-index: 99999;
}
.virtusflow-loader .spinner {
  width: 100%;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #6B52D4;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}

.virtusflow-loader .tilde{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("./logo-tilde-new.png") 50% 50% no-repeat;
  background-size: 70px;
}

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