/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 04 2026 | 22:32:56 */
 .whatsapp-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
  }

  .whatsapp-icon {
    width: 35px;
    height: 35px;
  }
  
  @media (max-width: 767px) {
    .whatsapp-btn {
      width: 50px;
      height: 50px;
      bottom: 15px;
      right: 15px;
    }

    .whatsapp-icon {
      width: 28px;
      height: 28px;
    }
  }

