.messenger {
    width: 1150px;
    height: 700px;
    border: 2px solid #ECF7FF;
    border-right: 0;
    display: flex;
    max-width: 100%;
}

.messenger .messengerProjects {
    padding: 16px;
    width: 496px;
    height: 100%;
    flex-shrink: 0;
    overflow-y: auto;
}

.messengerProjects .project {
    margin-top: 15px;
    width: 100%;
}

.messengerProjects .project.platform {
    margin-top: 0;
}

.messengerProjects .project .project_chatMember {
    margin-left: 70px;
    display: none;
}

.messengerProjects .project.project_parent.active .project_chatMember {
    display: block;
}

.messengerProjects .projectWrap {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    gap: 8px;
    border-radius: 8px;
}

.messengerProjects .projectWrap:hover {
    background-color: #FAFAFA;
}

.messengerProjects .project.active>.projectWrap {
    background-color: #ECF7FF;
}

.messengerProjects .project__img {
    width: 58px;
    min-width: 58px;
    height: 58px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
}

.messengerProjects .project_info {
    overflow: hidden;
    flex-shrink: 2;
    white-space: nowrap;
}

.messengerProjects .project__title {
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: #202020;
    text-overflow: ellipsis;
    overflow: hidden;
}

.messengerProjects .project__lastMessege {
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 4px;
    color: #ADB4CB;
    text-overflow: ellipsis;
    overflow: hidden;
}

.messengerProjects .project__additional {
    margin-left: auto;
}

.messengerProjects .project__date {
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #ADB4CB;
    text-align: center;
}

.messengerProjects .project__count {
    padding: 0 16px;
    width: max-content;
    margin: 0 auto;
    margin-top: 10px;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #fff;
    border-radius: 8px;
    background-color: #E41D10;
}

.messengerProjects .platform__text {
    margin-top: 8px;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #ADB4CB;
}

.messengerProjects .project__arrow {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_10279_53127)'%3E%3Cpath d='M16.59 8.58984L12 13.1698L7.41 8.58984L6 9.99984L12 15.9998L18 9.99984L16.59 8.58984Z' fill='%23ADB4CB'/%3E%3Cpath d='M16.59 8.58984L12 13.1698L7.41 8.58984L6 9.99984L12 15.9998L18 9.99984L16.59 8.58984Z' fill='black' fill-opacity='0.2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_10279_53127'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    margin-left: 24px;
}

.messengerProjects .project.active .project__arrow {
    transform: rotate(180deg);
}

.messenger .messengerChats {
    border-left: 2px solid #ECF7FF;
    width: 100%;
    height: 100%;
    position: relative;
}

.messenger .messengerChats .chat {
    display: none;
    flex-direction: column;
    height: calc(100% - 72px);
}

.messenger .messengerChats .chat.active {
    display: flex;
}

.messenger .chat .chat__header {
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
    background-color: #ECF7FF;
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.messenger .chat .chat__img {
    width: 58px;
    min-width: 58px;
    height: 58px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
}

.messenger .chat .chat__header .back {
    display: none;
    width: 24px;
    height: 24px;
    box-sizing: content-box;
    background-position: center;
    padding: 12px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.825 13L13.425 18.6L12 20L4 12L12 4L13.425 5.4L7.825 11H20V13H7.825Z' fill='%23ADB4CB'/%3E%3Cpath d='M7.825 13L13.425 18.6L12 20L4 12L12 4L13.425 5.4L7.825 11H20V13H7.825Z' fill='black' fill-opacity='0.2'/%3E%3C/svg%3E");
}

.messenger .chat .chat__title {
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: #202020;
}

.messenger .chat .chat__messagesWrapper {
    height: 100%;
    overflow-y: auto;
}

.messenger .chat .chat__messages {
    background-color: #d3e5ff;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: max-content;
    min-height: 100%;
}

.messenger .chat .chat__date {
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #ADB4CB;
    text-align: center;
}

.messenger .chat .chat__date:first-child {
    padding-top: 24px;
}

.messenger .chat .chatMessage {
    padding: 8px 0;
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.messenger .chat .chatMessage:last-child {
    padding-bottom: 24px;
}

.messenger .chat .chatMessage.input {}

.messenger .chat .chatMessage .chatMessage__img {
    width: 48px;
    min-width: 48px;
    height: 48px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
}

.messenger .chat .chatMessage .chatMessage__wrapp {
    background-color: #fff;
    border-radius: 8px 8px 8px 0;
    padding: 12px;
    position: relative;
}

.messenger .chat .chatMessage .chatMessage__text {
    width: 80%;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #202020;
}

.messenger .chat .chatMessage .chatMessage__time {
    width: 100%;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #ADB4CB;
    text-align: right;
}

.messenger .chat .chatMessage .chatMessage__corner {
    width: 25px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.859375 0C0.859375 13.2548 11.6045 24 24.8594 24H0.859375V0Z' fill='white'/%3E%3C/svg%3E");
    position: absolute;
    left: -24px;
    bottom: 0px;
    transform: rotate(-90deg);
}

.messenger .chat .chatMessage.output {
    flex-direction: row-reverse;
}

.messenger .chat .chatMessage.output .chatMessage__wrapp {
    border-radius: 8px 8px 0 8px;
}

.messenger .chat .chatMessage.output .chatMessage__corner {
    transform: none;
    left: initial;
    right: -23px;
}

.messenger .sendMessage__wrapp {
    padding: 0 24px 24px;
    background-color: #d3e5ff;
    position: relative;
    display: flex;
    align-items: center;
}

.messenger .sendMessage {
    height: 48px;
    overflow-y: auto;
    padding: 15px 19px;
    padding-right: 48px;
    width: 100%;
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;

    color: #202020;
    border: 0;
    background-color: #fff;
    border-radius: 4px;
    min-height: 48px;
    max-height: 105px;


    /* Скрываем скролл только у textarea */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE и Edge */
}

textarea::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.messenger .sendMessage::placeholder {
    color: #ADB4CB;
}

.messenger .sendMessageBtn {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 36px;
    /* top: 12px; */
    border: 0;
    outline: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M22 12.0301L3.00372 20.0406L7.72328 12.0301L3.00372 4.01953L22 12.0301Z' fill='%230F479C'/%3E%3C/svg%3E");
}

.messengerProjects .project.project_parent.active .project_chatMember {
    max-width: calc(100% - 70px);
}

.messenger-notify {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.messenger-notify .messenger-notify-item {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #4CAF50;
    color: white;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
    max-width: 300px;
    opacity: 0;
}

.messenger-notify .messenger-notify-item.show {
    transform: translateX(0);
    opacity: 1;
}

.messenger-notify .messenger-notify-item.error {
    background: #f44336;
}

.messenger-notify .messenger-notify-item.warning {
    background: #ff9800;
}

.messenger-notify .messenger-notify-item.info {
    background: #2196F3;
}

.messenger-notify .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

/* Стили лоадера */
.messenger-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #a6ce39;
    border-radius: 50%;
    animation: messenger-spin 1s linear infinite;
}

@keyframes messenger-spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Дополнительные стили для текста под лоадером */
.messenger-loader-text {
    display: none;
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    font-family: Arial, sans-serif;
}

.messenger-loader.active,
.messenger-loader-text.active {
    display: block;
}

@media (max-width: 1300px) {
    .messenger.messengerMobile .chat .chat__header .back {
        display: block;
    }

    .messenger .messengerProjects,
    .messenger .messengerChats {
        width: 100%;
    }

    .messenger:not(.onlychat-mode) .messengerChats {
        display: none;
    }

    .messenger.chatOpened .messengerChats {
        display: block;
    }

    .messenger.chatOpened .messengerProjects {
        display: none;
    }
}

@media (max-width: 540px) {
    .messenger {
        /* height: 580px; */
        border-right: 2px solid #ECF7FF;
    }

    .messengerProjects .project.project_parent.active .project_chatMember {
        max-width: calc(100% - 12px);
        margin-left: 12px;
    }

    .messengerProjects .project_chatMember .project__img {
        display: none;
    }
}

.messenger .chatExpert {
    background-color: #ffffff;
    width: 100%;
    border-radius: 4px;
    border: 2px solid #ffffff;
    padding: 15px 19px 15px 11px;
    margin-bottom: 8px;
}

.messenger .chatExpert.premium {
    border: 2px solid #4D8DEE;
}

.messenger .chatExpert__header {
    display: grid;
    grid-template-columns: 48px 1fr 56px;
    grid-gap: 20px;
    margin-bottom: 11px;
}



.messenger .chatExpert__header .chatExpert__photo {}

.messenger .chatExpert__header .chatExpert__photo img {
    width: 48px;
    height: 48px;
    background: #4D8DEE;
    border-radius: 50%;
}

.messenger .chatExpert__header .chatExpert__info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.messenger .chatExpert__header .chatExpert__preview {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 17.1px;
    line-height: 30px;
}

.messenger .chatExpert__header .chatExpert__fullname {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 17.1px;
    line-height: 30px;
}

.messenger .chatExpert.premium .chatExpert__header .chatExpert__title {
    display: flex;
    align-items: center;

}

.messenger .chatExpert.premium .chatExpert__header .chatExpert__fullname {
    color: #ffffff;
    background-color: #4D8DEE;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 17.1px;
    line-height: 30px;
    /* identical to box height, or 175% */
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 6px;

}

.messenger .chatExpert.premium .chatExpert__header .chatExpert__fullname_icon {
    width: 24px;
    height: 24px;
    background-image: url(Vector.png);
    background-position: center;
    background-size: cover;
    margin-left: 16px;
}

/* .messenger .chatExpert.premium .chatExpert__header .chatExpert__fullname_icon {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-left: 10px;
    position: relative;
} */

/* .messenger .chatExpert.premium .chatExpert__header .chatExpert__fullname_icon::after {
    color: #4D8DEE;
    content: "✓";
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
} */

.messenger .chatExpert.premium .chatExpert__hintbox {
    position: relative;
    width: 26px;
    height: 26px;
    margin-left: 15px;
}

.messenger .chatExpert.premium .chatExpert__hintbox span {
    width: 26px;
    height: 26px;
    color: #ffffff;
    background: #4D8DEE;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    border-radius: 50%;
}

.messenger .chatExpert.premium .chatExpert__hint {
    display: none;
}

.messenger .chatExpert.premium .chatExpert__hintbox span:hover+.chatExpert__hint {
    position: absolute;
    width: 245px;
    height: 74px;
    left: 13px;
    top: -72px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 15px;
    display: block;
    /* align-items: center; */
    background: #ffffff;
    color: #202020;
    background: #FFFFFF;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    border-radius: 8px 8px 8px 0px;
    z-index: 5;
    padding: 7px 15px;
}

.messenger .chatExpert__header .chatExpert__score {
    display: none;
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;

    padding: 8px 0 0 8px;


}

.chatExpert__body {
    padding-right: 76px;
}

.chatExpert.active .chatExpert__header .chatExpert__link {
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #A6CE3A;
    padding: 8px 0 0 8px;
}

.chatExpert__reason_text {
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 19.8px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #333333;


}

.chatExpert__reason_text .why {
    font-family: Roboto;
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 19.8px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.messenger .chatExpert__header .chatExpert__final_score {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.messenger .chatExpert__header .chatExpert__final_score span {
    height: 30px;
    width: 56px;

    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;

    font-family: Roboto;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;

}

.messenger .chatExpert__header .chatExpert__final_score span.good {
    background-color: #adcc4d;
}

.messenger .chatExpert__header .chatExpert__final_score span.ok {
    background-color: #e3d462;
}

.messenger .chatExpert__header .chatExpert__final_score span.bad {
    background-color: #cb8145;
}

.messenger .chatExpert__header .chatExpert__link {
    display: none;
}

.messenger .chatExpert__preview {
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 11px;

}

.messenger .chatExpert__reason_text {
    display: none;
}

.messenger .chatExpert__reason_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    /* or 152% */

    color: #A6CE3A;
    cursor: pointer
}

.messenger .chatExpert__reason_btn span {
    padding-right: 5px;
}

.messenger .chatExpert__reason_btn::after {
    content: '▼';
    color: #A6CE3A;
    font-size: 10px;
}


.messenger .chatExpert__reason_text {}



.messenger .chatExpert.active .chatExpert__header {
    grid-template-columns: 80px 1fr 56px;
}

.messenger .chatExpert.active .chatExpert__header .chatExpert__info {
    display: block;
}

.messenger .chatExpert.active .chatExpert__header .chatExpert__photo img {
    width: 80px;
    height: 80px;
    object-fit: fill;
}

.messenger .chatExpert.active .chatExpert__header .chatExpert__score,
.messenger .chatExpert.active .chatExpert__header .chatExpert__link,
.messenger .chatExpert.active .chatExpert__reason_text,
.messenger .chatExpert.active .chatExpert__header .chatExpert__info {
    display: block;
}

.messenger .chatExpert.active .chatExpert__header .chatExpert__final_score {
    display: block;
}

.messenger .chatExpert.active .chatExpert__header .chatExpert__final_score span {
    position: absolute;
    top: 0;
    right: 0;
}

.messenger .chatExpert.active .chatExpert__reason_btn {
    justify-content: center;
}

.messenger .chatExpert.active .chatExpert__reason_btn span {
    display: none;
}

.messenger .chatExpert.active .chatExpert__reason_btn::after {
    content: '▲';
    padding-left: 38px;
}

.messenger .chatExpert.active {
    padding-bottom: 0;
}

.messenger .chatActions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.messenger .chatActions .chatActions__text {
    display: inline-block;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    background: #84BC29;
    border-radius: 4px;
    padding: 15px 17px;
    cursor: pointer;
    height: 48px;
}

.search_moode_btn {

    min-width: 54px;
    height: 54px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #84BC29;

    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;

    cursor: pointer;
}



.search_moode_btn::before {
    content: '';
    width: 17px;
    height: 17px;
    background-image: url(search.png);
    background-position: center;
    background-size: cover;
}

.sendMessage__wrapp.find-mode .search_moode_btn {
    width: 118px;
    min-width: 118px !important;
    gap: 5px;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.sendMessage__wrapp.find-mode .search_moode_btn::after {
    content: ' Найди ...';
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 17px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.sendMessage__wrapp.find-mode .sendMessage {
    height: 54px;
    border: 2px solid #84BC29;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;

}

.messageRequestWaiting_wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 16px 0 24px 0;
}

.messageRequestWaiting {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 15px 16px;
    background: linear-gradient(90deg, #F0F6FF 0%, #d3e5ff 100%);
    border-radius: 4px;
}

.messageRequestWaiting__status {
    font-family: Roboto;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;

    line-height: 100%;
    letter-spacing: 0%;

    color: #A1AFC9;
    width: 50%;
}

.messageRequestWaiting__text {
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;

    color: #A1AFC9;
    width: 50%;
    text-align: end;
}

.messageRequestWaiting_wrap.loader {
    justify-content: center;

}

:root {
    --bg-dark: #07050f;
    /* Shades and tints of #a6ce39 */
    --dot-color-1: #85a727;
    /* Темный оттенок */
    --dot-color-2: #a6ce39;
    /* Основной цвет */
    --dot-color-3: #c5f04b;
    /* Светлый оттенок */
}

/* --- ИЗОЛИРОВАННАЯ АНИМАЦИЯ ИЗ 3 ТОЧЕК --- */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    /* Расстояние между точками */
}

.typing-dot {
    width: 10px;
    /* Размер точки */
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.3;
    /* Анимация прыжка с плавным cubic-bezier */
    animation: typing-bounce 1.4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* Применение оттенков #a6ce39 и задержек */
.typing-dot:nth-child(1) {
    background-color: var(--dot-color-1);
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    background-color: var(--dot-color-2);
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    background-color: var(--dot-color-3);
    animation-delay: 0.4s;
}

/* Анимация прыжка и пульсации прозрачности */
@keyframes typing-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-8px);
        /* Высота подпрыгивания */
        opacity: 1;
        /* Пиковая яркость при прыжке */
    }
}

.messenger.onlychat-mode .messengerProjects {
    display: none;
}

.messenger.onlychat-mode .chat__header .back {
    display: none !important;
}

.messenger.onlychat-mode .messengerProjects {
    display: none;
}

.chat__messagesLocked {
    width: 100%;
    height: 100%;
    background-color: #000000bd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    padding: 30px;
}

.chat__messagesLocked__text {
    z-index: 11;
    color: #ffffff;
    text-align: center;
}