.wa-pill-btn {
    position: fixed;
    left: 1.5em;
    bottom: 1.5em;
    background: var(--wd-primary-color);
    color: #fff;
    padding: 0.5em;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 7px 20px rgba(0,0,0,.18);
    z-index: 9999;
    transition: all 0.8s ease;
    border-radius: 0;
}
.wa-pill-btn .wa-icon {
    width: 30px;
    height: 30px;
}
.wa-pill-btn .wa-icon .whatsapp-ico {
    width: 100%;
    height: 100%;
    color: #fff;
    fill: #fff;
}
.wa-pill-btn .wa-text {
    transition: all 0.5s ease;
    overflow: hidden;
    padding-left: 0;
    width: 0;
    white-space: nowrap;
}
.wa-pill-btn:hover .wa-text {
    padding-left: 0.25em;
    width: 90px;
}
@media screen and (max-width: 768px) {
    .wa-pill-btn {
        left: 1em;
        bottom: 1em;
        padding: 0.5em;
    }
}