html, body { 
  background-color: #F9FBFB;
  padding: 0;
  margin: 0;
  overflow-y: hidden !important;
} 

/*------------- LOADER SCREEN ---------*/
.pace {
    pointer-events: none;
    user-select: none;
    z-index: 9999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.pace.pace-inactive {
    transition: all .6s ease-in-out;
    display: none;
}

/*---------LOADER LOGO-------------------*/
.pace-load-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pace-load-wrap img {
    width: 220px;
    position: absolute;
    /*animation: ball .6s infinite;*/
}

.spinner {
    position: absolute;
    width: 60px; 
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 30px;
  }
  
  .spinner > div {
    width: 12px;
    height: 12px;
    background-color: #1886A8;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }

/*-------------- WRAPPER OF PAGE TO SHOW AFTER LOADING -----*/
.pacewrap {
    transition: opacity 1s ease-in-out;
}

:not(.pace-done) .pacewrap {
    opacity: 0;
}

.pace-done .pacewrap {
    opacity: 1;
}

.pace-done .pace-load-wrap {
    transition: opacity .6s ease-in-out;
    opacity: 0;
}

@keyframes spin {
    from {
      transform: rotate(0);
    }
    to{
      transform: rotate(359deg);
    }
}
