.chatbot {
	font-family: "Inter", sans-serif;
}

.chatbot__launcher {
	position: fixed;
	right: 56px;
	bottom: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background-color: #3d4db6;
	border-radius: 50%;
	cursor: pointer;
	background-clip: content-box;
	padding: 4px;
	border: 1px solid transparent;
	transition: border-color 0.3s ease-in-out;
}

.chatbot__launcher img {
	user-drag: none;
	-webkit-user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.chatbot__launcher:hover {
	background-color: #2f3b8b;
}

.chatbot__launcher:focus {
	border-color: #0c2bd5;
}

.chatbot__container {
	position: fixed;
	right: 56px;
	bottom: 136px;
	width: 416px;
	height: calc(100% - 200px);
	max-height: 800px;
	min-height: 300px;
	max-width: 700px;
	min-width: 250px;
	display: none;
	background-color: #fdfdff;
	border: 1px solid #c8cdeb;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 25px;
	margin-bottom: 16px;
}

.chatbot__resize-handle {
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	cursor: nwse-resize;
	z-index: 10;
	color: white;
}

.icon::before,
.icon::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.icon-link::before {
	border: 0 solid;
	border-bottom-width: 0.1rem;
	height: 1.4em;
	width: 1.4em;
	transform: translate(-84%, -84%) rotate(-45deg);
}

.icon-link::after {
	border: 0 solid;
	border-bottom-width: 0.1rem;
	height: 0.7em;
	width: 0.7em;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.chatbot__container--active {
	display: inline-block !important;
}

.chatbot__container__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 58px;
	padding: 0 16px;
	background-color: #111533;
	color: #eff1ff;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.chatbot__container__header p {
	font-size: 16px;
	margin-bottom: 0;
}

.chatbot__container__close {
	display: none;
	cursor: pointer;
}

.chatbot__container iframe {
	width: 100%;
	height: calc(100% - 58px);
	overflow: hidden;
	border: none;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

@media (max-width: 767px) {
	.chatbot__launcher {
		bottom: 16px;
		right: 16px;
		width: 50px;
		height: 50px;
	}

	.chatbot__launcher img {
		width: 24px;
		height: 24px;
	}

	.chatbot__container {
		width: 100vw;
		height: 100vh;
		max-height: none;
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 0;
		z-index: 99999;
		border: 0;
		box-shadow: none;
		margin: 0;
		overflow: hidden;
	}

	.chatbot__resize-handle {
		display: none;
	}

	.chatbot__container__header {
		height: 64px;
	}

	.chatbot__container__close {
		display: block;
	}

	.chatbot__container iframe {
		height: calc(100% - 64px);
	}
}

@media print {
	.chatbot__launcher,
	.chatbot__container {
		display: none !important;
	}
}
