@import url();


#user-vendor_chat_data, #user-admin_chat_data {
    display:none
}

#chatbot_on_page_sign {
    position:fixed;
    bottom:50px;
    right:75px;
    z-index:10000;
    box-shadow: 0 0 10px 1px darkgray ;
    padding: 0;
    height:75px;
    width:75px;
    border-radius: 50%;
    cursor: pointer;
}

#chatboticon {
    height:75px;
    width:75px;
}

#chatbot_on_page_sign:hover img {
    transform: scale(1.03);
}

#chatbot_window_wrapper {
    box-sizing: border-box;
    width: 385px;
    height:615px;
    border-radius: 20px;
    border:1px solid lightgray;
    background-color:white;
    position:fixed;
    bottom:50px;
    right:75px;
    z-index:10001;
    box-shadow: 0 0 20px 2px darkgray ;
    display:none
}
#chatbot_header {
    box-sizing: border-box;
    max-width: 100%;
    padding:10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display:-webkit-flex;
    display:flex;
    justify-content: space-between;
    align-self:center;
    align-items:center;
    margin-bottom:5px;

    background: #00c6ff;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0072ff, #00c6ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
}
#connection_to_user_section {
    margin-right:25px;
    display: flex;
    flex-direction: row;
    flex-wrap:nowrap;
}
#connection_to_user_section img {
    width:30px;
    height:30px;
    cursor:pointer
}
#connection_to_user_section img:hover {
    transform: scale(1.05);
}
#hd_total_incoming_non_read_msg_count {
    color:brown;
    font-weight:bold;
    background-color: white;
    border-radius: 3px;
    text-align:center;
    font-size:10px;
    height:max-content;
    padding:5px;
    display:none
}
#current_user_initial {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    display:inline-block;
    width:30px;height:30px;
    background-color: brown;
    color:white;
    font-weight:bold;
    font-size:14px;
    padding-top:5px;
    text-align: center;
    border-radius: 50%;
    margin:0;
    margin-right:10px;
    border:1px solid gray;
}
#chatbot_display_mode{
    padding:5px;
    border-radius:5px;
    background-color: white;
}

#chatbot_chat_session {
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    font-size: 12px;
    opacity: 0;
    cursor: pointer;
}
#hd_interlocutor_acc_icon {
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
    width:30px;
    height:30px;
    border-radius: 50%;
    border:1px dashed lightgray;
}
#hd_interlocutor_details {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-left:10px
}
#hd_interlocutor_name {
    max-width:200px;
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
    color:white !important;
}
#hd_interlocutor_country {
    color:white;
    font-size: 10px;
    margin-top: 5px;
}
#hd_interlocutor_connectivity_state {
    color:green;
    background-color: white;
    border-radius: 25px;
    padding:5px 10px;
    width:max-content;
    margin-top:5px;
    font-size:12px;
}

.chat_session_type_selector{
    display: inline-block;
    font-size:13px;
    font-family: Arial, Helvetica, sans-serif;
    margin-right:12px;
    cursor: pointer;
    color:white
}

.active_chat_session {
    border-radius: 5px;
    background-color: white;
    color: rgb(0, 153, 230);
    font-weight: bold;
    padding:3px 10px
}

.interlocutor_online  {
    font-size:20px;
    color:green;
    display:inline-block;
    position:relative;
    bottom:5px;
    padding:0 !important;
    margin:0 !important;
    width:max-content;
    height:max-content;
    display:none;
}

.chat_background_selector_icon {
    height:15px;
    width:15px;
    margin-left:5px;
    cursor:pointer;
}
.chat_background_selector_icon:hover {
    transform: scale(1.03);
}
#chatbot_menu_options_icon {
    display:inline-block;
    font-size:22px;
    font-weight:bolder;
    text-align:right;
    padding:1px 5px;
    color:white;
    margin-left: 10px;
    margin-right:5px;
    cursor:pointer
}
#chatbot_menu_options_icon:hover {
    color:black
}
#chatbot_minimizer {
    box-sizing: border-box;
    display:inline-block;
    font-weight:bolder;
    cursor: pointer;
    color:black !important;
    font-size:16px;
    position: absolute;
    right:25px;
    text-align: center;
    height:35px;
    width:35px;
    border-radius: 50%;
    background-color: white;
    padding-top:6px;
    transition: all .5s ease-in;
}
#secondary_chat_window_closer {
    display: none;
}
#chatbot_minimizer:hover{
    color:white !important;
    background-color: black;
    box-shadow: 0 0 75px 1px black;
}

#chatbot_body {
    height: 400px;
    width:100%;
    overflow:hidden;
    overflow-y: auto;
    
}
#loading_chat_content_ind {
    margin:auto auto;
    margin-top:150px;
    text-align: center;
    font-size:14px;
    display: none;
    line-height:1.6;
    width:90%;
}
#connectable_users_list_section {
    margin: auto auto;
    margin-top:25px;
    box-sizing: border-box;
    width:90%;
    height:450px;
    overflow: hidden;
    overflow-y: auto;
    padding:10px;
    border-radius: 5px;
}
#loading_contact_list_ind {
    text-align: center;
    width:100%;
    margin:auto auto;
    margin-top:150px;
    display: inline-block;
    font-size: 14px;
    line-height:1.6

}
#loading_contact_list_ind, #loading_chat_content_ind {
    color:black;
}
#loading_contact_list_ind a, #loading_chat_content_ind a {
    color:rgb(0, 140, 230);
}
.showing_login_forms {
    box-sizing: border-box;
    height:90% !important;
}
#chatbot_body hr {
    border:1px solid lightgray;
    width:80%;
    margin:auto auto;
    margin-bottom:25px;
}

#message_display_section_bottom {
    height:80px;
}
#chatbot_message_sending_zone {
    display:-webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom:5px;
    margin-top:5px;
    height:100px;
    
}

#chatbot_typing_zone {
    margin-left:15px;
    margin-right:10px;
}


#chatbot_message_to_send {
  
    font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	border: 1px solid lightgray;
	box-sizing: border-box;
    height:max-content;
	min-height:50px;
    max-height:70px;
    width:295px;
	margin-left:5px;
	color:black;
	resize: none;
	border-radius: 15px;
	padding:10px 15px !important;
	-ms-overflow-style: none !important; 
    scrollbar-width: none !important; 
	word-break: break-word;
	white-space: normal;
	line-height: 1.6em;
	overflow:hidden;
	overflow-y: auto;
}

#chatbot_message_to_send::-webkit-scrollbar {
    display: none !important;
}

/* for removing the border of the quill toolbar */
#chatbot_window_wrapper .ql-toolbar {
    border-width:0 !important;
    margin-left:25px !important;
}
#chatbot_window_wrapper .ql-editor {
    padding:0 !important;
    -ms-overflow-style: none !important; 
    scrollbar-width: none !important; 
    color: black !important;
}
#chatbot_window_wrapper .ql-editor p, #chatbot_window_wrapper .ql-editor div{
    color: black !important;
}
#chatbot_window_wrapper .ql-editor::-webkit-scrollbar {
    display: none !important;
}
#chatbot_window_wrapper #emoji-palette {
    left:unset !important;
    bottom:unset !important;
    right:unset !important;
    top:unset !important;
    position:fixed !important;
    bottom:200px !important;
    right:175px !important;
}
#chatbot_window_wrapper #emoji-palette .bem {
    transform: scale(1.6);
    display:inline-block;
    margin:8px;
}
#chatbot_window_wrapper #chatbot_body .ap {
    display:inline-block;
    margin:6px;
    transform: scale(1.6);
}


#chatbot_send_button_zone{
    margin-top:40px;
}

#chatbot_send_message_button {
    text-align: center;
    width:40px;
    height:40px;
    background-color: rgb(0, 140, 230);
    cursor: pointer;
    padding:2px;
    border-radius:50%;
    display: block !important;
}
#chatbot_send_message_button:hover {
    background-color: rgb(0, 153, 230);
}


#send_message_icon {
    width:25px;
    height:25px;
    position:relative;
    top:7px
}

#extra_chat_components_zone {
    padding:7px
}

#add_image{
    margin-left:5px;
   
}
#add_image img{
    width:18px ;
    cursor:pointer;

}


/* for the login section */

#chatbot_user_login_forms {
    padding:15px ;
    font-family: Arial, Helvetica, sans-serif;
    font-size:14px;
    padding-top:0;
    margin:0
}
#chatbot_user_login_forms a, .login_form_switcher {
    color:rgb(0, 153, 230);
    text-decoration: none;
    display:inline-block;
    margin-left:5px;
    cursor:pointer
}
#chatbot_user_login_forms a:hover, .login_form_switcher:hover {
    color:rgb(0, 153, 230);
    text-decoration: underline;

}
.login_form_switcher {
    font-weight:bold;
}
#chatbot_general_greeting {
    font-family: Arial, Helvetica, sans-serif;
    color:green;
    font-weight:bold;
    margin-bottom:35px;
    margin-top:25px;
}
#keep_me_anonymous {
    margin: 25px auto 35px auto
}
.account_handling_forms_sections label {
    display:block;
    font-weight:bold;
    margin-bottom:5px;
    cursor:pointer
}

.account_handling_forms_sections label:not(:first-of-type) {
    margin-top:25px;
}
#log_me_in_label {
    padding:unset !important;
    margin:unset !important;
    margin-top:5px !important;
    font-weight:bold;
    font-size:12px;
}
.account_handling_forms_sections input[type ="text"], .account_handling_forms_sections input[type ="password"], .account_handling_forms_sections select {
    padding:10px;
    border:1px solid lightgray;
    border-radius:5px;
    width:225px;
}
#chatbot_window_wrapper select option {
    padding:7px
}

.chatbot_login_button_zone {
    margin-top:35px;
    text-align:center
}

.chatbot_login_button_zone input[type = "submit"] {
    padding:7px 35px;
    border-width:0;
    border-radius:3px;
    background-color:rgb(0, 153, 230);
    cursor:pointer;
    color:white
}
.chatbot_login_button_zone input[type = "submit"]:hover {
    background-color:rgb(0, 140, 230)
}
.id_usefulness_tip {
    font-size:12px; 
    line-height:1.6em; 
    margin-top:10px !important; 
    color:gray
}
.chatbot_invitation_to_switch_indentification {
    margin-top:35px;
    font-size:14px
}

#chatbot_registered_members_login {
    display:none
}
.chatbot_processing_request_feedback {
    font-size:13px;
    text-align:center;
    color:brown;
    margin-top:10px;
    line-height:1.6em
}

.demande_en_cour {
    font-size: 12px;
    color:green;
    display:none
}
#extra_chat_elements_section {
    display:none
}
#quick_account_saving_section {
    margin:50px 25px auto 25px;
}
.close_quick_account_saving_form {
    box-sizing:border-box;
    display:inline-block;
    margin-left:35px;
    border:1px solid lightgray;
    border-radius: 3px;
    padding: 7px 25px;
    cursor: pointer;
    font-size:14px;
}
.close_quick_account_saving_form:hover {
    background-color: lightgray;
}
#quick_account_saving_buttons_zone {
    margin-top:50px;
}
.chat_saving_alternatives_section {
    margin-top:50px;

}
.chat_saving_alt{
    font-size:14px;
}
.chat_saving_alt_switcher {
    color:rgb(0, 140, 230);
    cursor: pointer;
    text-decoration: underline;
    display: inline-block;
    margin-left: 7px;
}
#chatbot_quick_account_saving_form-registered_user, #chatbot_quick_account_saving_form-saved_chat_id{
    display:none
}

/* for styling the chat messages */
/* user1 refers to the user using the screen where this chat is displayed */
/* user2 is the backend user */

.chat_msg {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0 !important;;
    margin:0;
    border-width:0;
    border-radius:20px;
    margin-top:15px;
    width:max-content;
    max-width:275px;
    line-height:1.5em;
    font-size:15px;
    letter-spacing: 0.5px;
    word-break: break-word;
	white-space: normal;
    padding:10px 15px !important;
    height:max-content;
    color: black;
}

.chat_msg a {
    color:rgb(0, 140, 230)
}
.chat_msg div, .chat_msg p {
    color:black
}
.venture_name_in_chat {
    font-weight:bold;
    color:green
}
.user_name_in_chat {
    font-weight:bold
}
.chat_msg a:hover{
    color:rgb(0, 140, 230)
}
.chat_msg_wrapper {
    box-sizing: border-box;
    width:100%;

}
.user1_chat_msg_wrapper {
    display:flex;
    flex-direction:row;
    justify-content: start;
    justify-content: flex-start;

    padding-left:10px;
}
.user2_chat_msg_wrapper {
    display:flex;
    flex-direction:row;
    justify-content: end;
    justify-content: flex-end;
}
#chatbot_body .user1_msg {
    background-color: rgb(245, 245, 245);
    color:black;
    border-bottom-left-radius: unset;
}
#chatbot_body  .user2_msg {
    background-color: rgba(189, 229, 255, 0.644);
    color:black;
    margin-right:10px;
    border-top-right-radius: unset;
}

.time_and_seen_check {
    font-size:11px;
    text-align:right;
    padding-right:5px;
    color:black
}
.msg_time_sent {
    font-size:11px;
    color:black
}
.msg_seen_state {
    font-size:11px;
}
#chatbot_body .seen_msg {
    color:rgb(0, 153, 230)
}
#chatbot_body .unseen_msg {
    color:black
}

.other_msgs_buttons_section{
    margin-top:25px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    width:100%;
}
.show_extra_msgs_bt {
    background-color: white;
    display: inline-block;
    border:2px solid rgb(0, 140, 230);
    padding:7px 15px;
    font-size:11px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
}
.show_extra_msgs_bt:hover {
    font-weight: bold;
}

.msg_timer_group_container {
    position:-webkit-sticky !important;
    position:sticky !important;
    top:10px;
    margin-bottom:20px;
}
.msg_timer_group {
    margin:auto auto;
    margin-top:20px;
    margin-bottom:20px;
    text-align:center;
    width:max-content;
    border:1px solid darkgray;
    padding:7px 25px;
    border-radius:25px;
    background-color: rgba(211, 211, 211, 0.808);
    font-size:12px;
    color: black;
}
.uploaded_chat_file_container {
    width:100%;
    height:max-content;
    min-width:200px;
    max-width:100%;
    max-height:300px;
    padding:0 !important;
    background-color: transparent !important;
    text-align:center;
    margin: 0 !important;
    padding:0;
    margin-left:10px !important;
}
.uploaded_chat_file_container img, .uploaded_chat_file_container video, .uploaded_chat_video, .uploaded_chat_image {
    max-width: 200px;
    max-height:290px;
    border-radius:5px;
    margin:7px auto
}
#chatbot_window_wrapper .plyr__poster {
    border-radius:5px !important;
}
#chatbot_body p{
    padding:0 !important;
    margin:0 !important
}


/* for the chat options section */
#chat_menu_options_window {
    width: 125px;
    border-width:0;
    padding:10px 15px;
    position: absolute;
    right:50px;
    border-radius: 5px;
    background-color: #f6f6f6;
    display:none;
    z-index: 10005;
}
.chat_menu_element {
    display: block;
    white-space: nowrap;
    font-size:13px;
    padding:5px 10px;
    border-width:0;
    color:black;
    cursor: pointer;
    background-color: white;
    margin-bottom:5px;
    border-radius:3px;
    width:90%;
}
.chat_menu_element:hover {
    color:rgb(0, 140, 230)
}

/* for the file preview before uploading */
#file_preview_zone {
    position:fixed;
    bottom:175px;
}

#file_preview_zone p {
    display:inline-block !important;
    margin-left:15px;
    color:white;
    margin-right:35px;
    width: 125px;
    padding:0 !important
}
#file_preview_zone img , #file_preview_zone video {
    width: 50px;
    border-radius: 5px;
    transform: scale(1);
    transition: transform 2s ease-in-out;
}

#file_preview_zone img:hover, #file_preview_zone video:hover {
    transform: scale(5);
    z-index:100
}

#file_preview_zone span {
    display: inline-block;
    color:black;
    margin-right: 10px;
    padding: 5px 10px;
    border-radius:3px;
    background-color: white;
    font-size:14px;
    cursor:pointer
}
#file_preview_zone span:hover {
    color:white;
    background-color: gray;
}
#file_preview_zone li {
    list-style-type:none;
    padding:5px;
    margin-bottom:5px;
    background-color: rgba(153, 153, 153, 0.924);
    border-radius:3px;
    font-size: 12px;
}
.hide_preview_li {
    display:none
}


/* for scrolling the messages to the bottom */
#scroll_to_bottom_section{
    box-sizing: border-box;
    text-align:right;
    padding-right:75px;
    
}

#scroll_message_to_bottom {
    position: fixed;
    bottom: 175px;
    right:100px;
    
    text-align: center;
    width:40px;
    height:40px;
    cursor: pointer;
  
    color:black;
    transition: all 0.2s ease-in;
    display:none
}
#scroll_sign {
    display:inline-block;
    text-align: center;
    position:relative;
    top:7px;
    font-size:14px;
}

#scroll_message_to_bottom img{
    width:40px;
    box-shadow: 0 0 35px 5px lightgray;
    border-radius: 50%;
}
#scroll_message_to_bottom img:hover{
    box-shadow: 0 0 35px 5px rgb(195, 195, 195);
}
/* for the popup notfications */
.chat_info_popup {
    width:max-content;
    padding:15px !important;
    margin:auto auto !important;
    border-radius:5px;
    text-align:center;
    font-size:14px;
    color:black;
    position:-webkit-sticky;
    position:sticky;
    top:0;
    white-space: nowrap;
    z-index:10005
}
.unread_message_notification_div {
    width:100%;
    text-align: center;
    float: left;
    border-width:0;
    margin-top:20px;
    margin-bottom:20px;
}
#unread_vendor_messages_notification, #unread_admin_messages_notification {
    width:max-content;
    padding:10px !important;
    margin:auto auto !important;
    border-radius:5px;
    text-align:center;
    font-size:14px;
    color:black;
    background-color: lightgray;
}
.successful_feedback {
    background-color:rgb(170, 236, 170);
}
.error_feedback {
    background-color:rgb(251, 206, 189);

}
.neutral_feedback {
    background-color:rgb(230, 230, 230);
}

#unseen_msg_notification_section {
    position: fixed;
    bottom:50px;
    right:65px;
    width:max-content;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    z-index: 10005;
}
.on_page_unseen_message_notification {
    display: inline-block;
    width:30px;
    height:30px;
    border-radius: 50%;
    text-align: center;
    background-color: brown;
    color:white;
    font-weight: bold;
	display:none
}
.on_page_unseen_message_notification span{
    color:white;
    position:relative;
    top:5px
}
#total_unread_admin_messages {
    margin-left:10px;
}

.incoming_msg_notification_text_in_header {
	display:inline-block;
	font-size:12px;
	border-width:0;
	background-color:white;
	color:brown;
	font-weight:bold;
	padding:7px 10px;
	border-radius: 7px;
	width:max-content;
    margin-left:10px;
	display:none
}
#header_interlocutor_typing_state {
    font-size:11px;
    color:green;
    padding:5px;
    border-radius:5px;
    background-color: white;
    text-align:center;
    width:max-content;
    height:max-content;
    position:relative;
    top:7px;
    margin-left:10px;
    display:none
}

/* for styling the message referencing window */ 
#reference_preview_window {
    background-color: rgb(248,248,248);
    width:max-content;
    min-width:225px;
    max-width:250px;
    min-height:75px;
    max-height:150px;
    overflow: hidden;
    overflow-y:auto;
    z-index:10005;
    border:0 solid rgb(0, 140, 230);
    border-radius:5px;
    border-left-width: 4px;
    box-shadow:0 0 25px 1px lightgray;
    position:absolute;
    bottom:135px;
    padding:7px;
}
.in_chat_reference_preview_window {
    width:100%;
    min-width:125px;
    max-height:125px;
    overflow: hidden;
    overflow-y: auto;
    border:0 solid rgb(0, 140, 230);
    border-radius:5px;
    border-left-width: 4px;
	border-bottom-width:1px;
    margin-bottom:15px
}

#reference_window_header, .reference_window_header {
    display:-webkit-flex;
    display:flex;
    flex-direction: row;
    justify-content:space-between;
    position:-webkit-sticky;
    position:sticky;
    top:0;
    background-color:transparent;

}
#msg_reference_window_closer {
    margin-right:10px;
    color:gray;
    font-size:14px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
}
#msg_reference_window_closer:hover {
    color:black
}
#referenced_user, .referenced_user {
    margin:0;
    padding:5px;
    color:rgb(0, 140, 230);
    font-weight:bold;
    max-width:200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#chatbot_body .referenced_user .ap,#chatbot_body #referenced_user .ap {
    transform: unset !important;
    margin: unset !important;
}
#chatbot_body .referenced_user p,#chatbot_body #referenced_user p {
    margin: unset !important;
    padding: unset !important;
    padding-top: 3px !important;
    display: inline-block;
}
#referenced_msg_content, .referenced_msg_content {
    font-family:Arial, Helvetica, sans-serif;
    font-size:13px;
    padding:5px;
}
.referenced_msg_content a, .referenced_msg_content a {
    color:rgb(0, 140, 230)
}
#reference_preview_window p {
    padding: 0 !important;
    margin: 0 !important
}
#reference_preview_window .uploaded_chat_file_container, .in_chat_reference_preview_window .uploaded_chat_file_container  {
    display:inline-block;
    width:80%;
    height:max-content;
    min-width:75px;
    max-width:120px;
    max-height:100px;
    padding:10px !important
}
#reference_preview_window img, #reference_preview_window video,
.in_chat_reference_preview_window img, .in_chat_reference_preview_window  video
{
    max-width: 100%;
    max-height:100%;
    border-radius:5px
}


#file_upload_and_processing_indicator {
    font-size: 12px;
    position:absolute;
    padding:15px;
    background-color:white;
    z-index:10005;
    width:275px;
    display:none;
    color: black;
}
#file_processing_warning, #percentage_uploaded {
    display:none
}


#current_poster_chat_initiator {
    border:0 solid lightgray;
    padding-bottom:15px;
    border-bottom-width: 1px;
    text-align: left;
    width:90%;
}
.single_contact_section {
    padding:10px;
    margin-bottom:10px;
    text-align: left;
    font-size:13px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    cursor: pointer;
    border-radius: 5px;
    border:1px solid lightgray;
    justify-content: space-between;
}
.single_contact_section:hover {
    background-color: rgb(245, 245, 245);
}
.ct_lt_interlocutor_details_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.ct_lt_interlocutor_icon {
    border:1px dashed lightgray;
    box-sizing: border-box;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width:45px;
    height:45px;
}
.ct_lt_interlocutor_details {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-left:15px;
}
.ct_lt_interlocutor_name { 
    display: inline-block;
    width: max-content;
    max-width:225px;
    text-overflow: ellipsis;
    overflow:hidden;
    white-space: nowrap;
    color: rgb(29, 29, 29);  
    font-size: 14px;
}

.ct_lt_interlocutor_name p,#hd_interlocutor_name p{
    margin: unset !important;
    padding: unset !important;
    display: inline-block;
    padding-top: 3px !important;
}
.ct_lt_interlocutor_name p{
    color: rgb(29, 29, 29);

}
#hd_interlocutor_name p{
    color: white;

}
.ct_lt_interlocutor_country {
    font-size:12px;
    
    padding:5px 10px;
    border-radius: 25px;
    width: max-content;
    color:dimgray;
    padding-left: 0;
}
.ct_lt_interlocutor_connectivity_state {
    font-size:12px;
    color:green;
    text-align: right;
}
.latest_message_section_wrapper {
    width:100%;
}
.ct_lt_latest_message {
    width:90%;
    max-width:250px;
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
    font-size:13px;
    display: inline-block;
    color: black;
}
.ct_lt_latest_message p,.ct_lt_latest_message div {
    min-width:100%;
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
    padding-top:5px;
    color: black;
}
.ct_lt_unseen_msg_count {
    border-width: 0;
    background-color: rgb(0, 140, 230);
    color: white;
    box-sizing: border-box;
    text-align: center;
    border-radius: 50%;
    width: 30px;
    height:30px;
    padding-top:6px;
    display: inline-block;
    position:relative;
    bottom:25px
}
.ct_lt_latest_message_time {
    font-size:10px;
    color: dimgray;
    margin-top:5px
}
.media_file_representation {
    width:25px;
    height: 25px;
    position:relative;
    top:7px;
    margin-right:7px
}


/* Media recording section elements */
.ql-rec {
    font-size:14px;
    text-align:center;
    cursor:pointer;
    display:inline-block;
    margin-left:5px;
}

#type_of_media_recording_options_section_header {
    text-align: right;
    padding-right:10px;
    
}
#type_of_media_recording_options_section_closer {
    display: block;
    text-align: right;
    width:100%
}
#type_of_media_recording_options_section_closer:hover {
    font-weight:bold
}
#voice_msg_elements_section {
    width:250px;
    padding:10px;
    border:1px solid lightgray;
    border-radius: 5px;
    margin-left:15px;
    margin-right:10px;
    display: none;
}
#voice_msg_elements_section_closer_div {
    text-align: right;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-left: 10px;
}
#voice_msg_status_section {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    width:max-content;
    animation: blinkblink 2s linear infinite;
    color:green;
    white-space: nowrap;
}

#start_audio_rec_button,#stop_audio_rec_button {
    box-sizing:border-box;
    width:40px;
    height:40px;
    border-radius: 50%;
    text-align:center;
    cursor: pointer;
    position:relative;
    bottom:10px;
    padding-top:8px

}
#start_audio_rec_button {
    color:green;
    border:4px solid green;

}
#stop_audio_rec_button {
    border:4px solid brown;
    display: none;
}
#start_audio_rec_button span, #stop_audio_rec_button span {
    box-sizing: border-box;
    display:inline-block;
    background-color: lightgray;
    border-radius: 50%;
    width:15px;
    height:15px;
}
#start_audio_rec_button span{
    background-color: green;
}
#stop_audio_rec_button span{
    background-color: brown;
}
#recorded_audio_replay_container {
    position: Fixed;
    bottom:200px;
    right:140px;
    display: none;
}
#recorder_audio_preplay {
    width: 200px !important;
}

/*#start_audio_rec_button:hover{
    transition: all 0.5s ease-in-out;
    border-color: dimgray;
}

#start_audio_rec_button:hover span{
    transition: all 0.5s ease-in-out;
    background-color: dimgray;
}*/

@keyframes blinkblink {  
    50% { opacity: 0.1; }
}
#voice_msg_elements_section_closer {
    display: inline-block;
    padding-right: 7px;
    font-size:14px;
    width: 100%;
    text-align: right;
}
#voice_msg_elements_section_closer:hover {
    cursor: pointer;
    font-weight: bold;
}

#voice_msg_elements {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width:200px;
    justify-content: space-around;
    padding:10px;
    padding-bottom: 0;
}
#voice_msg_time_lapsed {
    font-size:14px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif !important;
}
#voice_msg_pause_play_section img {
    width:30px;
    position: relative;
    bottom:10px;
    cursor: pointer;
    display:none;
}
#voice_msg_discarder {
    width:25px;
    cursor: pointer;
    position: relative;
    bottom:15px;
}

#chatbot_settings_bt {
    background-color: transparent;
    width:28px;
    position: fixed;
    bottom:50px;
    right:75px;
    border-width: 0;
}

#chat_settings_elements_window {
    width:150px;
    border:1px solid lightgray;
    border-radius: 5px;
    padding:10px;
    background-color: rgb(236, 236, 236);
    position: fixed;
    bottom:80px;
    right: 90px;
    z-index: 10005;
    display: none;
}
.chat_setting {
    font-size:12px;
    display: block;
    text-align: left;
    margin:7px 0;
    cursor: pointer;
    color: black;
}
.chat_setting:hover {

    color:rgb(0, 140, 230);
    font-weight:bold;

}
#chat_settings_elements_closer_section  {

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: end;
    justify-content: flex-end;
}
#chat_settings_elements_closer {
    font-size: 14px;
    cursor: pointer;
    text-align: right;
    color: black;
}



/* chat files section */
#fetched_chat_files_wrapper {
    margin-top:5px;
    padding:15px;
}
#fetched_chat_files_header{
    padding:10px;
    text-align:right;
    position:-webkit-sticky;
    position: sticky;
    top:25px;
}
#fetched_chat_files_window_closer {
    font-size:15px;
    width:max-content;
    padding:4px 7px;
    border-radius: 5px;
    background-color: lightgray;
    border-width:0;
    cursor:pointer;
    margin-right:15px;
}
#fetched_chat_files_window_closer:hover {
    color:white;
    background-color: gray;
}
#fetched_chat_files_section {
    width:98%;
    max-width:400px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#fetched_chat_files_section .chat_file_container{
    margin-left:10px
}
.chat_file_container {
    display:inline-block;
    width:25%;
    height:16%;
    min-width:100px;
    max-width:150px;
    margin: 10px 7px;
}
.chat_file_container_contains_video {
    min-width:175px;
    max-width:200px;
}
.chat_file_container img, .chat_file_container video {
    max-width:100%; 
    max-height: 100%; 
    border-radius:5px; 
}

.chat_file_list_element {
    float: right !important;
}
.no_data {
    text-align:center;
    color:dimgray;
    width:95%;
    margin:auto;
    margin-top:50px;
    line-height:1.6em
}


@media only screen and (max-width:802px){

}


@media only screen and (max-width:602px){

    #chatbot_on_page_sign {
        height:60px;
        width:60px;
        bottom:35px;
        right:70px;
        /*z-index:99999;*/
    }
    #chatboticon {
        height:60px;
        width:60px;
    }
    #chatbot_minimizer {
        font-size:16px;
        right:15px;
        height:30px;
        width:30px;
        padding-top:6px;
    }
    #unseen_msg_notification_section {
        bottom:25px;
        right:70px;
    }
    .on_page_unseen_message_notification span{
      
        top:8px
    }

    #chatbot_window_wrapper {
        width: 325px;
        height:550px;  
        bottom:35px;
        right:35px;    
    }

    #chatbot_window_wrapper p, #chatbot_window_wrapper a, #chatbot_window_wrapper div, #chatbot_window_wrapper span
    #chatbot_window_wrapper input[type = "text"],#chatbot_window_wrapper input[type = 'password'], #chatbot_window_wrapper input[type = 'tel'], #chatbot_window_wrapper select {
        font-size:12px;
    }
    
    #chatbot_window_wrapper input[type = "text"],#chatbot_window_wrapper input[type = 'password'], #chatbot_window_wrapper input[type = 'tel'], #chatbot_window_wrapper select {
        padding: 8px 10px;
    }
    #chatbot_general_greeting {
        margin-bottom:25px;
        margin-top:15px;
    }
    .id_usefulness_tip {
        font-size:10px !important;
        margin-top:5px !important;
    }
    .account_handling_forms_sections label:not(:first-of-type) {
        margin-top:15px;
    }
    #log_me_in_label {

        font-size:11px;
    }
    .chat_msg {
        border-radius:15px;
        max-width:250px;
        font-size:13px !important;
    }
    .chat_msg p, .chat_msg div, .chat_msg span {
        font-size:13px !important;
    }
    #chatbot_body {
        height: 350px;
    }
    #add_image img{
        width:18px ;
        height:18px ;
    }

    #scroll_to_bottom_section{
        padding-right:15px;
        
    }
    
    #scroll_message_to_bottom {
        bottom: 175px;
        right:50px;
        width:30px;
        height:30px;
    }
    #scroll_sign {
        top:7px;
        font-size:11px;
    }
    span.msg_time_sent, span.msg_seen_state {
        font-size:10px !important;
    }
    #chatbot_window_wrapper .ql-toolbar {
        margin-left:5px !important;
    }
    #chatbot_message_to_send {
        width:250px;
        border-radius: 10px;
        padding:7px 10px !important;
        font-size:13px;
    }
   
    #chatbot_window_wrapper #emoji-palette {
        bottom:190px !important;
        right:50px !important;
    }

    #file_preview_zone p {
        margin-right:15px;
        width: 85px;
    }
    
    #secondary_chat_window_closer {
        position: fixed;
        bottom:35px;
        right:350px;
        box-sizing: border-box;
        width:35px;
        height:35px;
        text-align: center;
        font-size:16px;
        border-radius: 50%;
        background-color: rgb(224, 224, 224);
        color:black;
        padding-top:5px;
        border:1px solid darkgray;
        z-index:10005
    }
    .ct_lt_interlocutor_name {
        max-width:175px;
        
    }
    .latest_message_section_wrapper {
        width:100%;
        max-width:350px;
    }
    .ct_lt_latest_message {
        max-width:200px;
        font-size:12px
    }
    
}


@media only screen and (max-width:402px){
    
    #chatbot_window_wrapper {
        width: 95vw;
        min-width:300px;
        max-width:350px;
        height:unset;
        min-height:300px;
        height:calc(100vh - 20px);  
        max-height:615px;
        bottom:20px;
        right:5px;    
    }
    #chatbot_window_wrapper input[type = "text"],#chatbot_window_wrapper input[type = 'password'], #chatbot_window_wrapper input[type = 'tel'], #chatbot_window_wrapper select {
        width:85%
    }
    
    .chatbot_invitation_to_switch_indentification {
        margin-top:25px;
    }

    .chat_msg {
        box-sizing:border-box;
        border-radius:10px;
        max-width:90%;
      
    }
    #chatbot_body {
        
        height: calc(100% - 200px);
    }
    #scroll_message_to_bottom {
        bottom: 175px;
        right:25px;
        width:30px;
        height:30px;
    }
    #chatbot_message_to_send {
        width:225px;
        
    }
    #chatbot_window_wrapper .ql-toolbar {
        margin-left:0 !important;
    }

    #secondary_chat_window_closer {
        bottom:15px;
        right:325px;
    }
}

@media only screen and (max-width:350px){
    .ct_lt_interlocutor_name {
        max-width:150px;
        font-size: 13px; 
    }
    #secondary_chat_window_closer {
        bottom:10px;
        right:290px;
    }
}