#wpscb-chatbot,
#wpscb-chatbot *,
#wpscb-chatbot *::before,
#wpscb-chatbot *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: inherit;
	font-family: var(--wslcbp-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
	font-size: inherit;
	font-style: normal;
	font-weight: inherit;
	line-height: 1.45;
	letter-spacing: 0;
	text-transform: none;
	text-decoration: none;
	text-shadow: none;
	box-shadow: none;
	filter: none;
	vertical-align: baseline;
}

#wpscb-chatbot {
	display: block;
	color: var(--wslcbp-text);
	font-size: var(--wslcbp-font-size);
	font-weight: 400;
	line-height: 1.45;
	isolation: isolate;
	z-index: 2147483000;
}

#wpscb-chatbot [hidden] {
	display: none;
}

#wpscb-chatbot button,
#wpscb-chatbot input,
#wpscb-chatbot select,
#wpscb-chatbot textarea {
	appearance: none;
	-webkit-appearance: none;
	width: auto;
	min-width: 0;
	max-width: none;
	height: auto;
	min-height: 0;
	max-height: none;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	letter-spacing: 0;
	text-align: inherit;
	text-transform: none;
	text-decoration: none;
	box-shadow: none;
	filter: none;
}

#wpscb-chatbot button {
	overflow: visible;
	cursor: pointer;
}

#wpscb-chatbot button:disabled {
	cursor: default;
}

#wpscb-chatbot input::placeholder,
#wpscb-chatbot textarea::placeholder {
	color: #64748b;
	opacity: .82;
	font: inherit;
	letter-spacing: 0;
	text-transform: none;
}

#wpscb-chatbot svg {
	display: block;
	flex: 0 0 auto;
	overflow: visible;
	width: auto;
	height: auto;
	max-width: none;
	max-height: none;
	fill: none;
	stroke: currentColor;
	vertical-align: middle;
}

#wpscb-chatbot svg path,
#wpscb-chatbot svg circle,
#wpscb-chatbot svg rect,
#wpscb-chatbot svg line,
#wpscb-chatbot svg polyline,
#wpscb-chatbot svg polygon {
	vector-effect: non-scaling-stroke;
}

#wpscb-chatbot img {
	display: block;
	width: auto;
	height: auto;
	max-width: none;
	border: 0;
	border-radius: 0;
	object-fit: initial;
	box-shadow: none;
	filter: none;
	vertical-align: middle;
}

#wpscb-chatbot.wslcbp-mode-floating {
	position: fixed;
}

#wpscb-chatbot.wslcbp-position-bottom-right {
	right: 24px;
	bottom: 24px;
}

#wpscb-chatbot.wslcbp-position-bottom-left {
	bottom: 24px;
	left: 24px;
}

#wpscb-chatbot.wslcbp-position-custom {
	right: var(--wslcbp-custom-x);
	bottom: var(--wslcbp-custom-y);
}

#wpscb-chatbot.wslcbp-mode-inline {
	position: relative;
	width: 100%;
	max-width: var(--wslcbp-width);
	margin: 0 auto;
}

#wpscb-chatbot .wslcbp-launcher {
	position: relative;
	display: inline-flex;
	width: var(--wslcbp-button-size);
	min-width: var(--wslcbp-button-size);
	max-width: var(--wslcbp-button-size);
	height: var(--wslcbp-button-size);
	min-height: var(--wslcbp-button-size);
	max-height: var(--wslcbp-button-size);
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--wslcbp-button);
	color: #fff;
	box-shadow: var(--wslcbp-shadow);
	cursor: pointer;
	transform: none;
	transition: transform var(--wslcbp-speed) ease, background var(--wslcbp-speed) ease;
}

#wpscb-chatbot .wslcbp-launcher:hover,
#wpscb-chatbot .wslcbp-launcher:focus-visible {
	background: var(--wslcbp-button-hover);
	transform: translateY(-2px);
	outline: none;
}

#wpscb-chatbot .wslcbp-launcher svg,
#wpscb-chatbot .wslcbp-launcher img {
	display: block;
	width: 30px;
	min-width: 30px;
	max-width: 30px;
	height: 30px;
	min-height: 30px;
	max-height: 30px;
}

#wpscb-chatbot .wslcbp-launcher svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#wpscb-chatbot .wslcbp-launcher-badge {
	position: absolute;
	top: -3px;
	right: -3px;
	display: block;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: #ef4444;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

#wpscb-chatbot .wslcbp-launcher-badge[hidden] {
	display: none;
}

#wpscb-chatbot .wslcbp-animation-pulse {
	animation: wslcbp-pulse 2s infinite;
}

#wpscb-chatbot .wslcbp-animation-bounce {
	animation: wslcbp-bounce 2.8s infinite;
}

#wpscb-chatbot .wslcbp-animation-rotate .wslcbp-launcher-icon {
	animation: wslcbp-rotate 5s linear infinite;
}

#wpscb-chatbot .wslcbp-panel {
	display: flex;
	width: min(var(--wslcbp-width), calc(100vw - 28px));
	height: min(var(--wslcbp-height), calc(100vh - 108px));
	max-height: 760px;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(148, 163, 184, .24);
	border-radius: 24px;
	background: var(--wslcbp-bg);
	box-shadow: var(--wslcbp-shadow);
}

#wpscb-chatbot.wslcbp-mode-floating .wslcbp-panel {
	position: absolute;
	right: 0;
	bottom: calc(var(--wslcbp-button-size) + 16px);
	transform: translateY(10px) scale(.98);
	transform-origin: bottom right;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--wslcbp-speed) ease, transform var(--wslcbp-speed) ease;
}

#wpscb-chatbot.wslcbp-position-bottom-left .wslcbp-panel {
	right: auto;
	left: 0;
	transform-origin: bottom left;
}

#wpscb-chatbot.wslcbp-mode-floating.wslcbp-open .wslcbp-panel {
	transform: translateY(0) scale(1);
	opacity: 1;
	pointer-events: auto;
}

#wpscb-chatbot .wslcbp-panel[hidden] {
	display: none;
}

#wpscb-chatbot.wslcbp-glass .wslcbp-panel {
	backdrop-filter: blur(18px);
	background: color-mix(in srgb, var(--wslcbp-bg) 78%, transparent);
}

#wpscb-chatbot .wslcbp-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px;
	background: var(--wslcbp-header);
	color: #fff;
}

#wpscb-chatbot.wslcbp-gradient .wslcbp-header {
	background: linear-gradient(135deg, var(--wslcbp-header), var(--wslcbp-secondary));
}

#wpscb-chatbot .wslcbp-brand {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 12px;
}

#wpscb-chatbot .wslcbp-avatar {
	display: inline-flex;
	width: var(--wslcbp-avatar-size);
	min-width: var(--wslcbp-avatar-size);
	max-width: var(--wslcbp-avatar-size);
	height: var(--wslcbp-avatar-size);
	min-height: var(--wslcbp-avatar-size);
	max-height: var(--wslcbp-avatar-size);
	flex: 0 0 var(--wslcbp-avatar-size);
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 50%;
	background: rgba(255, 255, 255, .22);
	color: #fff;
	font-size: var(--wslcbp-font-size);
	font-weight: 700;
	line-height: var(--wslcbp-avatar-size);
	text-align: center;
}

#wpscb-chatbot .wslcbp-avatar img {
	display: block;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	object-fit: cover;
}

#wpscb-chatbot .wslcbp-brand-text {
	min-width: 0;
}

#wpscb-chatbot .wslcbp-brand-text strong,
#wpscb-chatbot .wslcbp-brand-text span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#wpscb-chatbot .wslcbp-brand-text strong {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
}

#wpscb-chatbot .wslcbp-brand-text span {
	color: rgba(255, 255, 255, .86);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
}

#wpscb-chatbot .wslcbp-brand-text i {
	display: inline-block;
	width: 8px;
	min-width: 8px;
	max-width: 8px;
	height: 8px;
	min-height: 8px;
	max-height: 8px;
	margin-right: 6px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 4px rgba(34, 197, 94, .2);
}

#wpscb-chatbot .wslcbp-icon-button {
	display: inline-flex;
	width: 36px;
	min-width: 36px;
	max-width: 36px;
	height: 36px;
	min-height: 36px;
	max-height: 36px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .16);
	color: #fff;
	cursor: pointer;
}

#wpscb-chatbot .wslcbp-icon-button:hover,
#wpscb-chatbot .wslcbp-icon-button:focus-visible {
	background: rgba(255, 255, 255, .26);
	outline: none;
}

#wpscb-chatbot .wslcbp-icon-button svg {
	display: block;
	width: 20px;
	min-width: 20px;
	max-width: 20px;
	height: 20px;
	min-height: 20px;
	max-height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

#wpscb-chatbot .wslcbp-subheader {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-bottom: 1px solid rgba(148, 163, 184, .18);
	background: color-mix(in srgb, var(--wslcbp-bg) 92%, #eef2ff);
	color: color-mix(in srgb, var(--wslcbp-text) 68%, #64748b);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
}

#wpscb-chatbot .wslcbp-subheader img {
	display: block;
	width: 22px;
	min-width: 22px;
	max-width: 22px;
	height: 22px;
	min-height: 22px;
	max-height: 22px;
	object-fit: contain;
}

#wpscb-chatbot .wslcbp-messages {
	flex: 1 1 auto;
	overflow-x: hidden;
	overflow-y: auto;
	padding: var(--wslcbp-spacing);
	background:
		radial-gradient(circle at 0 0, rgba(20, 184, 166, .08), transparent 30%),
		linear-gradient(180deg, rgba(248, 250, 252, .75), transparent 34%);
	scroll-behavior: smooth;
}

#wpscb-chatbot.wslcbp-theme-dark .wslcbp-messages {
	background:
		radial-gradient(circle at 0 0, rgba(20, 184, 166, .12), transparent 32%),
		linear-gradient(180deg, rgba(15, 23, 42, .26), transparent 42%);
}

#wpscb-chatbot .wslcbp-message-row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin: 0 0 12px;
	animation: wslcbp-slide-in var(--wslcbp-speed) ease both;
}

#wpscb-chatbot .wslcbp-message-row-user {
	justify-content: flex-end;
}

#wpscb-chatbot .wslcbp-message-avatar {
	display: block;
	width: 28px;
	min-width: 28px;
	max-width: 28px;
	height: 28px;
	min-height: 28px;
	max-height: 28px;
	flex: 0 0 28px;
	overflow: hidden;
	border-radius: 50%;
	background: var(--wslcbp-secondary);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 28px;
	text-align: center;
}

#wpscb-chatbot .wslcbp-message-avatar img {
	display: block;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	object-fit: cover;
}

#wpscb-chatbot .wslcbp-message-row-user .wslcbp-message-avatar {
	order: 2;
	background: #0f172a;
}

#wpscb-chatbot .wslcbp-bubble {
	display: block;
	max-width: min(78%, 310px);
	padding: 10px 12px;
	border-radius: var(--wslcbp-radius);
	background: var(--wslcbp-bot-bubble);
	color: var(--wslcbp-text);
	font-size: var(--wslcbp-font-size);
	font-weight: 400;
	line-height: 1.45;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
	word-break: break-word;
}

#wpscb-chatbot .wslcbp-message-row-user .wslcbp-bubble {
	border-bottom-right-radius: 6px;
	background: var(--wslcbp-user-bubble);
	color: #fff;
}

#wpscb-chatbot .wslcbp-message-row-bot .wslcbp-bubble {
	border-bottom-left-radius: 6px;
}

#wpscb-chatbot .wslcbp-time {
	display: block;
	margin-top: 4px;
	color: color-mix(in srgb, currentColor 62%, transparent);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.45;
	text-align: right;
}

#wpscb-chatbot .wslcbp-typing .wslcbp-bubble {
	display: inline-flex;
	min-width: 58px;
	align-items: center;
	gap: 4px;
}

#wpscb-chatbot .wslcbp-dot {
	display: block;
	width: 7px;
	min-width: 7px;
	max-width: 7px;
	height: 7px;
	min-height: 7px;
	max-height: 7px;
	border-radius: 50%;
	background: currentColor;
	opacity: .38;
	animation: wslcbp-dot 1s infinite ease-in-out;
}

#wpscb-chatbot .wslcbp-dot:nth-child(2) {
	animation-delay: .14s;
}

#wpscb-chatbot .wslcbp-dot:nth-child(3) {
	animation-delay: .28s;
}

#wpscb-chatbot .wslcbp-typing-presence {
	display: block;
	padding: 0 16px 8px;
	color: color-mix(in srgb, var(--wslcbp-text) 55%, #64748b);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
}

#wpscb-chatbot .wslcbp-typing-presence[hidden] {
	display: none;
}

#wpscb-chatbot .wslcbp-composer {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	padding: 12px;
	border-top: 1px solid rgba(148, 163, 184, .18);
	background: var(--wslcbp-footer);
}

#wpscb-chatbot .wslcbp-composer[hidden] {
	display: none;
}

#wpscb-chatbot .wslcbp-input-slot {
	flex: 1 1 auto;
	min-width: 0;
}

#wpscb-chatbot .wslcbp-field,
#wpscb-chatbot .wslcbp-select,
#wpscb-chatbot .wslcbp-textarea {
	display: block;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	min-height: 44px;
	border: 1px solid rgba(148, 163, 184, .38);
	border-radius: 16px;
	background: #fff;
	color: #111827;
	font: inherit;
	font-size: var(--wslcbp-font-size);
	font-weight: 400;
	line-height: 1.45;
	outline: none;
	padding: 11px 13px;
	box-shadow: none;
	transition: border var(--wslcbp-speed) ease, box-shadow var(--wslcbp-speed) ease;
}

#wpscb-chatbot .wslcbp-select {
	appearance: auto;
	-webkit-appearance: menulist;
}

#wpscb-chatbot.wslcbp-theme-dark .wslcbp-field,
#wpscb-chatbot.wslcbp-theme-dark .wslcbp-select,
#wpscb-chatbot.wslcbp-theme-dark .wslcbp-textarea {
	border-color: rgba(148, 163, 184, .32);
	background: #111827;
	color: #f8fafc;
}

#wpscb-chatbot .wslcbp-textarea {
	min-height: 84px;
	resize: vertical;
}

#wpscb-chatbot .wslcbp-field:focus,
#wpscb-chatbot .wslcbp-select:focus,
#wpscb-chatbot .wslcbp-textarea:focus {
	border-color: var(--wslcbp-primary);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--wslcbp-primary) 18%, transparent);
}

#wpscb-chatbot .wslcbp-choice-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

#wpscb-chatbot .wslcbp-choice {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border: 1px solid rgba(148, 163, 184, .38);
	border-radius: 999px;
	background: #fff;
	color: #111827;
	font: inherit;
	font-size: var(--wslcbp-font-size);
	font-weight: 400;
	line-height: 1.45;
	cursor: pointer;
	transition: background var(--wslcbp-speed) ease, color var(--wslcbp-speed) ease, border var(--wslcbp-speed) ease;
}

#wpscb-chatbot.wslcbp-theme-dark .wslcbp-choice {
	background: #111827;
	color: #f8fafc;
}

#wpscb-chatbot .wslcbp-choice[aria-pressed="true"],
#wpscb-chatbot .wslcbp-choice:hover,
#wpscb-chatbot .wslcbp-choice:focus-visible {
	border-color: var(--wslcbp-primary);
	background: var(--wslcbp-primary);
	color: #fff;
	outline: none;
}

#wpscb-chatbot .wslcbp-location-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
}

#wpscb-chatbot .wslcbp-mini-button {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 0;
	border-radius: 16px;
	background: color-mix(in srgb, var(--wslcbp-secondary) 92%, #fff);
	color: #fff;
	font: inherit;
	font-size: var(--wslcbp-font-size);
	font-weight: 700;
	line-height: 1.45;
	cursor: pointer;
}

#wpscb-chatbot .wslcbp-send {
	display: inline-flex;
	width: 44px;
	min-width: 44px;
	max-width: 44px;
	height: 44px;
	min-height: 44px;
	max-height: 44px;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--wslcbp-button);
	color: #fff;
	font: inherit;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
	transform: none;
	transition: transform var(--wslcbp-speed) ease, background var(--wslcbp-speed) ease;
}

#wpscb-chatbot .wslcbp-send:hover,
#wpscb-chatbot .wslcbp-send:focus-visible {
	background: var(--wslcbp-button-hover);
	transform: translateY(-1px);
	outline: none;
}

#wpscb-chatbot .wslcbp-send[disabled] {
	cursor: wait;
	opacity: .62;
	transform: none;
}

#wpscb-chatbot .wslcbp-send svg {
	display: block;
	width: 20px;
	min-width: 20px;
	max-width: 20px;
	height: 20px;
	min-height: 20px;
	max-height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#wpscb-chatbot .wslcbp-error {
	display: block;
	margin-top: 7px;
	color: #dc2626;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
}

#wpscb-chatbot.wslcbp-theme-dark {
	--wslcbp-bg: #0f172a;
	--wslcbp-bot-bubble: #1f2937;
	--wslcbp-text: #f8fafc;
	--wslcbp-footer: #111827;
}

#wpscb-chatbot .wslcbp-launcher,
#wpscb-chatbot .wslcbp-icon-button,
#wpscb-chatbot .wslcbp-send {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	font-family: var(--wslcbp-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif) !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

#wpscb-chatbot .wslcbp-launcher {
	width: var(--wslcbp-button-size) !important;
	height: var(--wslcbp-button-size) !important;
	min-width: var(--wslcbp-button-size) !important;
	min-height: var(--wslcbp-button-size) !important;
	max-width: var(--wslcbp-button-size) !important;
	max-height: var(--wslcbp-button-size) !important;
}

#wpscb-chatbot .wslcbp-send {
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 44px !important;
	max-width: 44px !important;
	max-height: 44px !important;
	flex: 0 0 44px !important;
}

#wpscb-chatbot .wslcbp-icon-button {
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	min-height: 36px !important;
	max-width: 36px !important;
	max-height: 36px !important;
}

#wpscb-chatbot .wslcbp-avatar,
#wpscb-chatbot .wslcbp-message-avatar {
	border-radius: 50% !important;
	overflow: hidden !important;
}

#wpscb-chatbot .wslcbp-avatar {
	width: var(--wslcbp-avatar-size) !important;
	height: var(--wslcbp-avatar-size) !important;
	min-width: var(--wslcbp-avatar-size) !important;
	min-height: var(--wslcbp-avatar-size) !important;
	max-width: var(--wslcbp-avatar-size) !important;
	max-height: var(--wslcbp-avatar-size) !important;
	flex: 0 0 var(--wslcbp-avatar-size) !important;
}

#wpscb-chatbot .wslcbp-message-avatar {
	width: 28px !important;
	height: 28px !important;
	min-width: 28px !important;
	min-height: 28px !important;
	max-width: 28px !important;
	max-height: 28px !important;
	flex: 0 0 28px !important;
}

#wpscb-chatbot .wslcbp-avatar img,
#wpscb-chatbot .wslcbp-message-avatar img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: cover !important;
}

#wpscb-chatbot .wslcbp-launcher svg,
#wpscb-chatbot .wslcbp-launcher img,
#wpscb-chatbot .wslcbp-icon-button svg,
#wpscb-chatbot .wslcbp-send svg {
	display: block !important;
	flex: 0 0 auto !important;
}

#wpscb-chatbot .wslcbp-launcher svg,
#wpscb-chatbot .wslcbp-launcher img {
	width: 30px !important;
	height: 30px !important;
	min-width: 30px !important;
	min-height: 30px !important;
	max-width: 30px !important;
	max-height: 30px !important;
}

#wpscb-chatbot .wslcbp-icon-button svg,
#wpscb-chatbot .wslcbp-send svg {
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	min-height: 20px !important;
	max-width: 20px !important;
	max-height: 20px !important;
}

#wpscb-chatbot .wslcbp-field,
#wpscb-chatbot .wslcbp-select,
#wpscb-chatbot .wslcbp-textarea {
	min-height: 44px !important;
	padding: 11px 13px !important;
	border-radius: 16px !important;
	font-family: var(--wslcbp-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif) !important;
	line-height: 1.45 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

@media (max-width: 600px) {
	#wpscb-chatbot.wslcbp-mode-floating {
		right: 0;
		bottom: 0;
		left: 0;
	}

	#wpscb-chatbot.wslcbp-mode-floating .wslcbp-launcher {
		position: fixed;
		right: 18px;
		bottom: 18px;
	}

	#wpscb-chatbot.wslcbp-mode-floating .wslcbp-panel {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100vw;
		height: min(86vh, 760px);
		max-height: none;
		border-right: 0;
		border-bottom: 0;
		border-left: 0;
		border-radius: 24px 24px 0 0;
		transform-origin: bottom center;
	}

	#wpscb-chatbot .wslcbp-bubble {
		max-width: 84%;
	}
}

@keyframes wslcbp-slide-in {
	from {
		transform: translateY(8px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes wslcbp-dot {
	0%,
	80%,
	100% {
		transform: translateY(0);
		opacity: .32;
	}
	40% {
		transform: translateY(-4px);
		opacity: .85;
	}
}

@keyframes wslcbp-pulse {
	0% {
		box-shadow: 0 0 0 0 color-mix(in srgb, var(--wslcbp-button) 45%, transparent), var(--wslcbp-shadow);
	}
	70% {
		box-shadow: 0 0 0 16px transparent, var(--wslcbp-shadow);
	}
	100% {
		box-shadow: 0 0 0 0 transparent, var(--wslcbp-shadow);
	}
}

@keyframes wslcbp-bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-8px);
	}
	60% {
		transform: translateY(-4px);
	}
}

@keyframes wslcbp-rotate {
	to {
		transform: rotate(360deg);
	}
}
