/*-----------------------------*/
/*---- css-04-messages.css ----*/
/*-----------------------------*/

/*------------------*/
/*------ CHAT ------*/
/*------------------*/
.bkg-chat-header {
    background-color: var(--white-color);
    border-radius: 0.375rem 0.375rem 0 0;
}

.active-chat {
    min-height: 65px;
}

.active-chat:hover {
    pointer-events: auto;
}

.bkg:hover {
    background-color: #c4def378;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 100%;
    word-wrap: break-word;
    font-family: "Inter", sans-serif !important;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.bubble-owner {
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 12px 12px 0px 12px;
}

.bubble-other {
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 0px 12px 12px 12px;
}

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

.message-text {
    color: var(--white-color);
    font-size: 16px;
    line-height: 1.2rem;
}

.btn-send {
    position: absolute;
    right: 10px;
    bottom: 0px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    height: 100%;
}

.btn-send img {
    width: 24px;
    height: 24px;
}

.mobile-chat-bar-message {
    padding: 0 24px;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
}

.x-close-icon{
    background-color: var(--white-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.x-close-icon img{
    width: 16px;
    height: 16px;
}

.input-send-wrapper {
    position: relative;
}

.input-send-wrapper .form-control {
    border-radius: 12px !important;
    padding: 14px 40px 14px 16px;
    border:none;
}

.input-send-wrapper .btn-send {
    position: absolute;
    right: 10px;
    height: 52px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.input-send-wrapper .btn-send img {
    width: 24px;
    height: 24px;
}
