/* cta-whatsapp */
.cta-whatsapp {
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 9999999999;
    background: #50bf79;
    border-radius: 100%;
    cursor: pointer;
    padding: 15px;
}
.cta-whatsapp.desktop,
.cta-whatsapp.mobile {
    display: none;
}
.cta-whatsapp a {
    text-decoration: none;
    outline: none;
    width: 40px;
    height: 40px;
    display: block;

    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}
.cta-whatsapp a:hover {
    width: 45px;
    height: 45px;
}
.cta-whatsapp .icon-whatsapp {
    display: block;
    width: 100%;
}
.cta-whatsapp .icon-whatsapp path {
    fill: #fff;
}

@media (max-width: 768px) {

    .cta-whatsapp.desktop {
        display: none !important;
    }

}