
/* Fullscreen Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #535353e0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Content: image + bar */
  #preloader .preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Image */
  #preloader .preloader-content img {
    max-width: 200px;
    margin-bottom: 10px;
  }
  
  /* Bar animation */
  #preloader .preloader-content .bar {
    width: 250px;
    height: 5px;
    background: #ddd;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }
  
  #preloader .preloader-content .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 40%;
    background: #0004ff;
    animation: loadbar 1.5s ease-in-out infinite;
    border-radius: 2px;
  }
  
  /* Animation */
  @keyframes loadbar {
    0% {
      left: -40%;
    }
    /* 30% {
      left: 30%;
    }
    50% {
      left: 50%;
    } */
    /* 75% {
      left: 75%;
    } */
    100% {
      left: 100%;
    }
  }
  
  