.whatsapp-icon-wrapper {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
  transition: bottom 0.25s;
}

.whatsapp-icon-wrapper:hover {
  bottom: 60px; /* Adjust this value as needed */
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
}

@media (max-width: 600px) {
  .whatsapp-icon-wrapper {
      bottom: 10px;
      right: 10px;
  }

  .whatsapp-icon-wrapper:hover {
      bottom: 20px; /* Adjust this value as needed */
  }
}