.loading{   
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    top: 0;
    background: #fff;
    display: flex;
    align-items: center;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    opacity: 1;
    right: 0;
    left: 0;
}
.loading.hide{
    opacity: 0;
    /* display: none; */
}
.loading.hide.displaynone{
    display: none;
}
 


body {
    background-color:#fff;
  }
  
  .loader-xbox {
    position: relative;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
  }
  
  .loader-xbox {
    position: absolute;
    border: 3px solid transparent;
    border-top: 3px solid #9c02b4;
    border-radius: 50%;
    animation: rotate linear infinite;
    content: '';
  }
  .loader-xbox:after {
    position: absolute;
    border: 3px solid transparent;
    border-top: 3px solid #14a652;
    border-radius: 50%;
    animation: rotate linear infinite;
    content: '';
  }
  .loader-xbox:before{
    position: absolute;
    border: 3px solid transparent;
    border-top: 3px solid #b16532;
    border-radius: 50%;
    animation: rotate linear infinite;
    content: '';
  }
  
  .loader-xbox {
    height: 100px;
    width: 100px;
    animation-duration: 1.05s;
  }
  
  .loader-xbox:before {
    height: 75px;
    width: 75px;
    top: 10px;
    left: 10px;
    animation-duration: 10s;
  }
  
  .loader-xbox:after {
    height: 50px;
    width: 50px;
    top: 22px;
    left: 22px;
    animation-duration: 4s;
  }
  
  @keyframes rotate {
    from {
      transform: rotateZ(360deg);
    }
    to {
      transform: rotateZ(0deg);
    }
  }