#floatingDiv {
  position: fixed;
  bottom: 120px; /* Adjust the distance from the bottom */
  left: 5px; /* Adjust the distance from the right */
  opacity: 1;
  z-index: 99;
  transition: opacity 0.5s ease; /* Adjust the duration and easing function as needed */
}

#floatingDiv.hidden {
  opacity: 0;
  transition: opacity 0.5s ease; /* Adjust the duration and easing function as needed */
}
