.preloader-nx {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fcfcfc;
  z-index: 999;
  transition: 1s all;
  opacity: 1;
  visibility: visible
}

.loader-nx {
  width: 75px;
  height: 75px;
  border: 3px solid #5EB030;
  border-radius: 50%;
  border-top-color: #3b719a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: .7s spin infinite linear
}

.done {
  opacity: 0;
  visibility: hidden
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}
