.wa-widget {
    position: fixed;
    left: 0;
    bottom: 0;
    margin: 0;
}
.wa-widget:last-child {
    margin-right: 0;
}
.wa-widget.expanded {
    border-radius: 1rem;
}
.wa-widget .wa-widget-content {
    width: 360px;
    transition: all 0.25s linear;
    visibility: hidden;
    position: absolute;
    bottom: 4rem;
    opacity: 0;
    left: 0;
    z-index: -1;
}
.wa-widget .wa-widget-content.expanded {
    opacity: 1;
    visibility: visible;
    z-index: 99;
}
.wa-widget-content,
.wa-widget-toggle {
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}
.wa-widget-toggle {
    background-color: #fff;
    padding: 1rem;
    height: 3rem;
    width: 3rem;
    border-radius: 9rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    cursor: default;
    position: fixed;
    bottom: 0%;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease-in-out;
}
#whatsapp .fab{
    position: absolute;
    left: 6px;
    color: #4fce5d;
}
.wa-widget-toggle::before {
    content: '';
    height: 12px;
    width: 12px;
    top: 6px;
    right: 6px;
    z-index: 1;
    position: absolute;
    background-color: red;
    border-radius: 10px;
}
.wa-widget-content {
    overflow: hidden;
    border-radius: 0.75rem;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 15px;
}
.chat-header {
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    background-color: #095e54;
    color: #fff;
}
.chat-header .chat-admin-picture {
    height: 3rem;
    width: 3rem;
    margin-right: 1rem;
    position: relative;
}
.chat-header .chat-admin-picture img {
    width: 100%;
    height: 100%;
}
.chat-header .chat-admin-picture::before {
    content: "";
    height: 7px;
    width: 7px;
    border-radius: 7px;
    background-color: #4fce5d;
    border: 2px solid #095e54;
    position: absolute;
    bottom: 2.333333px;
    right: 2.333333px;
}
.chat-header h4,
.chat-header p {
    margin: 0.2rem;
    font-size: 16px;
    letter-spacing: 0.7px;
    line-height: 19px;
}
.chat-content {
    padding: 1rem;
    background-color: #d1ecd4;
}
.chat-content .chat-admin-picture {
    height: 2rem;
    width: 2rem;
    margin-right: 0.5rem;
}
.chat-item {
    display: inline-flex;
    align-items: flex-end;
}
.chat-item p {
    margin-bottom: 0px;
    padding: 1rem;
    font-size: 12px;
    background-color: #fff;
    border-radius: 1rem;
}
.chat-item p:first-child {
    border-top-left-radius: 0;
}
.chat-form {
    background-color: #fff;
    padding: 0.25rem;
}
.chat-form input,
.chat-form textarea {
    width: 100%;
    padding: 0.6rem 1rem;
    background-color: inherit;
    font-family: inherit;
    resize: none;
    margin-bottom: 0.25rem;
    transition: all 0.25s linear;
}
.chat-form input,
.chat-form input:focus,
.chat-form textarea {
    border: 1px solid transparent;
    outline: 0;
    border-radius: 0.5rem;
}
.chat-form .chat-send {
    border: 0;
    outline: 0;
    padding: 0.5rem 0.75rem;
    width: 100%;
    font-weight: 600;
    font-size: 1rem;
    background-color: #4fce5d;
    color: #fff;
    cursor: pointer;
    border-radius: 0.5rem;
}
.chat-form .required {
    border: 1px solid rgba(255, 0, 0, 0.25);
    background-color: rgba(255, 0, 0, 0.1);
}
@media (max-width: 460px) {
    .wa-widget {
        width: 100%;
    }
    /* .wa-widget-toggle {
        float: right;
    } */
    .wa-widget-content {
        width: auto;
        left: 1rem;
        right: 1rem;
    }
    .wa-widget-toggle{
        margin: 0px 0.5rem;
    }
}
