.support-messages-badge {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 10px;
}

.no_requests {
    padding: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: var(--tblack);

    display: flex;
    align-items: center;
    justify-content: center;
}

.support_chats_table {
    justify-content: space-between;
}

.support_chats_table__item {
    transition: all .15s ease 0s;
}
.support_chats_table__item:hover {
    opacity: 0.8;
    transition: all .15s ease 0s;
}

.support_chats_table>div{
    width: fit-content;
    align-items: center;
    justify-content: center;
    color: var(--tblack);
    font-weight: 600;
}

.support_chats_table>div.status_badge span {
    border-radius: 44px;
    font-size: 12px;
    font-style: normal;
    line-height: 20px;
    padding: 0 10px;
    font-weight: 400;
    margin: 0;
}

.support_chats_table>div.status_badge span.responded {
    background: rgba(52, 201, 159, 0.10);
    color: var(--green);
}
.support_chats_table>div.status_badge span.pending {
    background: rgb(255, 152, 0, 0.3);
    color: var(--orange);
}

.support_chats_table>div:nth-child(2).user-name {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support_chats_table>div:nth-child(2).user-name img{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}



.chat-block {
    width: 100%;
    max-height: calc(100vh - 300px);
    position: relative;
    overflow-y: auto;
}

.chat-list {
    width: 100%;
}

.chat-item__wrapper {
    width: 100%;
}

.chat-item {
    padding: 20px 5px;

    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    border-bottom: 1px solid #DAE0E6;
    border-radius: 1px;
}
.chat-item.chat-item__right {
    flex-direction: row-reverse;
    justify-content: end;
}
.chat-item .profile {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.chat-item__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 7px 12px;
    border-radius: 15px;
    background-color: #DAE0E6;
}

.chat-item__sender {
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-item.chat-item__right .chat-item__body .chat-item__sender {
    flex-direction: row-reverse;
}

.chat-item__sender .chat-item__sender-name {
    font-size: 16px;
    font-weight: 700;
}

.chat-item__sender .chat-item__status {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.chat-item__sender .chat-item__status.pending{
    background: rgb(255, 152, 0, 1);
}
.chat-item__sender .chat-item__status.responded{
    background: rgba(52, 201, 159, 1);
}

.chat-item__message {
    width: 100%;
    font-size: 14px;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}
.chat-item__message div {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
}
.chat-item__message span {
    font-size: 10px;
    font-weight: 300;
    color: #7e7e7e;
}
.chat-item__message-image {
    border-radius: 8px;
    max-width: 300px;
    max-height: 300px;
}


.chat-message {
    background: #fff;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
}

.chat-message__form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.chat-message__input {
    display: block;
    width: 100%;
    padding: 8px 8px 8px 12px;
    border: 1px solid #DAE0E6;
    border-radius: 12px;
    resize: none;
}
.chat-message__input.error {
    border-color: var(--red);
}
.chat-message__input.disabled {
    opacity: 0.8;
    pointer-events: none;
}
.chat-message__input.hidden {
    width: 0;
    height: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.chat-message__btn {
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    padding: 0px;
    cursor: pointer;
    transition: all .3s ease 0s;
}
.chat-message__btn:hover {
    opacity: 0.7;
    transition: all .3s ease 0s;
}
.chat-message__btn img {
    margin: 0;
}
#messageSendBtn,
#uploadImageButton {
    display: block;
}
#messageSendBtn.hidden,
#uploadImageButton.hidden {
    display: none;
}
#messageSendBtn.disabled,
#uploadImageButton.disabled {
    opacity: 0.7;
    pointer-events: none;
}

#uploadImageButton {
    position: relative;
}
#uploadImageButton .image-indicator {
    display: block;
    position: absolute;
    top: -3px;
    right: -8px;

    width: 8px;
    height: 8px;
    background-color: rgba(52, 201, 159, 1);
    border-radius: 50%;
}
#uploadImageButton .image-indicator.hidden {
    display: none;
}



#markAsDecided {
    border: none;
    width: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    -webkit-box-shadow: 0px 4px 6px rgba(92, 122, 234, 0.25);
    box-shadow: 0px 4px 6px rgba(92, 122, 234, 0.25);
    font-size: 16px;
    line-height: 19px;
    cursor: pointer;

    background: -o-linear-gradient(120deg, #964CE8 0%, #4E60FF 100%);

    background: linear-gradient(330deg, #964CE8 0%, #4E60FF 100%);
    height: 40px;
    border-radius: 40px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
#markAsDecided.disabled {
    opacity: 0.7;
    pointer-events: none;
}

@media (max-width: 767px){
    #markAsDecided {
        max-width: 110px;
        font-size: 14px;
    }
}