/* Preloader Background */
    .loader_bg {
      position: fixed;
      background-color: #000;
      background-position: center center;
      background-repeat: no-repeat;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9991;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    /* Animated Loader Image */
    .preloader__image {
      animation-fill-mode: both;
      animation-name: flipInY;
      animation-duration: 2s;
      animation-iteration-count: infinite;
      height: 180px;
    }

    /*@keyframes flipInY {*/
    /*  0% {*/
    /*    transform: perspective(400px) rotateY(90deg);*/
    /*    opacity: 0;*/
    /*  }*/
    /*  40% {*/
    /*    transform: perspective(400px) rotateY(-10deg);*/
    /*  }*/
    /*  70% {*/
    /*    transform: perspective(400px) rotateY(10deg);*/
    /*  }*/
    /*  100% {*/
    /*    transform: perspective(400px) rotateY(0deg);*/
    /*    opacity: 1;*/
    /*  }*/
    /*}*/