.whatsapp{
    background:linear-gradient(115deg, #0dc152, #0dc152 ,#39b569);
    box-shadow: 0 0 23px -5px #797979;
    /*padding: 10px;*/
    height: 60px;
    opacity: 1;
    width: 60px;
    padding: 12px 0;
    text-align: center;
    transition: all ease-in-out 0.2s;
    border-radius: 50%;
    position: fixed;
    right: 40px;
    bottom: 30px;
    z-index: 9999;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
}
.whatsapp:hover,
.whatsapp.shown{
    opacity: 1;
}
.whatsapp span{
    padding-left: 5px;
    font-size: 1.5rem;
    vertical-align: top;
}
.whatsapp span,
.whatsapp img{
    position: relative;
    /*transform: translateY(10px);*/
    display: inline-block;
}
.ul-whatsapp{
    position: fixed;
    width: 25%;
    right: -100px;
    bottom: -90px;
    background: #f3f3f3;
    border-radius: 8px;
    z-index: 9999;
    box-shadow: 0 0 25px -5px #8c8c8c;
    transition: all ease-in-out 0.25s;
    transform: scale(0);
}
.ul-whatsapp::after{
    z-index: -1;
    display: inline-block;
    content: '';
    position: absolute;
    bottom: -20px;
    right: 10px;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 25px solid #f3f3f3;
}
.ul-whatsapp li{
    padding: 12px;
    display: block;
    font-family:'Source Sans Pro', sans-serif;
    font-weight: bolder;
    font-size: 0.9em;
    border-bottom: 1px solid #d8d8d8;
    transition: all ease-in-out 0.2s;
}
.ul-whatsapp a:last-of-type li{
    border-bottom: none;
}
.ul-whatsapp li:hover:not(.topo-whats){
    background: #e0e0e0;
}
.topo-whats{
    color: #fff;
    background: #0dc152;
    padding: 15px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 1.2em;
}
.ul-whatsapp li img{
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    position: relative;
}
.info-wpp{
    vertical-align: middle;
    display: inline-block;
    position: relative;
}
.info-wpp p{
    font-size: 1.1em;
    color: #6e6e6e;
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bolder;
}
.info-wpp h2{
    margin-top: 0px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1em;
    color: #797979;
}
.cont-wpp{
    padding: 10px;
}
.cont-wpp a li img{
    max-width: 45px;
}
.whatsapp img{
    max-width: 33px;
    vertical-align: text-top;
}
.ul-whatsapp.shown{
    transform: scale(1);
    bottom: 120px;
    right: 40px;
}
#qtde{
    background: #ffa704;
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1em;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 2px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
}
#qtde::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 1;
    background: #ffa704;
    animation: notificacaoWhats infinite 2s;
    animation-direction: normal;
    border-radius: 50%;
    z-index: -1;
}
@keyframes notificacaoWhats{
    0%{
        opacity:1;
        transform:  scale(1);
    }
    100%{
        opacity: 0;
        transform: scale(3);
    }
}
@media(max-width:991px){
    #qtde{
        display: none;
    }
    .ul-whatsapp{
        width: 80%;
        left: 10%;
    }
}
@media(max-width:767px){
    .ul-whatsapp{
        width: 90%;
        left: 5%;
    }
    .whatsapp{
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius:0;
    }
}