#whatsapp-widget {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Oxygen, Cantarell, sans-serif;
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 999;
    transition: 0.5s;
}
#whatsapp-widget-target {
    width: 50px;
    height: 50px;
    display: table;
    background: #24CD63;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}
#whatsapp-widget-icon {
    position: absolute;
    display: table-cell;
    vertical-align: middle;
    max-width: 40px;
    max-height: 40px;
    top: 10%;
    left: 10%;
}
#whatsapp-widget-chat {
    position: absolute;
    display: flex;
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    margin-bottom: 96px;
    width: 280px;
    height: 80px;
    right: 0px;
    z-index: 999999;
    bottom: 250px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 24px 0px;
    transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;
}
#whatsapp-widget-chat-header {
    background: #095E54;
    height: 220px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
}
#whatsapp-widget-chat-header .close {
    display: flex;
    color: #cecece;
    cursor: pointer;
    top: 8px;
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    right: 8px;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
}
#whatsapp-widget-chat-header .bot {
    padding: 24px 20px;
    display: flex;
    align-items: center;
}
#whatsapp-widget-chat-header .bot-img {
    width: 54px;
    height: 54px;
    display: block;
    position: relative;
    border-radius: 50%;
    background: #ffffff;
}
#whatsapp-widget-chat-header .bot-img img {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: contain;
}
#whatsapp-widget-chat-header .name {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
}
#whatsapp-widget-chat-header .status {
    font-size: 13px;
    margin-top: 4px;
    line-height: 18px;
    color: #fff;
}
#whatsapp-widget-chat-chat {
    position: absolute;
    max-height: 500px;
    height: 250px;
    width: 100%;
    top: 100px;
    z-index: 0;
    background-color: rgb(230, 221, 212);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
#whatsapp-widget-chat-chat:before {
    position: absolute;
    background-size: contain;
    background: #E6DDD4;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.8;
    left: 0px;
    top: 0px;
    content: '';
    z-index: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
#whatsapp-widget-chat-chat .message {
    display: none;
    margin-top: 15px;
    position: relative;
    padding: 7px 15px 15px;
    border-radius: 0px 8px 8px;
    margin-left: 15px;
    margin-right: 15px;
    background-color: #fff;
    max-width: max-content;
}
#whatsapp-widget-chat-chat .header {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}
#whatsapp-widget-chat-chat .msg {
    font-size: 14px;
    margin-top: 4px;
    line-height: 19px;
    color: rgb(17, 17, 17);
}
#whatsapp-widget-chat-chat .date {
    position: absolute;
    font-size: 11px;
    margin-top: 2px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    right: 15px;
    bottom: 0;
}
#whatsapp-widget-chat-footer {
    position: absolute;
    bottom: 0;
    height: 60px;
    width: 100%;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
#whatsapp-widget-chat-footer a {
    padding: 10px;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
    background: #24CD63;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    margin: 6px auto;
    width: 200px;
    border-radius: 25px;
}