  .preloader {
    /* animation: fade-in 1s ease-in-out infinite !important; */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100vh !important;
    margin: 0 !important;
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  .preloader img {
      width: 50px !important;
      height: 50px !important;
  }