#cerkal-chat-button {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 999999;
	background: #111;
	color: #fff;
	border: 0;
	border-radius: 50px;
	padding: 15px 22px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

#cerkal-chat-window {
	position: fixed;
	right: 22px;
	bottom: 85px;
	width: 360px;
	max-width: calc(100vw - 30px);
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 20px 60px rgba(0,0,0,.25);
	z-index: 999999;
	overflow: hidden;
	display: none;
	font-family: Arial, sans-serif;
}

.cerkal-chat-header {
	background: #111;
	color: #fff;
	padding: 20px;
}

.cerkal-chat-header strong,
.cerkal-chat-header span {
	display: block;
}

.cerkal-chat-header span {
	font-size: 13px;
	opacity: .8;
	margin-top: 4px;
}

#cerkal-chat-close {
	float: right;
	background: transparent;
	color: #fff;
	border: 0;
	font-size: 22px;
	cursor: pointer;
}

.cerkal-chat-body {
	padding: 20px;
	max-height: 520px;
	overflow-y: auto;
}

.cerkal-chat-message {
	background: #f3f3f3;
	padding: 12px 14px;
	border-radius: 12px;
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 1.5;
}

.cerkal-chat-options button {
	width: 100%;
	text-align: left;
	background: #fff;
	border: 1px solid #ddd;
	padding: 12px;
	margin-bottom: 8px;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
}

.cerkal-chat-options button:hover {
	background: #f7f7f7;
}

.cerkal-chat-form,
#cerkal-chat-result {
	display: none;
}

.cerkal-chat-form input,
.cerkal-chat-form textarea {
	width: 100%;
	padding: 11px;
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 10px;
	box-sizing: border-box;
	font-size: 14px;
}

.cerkal-chat-form textarea {
	min-height: 90px;
	resize: vertical;
}

.cerkal-chat-submit {
	width: 100%;
	background: #111;
	color: #fff;
	border: 0;
	border-radius: 9px;
	padding: 12px;
	font-weight: 600;
	cursor: pointer;
}

@media (max-width: 600px) {
	#cerkal-chat-window {
		right: 15px;
		bottom: 78px;
		width: calc(100vw - 30px);
	}

	#cerkal-chat-button {
		right: 15px;
		bottom: 15px;
	}
}
