/* Add custom CSS styles below */ 

 .whatsapp-button {
    position: fixed;
    bottom: 73px;
    right: 20px;
    z-index: 999999;
    background: #fff;
    box-shadow: 0 2px 6px 0 #2f17174a;
    border-radius: 30px;
    animation: pulse 3s infinite;
    width: 59px;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0080
  }

  .whatsapp-button a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .whatsapp-button:hover {
    animation: none;
  }

  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(15, 203, 59, 0.4);
    }
    70%,
    100% {
      -webkit-box-shadow: 0 0 0 1px rgba(204, 169, 44, 0);
    }
  }
  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgba(15, 203, 59, 0.4);
      box-shadow: 0 0 0 0 rgba(15, 203, 59, 0.4);
    }
    70%,
    100% {
      -moz-box-shadow: 0 0 0 1px rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
  }