/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .whatsapp-pulsating-icon{
  position:fixed; width:60px; height:60px; bottom:40px; right:40px;
  background-color:#5cd767; color:#fff; border-radius:50%;
  text-align:center; font-size:30px; box-shadow:2px 2px 6px rgba(0,0,0,.4);
  z-index:1000; cursor:pointer; display:flex; align-items:center; justify-content:center;
  animation:pulse 1.5s infinite
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(72,206,89,.7)}
  70%{box-shadow:0 0 0 15px rgba(72,206,89,0)}
  100%{box-shadow:0 0 0 0 rgba(72,206,89,0)}
}