.close-chat-btn {
    background: transparent;
    border: 0;
    color: #fff
}

.chat-container {
    position: relative;
}

.chat-container .chat-header {
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: 10px;
    background: #0A1632;
    flex-grow: 1;

}

.chat-container .chat-header button {
    background: var(--orange);
    color: #fff;
    border: 0;
    font-size: 14px;
    padding: 12px 8px;
    z-index: 999;
    border-radius: 6px 0 0 6px;
}

.chat-container .chat-header button:focus,
.chat-container .chat-header button:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.chat-messages {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    overflow: auto;
    width: 340px;
    height: calc(100vh - 138px);
    border-radius: 0;
    background: #0D254B;
    position: fixed;
    top: 63px;
    right: 0;
    max-width: 100%;
}

.chat-messages .load-more>div {
    background: #0A1632;
}

.chat-messages .close-chat-btn {
    position: absolute;
    top: 10px;
    left: -10px;
    z-index: 9999999999999999999999999;
    background: #0057E1;
    transform: translate(50%, 0);
    padding: 6px 11px;
    border-radius: 5px;
}

.message-form input,
.message-form input:focus,
.chart-form input,
.chart-form input:focus {
    background: #0A1632;
    border: 0;
    padding: 10px;
    font-size: 14px;
    color: #fff
}

.message-form input::placeholder,
.chart-form input::placeholder {
    color: #fff;
}

.btn-chat,
.btn-chat:focus,
.btn-chat:hover,
.btn-chat:active {
    background: #0057E1 !important;
    color: #fff !important
}



.chats-wrapper {
    padding: 4px;
    margin: 0;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px
}

.chats-wrapper img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    padding: 2px;
}

.chats-wrapper h5 {
    margin: 0;
    color: #f8f8f8 !important;
    font-size: 14px;
    font-weight: 500;
}

.chats-wrapper p {
    margin: 0;
    word-break: break-word;
    color: #c7c7c7;
    font-size: 14px;
}

.chats-wrapper .nmt-box {
    color: #f8f8f8;
    position: relative;
    width: 100%;
}

.chats-wrapper .nmt-box .time {
    font-size: 9px;
    position: absolute;
    top: 0;
    right: 0;
}


.chart-form form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    background: transparent;
}