/* .loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #d2ffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000000;
    opacity: 1;
    visibility: visible;
  }
  
  .loading.is-active {
    opacity: 0;
    visibility: hidden;
  }
  
  .fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  }

  
  body {
    width: 100%;
    height: 100vh;
    margin: 0;
  }
  
  .loader {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 50%;
  }
  
  
  .loader:after {
      content: '';
      position: absolute;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      border: 0px solid #d2ffff;
      transform: translate(-50%, -50%);
      animation: loading 1000ms ease-out forwards infinite;
    }
  
  
  @keyframes loading {
    0% {
      border: 0px solid #d2ffff;
    }
    
    20% {
      border: 8px solid #d2ffff;
      width: 0%;
      height: 0%;
    }
    
    100% {
      border: 8px solid white;
      width: 100%;
      height: 100%;
    }
  } */

#loading {
position: fixed;
z-index: 100005;
width: 100%;
height: 100%;
background:#d2ffff;
text-align:center;
color:#fff;
opacity: 1;
visibility: visible;
}

#loading.is-active {
  opacity: 0;
  visibility: hidden;
}

#loading_text {
position: absolute;
top: 50%;
left: 50%;
z-index: 999;
width: 100%;
transform: translate(-50%, -50%);
color: #fff;
opacity: 0;
visibility: hidden;
}

#loading_text.is-active {
  opacity: 1;
  visibility: visible;
}

#loading_text svg{
  height: 5px;
}

