<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Button to Open Chatbot*/
.open-button {
    /*background-color: #555;*/
	color: white;
	/* padding: 8px 10px; */
	border: none;
	cursor: pointer;
	opacity: 0.8;
	position: fixed;
	bottom: 15px;
	right: 15px;
	right: 20px;
	width: 100px;
	width: 50px;
	z-index: 9999;
}
.open-button img{
    height: 100%;
    width: 100%;
}

/*Popup chatbot*/
.chat-popup {
	display: none;
	width: 300px;
	max-height: 400px;
	position: fixed;
	bottom: 0;
	right: 15px;
	border: 3px solid #f1f1f1;
	z-index: 9999999;
}

/*Add Style on form container*/
.form-container {
	max-width: 300px;
	padding: 10px;
	background-color: white;
	min-height: 200px;
}
/*text area width */
.form-container textarea {
	width: 100%;
	padding: 5px;
	margin: 2px 0 2px 0;
	border: none;
	background: #f1f1f1;
	resize: none;
	min-height: 50px;
}
/*Text Area focus*/
.form-container textarea:focus {
	background-color: #ddd;
	outline: none;
}
/*Button Style*/
.form-container .btn {
	background-color: #4caf50;
	color: white;
	padding: 5px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	margin-bottom: 10px;
	opacity: 0.8;
}
/*Cancel button */
.form-container .cancel {
	background-color: red;
}
/*Hover effect on button */
.form-container .btn:hover,
.open-button:hover {
	opacity: 1;
}

/*Send Button Style*/
.sbtn {
	/* margin-top: 150px;*/
}
/*Chat Message*/
.chatmgs {
	width: 100%;
	padding: 5px;
	margin: 2px 0 0 0;
	border: none;
	background: #f1f1f1;
	resize: none;
	min-height: 100px;
	height: 200px;
	overflow-y: auto;
}
/*Chat Label*/
.chatlabel {
	width: 100%;
	padding: 15px;
	margin: 2px 0 0 0;
	border: none;
	background: #007bff;
	color: black;
	resize: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.closebtn {
    margin-left: 0 !important;
	width: 24px;
    text-align: center;
	/* height: 30px; */
    cursor: pointer;
	font-size: 24px;
    transition: all 0.1s ease;
}
.closebtn:hover {
    /* background: rgba(245, 245, 245, 0.2); */
    /* font-size: 25px; */
    transform: rotate(90deg);
}
</pre></body></html>