:root {
	--chat--color-primary: #e74266;
	--chat--color-primary-shade-50: #E60864;
	--chat--color-primary-shade-100: #cf3c5c;
	--chat--color-secondary: #00B5D1;
	--chat--color-secondary-shade-50: #1ca08a;
	--chat--color-white: #ffffff;
	--chat--color-light: #f2f4f8;
	--chat--color-light-shade-50: #e6e9f1;
	--chat--color-light-shade-100: #c2c5cc;
	--chat--color-medium: #d2d4d9;
	--chat--color-dark: #000B56;
	--chat--color-disabled: #777980;
	--chat--color-typing: #404040;

	--chat--spacing: 0.75rem;
	--chat--border-radius: 0.25rem;
	--chat--transition-duration: 0.15s;

	--chat--window--width: 400px;
	--chat--window--height: 600px;

	--chat--header-height: auto;
	--chat--header--padding: var(--chat--spacing);
	--chat--header--background: var(--chat--color-dark);
	--chat--header--color: var(--chat--color-light);
	--chat--header--border-top: none;
	--chat--header--border-bottom: none;
	--chat--header--border-bottom: none;
	--chat--header--border-bottom: none;
	--chat--heading--font-size: 1.2em;
	--chat--header--color: var(--chat--color-light);
	--chat--subtitle--font-size: 0.9em;
	--chat--subtitle--line-height: 1.1;

	--chat--textarea--height: 50px;

	--chat--message--font-size: 0.8rem;
	--chat--message--padding: var(--chat--spacing);
	--chat--message--border-radius: var(--chat--border-radius);
	--chat--message-line-height: 1.25;
	--chat--message--bot--background: var(--chat--color-white);
	--chat--message--bot--color: var(--chat--color-dark);
	--chat--message--bot--border: none;
	--chat--message--user--background: var(--chat--color-secondary);
	--chat--message--user--color: var(--chat--color-white);
	--chat--message--user--border: none;
	--chat--message--pre--background: rgba(0, 0, 0, 0.05);

	--chat--toggle--background: var(--chat--color-primary);
	--chat--toggle--hover--background: var(--chat--color-primary-shade-50);
	--chat--toggle--active--background: var(--chat--color-primary-shade-100);
	--chat--toggle--color: var(--chat--color-white);
	--chat--toggle--size: 64px;
    
    .chat-header{
    row-gap: 8px;
    }
    
    .chat-header .chat-heading p{
    font-size: 1.6em;
    font-weight: bold;
    }
    
    .chat-heading::before{
    content: url('http://www.mailclick.com.mx/wp-content/features-styles/chatbot-face.jpg');
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
    }
    
    .chat-header p{
	margin-bottom: 0px;
    line-height: 1.4;
    font-weight: bold;
    }
    
    #n8n-chat * {
  font-family: 'Montserrat', sans-serif !important;
}


.chat-messages-list ul, .chat-messages-list ol{
margin-left: 10px;
margin-top: 0;
}
.chat-messages-list li{
line-height: 1.2;
font-size: 0.8rem;}

div.chat-message-markdown p{margin-bottom: 0px !important;}

div.chat-message-markdown h3{font-size: 1rem !important; margin-top: 18px !important; margin-bottom: 12px !important;}
.chat-message.chat-message-from-bot h1, .chat-message.chat-message-from-bot h2, .chat-message.chat-message-from-bot h3{font-size: 1rem !important;}

.chat-inputs, .chat-inputs textarea{font-size: 15px;}

/*Para el chat a la izquierda*/
.chat-window-wrapper.n8n-chat{left: 13.5px !important; right: auto !important;}

.chat-window-wrapper .chat-window-toggle{margin-left: 0 !important;}

.chat-window-transition-enter-active {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out !important;
}

.chat-window-transition-enter-to {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

.chat-window-transition-leave-active {
  transition: transform 0.15s ease-in, opacity 0.08s ease-in !important;
}

.chat-window-transition-leave-to {
  transform: translateY(30%) translateX(-30%) !important;
  opacity: 0 !important;
}
    
}