/*כפתור ללא אייקון*/
selector::before{
content:"";
width: 40px;
height: 40px;
background: linear-gradient(195deg, #FE9D01, #ED269B);
position: absolute;
border-radius: 100em;
transition: .3s;
}
selector:hover::before{
width: 100%;
}
selector .elementor-button-text{
z-index: 1;
padding: 12px 30px;
}
/*כפתור עם אייקון*/
selector::before{
content:"";
width: 40px;
height: 40px;
background: #0CE880;
position: absolute;
left: 0;
border-radius: 100em;
transition: .3s;
}
selector:hover::before{
width: 100%;
}
selector .elementor-button-text{
padding: 8px 30px;
}
selector .elementor-button-icon, selector .elementor-button-text{
z-index: 2;
}