#chatbot {
	position: fixed;
	bottom: 70px;
	right: 0;
	z-index: 1000;
}
#chatbot-closed {
	display: block;
	transform: translateY(-25px);
}
#chatbot-closed > div {
	display: flex;
	padding: 5px;
	background: #005dae;
	justify-content: center;
	align-items: center;
	border-radius: 50px 0 0 50px;
	cursor: pointer;
}
#chatbot-opened {
	display: none;
	position: relative;
}
.chatbot-close-button {
	position: absolute;
	top: -15px;
	left: -15px;
	width: 30px;
	height: 30px;
	background-color: #ff6576;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	border-radius: 20px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
#chatbot-chatting .chatbot-close-button {
	left: auto;
	right: 9px;
	top: 10px;
}
.chatbot-bubble {
	background: #fff;
	border-radius: 10px 0 0 30px;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.3);
	padding: 15px;
	font-weight: bold;
	font-size: 15px;
	text-align: center;
}
.chatbot-chatnow {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	padding-top: 10px;
}
#chat-now-button {
	border-radius: 20px 0 0 20px;
	border: none;
	background: #005dae;
	color: white;
	padding: 10px 30px;
	font-size: 16px;
	cursor: pointer;
	text-transform: uppercase;
	margin-right: -15px;
}
.chatbot-person {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
#chatbot-chatting {
	display: none;
	min-height: calc(80vh - 70px);
	max-height: calc(90vh - 70px);
	overflow-y: auto;
	padding-left: 25px;
	margin-bottom: 30px;
	padding-top: 25px;
	scrollbar-gutter: stable;
}
.chatbot-chat-bubble, .chatbot-choice-bubble {
	display: block;
	opacity: 0;
	transform: translateY(25px);
	position: relative;
	background: #fff;
	padding: 15px 25px;
	border-radius: 10px;
	margin-right: 10px;
	max-width: 90vw;
	width: 300px;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
	margin-bottom: 40px;
	transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.chatbot-choice-bubble {
	padding: 15px;
	margin-top: -20px;
}
.chatbot-chat-bubble.show, .chatbot-choice-bubble.show {
	opacity: 1;
	transform: translateY(0);
}
.chat-avatar {
	position: absolute;
	top: -25px;
	left: -25px;
}
.chatbot-choice {
	border: solid 2px transparent;
	padding: 5px;
	margin: 5px;
	border-radius: 10px;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px;
}
.chatbot-choice.select {
	cursor: pointer;
}
.chatbot-choice.select:hover, .chatbot-choice.selected {
	color: #005dae;
	background-color: #efefef;
}
.chatbot-choice.selected {
	border: solid 2px #00bf00;
}
.chatbot-choice-reset {
	display: none;
	position: absolute;
	top: -15px;
	right: 5px;
}
.chatbot-choice-reset > div {
	background: #f90;
	border-radius: 25px;
	color: #fff;
	padding: 5px;
	font-size: 12px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.chatbot-choice-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#chatbot input {
	border: none;
	border-bottom: solid 2px #005dae;
	width: 100%;
	font-size: 16px;
	padding: 10px 0;
}
#chatbot textarea {
	border: none;
	border-bottom: solid 2px #005dae;
	width: 100%;
	font-size: 16px;
	padding: 10px 0;
	field-sizing: content;
	resize: none;
	overflow: hidden;
}
.chatbot-input-button {
	background: #005dae;
	color: #fff;
	border-radius: 50px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.chatbot-choice-button {
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.3);
	margin: 0;
	padding: 7px;
}
#chatbot-error {
	overflow: hidden;
	display: none;
	opacity: 0;
	translate: 0 10vh;
	transition-property: display opacity;
	transition-duration: 0.7s;
	transition-behavior: allow-discrete;
	border-radius: 10px;
	width: 95vw;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.3);
	max-width: 500px;
	border: none;
}
#chatbot-error[open] {
	display: block;
	opacity: 1;
	translate: 0 0;

	@starting-style {
		opacity: 0;
		translate: 0 -10vh;
	}
}
#chatbot-error::backdrop {
	transition-property: opacity display overlay;
	transition-duration: 0.7s;
	transition-behavior: allow-discrete;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(2px);
}
#chatbot-error[open]::backdrop {
	opacity: 1;
}
@starting-style {
	#chatbot-error[open]::backdrop {
		opacity: 0;
	}
}
#chatbot-error > div {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: stretch;
	gap: 20px;
}
#chatbot-error > div {
	text-align: center;
}
.chatbot-error-icon {
	color: #ff6576;
	font-size: 60px;
}
.chatbot-error-title {
	color: #ff6576;
	font-size: 25px;
}
.chatbot-error-message {
	width: 100%;
	text-align: center;
	font-size: 20px;
	background: #ffdddd;
	border-radius: 5px;
	padding: 20px;
	color: #444;
}
.chatbot-error-close-button {
	border: none;
	color: #fff;
	background-color: #005dae;
	border-radius: 50px;
	font-size: 20px;
	cursor: pointer;
	padding: 10px 25px;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.5);
}
#chatbot ul {
	list-style: disc;
	list-style-position: inside;
}
.chatbot-loader {
	text-align: center;
	font-size: 30px;
	padding-top: 20px;
	color: #005dae;
}
