.new-multiply-dropdown-list {
    transition: all 0.3s;
}
.new-multiply-dropdown-list.selected {
    background-color: #04ff0488;
}
.new-multiply-dropdown-list-container {
    max-height: 300px;
    overflow: auto;
}

.new-hide {
    display: none !important;
}




.chat-gpt-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 100;
}
.chat-gpt-container .chat-gpt-button-container {
    font-size: 0;
}
.chat-gpt-container .chat-gpt-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #fff url('/assets/images/chat_gpt_icon.png') center center no-repeat;
    background-size: 75%;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0 0 5px 1px #000;
    transition: all 0.3s;
}
.chat-gpt-container .chat-gpt-button:hover {
    background-color: #ccc;
}


.chat-gpt-container .chat-gpt-chat-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 65px;
    left: 10px;
    z-index: 100;
    width: 600px;
    height: calc(100vh - 100px);
    background: #eee;
    border-radius: 10px;
    box-shadow: 0 0 5px 1px #000;
    padding: 5px;
}
.chat-gpt-container .chat-gpt-chat-container.open {
    display: flex;
}
.chat-gpt-container .chat-gpt-chat-container.loading:after,
.chat-gpt-container .chat-gpt-chat-container.loading2:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #bbbbbb88 url('/assets/plugins/lightbox/images/loading.gif') center center no-repeat;
    background-size: 50px;
    border-radius: 10px;
}
.chat-gpt-container .chat-gpt-message-list-container {
    height: calc(100% - 60px);
    width: 100%;
}
.chat-gpt-container .chat-gpt-message-list {
    overflow-x: hidden;
    overflow-y: auto;
    background: #aaa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 10px;
}
.chat-gpt-container .chat-gpt-message-list-empty {
    display: inline-block;
    width: 100%;
    padding-top: 100px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.chat-gpt-container .chat-gpt-one-message {
    background: #eee;
    border-radius: 10px;
    display: inline-block;
    min-width: 150px;
    max-width: 80%;
    white-space: pre-line;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}
.chat-gpt-container .chat-gpt-one-message b {
    font-weight: 600;
}
.chat-gpt-container .chat-gpt-one-message i {
    font-style: italic;
}
.chat-gpt-container .chat-gpt-one-message.user-message {
    align-self: flex-end;
}
.chat-gpt-container .chat-gpt-one-message.assistant-message {
    align-self: flex-start;
}
.chat-gpt-container .chat-gpt-one-message .date-add {
    text-align: right;
    margin-top: 10px;
    font-size: 13px;
}


.chat-gpt-container .chat-gpt-input-container {
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 5px;
}
.chat-gpt-container .chat-gpt-menu-container {
    position: relative;
}
.chat-gpt-container .chat-gpt-menu {
    display: none;
    position: absolute;
    left: 0px;
    bottom: 100%;
    padding: 10px 0;
    width: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px 1px #000;
    font-size: 16px;
}
.chat-gpt-container .chat-gpt-menu.open {
    display: inline-block;
}
.chat-gpt-container .chat-gpt-menu-item {
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 5px 0;
}
.chat-gpt-container .chat-gpt-menu-item:last-child {
    border-bottom: none;
}
.chat-gpt-container .chat-gpt-menu-item:hover {
    background: #ddd;
}
.chat-gpt-container .chat-gpt-menu-button {
    margin-right: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 5px 7px;
    border-radius: 5px;
    border: 2px solid #888;
    transition: all 0.3s;
}
.chat-gpt-container .chat-gpt-menu-button:hover {
    background: #ddd;
}
.chat-gpt-container .chat-gpt-input-text {
    background: #eee;
    border-radius: 10px;
    width: 100%;
    font-size: 16px;
    line-height: 1;
    padding: 5px 10px;
    height: 50px;
    resize: vertical;
    min-height: 50px;
}
.chat-gpt-container .chat-gpt-submit-button {
    margin-left: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 5px 8px 5px 10px;
    border-radius: 5px;
    border: 2px solid #888;
    transition: all 0.3s;
}
.chat-gpt-container .chat-gpt-submit-button:hover {
    background: #ddd;
}


.chat-gpt-container .chat-gpt-chat-list-container {
    display: none;
    height: 100%;
    width: 100%;
}
.chat-gpt-container .chat-gpt-chat-list-container.open {
    display: inline-block;
}
.chat-gpt-container .chat-gpt-chat-list {
    overflow-x: hidden;
    overflow-y: auto;
    background: #ccc;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: calc(100% - 60px);
    padding: 10px;
}
.chat-gpt-container .chat-gpt-chat-list-empty {
    display: inline-block;
    width: 100%;
    padding-top: 100px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.chat-gpt-container .chat-gpt-one-chat {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #eee;
    border-radius: 10px;
    margin-bottom: 7px;
}
.chat-gpt-container .chat-gpt-one-chat:hover {
    background: #ddd;
}
.chat-gpt-container .chat-gpt-one-chat.type_parse_calls {
    /*background: repeating-linear-gradient(-45deg, #eee 0px 20px, #f69d3c 20px, #f69d3c 40px);*/
    background: repeating-linear-gradient(-45deg, #eee 0px 20px, #c8ffad 20px 40px);
}
.chat-gpt-container .chat-gpt-one-chat.type_parse_calls:hover {
    background: repeating-linear-gradient(-45deg, #ddd 0px 20px, #c8ffad 20px 40px);
}
.chat-gpt-container .chat-gpt-one-chat .chat-gpt-one-chat-id {
    width: 10%;
    margin-right: 7px;
}
.chat-gpt-container .chat-gpt-one-chat .chat-gpt-one-chat-dates {
    width: 40%;
    margin-right: 7px;
}
.chat-gpt-container .chat-gpt-one-chat .chat-gpt-one-chat-messages {
    width: 50%;
    max-height: 200px;
    overflow: hidden;
}
.chat-gpt-container .chat-gpt-chat-list-close-button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
}
.chat-gpt-container .chat-gpt-chat-list-close-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    padding: 7px 15px;
    border-radius: 5px;
    border: 2px solid #888;
    transition: all 0.3s;
}
.chat-gpt-container .chat-gpt-chat-list-close-button:hover {
    background: #ddd;
}


.get_calls_id_for_chat_gpt_container {
    position: relative;
    padding: 3px;
}
.get_calls_id_for_chat_gpt_container.loading:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #bbbbbb88 url('/assets/plugins/lightbox/images/loading.gif') center center no-repeat;
    background-size: contain;
    border-radius: 10px;
}
.get_calls_id_for_chat_gpt {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: none;
    background: #fff url('/assets/images/chat_gpt_icon.png') center center no-repeat;
    background-size: 75%;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0 0 3px 1px #555;
    transition: all 0.3s;
}
.get_calls_id_for_chat_gpt:hover {
    background-color: #ccc;
}
.get_calls_id_for_chat_gpt.exist {
    background-color: #59ff00;
}
.get_calls_id_for_chat_gpt.exist:hover {
    background-color: #42d201;
}
.calls_ids_container {

}
.calls_ids_container .calls_id_item {
    padding: 3px;
    border-bottom: 1px solid #808080;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
}
.calls_ids_container .calls_id_item:hover {
    background: #eeeeee;
}
.calls_ids_container .calls_not_found {
    padding: 3px;
    line-height: 1;
    color: red;
}
.calls_ids_container .calls_id_item.isset_in_db {
    background-color: #59ff00;
}
.sended-sms-text {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid #888;
    margin-right: 30px;
    white-space: pre;
}
.send-sms-for-leads-inputs-container {
    border-radius: 10px;
    border: 1px solid #888;
    padding: 20px 10px;
    margin-top: 20px;
    position: relative;
}
.send-sms-for-leads-inputs-container textarea {
    resize: vertical;
}
.send-sms-for-leads-inputs-container.disabled:after {
    content: 'Отправка SMS разрешена только если он в статусе "Записан на собес" или "Пришел на собес"!';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 100px 30px 30px 30px;
    color: red;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    background: #88888888;
    border-radius: 10px;
}
.send-sms-for-leads-inputs-container.disabled.disabled_2:after {
    content: 'Вам не разрешена отправка SMS кандидатам!';
}
.copy_text_from_container {
    transition: box-shadow 0.3s ease-out;
    cursor: pointer;
}


@media (max-width: 650px) {
    .chat-gpt-container .chat-gpt-chat-container {
        width: calc(100% - 10px);
        left: 5px;
    }
}