.chat-popup {
    z-index: 999;   
    position: fixed;
    bottom: 100px;
    left: 10px;
    width: 350px;
    display: none;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.slide-in {
    animation: slideInUp 0.5s forwards;
}
.slide-out {
    animation: slideOutDown 0.5s forwards;
}
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}
.chat-header {
    background: #4aa485;
    box-shadow: 0 16px 32px 0 #1a0E3529;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-body {
    min-height:350px;
    padding: 10px;
    background: #e5ddd5;
    /* background-image: url('https://i.imgur.com/bEYSx4A.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.chat-message {
    padding: 7px 14px 6px;
    border-radius: 0 16px 16px;
    background-color: #fff;
    color: #111b21;
    font-size: 14px;
    word-break: break-word;
    box-shadow: rgba(0, 0, 0, .13) 0 1px .5px;
    display: flex;
    row-gap: 2px;
    flex-direction: column;
}
.chat-text[type=text] {
    font-size: 14px !important;
    border: none !important;
    padding: 10px 16px !important;
    border-radius: 50px !important;
    flex: 1;
    background-color: #fff !important;
    outline: 0 !important;
    max-width: calc(100% - 52px);
    margin: 0 !important;
    color: #111b21 !important;
    box-shadow: none !important;
}
.chat-text:focus {
    outline: none
}
.chat-time {
        color: #93939d;
        font-size: 10px;
        line-height: 10px;
}
.chat-footer {
    padding: 10px;
    background: #f0f0f0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;
}
.chat-footer input {
    border: none;
    border-radius: 20px;
    padding: 10px;
    flex-grow: 1;
}
.chat-footer button {
    background: none;
    border: none;
    color: #25D366;
    font-size: 20px;
    margin-left: 10px;
}
.whatsapp-button {
    z-index: 999;   
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.whatsapp-button:focus {
    outline: none;
}
.btn-send:focus {
    outline: none !important;
}

#overlay {
    z-index: 999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}