/* LOader CSS START */
  #preloader {
      width: 100% !important;
      height: 100vh !important;
      z-index: 99999 !important;
      position: fixed !important;
      background-color: rgba(255, 255, 255, 0.8) !important;
      display: flex;
      justify-content: center !important;
      align-items: center !important;
  }

  .circle {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      width: 40px !important;
      height: 40px !important;
      border: 5px solid rgba(18, 40, 103, 0.2) !important;
      border-radius: 50% !important;
      border-top-color: #56731B !important;
      animation: spin 1s linear infinite !important;
  }

  @keyframes spin {
      100% {
          transform: rotate(360deg);
      }
  }

  /* LOader CSS End */