 
.whatsapp{
    position: fixed;
    bottom: 150px;
    right: 90px;
    width: 360px;
    max-height: 400px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 24px 0px;
    z-index: 10001
}
.whatsapp-btn{
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001
}
.whatsapp-btn img{
    width: 70px;
}
.chat-container{
    opacity: 0;
    max-height: 0;
    transition: .7s;
}
.chat-container.active{
    opacity: 1;
    max-height: 400px;
    transition: .7s;
}
.chat-container .chat-header{
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #34B7F1;
    border-top-left-radius: 4px;
    border-top-right-radius: 5px;
}
.chat-container .chat-header div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-container .chat-header div span{
    font-weight: bold;
    font-size: 20px;
}
.chat-container .chat-header img{
    border-radius: 50%;
    width: 50px;
    height: auto;
    margin-right: 10px;
}
.chat-body{
    position: relative;
    padding: 20px 15px;
    background-color: rgb(230, 221, 212);
}
.chat-body:before{
    background-image: url('whatsapp.webp');
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
}
.message{
    background: white;
    padding: 10px 10px;
    max-width: 250px;
    border-radius: 0 4px 4px 4px;
    position: relative;
}
.message:before{
    position: absolute;
    background-image: url('ugol.png');
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.message span{
    font-weight: bold;
    font-size: 14px;
    opacity: 0.4;
}
.message p{
    font-weight: bold;
    font-size: 16px;
}
#time{

    font-size: 10px;
    text-align: right;
    opacity: 0.4;
    font-weight: normal;
}

.chat-footer a img{
    width: 20px;
    margin-right: 10px;
}
.whatsapp-close {
    cursor: pointer;
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
}
.whatsapp-close:hover {
    opacity: 1;
}
.whatsapp-close:before, .whatsapp-close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
}
.whatsapp-close:before {
    transform: rotate(45deg);
}
.whatsapp-close:after {
    transform: rotate(-45deg);
}
.pulse {
    margin: 40px;
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #25d366;
    cursor: pointer;
    box-shadow: 0 0 0 rgb(37, 211, 102);
    animation: pulse 2s infinite;
}
.pulse:hover {
    animation: none;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(37, 211, 102 0.4);
        box-shadow: 0 0 0 0 rgba(37, 211, 102 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
