.flowrage-chatbot__panel[hidden] {
	display: none !important;
}

.flowrage-chatbot__launcher {
	display: inline-grid;
	place-items: center;
	align-items: center;
	width: 58px;
	height: 58px;
	padding: 0;
	border: 1px solid rgba(17, 39, 74, 0.1);
	border-radius: 999px;
	background: #ffffff;
	color: #ffffff;
	box-shadow: 0 16px 36px rgba(11, 29, 49, 0.18);
	font-family: var(--fa-font-button);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.flowrage-chatbot__launcher:hover,
.flowrage-chatbot__launcher:focus-visible {
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 40px rgba(11, 29, 49, 0.22);
	transform: translateY(-1px);
}

.flowrage-chatbot__launcher-icon {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: #7a27ff;
	color: #ffffff;
	overflow: hidden;
	box-shadow: 0 8px 18px rgba(122, 39, 255, 0.22);
}

.flowrage-chatbot__launcher-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flowrage-chatbot__panel {
	width: min(408px, calc(100vw - 24px));
	max-height: min(680px, calc(100dvh - 96px));
	display: flex;
	flex-direction: column;
	background: #0f1726;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 72px rgba(8, 19, 36, 0.42);
	border-radius: 24px;
	overflow: hidden;
}

.flowrage-chatbot__starter,
.flowrage-chatbot__messages,
.flowrage-chatbot__lead,
.flowrage-chatbot__lead-form {
	scrollbar-width: thin;
	scrollbar-color: rgba(206, 37, 40, 0.82) rgba(255, 255, 255, 0.04);
}

.flowrage-chatbot__starter::-webkit-scrollbar,
.flowrage-chatbot__messages::-webkit-scrollbar,
.flowrage-chatbot__lead::-webkit-scrollbar,
.flowrage-chatbot__lead-form::-webkit-scrollbar {
	width: 10px;
}

.flowrage-chatbot__starter::-webkit-scrollbar-track,
.flowrage-chatbot__messages::-webkit-scrollbar-track,
.flowrage-chatbot__lead::-webkit-scrollbar-track,
.flowrage-chatbot__lead-form::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.03);
	border-left: 1px solid rgba(255, 255, 255, 0.03);
}

.flowrage-chatbot__starter::-webkit-scrollbar-thumb,
.flowrage-chatbot__messages::-webkit-scrollbar-thumb,
.flowrage-chatbot__lead::-webkit-scrollbar-thumb,
.flowrage-chatbot__lead-form::-webkit-scrollbar-thumb {
	background:
		linear-gradient(180deg, rgba(255, 230, 230, 0.98) 0%, rgba(245, 138, 138, 0.94) 18%, rgba(206, 37, 40, 0.9) 58%, rgba(154, 26, 29, 0.9) 100%);
	border: 2px solid rgba(14, 23, 39, 0.96);
	border-radius: 999px;
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.22),
		0 6px 14px rgba(14, 20, 36, 0.24);
}

.flowrage-chatbot__starter::-webkit-scrollbar-thumb:hover,
.flowrage-chatbot__messages::-webkit-scrollbar-thumb:hover,
.flowrage-chatbot__lead::-webkit-scrollbar-thumb:hover,
.flowrage-chatbot__lead-form::-webkit-scrollbar-thumb:hover {
	background:
		linear-gradient(180deg, rgba(255, 240, 240, 1) 0%, rgba(248, 164, 164, 0.98) 18%, rgba(223, 58, 61, 0.94) 58%, rgba(178, 34, 37, 0.92) 100%);
}

.flowrage-chatbot__starter {
	padding: 12px 16px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background:
		radial-gradient(circle at top center, rgba(122, 39, 255, 0.14), transparent 28%),
		linear-gradient(180deg, #101827 0%, #0d1522 100%);
	overflow-y: auto;
}

.flowrage-chatbot__starter-hero {
	display: grid;
	justify-items: center;
	gap: 8px;
	padding: 4px 8px 12px;
	text-align: center;
}

.flowrage-chatbot__starter-orb {
	width: 54px;
	height: 54px;
	border-radius: 999px;
	background:
		radial-gradient(circle at 32% 28%, rgba(255, 214, 238, 0.95) 0%, rgba(255, 214, 238, 0.76) 22%, transparent 26%),
		radial-gradient(circle at 56% 54%, rgba(123, 53, 255, 0.98) 0%, rgba(98, 35, 255, 0.92) 42%, rgba(36, 17, 71, 0.72) 78%, rgba(17, 24, 39, 0) 100%);
	box-shadow:
		0 0 0 12px rgba(122, 39, 255, 0.05),
		0 14px 32px rgba(18, 26, 40, 0.28);
	animation: flowrage-chatbot-orb-spin 10s linear infinite;
	transform-origin: 50% 50%;
}

@keyframes flowrage-chatbot-orb-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.flowrage-chatbot__starter-orb {
		animation: none;
	}

	.flowrage-chatbot__typing-dot {
		animation: none;
	}
}

.flowrage-chatbot__starter-heading {
	margin: 0;
	font-family: var(--fa-font-heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: #f8fbff;
}

.flowrage-chatbot__starter-summary {
	max-width: 290px;
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(230, 236, 250, 0.74);
}

.flowrage-chatbot__starter-list {
	display: grid;
	gap: 8px;
}

.flowrage-chatbot__starter-option {
	width: 100%;
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	border: 1px solid rgba(141, 106, 255, 0.16);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03) !important;
	text-align: left;
	color: #eef2ff !important;
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.flowrage-chatbot__starter-option:hover,
.flowrage-chatbot__starter-option:focus-visible {
	background: rgba(255, 255, 255, 0.06) !important;
	border-color: rgba(141, 106, 255, 0.32);
	box-shadow: 0 14px 30px rgba(8, 19, 36, 0.2);
	transform: translateY(-1px);
	color: #ffffff !important;
}

.flowrage-chatbot__starter-option-icon {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	font-size: 11px;
	color: #b783ff;
}

.flowrage-chatbot__starter-option-text {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	color: inherit;
}

.flowrage-chatbot__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: #121b2b;
	color: #f5f8ff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.flowrage-chatbot__brand,
.flowrage-chatbot__avatar {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 999px;
	background: #7a27ff;
	color: #ffffff;
	overflow: hidden;
}

.flowrage-chatbot__brand img,
.flowrage-chatbot__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flowrage-chatbot__header-copy {
	min-width: 0;
	flex: 1 1 auto;
}

.flowrage-chatbot__title {
	margin: 0;
	font-family: var(--fa-font-heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #f7f8fc;
}

.flowrage-chatbot__status {
	margin: 2px 0 0;
	font-size: 11px;
	line-height: 1.35;
	color: rgba(236, 241, 255, 0.62);
}

.flowrage-chatbot__close {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(122, 39, 255, 0.1);
	border-radius: 999px;
	background: #7a27ff;
	color: #ffffff;
	flex: 0 0 auto;
	padding: 0;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.flowrage-chatbot__close i {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	line-height: 1;
}

.flowrage-chatbot__close:hover,
.flowrage-chatbot__close:focus-visible {
	background: rgba(255, 255, 255, 0.92);
	color: #7a27ff;
	border-color: rgba(122, 39, 255, 0.22);
	transform: translateY(-1px);
}

.flowrage-chatbot__messages {
	padding: 12px 16px 8px;
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	background: #0f1726;
}

.flowrage-chatbot__message {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
}

.flowrage-chatbot__message.is-pending {
	opacity: 0.92;
}

.flowrage-chatbot__message--user {
	justify-content: flex-end;
}

.flowrage-chatbot__message--user .flowrage-chatbot__avatar {
	display: none;
}

.flowrage-chatbot__bubble {
	max-width: 88%;
	padding: 13px 15px;
	border-radius: 18px;
	font-size: 13px;
	line-height: 1.6;
	white-space: pre-wrap;
	text-align: left;
	word-break: normal;
	overflow-wrap: break-word;
	box-shadow: 0 10px 26px rgba(16, 31, 51, 0.05);
}

.flowrage-chatbot__link {
	color: #b9cfff;
	text-decoration: underline;
	text-decoration-color: rgba(185, 207, 255, 0.45);
	text-underline-offset: 2px;
}

.flowrage-chatbot__link:hover,
.flowrage-chatbot__link:focus-visible {
	color: #ffffff;
	text-decoration-color: rgba(255, 255, 255, 0.82);
}

.flowrage-chatbot__message--assistant .flowrage-chatbot__bubble {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
	color: #edf2ff;
	border-bottom-left-radius: 8px;
}

.flowrage-chatbot__message--user .flowrage-chatbot__bubble {
	background: #1b2d47;
	color: #ffffff;
	border-bottom-right-radius: 8px;
}

.flowrage-chatbot__message.is-pending .flowrage-chatbot__bubble {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 46px;
}

.flowrage-chatbot__typing-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	animation: flowrage-chatbot-typing 1s ease-in-out infinite;
}

.flowrage-chatbot__typing-dot:nth-child(2) {
	animation-delay: 0.14s;
}

.flowrage-chatbot__typing-dot:nth-child(3) {
	animation-delay: 0.28s;
}

@keyframes flowrage-chatbot-typing {
	0%,
	80%,
	100% {
		opacity: 0.35;
		transform: translateY(0);
	}
	40% {
		opacity: 1;
		transform: translateY(-3px);
	}
}

.flowrage-chatbot__quick-actions,
.flowrage-chatbot__ctas {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	flex: 0 0 auto;
	position: relative;
	z-index: 3;
	gap: 10px;
	padding: 10px 16px 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background: #0f1726;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scroll-padding-left: 16px;
	scroll-padding-right: 16px;
	touch-action: pan-x pinch-zoom;
	cursor: grab;
}

.flowrage-chatbot__quick-actions.is-dragging,
.flowrage-chatbot__ctas.is-dragging {
	cursor: grabbing;
	user-select: none;
}

.flowrage-chatbot__quick-actions[hidden],
.flowrage-chatbot__ctas[hidden] {
	display: none !important;
}

.flowrage-chatbot__quick-actions::-webkit-scrollbar,
.flowrage-chatbot__ctas::-webkit-scrollbar {
	display: none;
}

.flowrage-chatbot__chip,
.flowrage-chatbot__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	font-family: var(--fa-font-button);
	font-size: var(--fa-button-size);
	font-weight: var(--fa-button-weight);
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
}

.flowrage-chatbot__chip {
	border: 1px solid rgba(151, 121, 255, 0.28);
	background: rgba(255, 255, 255, 0.06) !important;
	color: #f5f7ff !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	text-decoration: none;
}

.flowrage-chatbot__chip:hover,
.flowrage-chatbot__chip:focus-visible {
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: rgba(215, 197, 255, 0.5);
	color: #ffffff !important;
}

.flowrage-chatbot__cta--primary {
	background: var(--fa-primary);
	color: #ffffff;
}

.flowrage-chatbot__cta--primary:hover,
.flowrage-chatbot__cta--primary:focus-visible {
	background: #ff4f4f;
	color: #ffffff;
}

.flowrage-chatbot__cta--ghost {
	border: 1px solid rgba(17, 39, 74, 0.14);
	background: #ffffff;
	color: #11233a;
}

.flowrage-chatbot__cta--outline {
	border: 1px solid rgba(122, 39, 255, 0.34);
	background: rgba(255, 255, 255, 0.04);
	color: #f3f6ff;
}

.flowrage-chatbot__cta--outline:hover,
.flowrage-chatbot__cta--outline:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(185, 157, 255, 0.5);
	color: #ffffff;
}

.flowrage-chatbot__cta--whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(37, 211, 102, 0.42);
	background: linear-gradient(180deg, #25d366 0%, #1ebe5b 100%);
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(37, 211, 102, 0.2);
}

.flowrage-chatbot__cta--whatsapp i {
	font-size: 15px;
	line-height: 1;
}

.flowrage-chatbot__cta--whatsapp span {
	display: inline-block;
}

.flowrage-chatbot__cta--whatsapp:hover,
.flowrage-chatbot__cta--whatsapp:focus-visible {
	background: linear-gradient(180deg, #2ae06d 0%, #22c45e 100%);
	border-color: rgba(90, 234, 140, 0.54);
	color: #ffffff;
}

.flowrage-chatbot__lead {
	padding: 8px 16px 10px;
	flex: 0 1 auto;
	min-height: 0;
	overflow-y: auto;
	background: #0f1726;
}

.flowrage-chatbot__lead-copy {
	margin-bottom: 8px;
}

.flowrage-chatbot__lead-title {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: #f4f7ff;
}

.flowrage-chatbot__lead-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(236, 241, 255, 0.86);
}

.flowrage-chatbot__lead-form {
	display: grid;
	gap: 8px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: #121b2b;
	max-height: min(360px, calc(100dvh - 220px));
	overflow-y: auto;
}

.flowrage-chatbot__lead-form input,
.flowrage-chatbot__lead-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 12px 13px;
	font-size: 14px;
	line-height: 1.5;
	font-family: var(--fa-font-body);
	color: #f5f8ff;
	background: rgba(255, 255, 255, 0.05);
	caret-color: #ffffff;
}

.flowrage-chatbot__lead-form input::placeholder,
.flowrage-chatbot__lead-form textarea::placeholder,
.flowrage-chatbot__composer input::placeholder {
	color: rgba(236, 241, 255, 0.68);
}

.flowrage-chatbot__lead-form textarea {
	min-height: 92px;
	max-height: 140px;
	resize: vertical;
}

.flowrage-chatbot__lead-form input:focus,
.flowrage-chatbot__lead-form textarea:focus,
.flowrage-chatbot__composer input:focus {
	outline: none;
	border-color: rgba(122, 39, 255, 0.34);
	box-shadow: 0 0 0 3px rgba(122, 39, 255, 0.08);
}

.flowrage-chatbot__lead-submit {
	min-height: 42px;
	border: 0;
	border-radius: 12px;
	background: #11233a;
	color: #ffffff;
	font-family: var(--fa-font-button);
	font-size: var(--fa-button-size);
	font-weight: var(--fa-button-weight);
	line-height: 1.2;
	letter-spacing: 0;
}

.flowrage-chatbot__lead-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	align-items: stretch;
}

.flowrage-chatbot__lead-skip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	min-height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03) !important;
	color: #eef2ff !important;
	font-family: var(--fa-font-button);
	font-size: var(--fa-button-size);
	font-weight: var(--fa-button-weight);
	line-height: 1.2;
	letter-spacing: 0;
}

.flowrage-chatbot__lead-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
}

.flowrage-chatbot__lead-skip:hover,
.flowrage-chatbot__lead-skip:focus-visible {
	background: rgba(255, 255, 255, 0.07) !important;
	border-color: rgba(215, 197, 255, 0.34) !important;
	color: #ffffff !important;
}

.flowrage-chatbot__lead-submit:hover,
.flowrage-chatbot__lead-submit:focus-visible,
.flowrage-chatbot__composer button:hover,
.flowrage-chatbot__composer button:focus-visible {
	background: #1a3150;
	border-color: #1a3150;
	color: #ffffff;
}

.flowrage-chatbot__composer {
	display: grid;
	grid-template-columns: 1fr 52px;
	gap: 0;
	padding: 10px 16px 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	background: #0f1726;
}

.flowrage-chatbot__composer input {
	height: 52px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-right: 0;
	border-radius: 16px 0 0 16px;
	padding: 0 14px;
	font-size: 14px;
	font-family: var(--fa-font-body);
	color: #f5f8ff;
	background: rgba(255, 255, 255, 0.05);
	caret-color: #ffffff;
}

.flowrage-chatbot__composer button {
	height: 52px;
	border: 0;
	border-radius: 0 16px 16px 0;
	background: #11233a;
	color: #ffffff;
	font-family: var(--fa-font-button);
	font-size: var(--fa-button-size);
	font-weight: var(--fa-button-weight);
	line-height: 1.2;
	letter-spacing: 0;
}

.flowrage-chatbot.has-lead .flowrage-chatbot__quick-actions {
	display: none;
}

.flowrage-chatbot.has-lead .flowrage-chatbot__ctas {
	display: none;
}

.flowrage-chatbot.has-lead .flowrage-chatbot__starter {
	display: none;
}

.flowrage-chatbot.has-lead .flowrage-chatbot__composer {
	display: none;
}

.flowrage-chatbot.has-lead .flowrage-chatbot__messages {
	flex: 0 0 auto;
	max-height: 84px;
	padding-bottom: 6px;
}

.flowrage-chatbot.has-lead .flowrage-chatbot__message {
	margin-bottom: 10px;
}

.flowrage-chatbot.has-lead .flowrage-chatbot__bubble {
	font-size: 12px;
	line-height: 1.5;
	padding: 11px 13px;
}

.flowrage-chatbot.needs-intake .flowrage-chatbot__starter,
.flowrage-chatbot.needs-intake .flowrage-chatbot__messages,
.flowrage-chatbot.needs-intake .flowrage-chatbot__quick-actions,
.flowrage-chatbot.needs-intake .flowrage-chatbot__ctas,
.flowrage-chatbot.needs-intake .flowrage-chatbot__composer {
	display: none;
}

.flowrage-chatbot.needs-intake .flowrage-chatbot__lead {
	padding-top: 14px;
	flex: 1 1 auto;
}

.flowrage-chatbot.needs-intake .flowrage-chatbot__lead-copy {
	margin-bottom: 10px;
}

.flowrage-chatbot.needs-intake .flowrage-chatbot__lead-form {
	padding: 14px;
	gap: 10px;
}

.flowrage-chatbot.needs-intake .flowrage-chatbot__lead-form textarea {
	min-height: 108px;
}

.flowrage-chatbot.has-lead:not(.needs-intake) .flowrage-chatbot__starter {
	display: none;
}

.flowrage-chatbot.is-loading .flowrage-chatbot__composer button,
.flowrage-chatbot.is-loading .flowrage-chatbot__chip,
.flowrage-chatbot.is-loading .flowrage-chatbot__cta {
	opacity: 0.6;
	pointer-events: none;
}

.flowrage-chatbot__launcher-text {
	display: none;
}

@media (max-width: 760px) {
	.flowrage-chatbot {
		right: 12px;
		left: auto;
		bottom: 12px;
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	.flowrage-chatbot__launcher {
		width: 54px;
		height: 54px;
	}

	.flowrage-chatbot__panel {
		width: min(360px, calc(100vw - 24px));
		max-height: min(620px, calc(100dvh - 82px));
		border-radius: 22px;
	}

	.flowrage-chatbot__message,
	.flowrage-chatbot__message--user {
		gap: 8px;
	}

	.flowrage-chatbot__bubble {
		max-width: calc(100% - 44px);
	}

	.flowrage-chatbot__quick-actions,
	.flowrage-chatbot__ctas {
		gap: 8px;
		padding: 8px 14px 12px;
	}

	.flowrage-chatbot__starter,
	.flowrage-chatbot__messages,
	.flowrage-chatbot__lead,
	.flowrage-chatbot__composer {
		padding-left: 14px;
		padding-right: 14px;
	}

	.flowrage-chatbot__starter-hero {
		padding-top: 2px;
		padding-bottom: 10px;
	}

	.flowrage-chatbot__starter-orb {
		width: 48px;
		height: 48px;
	}

	.flowrage-chatbot__starter-heading {
		font-size: 14px;
	}

	.flowrage-chatbot__starter-summary {
		font-size: 12px;
		line-height: 1.5;
	}

	.flowrage-chatbot__starter-option {
		padding: 10px 12px;
		gap: 9px;
	}

	.flowrage-chatbot__starter-option-text {
		font-size: 12px;
	}

	.flowrage-chatbot.has-lead .flowrage-chatbot__messages {
		max-height: 72px;
	}

	.flowrage-chatbot.needs-intake .flowrage-chatbot__lead {
		padding-top: 10px;
	}

	.flowrage-chatbot__lead-form {
		padding: 10px;
		max-height: min(320px, calc(100dvh - 190px));
	}

	.flowrage-chatbot__lead-form input,
	.flowrage-chatbot__lead-form textarea {
		padding: 11px 12px;
		font-size: 13px;
	}

	.flowrage-chatbot__lead-form textarea {
		min-height: 82px;
	}

	.flowrage-chatbot__lead-actions {
