#Flux360LoadingScreen {
    transition: opacity 2s ease-in;
    opacity: 0;
    pointer-events: none;
  }
  
  .ls-container {
    width: 100%;
    height: 100%;
    background: white;
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .ls-wrapper {
    position: absolute;        
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .ls-img{
    filter: drop-shadow(0px 0px 5px rgba(255, 68, 0, 0.288));
  }

  .ls-text{
    height: 30px;
    margin-top: 20px;
    font-family: Arial;
    font-size: 20px;
    color: black;
    opacity: 0;
    transition: opacity 2s ease;
  }
  
  .dot {     
    position:absolute;
    top: 40%;
    left: 50%;             
    animation-timing-function: linear;      
    animation-iteration-count: infinite;    
    width: 25px;
    height: auto;        
    z-index: 10;
  }
  
  .dot1 {
    animation-name: dot-rotation1;
    animation-duration: 3s;
  }
  @keyframes dot-rotation1{
    0% {transform: rotate3d(1,0.5,0,270deg) translateZ(200px);z-index: 10;}
    49.9% {z-index: 10;}
    50% {z-index: -10;}
    100% {transform: rotate3d(1,0.5,0,-90deg) translateZ(200px);z-index: -10;}
  }
  
  .dot2 {
    animation-name: dot-rotation2;
    animation-duration: 2.5s;
  }
  @keyframes dot-rotation2{
    0% {transform: rotate3d(-1,1,0,90deg) translateZ(200px);z-index: 10;}
    49.9% {z-index: 10;}
    50% {z-index: -10;}
    100% {transform: rotate3d(-1,1,0,-270deg) translateZ(200px);z-index: -10;}
  }
  
  .dot3 {
    animation-name: dot-rotation3;
    animation-duration: 2s;
  }
  @keyframes dot-rotation3{
    0% {transform: rotate3d(0.2,1,0,270deg) translateZ(200px);z-index: 10;}
    49.9% {z-index: 10;}
    50% {z-index: -10;}
    100% {transform: rotate3d(0.2,1,0,-90deg) translateZ(200px);z-index: -10;}
  }
  
  .dot4 {
    animation-name: dot-rotation4;
    animation-duration: 3s;
  }
  @keyframes dot-rotation4{
    0% {transform: rotate3d(1,0.2,0.3,90deg) translateZ(200px);z-index: 10;}
    49.9% {z-index: 10;}
    50% {z-index: -10;}
    100% {transform: rotate3d(1,0.2,0.3,-270deg) translateZ(200px);z-index: -10;}
  }