.floating-button{width:60px;height:60px;display:flex;justify-content:center;align-items:center;position:fixed;bottom:2rem;right:2rem;cursor:pointer;background-color:#25d366;border-radius:50%;-webkit-user-select:none;-moz-user-select:none;user-select:none;box-shadow:0 4px 10px 0 rgb(0 0 0/15%);z-index:9998;transition:transform .3s ease-in-out}.floating-button.hide{transform:translateY(100px);opacity:0}.floating-button.show{transform:translateY(0);opacity:1}.floating-button:after{content:"";border-color:inherit;width:60px;height:60px;border-radius:50%;position:absolute;box-shadow:0 0 0 0 rgba(37,211,101,0);animation:_pulse 1.2s infinite}.floating-button svg{fill:#fff;padding:.5rem;width:55px;height:55px}@keyframes _pulse{0%{box-shadow:0 0 0 0 rgba(37,211,101,.75)}to{box-shadow:0 0 0 15px rgba(37,211,101,0)}}