/**
 * NOTICE OF LICENSE
 *
 * This file is licenced under the Software License Agreement.
 * With the purchase or the installation of the software in your application
 * you accept the licence agreement.
 *
 * You must not modify, adapt or create derivative works of this source code
 *
 *  @author    PevGrow
 *  @copyright 2023 PevGrow
 */

.chat-box {
    position: fixed;
    bottom: 30%;
    right: 10px;
    /*width: 325px;
    height: 200px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 30);
    border: 1px solid #70348b;*/
    z-index: 11;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.chat-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: absolute;
}

.chat-middle p {
    font-size: 15px;
}

.chat-bubble {
    position: absolute;
    background-color: #ececec;
    border: 1px solid darkgray;
    color: black;
    /* font-weight: 600 !important; */
    border-radius: 10px 10px 0 10px;
    padding: 4px;
    max-width: 220px;
    margin-left: 1px;
    margin-top: -30px;
}

.chat-bubble p {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}

.chat-image {
    /* margin-right: 5px; */
}

.chat-image img {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.chat-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.chat-footer a {
    display: inline-block;
    background-color: #70348b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.chat-footer a:hover {
    opacity: 0.7;
}

.chat-footer p {
    margin: 0;
}

.chat-footer a > img {
    width: 39px;
    height: auto;
}

.chat-close {
    text-align: center;
}

.chat-close a {
    text-decoration: underline;
    font-weight: bolder;
}