.new-multiply-dropdown-list {
    transition: all 0.3s;
}
.new-multiply-dropdown-list.selected {
    background-color: #04ff0488;
}
.copy_text_from_container {
    transition: box-shadow 0.3s ease-out;
    cursor: pointer;
}

.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 {
    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-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: 200px;
    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: #ddd;
    border-radius: 10px;
    margin-bottom: 7px;
}
.chat-gpt-container .chat-gpt-one-chat:hover {
    background: #eee;
}
.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%;
}
.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;
}


@media (max-width: 650px) {
    .chat-gpt-container .chat-gpt-chat-container {
        width: calc(100% - 10px);
        left: 5px;
    }
}