/* Base styles for the popup */
.popup-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  color: black;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Fade-in animation */
.fade-in {
  opacity: 1;
  transform: translateY();
}

/* Fade-out animation */
.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

/* Show the mobile-only section only on phones */
.phone-only {
  display: none; /* Hide by default */
}

@media only screen and (max-width: 767px) {
  .phone-only {
    display: block; /* Show only on phones */
  }

  .hidden.phone-only {
    display: none; /* Hide the original footer content on phones */
  }
}
