:root {
	--gptplane-chat-bot-primary-background-color: rgb(176, 58, 0);
	--gptplane-chat-bot-primary-background-hover-color: rgb(176, 58, 0);
	--gptplane-chat-bot-primary-text-color: rgba(255,255,255);
}


.GPTPlaneChatBotButton {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 54px;
	height: 54px;
	line-height: 10px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--gptplane-chat-bot-primary-background-color);
	padding: 5px;
	cursor: pointer;
	z-index: 100001; /* there are customer sites that use 99999 or similar values */
	box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateY(100%);
}

.GPTPlaneChatBotButton:hover {
	background-color: var(--gptplane-chat-bot-primary-background-hover-color);
	box-shadow: 2px 2px 12px 5px rgba(0, 0, 0, 0.3);
}

.GPTPlaneChatBotButton > img {
	width: 40px;
	height: 40px;
}

.GPTPlaneChatBotWindow {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 380px;
	height: 80%;
	max-height: 800px;
	background-color: var(--gptplane-chat-bot-primary-background-color);
	--nope-padding: 3px;
	box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.3);
	/*box-shadow: 0 2px 48px rgba(19,33,68,0.16), 0 0 0 1px #303030;*/
	display: flex;
	z-index: 100002; /* there are customer sites that use 99999 or similar values */
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
	opacity: 0;
	transform: translateY(100%);
}

@media screen and (max-width: 700px) {
	.GPTPlaneChatBotWindow {
		top: 0px;
		left: 0px;
		bottom: 0px;
		right: 0px;
		width: 100%;
		height: 100%;
		max-height: none;
		border-radius: 0;
	}
}

.GPTPlaneChatBotWindowHeader {
	background-color: var(--gptplane-chat-bot-primary-background-color);
	padding: 9px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.GPTPlaneChatBotWindowHeaderTitle {
	color: var(--gptplane-chat-bot-primary-text-color);
	font-weight: bold;
	font-size: 18px;
	font-family: Helvetica;
}

.GPTPlaneChatBotWindowHeaderCloseButton {
	margin-left: auto;
	color: var(--gptplane-chat-bot-primary-text-color);
	cursor: pointer;
	border: 1px solid var(--gptplane-chat-bot-primary-background-color);
	border-radius: 5px;
	line-height: 10px;
}

.GPTPlaneChatBotWindowHeaderCloseButton:hover {
	border: 1px solid var(--gptplane-chat-bot-primary-text-color);
}

.GPTPlaneChatBotWindowIFrame {
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	margin: 0;
	flex-grow: 100;
}

