body{
  margin:0;
}

/* Gif loading screen */
#Flux360LoadingScreen {
  pointer-events: none;
  opacity: 0;
  width: 100% !important;
  height: 100% !important;  
  background: rgb(251,251,251);
  position: absolute !important;
  z-index: 9999 !important;
  overflow: hidden;
}

.ls-container{
  width: 100% !important;
  height: 100% !important;  
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ls-text{
  height: 30px;
  margin-top: 20px;
  font-family: Arial;
  font-size: 20px;
  color: black;
  opacity: 0;
  transition: opacity 2s ease;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0%);
}

@media (max-device-width: 900px) {
  .ls-text{
    top: 25%;
  }
  @media (orientation:landscape){
    .ls-container{
      top: 40%;
    }
    .ls-text{
      top: 70%;
    }
    .ls-img{
      height: auto;
      width: 350px;
    }
  }
  
}

/* CSS loading screen */
/* #Flux360LoadingScreen {
    pointer-events: none;
    opacity: 0;
  }
  
  .ls-container {
    width: 100%;
    height: 100%;
    background: rgb(251,251,251);
    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;
  }

  .ls-giftext{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  
  .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;}
  } */