.pwe-button{
    --pwe-bg:#25D366;
    --pwe-color:#fff;
    --pwe-z:99999;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--pwe-bg);
    color:var(--pwe-color)!important;
    text-decoration:none!important;
    font-family:inherit;
    font-size:15px;
    font-weight:700;
    line-height:1;
    border:0;
    border-radius:999px;
    padding:14px 18px;
    box-shadow:0 10px 28px rgba(0,0,0,.18);
    transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.pwe-button:hover,.pwe-button:focus{
    color:var(--pwe-color)!important;
    transform:translateY(-2px);
    box-shadow:0 14px 34px rgba(0,0,0,.24);
    filter:brightness(.98);
}
.pwe-icon{width:24px;height:24px;flex:0 0 24px;display:block}
.pwe-floating{
    position:fixed;
    bottom:22px;
    z-index:var(--pwe-z);
}
.pwe-right{right:22px}
.pwe-left{left:22px}
.pwe-inline{position:relative}
@media (max-width:767px){
    .pwe-floating{bottom:16px;padding:13px 16px;font-size:14px}
    .pwe-right{right:14px}
    .pwe-left{left:14px}
    .pwe-hide-mobile{display:none!important}
}
@media (min-width:768px){
    .pwe-hide-desktop{display:none!important}
}
