Como fazer BOTÃO PISCANTE no Elementor + CSS

https://youtu.be/Fb17b7Wm9Jw selector .elementor-button{ box-shadow: 0 0 0 0 #000; animation: pulse-white 2s infinite; } @keyframes pulse-white { 0% { transform: scale(1); box-shadow: 0 0 0 0 #B28C57 } 70% { transform: scale(1.01); box-shadow: 0 0 0 10px transparent } 100% { transform: scale(1); box-shadow: 0 0 0 0 transparent } }