#whatsapp-contenido{
    z-index: 10;
    bottom: 20px;
    left: 20px;
    position: fixed;
    width: 60px;
    height: 60px;
}
#whatsapp-contenido-cont{
    position: relative;
    width: 100%;
    height: 100%;
}
#whatsapp-popup-contenedor{
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: -7px;
    z-index: 1;
    width: calc(100vw - 20px*2);
    max-width: 400px;
    min-height: 170px;
    border-radius: 32px;
    background: #f7fef9;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 50%);
    text-align: left;
    overflow: hidden;
    transform: scale3d(0,0,0);
    opacity: 0;
    transition: max-height .2s ease-out,opacity .4s ease-out,transform 0s linear .3s;
}
#whatsapp-popup-contenedor.openpopup {
    opacity: 1;
    transform: scaleX(1);
    transition: max-height .2s ease-out,opacity .2s ease-out,transform 0s linear;
}
#whatsapp-popup-contenedor-header{
    display: flex;
    flex-flow: row;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    padding: 16px 70px 16px 26px;
    margin: 0;
    background: #25d366;
    text-align: left;
}
#whatsapp-popup-contenedor-header svg#whatsapp-nombre-titulo{
    fill: #fff;
    height: 28px;
}

#whatsapp-img-cont{
    display: flex;
    flex-direction: row;
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 0px;
    height: 60px;
    min-width: 60px;
    max-width: 95vw;
    background: #25d366;
    color: inherit;
    border-radius: calc(60px/2);
    box-shadow: 1px 6px 24px 0 rgb(7 94 84 / 24%);
    cursor: pointer;
    transition: background 3s linear;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: background-color,width;
}
#whatsapp-img{
    width: 36px;
    fill: #fff;
    margin: 12px;
}
#whatsapp-img-cont:hover{
    background: #167f3d; 
}

#whatsapp-popup-contenedor-header-close{
    position: absolute;
    top: 50%;
    right: 24px;
    width: 34px;
    height: 34px;
    margin-top: -16px;
    border-radius: 50%;
    background-size: 12px;
    cursor: pointer;
    transition: background-color .3s ease-out;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: rgba(0,0,0,.4); 
}
#whatsapp-popup-contenedor-header-close:hover {
    background-color: rgba(0,0,0,.6);
}
#whatsapp-popup-contenedor-header-close-img{
    fill: #fff;
    width: 12px;
    margin: 11px;
}

#whatsapp-message{
    position: relative;
    min-height: 60px;
    padding: 17px 20px;
    margin: 0 26px 26px;
    border-radius: 32px;
    background: #fff;
    color: #4a4a4a;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
    transform: translateZ(0);
}
#whatsapp-message:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 22px;
    left: -15px;
    width: 0;
    height: 0;
    border-right: 20px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    background: transparent;
}
#whatsapp-popup-contenedor-body{
    padding: 25px 0px 70px;
    font-size: 18px;
    position: relative;
}

#whatsapp-button-contenedor{
    position: absolute;
    bottom: 8px;
    right: 8px;
}
#whatsapp-button{
    background: #25d366;
    display: inline-block;
    color: #fff;
    border-radius: 30px;
    transition: background .2s linear;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 30%);
    padding: 17px 60px 17px 20px;
    font-size: 15px;
    position: relative;
}
#whatsapp-button:hover{
    background: #57ff98; 
}
#whatsapp-send-icono{
    fill: #fff;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 25px;
}