.wapq-widget {
	--wapq-primary: #25d366;
	--wapq-text: #1f2937;
	--wapq-panel-width: 360px;
	--wapq-radius: 12px;
	--wapq-z: 9999;
	--wapq-offset-x: 24px;
	--wapq-offset-y: 24px;

	box-sizing: border-box;
	color: var(--wapq-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.45;
	text-align: start;
	z-index: var(--wapq-z);
}

.wapq-widget *,
.wapq-widget *::before,
.wapq-widget *::after {
	box-sizing: inherit;
}

.wapq-widget--floating {
	bottom: calc(var(--wapq-effective-offset-y, var(--wapq-offset-y)) + env(safe-area-inset-bottom));
	position: fixed;
}

.wapq-widget--inline {
	display: inline-block;
	position: relative;
}

.wapq-widget--floating.wapq-position--right {
	inset-inline-end: calc(var(--wapq-effective-offset-x, var(--wapq-offset-x)) + env(safe-area-inset-right));
}

.wapq-widget--floating.wapq-position--left {
	inset-inline-start: calc(var(--wapq-effective-offset-x, var(--wapq-offset-x)) + env(safe-area-inset-left));
}

.wapq-launcher,
.wapq-close {
	align-items: center;
	appearance: none;
	background: var(--wapq-primary);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgb(15 23 42 / 20%);
	color: #0b3218;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 700;
	gap: 10px;
	justify-content: center;
	letter-spacing: 0;
	min-height: 52px;
	min-width: 52px;
	padding: 10px 16px;
	text-decoration: none;
	text-transform: none;
	transition: box-shadow 160ms ease, transform 160ms ease;
}

.wapq-close {
	background: rgb(255 255 255 / 24%);
	box-shadow: none;
	color: #fff;
	font-size: 25px;
	font-weight: 400;
	height: 44px;
	line-height: 1;
	min-height: 44px;
	min-width: 44px;
	padding: 0;
	width: 44px;
}

.wapq-launcher:hover,
.wapq-close:hover {
	box-shadow: 0 10px 28px rgb(15 23 42 / 26%);
	transform: translateY(-1px);
}

.wapq-launcher--icon,
.wapq-widget[data-wapq-open="true"] .wapq-launcher {
	padding: 10px;
}

.wapq-launcher__logo,
.wapq-dialog__brand img {
	display: block;
	height: 32px;
	width: 32px;
}

.wapq-launcher__close {
	display: none;
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
}

.wapq-launcher--icon .wapq-launcher__label,
.wapq-sr-only {
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.wapq-widget[data-wapq-open="true"] .wapq-launcher__logo,
.wapq-widget[data-wapq-open="true"] .wapq-launcher__label {
	display: none;
}

.wapq-widget[data-wapq-open="true"] .wapq-launcher__close {
	display: block;
}

.wapq-widget :focus-visible {
	outline: 3px solid #005fcc;
	outline-offset: 3px;
}

.wapq-dialog {
	background: transparent;
	border: 0;
	color: var(--wapq-text);
	inset: auto;
	margin: 0;
	max-height: calc(100dvh - 24px);
	max-width: calc(100vw - 24px);
	overflow: visible;
	padding: 0;
	position: absolute;
	width: min(var(--wapq-panel-width), calc(100vw - 24px));
}

.wapq-dialog[open] {
	animation: wapq-dialog-enter 160ms ease-out;
	display: block;
	inset-block-end: calc(100% + 14px);
	opacity: 1;
	transform: translateY(0) scale(1);
}

.wapq-dialog:not([open]) {
	display: none;
}

.wapq-position--right .wapq-dialog {
	inset-inline-end: 0;
}

.wapq-position--left .wapq-dialog {
	inset-inline-start: 0;
}

.wapq-widget[data-wapq-placement="bottom"] .wapq-dialog[open] {
	inset-block: calc(100% + 14px) auto;
}

.wapq-dialog::backdrop {
	background: transparent;
}

.wapq-dialog__surface {
	background: #fff;
	border: 1px solid rgb(15 23 42 / 8%);
	border-radius: var(--wapq-radius);
	box-shadow: 0 18px 48px rgb(15 23 42 / 24%);
	max-height: min(calc(100dvh - 24px), var(--wapq-available-height, calc(100dvh - 96px)));
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

.wapq-dialog__surface::after {
	background: #fff;
	box-shadow: 2px 2px 3px rgb(15 23 42 / 8%);
	content: "";
	height: 14px;
	position: absolute;
	transform: rotate(45deg);
	width: 14px;
}

.wapq-position--right .wapq-dialog__surface::after {
	right: 20px;
}

.wapq-position--left .wapq-dialog__surface::after {
	left: 20px;
}

.wapq-widget[data-wapq-placement="top"] .wapq-dialog__surface::after {
	bottom: -7px;
}

.wapq-widget[data-wapq-placement="bottom"] .wapq-dialog__surface::after {
	box-shadow: -2px -2px 3px rgb(15 23 42 / 8%);
	top: -7px;
}

.wapq-dialog__header {
	align-items: flex-start;
	background: #128c4a;
	background: color-mix(in srgb, var(--wapq-primary) 62%, #06391b);
	color: #fff;
	display: grid;
	gap: 12px;
	grid-template-columns: auto 1fr auto;
	padding: 20px;
	position: relative;
	z-index: 1;
}

.wapq-dialog__brand {
	align-items: center;
	background: rgb(255 255 255 / 96%);
	border-radius: 999px;
	display: flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.wapq-dialog__heading {
	min-width: 0;
}

.wapq-dialog h2 {
	color: inherit !important;
	font-family: inherit !important;
	font-size: 20px !important;
	font-style: normal !important;
	font-weight: 750 !important;
	letter-spacing: 0 !important;
	line-height: 1.2 !important;
	margin: 0 0 5px !important;
	padding: 0 !important;
	text-transform: none !important;
}

.wapq-dialog p {
	font-family: inherit;
	font-size: inherit;
	letter-spacing: 0;
	line-height: 1.45;
	margin: 0;
	padding: 0;
	text-transform: none;
}

.wapq-dialog__heading p {
	color: inherit;
	font-size: 14px;
	opacity: 0.88;
}

.wapq-dialog__body {
	background: #fff;
	flex: 1 1 auto;
	max-height: min(calc(100dvh - 215px), calc(var(--wapq-available-height, 100dvh) - 120px));
	min-height: 0;
	overflow: auto;
	overscroll-behavior: contain;
	padding: 18px 20px 20px;
	-webkit-overflow-scrolling: touch;
}

.wapq-response {
	color: #667085;
	font-size: 13px !important;
	margin-block-end: 14px !important;
}

.wapq-privacy {
	align-items: flex-start;
	color: #344054;
	display: flex;
	font-size: 13px;
	gap: 9px;
	line-height: 1.45;
	margin-block: 2px 16px;
}

.wapq-privacy input {
	block-size: 20px;
	flex: 0 0 20px;
	inline-size: 20px;
	margin: 1px 0 0;
}

.wapq-privacy a {
	color: #126b36;
	font: inherit;
	font-weight: 650;
	text-decoration: underline;
}

.wapq-live {
	color: #b42318;
	font-size: 13px;
	font-weight: 650;
	min-height: 0;
}

.wapq-live:not(:empty) {
	margin-block-end: 12px;
}

.wapq-departments,
.wapq-noscript {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wapq-departments li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wapq-departments li + li {
	margin-block-start: 10px;
}

.wapq-department {
	align-items: center;
	background: #f7f9fb;
	border: 1px solid #e5e9ef;
	border-inline-start: 3px solid var(--wapq-primary);
	border-radius: 9px;
	box-shadow: 0 1px 2px rgb(15 23 42 / 4%);
	color: var(--wapq-text);
	cursor: pointer;
	display: grid;
	font-family: inherit;
	font-size: 16px;
	gap: 12px;
	grid-template-columns: 48px minmax(0, 1fr) 38px;
	letter-spacing: 0;
	line-height: 1.35;
	min-height: 72px;
	padding: 10px 12px;
	text-align: start;
	text-decoration: none;
	text-transform: none;
	transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.wapq-department:hover {
	background: #effbf4;
	border-color: color-mix(in srgb, var(--wapq-primary) 55%, #d0d5dd);
	box-shadow: 0 7px 18px rgb(15 23 42 / 10%);
	transform: translateY(-1px);
}

.wapq-department:active {
	box-shadow: 0 2px 6px rgb(15 23 42 / 10%);
	transform: translateY(0);
}

.wapq-department__identity,
.wapq-department__initial,
.wapq-channel {
	align-items: center;
	display: flex;
	justify-content: center;
}

.wapq-department__identity,
.wapq-department__image,
.wapq-department__initial {
	border-radius: 50%;
	height: 48px;
	width: 48px;
}

.wapq-department__identity {
	background: color-mix(in srgb, var(--wapq-primary) 18%, #fff);
	color: #0d5c2c;
	flex: 0 0 48px;
	overflow: hidden;
}

.wapq-department__image {
	display: block;
	object-fit: cover;
}

.wapq-department__initial {
	font-size: 18px;
	font-weight: 750;
	text-transform: uppercase;
}

.wapq-department__copy {
	display: block;
	min-width: 0;
}

.wapq-department__title-row {
	align-items: center;
	display: flex;
	gap: 8px;
	min-width: 0;
}

.wapq-department__title-row strong {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
}

.wapq-department__schedule {
	background: color-mix(in srgb, var(--wapq-primary) 10%, #fff);
	border: 1px solid color-mix(in srgb, var(--wapq-primary) 35%, #d0d5dd);
	border-radius: 999px;
	color: #0d5c2c;
	flex: 0 1 auto;
	font-size: 11px;
	font-weight: 650;
	line-height: 1.25;
	max-width: 60%;
	overflow-wrap: anywhere;
	padding: 3px 7px;
	text-align: center;
}

.wapq-department strong,
.wapq-department small {
	display: block;
	font-family: inherit;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0;
	padding: 0;
	text-transform: none;
}

.wapq-department strong {
	color: var(--wapq-text);
	font-size: 15px;
	font-weight: 720;
}

.wapq-department small {
	color: #667085;
	font-size: 12px;
	font-weight: 400;
	margin-block-start: 2px;
}

.wapq-channel {
	background: #fff;
	border: 1px solid #dfe5ea;
	border-radius: 50%;
	color: #138642;
	height: 38px;
	width: 38px;
}

.wapq-channel__icon {
	display: block;
	height: 21px;
	overflow: visible;
	width: 21px;
}

.wapq-noscript {
	background: #fff;
	border: 1px solid #d0d5dd;
	padding: 12px;
}

@keyframes wapq-dialog-enter {
	from {
		opacity: 0;
		transform: translateY(8px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
