/*!********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./assets/js/shared/style.css ***!
  \********************************************************************************************************************************************************************************/
.chat__container {
	--white: #fff;
	--color-border: #DCD8CD;
}



.chat__container {
	display: flex;
	flex-direction: column;
	height: 78vh;
	background-color: var(--white);
	border-radius: 22px;
	overflow: hidden;
}



.active + .chat__container {
	border-radius: 0 22px 22px 0;
	border-left: 1px solid var(--color-border);
}



.chat__header {
	padding: 16px;
	background-color: var(--white);
	text-align: center;
	border-bottom: 1px solid var(--color-border);
	display: flex;
	gap: 1rem;
	align-items: center;
}



.chat__heading {
	margin: 0;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 400;
	color: #333;
	width: 100%;
}



.chat__messages {
	flex: 1;
	padding: 16px;
	background-color: var(--white);
	gap: 2.4rem;
	display: flex;
	flex-direction: column;
}



.chat__message {
	max-width: 100%;
}



.chat__message__content {
	padding: 12px;
	border-radius: 8px;
	font-size: 1.8rem;
	line-height: 1.5;
	width: 49%;
}



@media screen and (max-width: 768px) {
	.chat__message__content {
		width: 95%;
		font-size: 1.6rem;
	}
}



@media screen and (min-width: 769px) and (max-width: 1024px) {
	.chat__message__content {
		width: 65%;
	}
}



.chat__message--llm .chat__message__content {
	background-color: #e8eeff;
	color: #333;
	align-self: flex-start;
}



.chat__message--operator .chat__message__content {
	background-color: #e8fff5;
	color: #333;
	align-self: flex-start;
}



.chat__message--guest .chat__message__content ,
.chat__message--user .chat__message__content {
	background-color: #f1efe9;
	color: #333;
	align-self: flex-end;
}



.chat__message--guest {
	display: flex;
	justify-content: flex-end;
}



.chat__message__content p {
	margin: 0;
}



.chat__input {
	display: flex;
	padding: 16px;
	background-color: var(--white);
	border-top: 1px solid #e6e6e6;
	align-items: center;
}



.chat__input input {
	flex: 1;
	padding: 10px;
	font-size: 14px;
	border-radius: 20px;
	outline: none;
	border: none !important;
	max-height: 30px;
}



.chat__input input:focus-visible {
	outline: none !important;
}



.chat__input input::-moz-placeholder {
	color: #999;
}



.chat__input input::placeholder {
	color: #999;
}



.chat__input button {
	margin-left: 10px;
	padding: 10px 16px 10px 12px;
	font-size: 14px;
	color: #fff;
	background-color: #F1EFE9;
	border: none;
	border-radius: 0.8rem;
	cursor: pointer;
	width: 3rem;
	height: 3rem;
}



.chat__input button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}



#operator_chat {
	padding-right: 2rem;
	margin-top: 2rem;
}



.chat__message-wrapper {
	height: 100%;
	position: relative;
	overflow-y: auto;
}



.chat__message-wrapper-main {
	display: grid;
	grid-template-columns: auto 1fr;
	height: 100%;
}



#chat-root:has(.chat__sidebar) {
	display: grid;
	grid-template-columns: auto 1fr;
}



.chat__sidebar {
	display: none;
	flex-direction: column;
	width: -moz-max-content;
	width: max-content;
	border-left: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	transition: transform 0.3s ease-in-out; /* Added transition here */
	max-height: 78vh;
}



.chat__sidebar.active {
	display: flex;
}



.chat__sidebar-content {
	flex: 1;
	background: white;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	overflow: hidden;
	transition : transform 0.3s ease-in-out; /* Changed to ease-in-out */
	width: 300px;
	padding: 12px;
	border-radius: 22px 0 0 22px;
}



.chat__sidebar-content.active {
	overflow-y: auto;
	transform: translateX(0);
}



.chat__sidebar-content h3 {
	margin: 0;
}



.chat__chats {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}



.chat__item-header {
	display: flex;
	gap: 16px;
}



.chat__item-header small {
	opacity: 0.5;
}



.chat__item {
	padding: 8px;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}



.chat__item:hover {
	background-color: #f5f5f5;
}



.chat__item.active {
	background-color: #f5f5f5;
}



.chat__item strong {
	font-weight: 600;
	font-size: 1rem;
}



.chat__item span {
	font-size: 0.8rem;
	color: #999999;
}



.chat__toggle {
	background: transparent;
	cursor: pointer;
	border: 1px solid #ccc;
	border-radius: 10px;
	width: 40px;
	height: 40px;
}



/*# sourceMappingURL=shared.css.map*/