:root {
	--pps-chat-accent: #b5165b;
	--pps-chat-accent-strong: #8f1047;
	--pps-chat-ink: #1e1721;
	--pps-chat-muted: #746b77;
	--pps-chat-line: #ece7ed;
	--pps-chat-surface: #ffffff;
	--pps-chat-soft: #faf5f8;
	--pps-chat-success: #16875f;
	--pps-chat-shadow: 0 26px 80px rgba(64, 22, 45, 0.22), 0 8px 28px rgba(64, 22, 45, 0.12);
}

.pps-chat-root,
.pps-chat-root * {
	box-sizing: border-box;
}

.pps-chat-root {
	position: fixed;
	left: max(18px, env(safe-area-inset-left));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 2147482000;
	font-family: inherit;
	direction: rtl;
	color: var(--pps-chat-ink);
	-webkit-font-smoothing: antialiased;
}

.pps-chat-launcher {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 62px;
	padding: 8px 10px 8px 17px;
	border: 1px solid rgba(22, 135, 95, 0.34);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 0 0 1px rgba(22, 135, 95, 0.08), 0 0 28px rgba(22, 135, 95, 0.22), 0 14px 42px rgba(70, 22, 47, 0.18);
	color: var(--pps-chat-ink);
	cursor: pointer;
	backdrop-filter: blur(16px) saturate(145%);
	-webkit-backdrop-filter: blur(16px) saturate(145%);
	transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.pps-chat-launcher::before {
	content: "";
	position: absolute;
	inset: -5px;
	border: 2px solid rgba(22, 135, 95, 0.32);
	border-radius: inherit;
	box-shadow: 0 0 24px rgba(22, 135, 95, 0.3);
	opacity: 0.55;
	pointer-events: none;
	animation: pps-chat-online-halo 2.8s ease-in-out infinite;
}

@keyframes pps-chat-online-halo {
	0%,
	100% {
		opacity: 0.42;
		transform: scale(1);
	}

	50% {
		opacity: 0.78;
		transform: scale(1.012);
	}
}

.pps-chat-launcher:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 0 1px rgba(22, 135, 95, 0.14), 0 0 34px rgba(22, 135, 95, 0.3), 0 18px 50px rgba(70, 22, 47, 0.22);
}

.pps-chat-launcher:focus-visible,
.pps-chat-icon-button:focus-visible,
.pps-chat-quick:focus-visible,
.pps-chat-load-older:focus-visible,
.pps-chat-file:focus-visible,
.pps-chat-attachment-preview button:focus-visible,
.pps-chat-body:focus-visible,
.pps-chat-send:focus-visible,
.pps-chat-attach:focus-visible,
.pps-chat-save-guest button:focus-visible,
.pps-chat-composer textarea:focus-visible {
	outline: 3px solid var(--pps-chat-accent);
	outline-offset: 3px;
}

.pps-chat-launcher:focus-visible {
	outline-color: var(--pps-chat-success);
}

.pps-chat-launcher__copy {
	display: grid;
	gap: 2px;
	text-align: right;
	white-space: nowrap;
}

.pps-chat-launcher__copy strong {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.pps-chat-launcher__copy span {
	color: var(--pps-chat-muted);
	font-size: 11px;
	line-height: 1.4;
}

.pps-chat-team {
	position: relative;
	display: flex;
	align-items: center;
	direction: ltr;
	padding-inline-start: 6px;
}

.pps-chat-team__avatar {
	position: relative;
	width: 44px;
	height: 44px;
	margin-left: -18px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #f0e8ed;
	box-shadow: 0 0 0 1px rgba(22, 135, 95, 0.26), 0 7px 18px rgba(57, 21, 40, 0.2);
	overflow: hidden;
}

.pps-chat-team__avatar:first-child {
	margin-left: 0;
}

.pps-chat-team__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.98) contrast(1.025);
}

.pps-chat-team__avatar:nth-child(1) {
	z-index: 4;
}

.pps-chat-team__avatar:nth-child(2) {
	z-index: 3;
}

.pps-chat-team__avatar:nth-child(3) {
	z-index: 2;
}

.pps-chat-team__avatar:nth-child(4) {
	z-index: 1;
}

.pps-chat-online-dot {
	position: absolute;
	right: 4px;
	bottom: 4px;
	width: 11px;
	height: 11px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--pps-chat-success);
	box-shadow: 0 0 0 4px rgba(22, 135, 95, 0.13);
}

.pps-chat-badge {
	position: absolute;
	top: -7px;
	right: -5px;
	display: grid;
	place-items: center;
	min-width: 23px;
	height: 23px;
	padding: 0 6px;
	border: 2px solid #fff;
	border-radius: 99px;
	background: var(--pps-chat-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.pps-chat-panel {
	position: absolute;
	left: 0;
	bottom: 0;
	display: grid;
	grid-template-rows: auto auto minmax(0, 1fr) auto;
	width: min(410px, calc(100vw - 32px));
	height: min(690px, calc(100vh - 40px));
	min-height: 480px;
	border: 1px solid rgba(74, 50, 65, 0.12);
	border-radius: 27px;
	background: var(--pps-chat-surface);
	box-shadow: var(--pps-chat-shadow);
	overflow: hidden;
	transform-origin: bottom left;
	animation: pps-chat-panel-in 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

@keyframes pps-chat-panel-in {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.pps-chat-panel[hidden],
.pps-chat-launcher[hidden] {
	display: none !important;
}

.pps-chat-header {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	min-height: 94px;
	padding: 18px;
	background:
		radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.28), transparent 28%),
		linear-gradient(125deg, #8c1046 0%, #b5165b 58%, #d02e74 100%);
	color: #fff;
	overflow: hidden;
}

.pps-chat-header::after {
	content: "";
	position: absolute;
	left: -28px;
	bottom: -62px;
	width: 150px;
	height: 150px;
	border: 28px solid rgba(255, 255, 255, 0.07);
	border-radius: 50%;
}

.pps-chat-header .pps-chat-team {
	position: relative;
	z-index: 1;
	min-width: 96px;
}

.pps-chat-header .pps-chat-team__avatar {
	width: 45px;
	height: 45px;
	margin-left: -24px;
	border-color: rgba(255, 255, 255, 0.94);
}

.pps-chat-header__copy {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 4px;
	min-width: 0;
}

.pps-chat-header__copy strong {
	font-size: 16px;
	font-weight: 850;
	line-height: 1.4;
}

.pps-chat-header__status {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	font-size: 11px;
	line-height: 1.65;
	opacity: 0.9;
}

.pps-chat-header__status::before {
	content: "";
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	margin-top: 5px;
	border: 2px solid rgba(255, 255, 255, 0.48);
	border-radius: 50%;
	background: #63e6b8;
	box-shadow: 0 0 0 4px rgba(99, 230, 184, 0.12);
}

.pps-chat-toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	min-height: 43px;
	padding: 7px 14px;
	border-bottom: 1px solid var(--pps-chat-line);
	background: #fff;
}

.pps-chat-connection {
	color: var(--pps-chat-muted);
	font-size: 11px;
}

.pps-chat-icon-button {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.13);
	color: #fff;
	cursor: pointer;
	transition: background 160ms ease, transform 160ms ease;
}

.pps-chat-icon-button:hover {
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

.pps-chat-body {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 0;
	padding: 16px 14px 22px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.91), rgba(255, 255, 255, 0.97)),
		radial-gradient(circle at 20% 15%, rgba(181, 22, 91, 0.09), transparent 35%);
	overflow-x: hidden;
	overflow-y: auto;
	scroll-behavior: smooth;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
}

.pps-chat-welcome {
	display: grid;
	gap: 9px;
	padding: 15px;
	border: 1px solid #eee6eb;
	border-radius: 18px 18px 7px 18px;
	background: #fff;
	box-shadow: 0 7px 20px rgba(69, 35, 53, 0.07);
}

.pps-chat-welcome strong {
	font-size: 14px;
	font-weight: 850;
}

.pps-chat-welcome p {
	margin: 0;
	color: #625866;
	font-size: 12px;
	line-height: 1.85;
}

.pps-chat-closed-note {
	padding: 10px 12px;
	border: 1px solid #ead8e1;
	border-radius: 13px;
	background: #fff8fb;
	color: #7f164b;
	font-size: 11px;
	font-weight: 650;
	line-height: 1.75;
	text-align: center;
}

.pps-chat-save-guest {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 14px;
	border: 1px solid rgba(181, 22, 91, 0.15);
	border-radius: 16px;
	background: linear-gradient(135deg, #fff8fb, #fff);
}

.pps-chat-save-guest > span {
	display: grid;
	gap: 3px;
}

.pps-chat-save-guest strong {
	color: var(--pps-chat-ink);
	font-size: 11px;
}

.pps-chat-save-guest small {
	color: var(--pps-chat-muted);
	font-size: 9.5px;
	line-height: 1.6;
}

.pps-chat-save-guest button {
	flex: 0 0 auto;
	min-height: 36px;
	padding: 0 12px;
	border: 0;
	border-radius: 11px;
	background: var(--pps-chat-accent);
	color: #fff;
	font-family: inherit;
	font-size: 10px;
	font-weight: 800;
	cursor: pointer;
}

.pps-chat-quick-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.pps-chat-quick {
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #eadce4;
	border-radius: 999px;
	background: #fff;
	color: #7f164b;
	font-family: inherit;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer;
	transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.pps-chat-quick:hover {
	border-color: rgba(181, 22, 91, 0.42);
	background: #fff8fb;
	transform: translateY(-1px);
}

.pps-chat-message {
	display: flex;
	flex-direction: column;
	gap: 5px;
	max-width: 83%;
}

.pps-chat-message--customer {
	align-self: flex-start;
	align-items: flex-start;
}

.pps-chat-message--support,
.pps-chat-message--automatic,
.pps-chat-message--system {
	align-self: flex-end;
	align-items: flex-end;
}

.pps-chat-message__bubble {
	padding: 10px 12px;
	border-radius: 17px;
	font-size: 12px;
	line-height: 1.85;
	white-space: pre-wrap;
	word-break: break-word;
}

.pps-chat-message__link {
	color: inherit;
	direction: ltr;
	unicode-bidi: isolate;
	overflow-wrap: anywhere;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.pps-chat-message__link:focus-visible {
	border-radius: 3px;
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.pps-chat-message--customer .pps-chat-message__bubble {
	border-bottom-left-radius: 5px;
	background: linear-gradient(145deg, #a71452, #c12168);
	box-shadow: 0 8px 18px rgba(181, 22, 91, 0.17);
	color: #fff;
}

.pps-chat-message--support .pps-chat-message__bubble,
.pps-chat-message--automatic .pps-chat-message__bubble {
	border: 1px solid #ece5e9;
	border-bottom-right-radius: 5px;
	background: #fff;
	box-shadow: 0 6px 16px rgba(57, 35, 47, 0.07);
	color: #332b35;
}

.pps-chat-message--system {
	align-self: center;
	align-items: center;
	max-width: 95%;
}

.pps-chat-message--system .pps-chat-message__bubble {
	padding: 6px 10px;
	border-radius: 99px;
	background: #f4f0f3;
	color: #7b717d;
	font-size: 10px;
	text-align: center;
}

.pps-chat-message__meta {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0 4px;
	color: var(--pps-chat-muted);
	font-size: 11px;
	line-height: 1.4;
}

.pps-chat-delivery {
	display: inline-flex;
	direction: ltr;
	align-items: center;
	justify-content: center;
	min-width: 17px;
	height: 13px;
	color: #8a818a;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.pps-chat-delivery > span + span {
	margin-left: -5px;
}

.pps-chat-delivery--read {
	color: #1689f7;
}

.pps-chat-delivery--pending > span {
	display: block;
	width: 11px;
	height: 11px;
	border: 1.5px solid rgba(116, 107, 119, 0.32);
	border-top-color: #746b77;
	border-radius: 50%;
	animation: pps-chat-delivery-spin 720ms linear infinite;
}

@keyframes pps-chat-delivery-spin {
	to { transform: rotate(360deg); }
}

.pps-chat-file {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 9px;
	align-items: center;
	min-width: min(210px, 100%);
	max-width: 100%;
	margin-top: 7px;
	padding: 9px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.13);
	color: inherit;
	text-decoration: none;
}

.pps-chat-file__icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.22);
}

.pps-chat-file__copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.pps-chat-file__copy strong,
.pps-chat-file__copy span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pps-chat-file__copy strong {
	font-size: 10.5px;
}

.pps-chat-file__copy span {
	font-size: 10.5px;
	opacity: 0.9;
}

.pps-chat-file--pending {
	opacity: 0.82;
}

.pps-chat-load-older {
	align-self: center;
	min-height: 36px;
	padding: 7px 13px;
	border: 1px solid #dfcbd6;
	border-radius: 999px;
	background: #fff;
	color: #7f164b;
	font-family: inherit;
	font-size: 11px;
	font-weight: 750;
	cursor: pointer;
}

.pps-chat-load-older:disabled {
	opacity: 0.62;
	cursor: wait;
}

.pps-chat-typing {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	align-self: flex-end;
	padding: 9px 12px;
	border: 1px solid #eee7eb;
	border-radius: 15px 15px 5px 15px;
	background: #fff;
}

.pps-chat-typing span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #a599a2;
	animation: pps-chat-typing 1s ease-in-out infinite;
}

.pps-chat-typing span:nth-child(2) {
	animation-delay: 120ms;
}

.pps-chat-typing span:nth-child(3) {
	animation-delay: 240ms;
}

@keyframes pps-chat-typing {
	0%, 70%, 100% { transform: translateY(0); opacity: 0.5; }
	35% { transform: translateY(-3px); opacity: 1; }
}

.pps-chat-empty,
.pps-chat-error {
	display: grid;
	place-items: center;
	gap: 8px;
	min-height: 170px;
	padding: 22px;
	color: var(--pps-chat-muted);
	font-size: 12px;
	line-height: 1.8;
	text-align: center;
}

.pps-chat-error {
	color: #9d234f;
}

.pps-chat-composer-wrap {
	position: relative;
	display: grid;
	gap: 8px;
	padding: 11px 12px max(11px, env(safe-area-inset-bottom));
	border-top: 1px solid var(--pps-chat-line);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.pps-chat-attachment-preview {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 12px;
	background: #f7f2f5;
	color: #6a5e69;
	font-size: 10.5px;
}

.pps-chat-attachment-list {
	display: grid;
	gap: 6px;
}

.pps-chat-attachment-list[hidden] {
	display: none;
}

.pps-chat-attachment-preview > span {
	display: grid;
	gap: 1px;
	min-width: 0;
}

.pps-chat-attachment-preview strong,
.pps-chat-attachment-preview small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pps-chat-attachment-preview button {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 9px;
	background: #eee5ea;
	color: #776a74;
	cursor: pointer;
}

.pps-chat-composer {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 8px;
	align-items: end;
	padding: 6px;
	border: 1px solid #e6dde3;
	border-radius: 18px;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 5px 16px rgba(57, 30, 46, 0.05);
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.pps-chat-composer:focus-within {
	border-color: rgba(181, 22, 91, 0.48);
	box-shadow: 0 0 0 4px rgba(181, 22, 91, 0.08);
}

.pps-chat-composer textarea {
	width: 100%;
	max-height: 120px;
	min-height: 39px;
	padding: 9px 4px 7px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--pps-chat-ink);
	font-family: inherit;
	font-size: 12px;
	line-height: 1.75;
	resize: none;
}

.pps-chat-composer textarea::placeholder {
	color: var(--pps-chat-muted);
}

.pps-chat-attach,
.pps-chat-send {
	display: grid;
	place-items: center;
	width: 39px;
	height: 39px;
	padding: 0;
	border: 0;
	border-radius: 13px;
	font-family: inherit;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.pps-chat-attach {
	background: #f6f1f4;
	color: #756873;
}

.pps-chat-send {
	background: linear-gradient(145deg, var(--pps-chat-accent), #d42d77);
	box-shadow: 0 7px 15px rgba(181, 22, 91, 0.22);
	color: #fff;
}

.pps-chat-attach:hover,
.pps-chat-send:hover {
	transform: translateY(-1px);
}

.pps-chat-send:disabled,
.pps-chat-attach:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

.pps-chat-composer__hint {
	padding: 0 5px;
	color: var(--pps-chat-muted);
	font-size: 11px;
	line-height: 1.6;
}

.pps-chat-toast {
	position: absolute;
	right: 16px;
	left: 16px;
	bottom: 92px;
	z-index: 5;
	padding: 11px 13px;
	border: 1px solid rgba(22, 135, 95, 0.22);
	border-radius: 13px;
	background: rgba(239, 252, 247, 0.97);
	box-shadow: 0 12px 30px rgba(31, 19, 27, 0.16);
	color: #116a4b;
	font-size: 11px;
	line-height: 1.75;
	animation: pps-chat-panel-in 180ms ease;
}

.pps-chat-toast.is-error {
	border-color: rgba(181, 22, 91, 0.2);
	background: rgba(255, 244, 249, 0.98);
	color: #941449;
}

.pps-chat-live-region {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

body.pps-chat-open {
	overflow: hidden;
}

html.pps-chat-auth-flow #bakala_login #lr-complete-form {
	display: none !important;
}

#bakala_login .pps-chat-auth-names {
	display: none !important;
	flex-direction: column;
}

html.pps-chat-auth-name-step #bakala_login #lr-send-form,
html.pps-chat-auth-name-step #bakala_login #lr-submit-form,
html.pps-chat-auth-name-step #bakala_login #lr-complete-form {
	display: none !important;
}

html.pps-chat-auth-name-step #bakala_login .pps-chat-auth-names {
	display: flex !important;
}

#bakala_login .pps-chat-auth-names .auth__container {
	display: grid;
	gap: 13px;
}

#bakala_login .pps-chat-auth-names__step {
	justify-self: start;
	padding: 5px 10px;
	border-radius: 999px;
	background: #fff0f7;
	color: #a41458;
	font-size: 11px;
	font-weight: 800;
}

#bakala_login .pps-chat-auth-names .input-box {
	margin: 0;
}

#bakala_login .pps-chat-auth-names .input-field {
	height: auto !important;
}

#bakala_login .pps-chat-auth-names input {
	width: 100%;
	min-height: 50px;
	box-sizing: border-box;
	padding: 0 14px;
	border: 1px solid #e2d6dc;
	border-radius: 14px;
	background: #fff;
	color: #271a21;
	font-family: inherit;
	font-size: 14px;
	outline: 0;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

#bakala_login .pps-chat-auth-names input:focus {
	border-color: #b5165b;
	box-shadow: 0 0 0 4px rgba(181, 22, 91, 0.09);
}

#bakala_login .pps-chat-auth-names__error {
	margin: 0;
	color: #b42318;
	font-size: 12px;
}

#bakala_login .pps-chat-auth-names__privacy {
	display: block;
	margin-top: 9px;
	color: #75646d;
	font-size: 11px;
	line-height: 1.7;
	text-align: center;
}

.pps-chat-root.is-profile .pps-chat-toolbar,
.pps-chat-root.is-profile .pps-chat-composer-wrap {
	display: none;
}

.pps-chat-root.is-profile .pps-chat-body {
	display: grid;
	place-items: center;
	padding: 22px;
	background:
		radial-gradient(circle at 12% 12%, rgba(181, 22, 91, 0.08), transparent 12rem),
		linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.pps-chat-profile {
	display: grid;
	gap: 14px;
	width: min(100%, 340px);
	padding: 22px;
	border: 1px solid rgba(181, 22, 91, 0.13);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 46px rgba(67, 17, 45, 0.09);
	text-align: right;
}

.pps-chat-profile__step {
	justify-self: start;
	padding: 5px 9px;
	border-radius: 999px;
	background: #fff0f7;
	color: #a41458;
	font-size: 10px;
	font-weight: 800;
}

.pps-chat-profile h2 {
	margin: 0;
	color: var(--pps-chat-ink);
	font-size: 18px;
	line-height: 1.45;
}

.pps-chat-profile p,
.pps-chat-profile small {
	margin: 0;
	color: var(--pps-chat-muted);
	font-size: 11px;
	line-height: 1.8;
}

.pps-chat-profile label {
	display: grid;
	gap: 7px;
	color: var(--pps-chat-ink);
	font-size: 11px;
	font-weight: 800;
}

.pps-chat-profile input {
	width: 100%;
	height: 46px;
	box-sizing: border-box;
	padding: 0 13px;
	border: 1px solid #e4d6de;
	border-radius: 13px;
	outline: 0;
	background: #fff;
	color: var(--pps-chat-ink);
	font: inherit;
	font-size: 13px;
	font-weight: 650;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.pps-chat-profile input:focus {
	border-color: rgba(181, 22, 91, 0.58);
	box-shadow: 0 0 0 4px rgba(181, 22, 91, 0.08);
}

.pps-chat-profile button {
	min-height: 47px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(135deg, #b5165b, #db2d83);
	box-shadow: 0 10px 24px rgba(181, 22, 91, 0.22);
	color: #fff;
	font-family: inherit;
	font-size: 12px;
	font-weight: 850;
	cursor: pointer;
}

.pps-chat-profile button:disabled {
	opacity: 0.62;
	cursor: wait;
}

@media (max-width: 640px) {
	.pps-chat-root {
		left: max(12px, env(safe-area-inset-left));
		right: max(12px, env(safe-area-inset-right));
		bottom: max(12px, env(safe-area-inset-bottom));
	}

	.pps-chat-launcher {
		margin-right: auto;
	}

	.pps-chat-panel {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: min(790px, calc(100vh - 8px));
		height: min(790px, calc(100dvh - 8px));
		min-height: 0;
		border-right: 0;
		border-bottom: 0;
		border-left: 0;
		border-radius: 26px 26px 0 0;
		transform-origin: bottom center;
	}

	.pps-chat-header {
		min-height: 88px;
		padding: 16px max(16px, env(safe-area-inset-right)) 16px max(16px, env(safe-area-inset-left));
	}

	.pps-chat-body {
		padding-right: max(13px, env(safe-area-inset-right));
		padding-left: max(13px, env(safe-area-inset-left));
	}

	.pps-chat-composer-wrap {
		padding-right: max(11px, env(safe-area-inset-right));
		padding-left: max(11px, env(safe-area-inset-left));
	}

	.pps-chat-root.is-profile .pps-chat-body {
		padding-top: 18px;
		padding-right: max(16px, env(safe-area-inset-right));
		padding-bottom: 18px;
		padding-left: max(16px, env(safe-area-inset-left));
	}

	.pps-chat-profile {
		padding: 20px;
	}
}


.header-call-btn[data-pps-chat-open] .block,
.header-call-btn[data-pps-chat-open] .pps-chat-contact-label {
	display: none !important;
}

.header-call-btn[data-pps-chat-open] {
	gap: 0 !important;
}

@media (max-width: 768px) {
	.pps-chat-composer textarea,
	.pps-chat-profile input,
	html.pps-chat-auth-flow #bakala_login input,
	html.pps-chat-auth-flow #bakala_login textarea,
	html.pps-chat-auth-flow #bakala_login select {
		font-size: 16px !important;
	}

	.pps-chat-root {
		bottom: calc(var(--pps-chat-mobile-nav-offset, 74px) + max(12px, env(safe-area-inset-bottom)));
	}

	.pps-chat-header {
		grid-template-columns: 82px minmax(0, 1fr) 38px;
		gap: 9px;
	}

	.pps-chat-header .pps-chat-team {
		min-width: 82px;
	}

	.pps-chat-header .pps-chat-team__avatar {
		width: 36px;
		height: 36px;
		margin-left: -23px;
	}

	.pps-chat-header__copy strong {
		font-size: 15px;
	}

	.pps-chat-header__status {
		font-size: 10.5px;
		line-height: 1.55;
	}

	.pps-chat-mobile-header-call {
		display: flex !important;
		flex: 0 0 44px;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		margin: 0 !important;
		padding: 0 !important;
	}

	.pps-chat-mobile-header-call .header-call-btn[data-pps-chat-open] {
		display: grid !important;
		place-items: center;
		width: 44px;
		height: 44px;
		min-width: 44px;
		padding: 0 !important;
		border-radius: 12px;
		background: transparent !important;
		color: #4f4751 !important;
		font-size: 23px;
		line-height: 1;
	}

	body.pps-chat-open .mobile-bottom-nav,
	body.pps-chat-open .mobile-bottom-navbar,
	body.pps-chat-open .footer-mobile-nav,
	body.pps-chat-open .wd-toolbar,
	body.pps-chat-open .wd-toolbar-shop,
	body.pps-chat-open .pps-chat-detected-mobile-nav {
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	body.pps-chat-open .pps-chat-panel {
		bottom: 0;
		max-height: 100dvh;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pps-chat-launcher::before {
		animation: none;
		opacity: 0.58;
		transform: none;
	}

	.pps-chat-root *,
	.pps-chat-root *::before,
	.pps-chat-root *::after {
		scroll-behavior: auto !important;
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
	}
}

@media (forced-colors: active) {
	.pps-chat-launcher::before {
		display: none;
	}

	.pps-chat-launcher,
	.pps-chat-panel,
	.pps-chat-quick,
	.pps-chat-load-older,
	.pps-chat-composer,
	.pps-chat-message__bubble {
		border: 1px solid CanvasText;
	}
}
