/* Blurred Text Fix */
/* flt-glass-pane {
  image-rendering: pixelated;
} */

body.preloader-site {
    overflow: hidden;
  }

  .preloader-wrapper {
    height: 100%;
    width: 100%;
    opacity: .95;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .preloader-wrapper .preloader {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: 0 auto;
    width: auto;
    height: auto;
    display: inline-block;
  }

  .lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }

  .lds-ripple div {
    position: absolute;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }

  .lds-ripple div:nth-child(1) {
    border: 4px solid #1e6ea4;

  }

  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
    border: 4px solid #7b7a7a;
  }

  @keyframes lds-ripple {
    0% {
      top: 72px;
      left: 72px;
      width: 0;
      height: 0;
      opacity: 1;
    }

    100% {
      top: 0px;
      left: 0px;
      width: 144px;
      height: 144px;
      opacity: 0;
    }
  }

/* NEW LOADER */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 100px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  margin: 5px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: black transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
