/* Slide-up modal */
.slide-up-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  transform: translateY(100%);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.slide-up-modal .single-package {
  position: relative;
  width: 100%;
  background-color: white;
  padding: 20px;
  transform: translateY(-100%);
}

.slide-up-modal.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.slide-up-two-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease-in-out;
  transform: translateY(100%);
  z-index: 1000;
}

.slide-up-two-modal .preference-package {
  position: relative;
  width: 100%;
  background-color: white;
  padding: 20px;
  transform: translateY(-100%);
}

.slide-up-two-modal.show {
  transform: translateY(0);
}
