@charset "utf-8";
/*!
 * Whatsapp Floating
 * button plugin
 */
.button-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4dc247;
    color: #fff;
    padding: 10px 15px;
    line-height: 1;
    -webkit-font-smoothing: auto;
    height: 40px;
    border-radius: 20px;
    font-size: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all .3s ease-in-out;
}
.button-whatsapp:active,
.button-whatsapp:focus,
.button-whatsapp:hover {
    background-color: #3eb139;
    color: #fff;
}
.button-whatsapp.focus,
.button-whatsapp:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(62 177 57 / 30%);
}
.button-whatsapp span.not-empty {
    font-size: 15px;
    margin-left: 5px;
    margin-top: -1px;
}

/* mobile */
@media (max-width: 768px){
    .button-whatsapp {
        padding: 10px 12px;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        font-size: 1.5rem;
    }
    .button-whatsapp span {
        display: none;
    }
    .button-whatsapp:before,
    .button-whatsapp:after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: #349e2e;
        border-radius: 50%;
        z-index: -1;
        opacity: 0.2;
        transform: scale(1);
        animation: pulse 1s infinite ease-in-out;
    }
    .button-whatsapp:after {
        animation: pulse2 1.8s infinite ease-in-out;
        transform: scale(1);
        opacity: 0.1;
        background-color: #349e2e;
        z-index: -2;
    }
    @keyframes pulse{
        100% {
            transform: scale(1.5);
        }
    }
    @keyframes pulse2{
        100% {
            transform: scale(1.9);
        }
    }
}