
  

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* .centered-message {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
} */

.close-button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #009444;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensure it is above other content */
  transition: all 2s;
  transform: translateY(0);
  opacity: 1;

}

#preloader.slide-up {
  opacity: 0;
  background: #fff;
  transform: translateY(-100%);
}

/* Define the zoom-in animation */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.zoom-in-container {
  animation: zoomIn 0.3s ease-out;
  /* Adjust duration and easing as needed */
}

#b-form {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

