.whatsapp-button {
    position: fixed;
    bottom: 120px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 22px 20px;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    z-index: 9999;
	font-weight: bold;
  }

  .whatsapp-button a:link, a:visited, a:hover, a:active { color: white;}
  
  .whatsapp-button i {
	font-size:30px;
    margin-right: 10px;
    font-weight: 100;
  }
  
  .whatsapp-button:hover {
    background-color: #128c7e;
  }



  @keyframes fadeInFromRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .show-button {
    animation: fadeInFromRight 0.5s forwards;
  }