.flotante {
    width: 180px;
    height: auto;
    display: inline-flex;
    position: fixed;
    margin: 0;
    right: 20px;
    bottom: 100px;
    z-index: 100;
    align-content: center;
    pointer-events: none;
}

.flotante .iconwhats span{
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: block;
    background: #ffffff;
    border-radius: 50%;
    margin: 5% 55px;
    text-align: center; 
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
    transition: all 0.7s cubic-bezier(0.68,-0.55,0.265,1.55);
    cursor: pointer;
    pointer-events: auto;
    
}
.flotante .iconwhats span img{
    line-height: 40px;
    padding: 9px 9px 13px 13px;
}

#blanco{
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
}

#verde{
    opacity: 1;
    margin-top: -100%;
}

.flotante .iconwhats .vineta{
    display: block;
    margin-bottom: -60px;
    width: 150px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    align-content: center;
    padding: 10px 0;
    border-radius: 25px;
    
    opacity: 0;
    pointer-events: none;
    
    background: #f9f9f9;
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.flotante .iconwhats:hover .vineta{
    margin-bottom: 0;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.flotante .iconwhats span:hover{
    background-color: #7AD26D;
}

.flotante .iconwhats span:hover #blanco{
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);}

.flotante .iconwhats span:hover #verde{
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);}