.content {
    padding: 0;
    display: flex;
    border-radius: 20px;
    /* background-color: #F6FAFF; */
    width: 100%;
}

.content__top {
    width: 100%;
    max-width: 908px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.content__top-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 130.023%;
    color: #1B193F;
    text-align: center;
}

.content__top-text {
    color: rgba(8, 8, 17, 0.58);
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    font-weight: 500;
    line-height: 130.023%;
}

.chat {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0px 4px 19px 0px rgba(12, 57, 99, 0.10);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.chat__inner {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    padding: 0 10px 20px;
    min-height: 700px;
    max-height: 700px;
}

.left-img {
    width: 224px;
    height: 224px;
    border-radius: 500px;
}

.range {
    display: block;
    width: 100%;
    max-width: 133px;
    appearance: none;
    -moz-appearance: none;
    height: 6px;
    background-color: #F1F3F5;
    border-radius: 0.857px;
}

.range-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 3px;
}

.range-wrapper button {
    font-size: 0;
}

.range::-webkit-slider-thumb {
    position: relative;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: url('../images/thumb-btn.svg');
}

.questions__title {
    color: #1B193F;
    font-family: Manrope;
    font-size: small;
    font-weight: 600;
    margin-bottom: 12px;
    padding-left: 5px;
}

.questions {
    height: 240px;
}

.questions-list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    height: 190px;
    overflow: auto;
    padding-right: 10px;
}

@media (max-width: 1024px) {
    .questions-list a {
        font-size: 12px;
    }

    .questions {
        margin-top: 12px;
    }
}

.tabs {
    display: flex;
    column-gap: 5px;
    margin-bottom: 10px;
}

.tabs button {
    padding: 6px 3px;
    border-radius: 16px;
    border: 1px solid #C0C0C0;
    min-width: 67px;
}

.tabs button.active {
    background-color: #1B193F;
    color: #fff;
}

.chat-middle {
    display: flex;
    flex: 1;
    /* position: relative; */
    width: 100%;
}

.chat-middle.active {
    display: block;
}

.chat-box {
    display: flex;
    flex: 1;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid #C0C0C0;
    padding: 15px 6px 9px;
    /*max-width: 576px;*/
    /*width: 576px;*/
    max-width: 100%;
    width: 100%;
}

.neuron-chat__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 6px;
    padding-right: 35px;
    column-gap: 46px;
    margin-bottom: 15px;
}

.neuron-chat__tranlate {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.neuron-chat__tranlate.mobile {
    column-gap: 2px;
    transform: scale(0.7);
}

.toggle-btn {
    position: relative;
    appearance: none;
    flex-shrink: 0;
    -moz-appearance: none;
    width: 36px;
    height: 20px;
    background-color: #C8C8C8;
    border-radius: 25px;
    padding: 1px;
    transition: .3s ease-out;
}

.toggle-btn::before {
    position: absolute;
    content: '';
    left: 1px;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    transition: .3s all;
}

.toggle-btn:checked {
    background-color: #07EF02;
}

.toggle-btn:checked::before {
    transform: translateX(92%);
}

.lang {
    flex-shrink: 0;
}

.neuron-chat__call {
    column-gap: 8px;
    display: flex;
}

.neuron-chat__call button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 29.231px;
    border: 1px solid #E3E8E7;
}

.chat-inner {
    display: flex;
    flex: 1 1 auto;
    flex-flow: column nowrap;
    overflow-y: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.chat-inner> :first-child {
    margin-top: auto !important;
}

.chat-inner::-webkit-scrollbar {
    width: 12px;
    border-radius: 10px;
    background-color: #F6FAFF;
}

.chat-inner::-webkit-scrollbar-thumb {
    width: 100%;
    background-color: #E5F0FE;
    border-radius: 10px;
}

.file {
    font-size: 0;
}

.chat-item {
    max-width: 60%;
    min-width: 40%;
    margin-bottom: 15px;
    padding-right: 25px;
}

.chat-item.user {
    margin-left: auto;
    width: fit-content;
}

.chat-item.ai {
    margin-right: auto;
}

.chat-item__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.chat-item__name {
    color: #1B193F;
    font-size: small;
    font-weight: 600;
    line-height: 20px;
}

.chat-item__date {
    color: #686F7B;
    font-family: Inter;
    font-size: small;
    font-weight: 400;
    line-height: 18px;
}

.chat-item__text {
    word-wrap: break-word;
    padding: 10px 14px;
    background-color: #F6FAFF;
    border-radius: 8px 8px 0 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
}

.chat-item__text code {
    text-wrap: auto;
}

.images {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.images img {
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
}

.more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #C0C0C0;
    background-color: #F6F7FF;
    margin-top: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
}

.img-box img {
    display: block;
    width: 100%;
    margin-bottom: 6px;
}

.img-box .chat-item__text {
    border-radius: unset;
    background-color: transparent !important;
    box-shadow: unset;
}

.img-wrapper {
    background-color: #F6F7FF;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
}

.download-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 27px 14px;
    border-radius: 8px 0px 8px 8px;
    background-color: #F6F7FF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
}

.download-wrapper__left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    word-break: break-all;
}

.download-wrapper a {
    display: flex;
    align-items: center;
    color: #1B193F;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    padding-right: 14px;
}

.typing-indicator {
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 14px;
    margin-top: 2px;
}

.typing-indicator__name {
    font-family: Inter;
    font-size: small;
    font-weight: 600;
    line-height: 20px;
    color: #344054;
}

.typing-indicator__text {
    font-family: Inter;
    font-size: x-small;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    color: #667085;
}

.send-message {
    width: 100%;
    bottom: 10px;
    display: flex;
    column-gap: 5px;
    position: relative;
}

.message-box {
    width: 100%;
    display: flex;
    padding: 8px 10px 8px 12px;
    border-radius: 10px;
    border: 1px solid #C0C0C0;
    background: #fff;
    max-height: 80px;
    min-height: 50px;
}

.message-box__left {
    display: flex;
    align-items: center;
    width: 100%;
}

.message-box__right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

textarea {
    display: block;
    width: 100%;
    resize: none;
    overflow-x: visible;
}

.voice-message {
    display: flex;
    align-items: center;
}

.message-box__right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.send,
.stop-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--main-color);
    flex-shrink: 0;
    transition: .3s;
}

.stop-btn {
    background-color: transparent;
}

.send:hover {
    opacity: .8;
}

.gen {
    padding-right: 35px;
}

.experts {
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
    height: 680px;
    overflow: auto;
}

.experts::-webkit-scrollbar {
    width: 12px;

}

.experts::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #F1F3F5;
}

.experts::-webkit-scrollbar-thumb {

    /* цвет плашки */
    border-radius: 20px;
    background: #1B193F;
}

/* .experts::before {
    content: '';
    width: 248px;
    height: 1px;
    background: #c0c0c0;
    position: absolute;
    top: 0px;
    left: 5px;
} */

.experts.remove {
    display: none;
}

.circle {
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #F91C1C;
    position: absolute;
    right: 5px;
    top: 5px;
}

.circle.active {
    background-color: #07EF02;
}

.search-box {
    position: relative;
    padding: 6px 9px 6px 10px;
    border-radius: 10px;
    border: 1px solid #C0C0C0;
    margin-bottom: 6px;
}

.search-box input {
    width: 100%;
    font-size: 14px;
}

.search-box svg {
    position: absolute;
    right: 9px;
    top: 6px;
    bottom: 6px;
}

.expert-results {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    padding-right: 5px;
    overflow-y: auto;
}

.expert-results::-webkit-scrollbar {
    width: 17px;
    border-radius: 10px;
    background-color: #F6FAFF;
}

.expert-results::-webkit-scrollbar-thumb {
    width: 100%;
    background-color: #E5F0FE;
    border-radius: 10px;
}

/* .experts::after {
    position: absolute;
    content: '';
    top: 94%;
    left: -9px;
    width: 230px;
    height: 59px;
    background: linear-gradient(181deg, rgba(255, 255, 255, 0.00) -32.18%, #FFF 90.03%);
    filter: blur(2px);
} */

.result-card {
    position: relative;
    padding: 11px 10px 14px 10px;
    border-radius: 8px;
    border: 1px solid #C0C0C0;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
    background: #fff;
}

.result-card.active {
    border: 1px solid #1AE116;
}

.result-card__top {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 16px;
}

.result-card__avatar {
    position: relative;
}

.result-card__avatar svg {
    position: absolute;
    right: 0;
    right: 0;
}

.result-card__top img {
    width: 54px;
    height: 54px;
    border-radius: 54px;
    border: 2.769px solid #FFF;
}

.expert-name {
    display: flex;
    column-gap: 6px;
    color: #1B193F;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
}

.expert-skill {
    font-size: 14px;
    font-weight: 500;
}

.location {
    display: flex;
}

.location svg {
    flex-shrink: 0;
}

.location__name {
    font-size: 13px;
    font-weight: 500;
    color: #686F7B;
}

.expert-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 14px;
}

.expert-skills a {
    padding: 2px 5px;
    border-radius: 16px;
    border: 1px solid #C0C0C0;
    background-color: #F6FAFF;
    font-size: 12px;
    font-weight: 500;
    color: #1B193F;
}

.average {
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #C0C0C0;
}

.average__type {
    font-size: 14px;
    font-weight: 500;
    color: #686F7B;
}

.average__type span {
    color: #1B193F;
    font-weight: 600;
    margin-bottom: 5px;
}

.communication-text {
    font-size: 14px;
    font-weight: 500;
    color: #686F7B;
    margin-bottom: 3px;
}

.communication-items {
    display: flex;
    column-gap: 4px;
}

.communication-items button {
    display: flex;
    align-items: center;
    column-gap: 3px;
    border-radius: 7.576px;
    border: 0.758px solid #686F7B;
    padding: 3px;
}

.communication-items button.active {
    border: 0.758px solid #5A95EE;
}

.price {
    color: #039700;
    font-size: 14px;
    font-weight: 500;
}

.price span {
    font-weight: 600;
    color: #1B193F;
}

.connect {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    padding: 16px;
    border-radius: 10px;
    border: 1.23px solid #1B193F;
    max-height: 32px;
    margin-top: 15px;
    color: #1B193F;
}

.popup {
    display: flex;
    align-items: flex-end;
    max-width: 597px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.37);
    height: 100%;
    border-radius: 16px;
    padding: 25px 25px 184px 25px;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out;
}

.popup.active {
    opacity: unset;
    visibility: unset;
}

.popup__item {
    width: 100%;
    max-width: 510px;
    background-color: #F6FAFF;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
    padding: 10px;
    background-color: #fff;
}

.popup__item img {
    display: block;
}

.popup__item .send-message {
    margin-top: 9px;
}

#radio {
    position: relative;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #C0C0C0;
    cursor: pointer;
}

#radio::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #5A95EE;
    transition: .3s ease-out;
    opacity: 0;
}

#radio:checked::after {
    opacity: unset;
}

#radio:checked {
    border: 1px solid #1B193F;
}

.tabs-mobile {
    display: none;
    padding-left: 2px;
    padding-right: 2px;
    gap: 5px;
    padding-top: 5px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.tabs-mobile button {
    color: #686F7B;
}

.experts__title {
    font-size: 18px;
    font-weight: 600;
}

.neuron-chat__start {
    flex: 0 1 auto;
    position: relative;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 5px;
}

.question-mobile {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    position: absolute;
    right: 6px;
    top: calc(100% - 8px);
    z-index: 1;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 19px 0px rgba(12, 57, 99, 0.10);
    transition: .3s ease-out;
    opacity: 0;
    visibility: hidden;
}

.question-mobile.active {
    opacity: unset;
    visibility: unset;
}

.question-mobile a {
    display: block;
    padding: 3px 5px;
    background-color: #F6FAFF;
    border-radius: 8px;
    font-size: small;
    font-weight: 500;
    line-height: 171.429%;
    color: #1B193F;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
}

.range-box {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.neuron-chat__img {
    width: 60px;
    height: 60px;
}

.neuron-chat__img img {
    border-radius: 255.474px;
    border: 1.533px solid #FFF;
    box-shadow: 0px 2.0438px 9.70803px 0px rgba(12, 57, 99, 0.10);
}

.mobile-range {
    margin-bottom: 0;
    width: 62px;
}

.mobile-range .range {
    display: block;
    width: 100%;
}

.questions-btn {
    display: flex;
    align-items: stretch;
    padding: 6px;
    border-radius: 10px;
    border: 1px solid #686F7B;
    font-size: small;
    font-weight: 500;
    color: #1B193F;
    max-width: 83px;
}

.questions-btn svg {
    transition: .3s ease-out;
}

.questions-btn svg.active {
    transform: rotate(-180deg);
}

.back-btn {
    align-items: center;
    display: none;
}

.about {
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    column-gap: 20px;
    margin-bottom: 29px;
}

.about-card {
    flex: 1;
    padding: 30px 44px;
    border-radius: 16.286px;
    background-color: #fff;
    box-shadow: 0px 4px 19px 0px rgba(12, 57, 99, 0.10);
}

.about-card strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #1B193F;
    margin-bottom: 9px;
}

.about-card p {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #1B193F;
}

.mobile-item {
    display: none;
}

.expert-mobile-btn {
    width: calc(100% - 8px);
    display: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
    padding: 10px 14px;
    border-radius: 8px;
    background-color: #727FE8;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
    color: #fff;
    margin-bottom: 9px;
}

.card-mobile {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 9px;
    display: none;
}

.groups {
    position: relative;
}

.group-context.active {
    display: block;
}


.left-btns {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-bottom: 20px;
}

.history-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #686F7B;
    max-height: 39px;
}

.new-chat {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #686F7B;
    max-height: 39px;
}

.mobile-btns {
    display: none;
    column-gap: 10px;
    margin-bottom: 4px;
    max-height: 35px;
}

.mobile-btns button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #686F7B;
    flex: 1;
    padding: 10px;
    border-radius: 10px;
}

.mobile-history {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out;
}

.mobile-history.active {
    opacity: unset;
    visibility: unset;
}

.mobile-history__item .history-popup__close {
    top: 4px;
    right: 4px;
}

.mobile-item {
    display: none;
}

.history-popup {
    position: absolute;
    top: 45px;
    left: 7px;
    z-index: 2;
    transition: .3s ease-out;
    opacity: 0;
    visibility: hidden;
}

.history-popup.admin {
    position: unset;
}

.settings-popup {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, 0.7);
}

.settings-popup.active {
    display: block;
}

.history-popup__item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    background: #fff;
    z-index: 100;
    padding: 30px 40px;
    border: 1px solid #C0C0C0;
    border-radius: 16px;
}

.history-popup.active {
    opacity: unset;
    visibility: unset;
}

.history-popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
}

.history-popup__title {
    color: #1B193F;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 13px;
}

.history-search {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 14px;
}

.history {
    border-radius: 16px;
    border-top-left-radius: 0;
    border: 1px solid #686f7b;
    box-shadow: 0px 4px 19px 0px rgba(12, 57, 99, 0.10);
    padding: 10px 10px 10px 0;
    background: white;
    max-width: 400px;
}

.history__title {
    font-size: medium;
    font-weight: 600;
    color: #1B193F;
    margin-bottom: 10px;
}

.history-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.history-list::-webkit-scrollbar {
    width: 12px;
    border-radius: 10px;
    background-color: #F6FAFF;
}

.history-list::-webkit-scrollbar-thumb {
    width: 100%;
    background-color: #E5F0FE;
    border-radius: 10px;
}

.history-list li {
    position: relative;
}

.history-list:last-child {
    margin-bottom: 0;
}

.history-img {
    width: 30px;
    border-radius: 50%;
}

.history-items {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 6.03px 13.71px 0px #617E981A;
}

.history-items__time {
    display: block;
    font-size: small;
    color: #C0C0C0;
    font-weight: 400;
    margin-left: auto;
}

.history-items__left {
    width: 100%;
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
}

.history_items__left_no_border {
    border-top: 1px solid rgb(80, 227, 15) !important;
    border-bottom: 1px solid rgb(80, 227, 15) !important;
}

.history-desc {
    width: 100%;
}

.history-desc strong {
    display: block;
    font-size: small;
    color: #1B193F;
}

.history-desc p {
    font-size: x-small;
    color: #686F7B;
}

.history-edit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid #E3E8E7;
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateY(-10px);
    margin-right: 5px;
}

.history-context {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    position: absolute;
    right: 13px;
    bottom: -42px;
    padding: 11px 10px 12px 16px;
    background-color: #fff;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0px 4px 19px 0px rgba(12, 57, 99, 0.10);
    transition: .3s ease-out;
    opacity: 0;
    visibility: hidden;
}

.history-context.active {
    opacity: unset;
    visibility: unset;
}

.history-context__btn {
    flex: 0 0 auto;
}

.history-context__btn:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.commands {
    max-width: 180px;
    width: 180px;
    min-width: 180px;
    /*margin-top: 40px;*/
}

.commands__title {
    color: #1B193F;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.commands-list {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    overflow-y: auto;
    max-height: 650px;
}

.commands-list button {
    display: block;
    width: 100%;
    border-radius: 8px;
    background: #F6FAFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
    padding: 7px 7px;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    color: #1B193F;
    text-align: left;
}

.qr_description_block {
    overflow-y: auto;
    height: 425px!important;
    width: 244px!important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: center;
}

.qr_description_block::-webkit-scrollbar {
    display: none;
}

.search-result-box::-webkit-scrollbar {
    width: 100%;
    border-radius: 10px;
    background-color: #F6FAFF;
}

.search-result-box::-webkit-scrollbar-thumb {
    width: 17px;
    background-color: #E5F0FE;
    border-radius: 10px;
}

.search-result-item {
    max-height: 95px;
    height: 75px;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid var(--stroke, #c0c0c0);
    display: flex;
    flex-direction: row;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none;
    cursor: pointer;
}

.search-result-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 5px;
    width: 150px;
    max-width: 150px;
}

.search-result-description {
    display: flex;
    flex-direction: row;
    font-size: .65rem;
    line-height: 1rem;
}

.search-result-item-name {
    font-weight: 500;
    font-size: .65rem;
    line-height: 1rem;
    max-height: 39px;
    display: grid;
    grid-template-columns:repeat(auto-fit,150px);
    grid-template-rows:auto auto;
    grid-auto-rows:0;
    overflow:hidden;
}

.search-result-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    height: 80px;
    max-height: 80px;
    min-height: 100px;
    column-gap: 10px;
    width: 540px;
    max-width: 540px ;
}

.chat-item__text.admin {
    display: flex;
}

.vue-notification {
    background: #FF0000 !important;
    border-left: 5px solid #FF0000 !important;
}

.vue-notification-group {
    top: 50%;
    bottom: auto !important;
}

@media (max-width: 1000px) {

    .search-result-box {
        width: 340px;
        max-width: 340px;
    }

    .history-search {
        width: calc(100% - 21px);
    }

    .mobile-history__item {
        padding: 4px 4px 20px 13px;
    }

    .mobile-btns {
        display: flex;
    }

    .chat-middle {
        display: flex;
        flex-direction: column;
        max-width: unset;
    }

    .chat-box {
        max-height: 790px;
        height: 83%;
        display: flex;
        padding: 15px 8px 5px 10px;
        justify-content: flex-end;
        max-width: 100%;
        width: 100%;
    }

    .chat-inner {
        min-height: 50vh;
        margin-bottom: 5px;
        margin-top: 5px;
        height: 535px;
        max-height: 535px;
    }

    .neuron-gpt {
        height: 280px;
    }

    .chat-item {
        max-width: 90%;
        padding-right: 8px;
    }

    .neuron-chat__call {
        display: flex;
    }

    .neuron-chat__top {
        padding-right: 0;
    }

    .about {
        display: none;
    }

    .content__top {
        display: none;
    }

    .neuron-chat__start {
        display: flex;
    }

    .experts {
        max-width: unset;
        flex: 1;
        margin-top: 0;
    }

    .chat__inner {
        padding: 5px 5px 5px 5px;
    }

    .expert-results {
        max-height: 885px;
        padding-left: 5px;
    }

    .expert-results::-webkit-scrollbar {
        display: none;
    }

    .result-card.active,
    .result-card {
        border: none;
        box-shadow: 0px 4px 19px 0px rgba(12, 57, 99, 0.10);
    }

    /* .experts::after {
        top: 94%;
        left: 0;
        width: 253px;
    } */

    .tabs {
        display: none;
    }

    .tabs-mobile {
        display: flex;
        max-width: calc(100vw - 20px);

        flex-wrap: inherit !important;
        overflow-x: auto;
        overflow-y: hidden;
        height: 60px;
        min-height: 60px;
    }

    .tabs-mobile button {
        white-space: nowrap;
        min-width: 150px;
        max-width: inherit !important;
        width: 100%;
        height: 100%;
        max-height: 40px;
    }

    .experts__title {
        margin-bottom: 3px;
    }
}

@media (max-width: 768px) {
    .history-popup {
        right: auto;
        top: 104px;
        left: 1px;
    }
}

@media(max-width: 600px) {
    .chat__inner {
        flex-direction: column;
        gap: 10px;
    }

    .chat-box {
        border-radius: 10px;
    }

    .chat {
        box-shadow: none;
    }
}

@media (max-width: 759px) {
    .back-btn {
        display: flex;
    }

    .mobile-item {
        display: block;
    }

    .range-box {
        column-gap: unset;
    }

    .expert-mobile-btn {
        display: block;
    }

    .card-mobile {
        display: block;
        width: calc(100% - 15px);
    }

    .back-btn {
        margin-right: 25px;
    }

    .neuron-chat__img {
        margin-right: 6px;
    }

    .experts {
        display: none;
    }

    .experts-mobile {
        display: block;
        min-width: 221px;
    }

    /* .experts::after {
        width: 100%;
    } */

    .mobile-range {
        display: none;
    }

    .range-wrapper {
        margin-bottom: 15px;
    }

    .questions {
        max-height: 270px;
        height: auto;
        padding-left: 10px;
    }

    .questions-list {
        max-height: 245px;
        height: auto;
    }
}

@media (max-width: 700px) {
    .history-popup {
        max-width: 340px;
        left: 20px;
    }

    .range-wrapper {
        display: none;
    }

    .range-box {
        margin-left: auto;
    }
}

@media (max-width: 423px) {
    .question-mobile {
        top: 100%;
    }
}

.left {
    min-width: 224px;
}

@media (max-width: 1024px) {
    .left {
        min-width: 274px;
    }
}

.chat__video {
    align-items: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 15px;
    max-width: 304px;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

li {
    cursor: pointer;
}

.css-video-front {
    position: absolute;
    border-radius: 50%;
    display: flex;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    z-index: 2;
    opacity: 100;
    /*transition: visibility 0s, opacity 0.5s linear;*/
    align-items: center;
}

.css-video-back {
    position: absolute;
    border-radius: 50%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    /*transition: visibility 0s, opacity 0.5s linear;*/
    align-items: center;
}

.video_container {
    display: grid;
    place-items: center;
    margin-top: 0;
}

.css-video-front-stream {
    grid-area: 1 / 1;
    aspect-ratio: 1 / 1;
    z-index: 2;
    display: block;
}

.css-video-back-stream {
    grid-area: 1 / 1;
    aspect-ratio: 1 / 1;
    z-index: 1;
    display: none;
}

.hide_typing_indicator {
    visibility: hidden;
}

.chat-item__text_copy {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 2px;
    right: 2px;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

.chat-item__text_copy.hidden {
    display: none;
}

.chat-item__text_container {
    position: relative;
}

.chat-item__text {
    word-wrap: break-word;
}

.chat-inner {
    width: 100%;
}

.chat-item {
    max-width: 500px;
}

.message-box__left textarea {
    /* margin-top: 15px; */
    margin-left: 6px;
    max-height: 80px;
    overflow-y: auto;
    padding-right: 10px;

}

.message-box__left textarea::-webkit-scrollbar {
    width: 12px;

}

.message-box__left textarea::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #F1F3F5;
}

.message-box__left textarea::-webkit-scrollbar-thumb {

    /* цвет плашки */
    border-radius: 20px;
    background: #1B193F;
}

.send-message {
    max-height: 100%
}

@media (max-width: 1024px) {
    .chat__inner {
        max-height: none;
    }
}

@media (max-width: 1000px) {
    .chat-inner {
        min-height: 0vh;
    }
}

.message-box__left textarea::placeholder {}

.send-message {
    justify-content: flex-end;
    align-items: flex-end;
}

.voice-message {
    /*align-items: flex-end;*/
    /*justify-content: flex-end;*/
    height: 100%;
}

.chat__experts-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat__experts-points {
    display: flex;
    gap: 4px;
}

.chat-experts__main-point {
    color: var(--gray, #686F7B);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    margin-top: 6px;
    /*padding: 15px 15px 9px 15px;*/
}

.experts__main-img {
    margin-bottom: 6px;
    border-radius: 6px;
    background: linear-gradient(0deg, #F4F7FF 0%, #F4F7FF 100%), lightgray 50% / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 58px;
}

.chat__experts-point {

    height: 28px;
    width: 250px;
    border-radius: 16px;
    border: 1px solid var(--stroke, #C0C0C0);
    background: var(--white, #FFF);
    padding: 3px 3px;
    justify-content: center;
    align-items: center;
    display: flex;
    color: var(--gray, #686F7B);
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.chat__experts-point.active {
    border-radius: 16px;
    background: var(--black, #1B193F);
    border: 1px solid var(--stroke, #1B193F);
    color: var(--white, #FFF);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.workers__main-title {
    margin-top: 10px;
    color: #0650BE;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130.1%;
    /* 23.418px */
    text-decoration-line: underline;
}

.workers__main-subtitle {
    margin-top: 4px;
    color: var(--black, #1B193F);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130.1%;
    /* 20.816px */
}

.chat-workers__main-point button {
    transition: .4s;
    margin-top: 20px;
    width: 100%;
    padding: 6.5px 14px;
    text-align: center;
    color: var(--black, #1B193F);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 10px;
    border: 1.23px solid var(--black, #1B193F);
}

.chat-workers__main-point button:hover {

    background: #1B193F;
    color: white;

    border: 1.23px solid var(--black, #1B193F);
}

.chat-workers__main-points {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chat-workers__main-point {
    border-radius: 8px;
    background: var(--white, #FFF);

    /* 1 */
    box-shadow: 0px 4px 19px 0px rgba(12, 57, 99, 0.10);
    padding: 10px 10px 25px 10px;
}

.chat__experts-search {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 6px 7px 11px;
    border-radius: 10px;
    border: 1px solid var(--stroke, #C0C0C0);
    background: var(--white, #FFF);

}

.chat-experts {
    min-width: 243px;
    max-width: 270px;
    /* height: 750px; */
}

.disable-scrollbars::-webkit-scrollbar {
    background: transparent; /* Chrome/Safari/Webkit */
    width: 0px;
}

.chat-experts-mobile {
    display: none;
}

@media (max-width:767px) {
    .css-video-front-stream {
        grid-area: 1 / 1;
        aspect-ratio: 1 / 2;
        /*object-fit: cover;*/
        z-index: 2;
        opacity: 100;
        /*transition: visibility 0s, opacity 0.5s linear;*/
    }

    .css-video-back-stream {
        grid-area: 1 / 1;
        aspect-ratio: 1 / 2;
        /*object-fit: cover;*/
        z-index: 1;
        opacity: 0;
        /*transition: visibility 0s, opacity 0.5s linear;*/
    }

    .chat-experts {
        display: none;
    }

    .chat-workers__main-point {
        display: flex;
        align-items: center;
    }

    .chat-experts-mobile {
        color: var(--black, #1B193F);
        font-family: Manrope;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-decoration-line: underline;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 25px;
        border-radius: 47px;
        border: 1px solid var(--stroke-light, #E3E8E7);
        background: var(--white, #FFF);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
        margin-bottom: 15px;
    }
}

.workers__main-info {
    margin-top: 7px;
}

.company_name {
    color: var(--black, #1B193F);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

@media (max-width: 600px) {
    .chat-middle {
        max-height: 500px;
    }

    .content {
        height: auto;
    }

    .chat {
        border-radius: 0;
    }

    .message-box {
        padding-left: 2px;
        padding-right: 4px;
    }
    
    .message-box__left textarea {
        margin-left: 0;
    }

    .chat-item__date {
        font-size: 11px;
    }

    .questions {
        margin-top: 0;
    }

    .chat-item__text {
        background: #fff;
        box-shadow: none;
        padding: 4px 2px;
    }

    .chat-item.user {
        width: 265px;
    }

    .chat-item.user .chat-item__top {
        margin-bottom: 0;
    }
}

.vc-input[type='text'] {
    width: 100%;
    outline: none;
    border-radius: 8px;
    height: 35px;
    border: 0;
    margin: 5px 0;
    background-color: var(--input-background-color);
    padding: 0 0.5rem;
    font-size: var(--font-size-m);
    transition: 0.21s ease;
}
.vc-input[type='text']:hover,
.vc-input[type='text']:focus {
    background-color: var(--input-background-color-hover);
}