.gdv-chat-root {
	--gdv-brand: #0f7b4a;
	--gdv-brand-hover: #0c6a3f;
	--gdv-brand-muted: #9bb8a8;
	--gdv-brand-rgb: 15, 123, 74;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.gdv-chat-root:not(.is-ready) .gdv-chat-form,
.gdv-chat-root:not(.is-ready) .gdv-chat-thread {
	display: none !important;
}

.gdv-chat-fab {
	position: fixed;
	left: 20px;
	right: auto;
	bottom: 20px;
	z-index: 99990;
	display: flex;
	align-items: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	background: var(--gdv-brand);
	color: #fff;
	padding: 12px 18px 12px 14px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(var(--gdv-brand-rgb), 0.35);
	transform-origin: center;
}

.gdv-chat-fab:hover {
	background: var(--gdv-brand-hover);
}

.gdv-chat-fab-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center / 18px no-repeat;
}

.gdv-chat-panel {
	position: fixed;
	left: 20px;
	right: auto;
	bottom: 20px;
	z-index: 99991;
	width: 320px;
	max-width: calc(100vw - 24px);
	height: auto;
	max-height: calc(100vh - 40px);
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform-origin: bottom left;
}

.gdv-chat-root.is-right .gdv-chat-fab,
.gdv-chat-root.is-right .gdv-chat-panel {
	left: auto;
	right: 20px;
}

.gdv-chat-root.is-right .gdv-chat-panel {
	transform-origin: bottom right;
}

.gdv-chat-panel {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, 16px, 0) scale(0.94);
}

.gdv-chat-root.is-open .gdv-chat-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.gdv-chat-root.is-open .gdv-chat-fab {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: scale(0.72);
}

.gdv-chat-root.is-ready .gdv-chat-panel {
	transition:
		opacity 0.34s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
		visibility 0s linear;
}

.gdv-chat-root.is-ready:not(.is-open) .gdv-chat-panel {
	transition:
		opacity 0.22s cubic-bezier(0.4, 0, 1, 1),
		transform 0.22s cubic-bezier(0.4, 0, 1, 1),
		visibility 0s linear 0.22s;
}

.gdv-chat-root.is-ready .gdv-chat-fab {
	transition:
		opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
		transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
		visibility 0s linear 0.08s;
}

.gdv-chat-root.is-ready.is-open .gdv-chat-fab {
	transition:
		opacity 0.16s ease,
		transform 0.16s ease,
		visibility 0s linear 0.16s;
}

.gdv-chat-root.is-ready:not(.is-open) .gdv-chat-fab:hover {
	transform: scale(1.05);
}

.gdv-chat-root.is-ready:not(.is-open) .gdv-chat-fab:active {
	transform: scale(0.96);
}

.gdv-chat-panel.is-live {
	height: 520px;
	max-height: calc(100vh - 40px);
}

.gdv-chat-panel.is-mail:not(.is-live) {
	min-height: 360px;
}

.gdv-chat-stage {
	flex: 1 1 auto;
	min-height: 0;
	position: relative;
	perspective: 1100px;
}

.gdv-chat-flip {
	position: relative;
	min-height: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.gdv-chat-panel.is-mail .gdv-chat-flip {
	transform: rotateY(180deg);
}

.gdv-chat-face.is-front {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.gdv-chat-panel.is-live .gdv-chat-face.is-front {
	height: 100%;
}

.gdv-chat-face.is-back {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	background: #fff;
	overflow: auto;
	transform: rotateY(180deg);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.gdv-chat-panel.is-mail .gdv-chat-face.is-front,
.gdv-chat-panel:not(.is-mail) .gdv-chat-face.is-back {
	pointer-events: none;
}

.gdv-chat-mail-form {
	padding: 20px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1 1 auto;
}

.gdv-chat-mail-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #1d2327;
}

.gdv-chat-mail-lead {
	margin: 0 0 6px;
	font-size: 13px;
	color: #646970;
	line-height: 1.45;
}

.gdv-chat-mail-form input[type="email"] {
	border: 1px solid #c3c4c7;
	border-radius: 8px;
	padding: 11px 12px;
	font-size: 14px;
	width: 100%;
	box-sizing: border-box;
}

.gdv-chat-mail-send {
	border: 0;
	border-radius: 10px;
	background: var(--gdv-brand);
	color: #fff;
	min-height: 44px;
	padding: 10px 14px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	position: relative;
}

.gdv-chat-mail-send:hover {
	background: var(--gdv-brand-hover);
}

.gdv-chat-mail-send.is-loading {
	color: transparent;
	pointer-events: none;
	cursor: default;
}

.gdv-chat-mail-send.is-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: gdv-chat-spin 0.6s linear infinite;
}

.gdv-chat-mail-ok {
	margin: 0;
	font-size: 13px;
	color: #0f7b4a;
}

.gdv-chat-head {
	background: var(--gdv-brand);
	color: #fff;
	padding: 12px 14px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	gap: 0 8px;
}

.gdv-chat-head-copy {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}

.gdv-chat-close {
	grid-column: 2;
	grid-row: 1;
	border: 0;
	background: transparent;
	color: #fff;
	width: 32px;
	height: 32px;
	padding: 0;
	margin: -4px -4px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 8px;
}

.gdv-chat-head-tools {
	grid-column: 1 / -1;
	grid-row: 2;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.gdv-chat-head strong {
	display: block;
	font-size: 15px;
}

.gdv-chat-sub {
	display: block;
	font-size: 12px;
	opacity: 0.9;
	margin-top: 2px;
}

.gdv-chat-close:hover {
	background: rgba(255, 255, 255, 0.16);
}

.gdv-chat-close svg {
	display: block;
	transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.gdv-chat-close:hover svg {
	transform: translateY(2px);
}

.gdv-chat-head-tools .gdv-chat-socials {
	margin-top: 0;
	flex: 1;
	min-width: 0;
}

.gdv-chat-mail,
.gdv-chat-sound {
	border: 0;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	width: 32px;
	height: 32px;
	padding: 0;
	margin-right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	flex: 0 0 32px;
}

.gdv-chat-mail {
	margin-left: auto;
}

.gdv-chat-sound {
	margin-right: -4px;
}

.gdv-chat-mail:hover,
.gdv-chat-mail.is-on,
.gdv-chat-sound:hover {
	background: rgba(255, 255, 255, 0.28);
}

.gdv-chat-mail svg {
	display: block;
	width: 16px;
	height: 16px;
}

.gdv-chat-mail .gdv-chat-mail-close {
	display: none;
}

.gdv-chat-mail.is-on .gdv-chat-mail-ico {
	display: none;
}

.gdv-chat-mail.is-on .gdv-chat-mail-close {
	display: block;
}

.gdv-chat-sound svg {
	display: block;
	width: 16px;
	height: 16px;
}

.gdv-chat-sound .gdv-chat-sound-off {
	display: none;
}

.gdv-chat-sound.is-off .gdv-chat-sound-on {
	display: none;
}

.gdv-chat-sound.is-off .gdv-chat-sound-off {
	display: block;
}

.gdv-chat-socials {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 4px;
	margin-top: 8px;
	padding: 0;
	background: transparent;
	border: 0;
}

.gdv-chat-socials-list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.gdv-chat-socials a {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	flex: 0 0 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
	transition: transform 0.12s ease;
}

.gdv-chat-socials a:hover,
.gdv-chat-socials a:focus {
	transform: scale(1.08);
	outline: none;
}

.gdv-chat-socials img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gdv-chat-form {
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gdv-chat-form input,
.gdv-chat-send input,
.gdv-chat-pane-send input {
	border: 1px solid #c3c4c7;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 14px;
	width: 100%;
	box-sizing: border-box;
}

.gdv-chat-compose {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.gdv-chat-compose input {
	flex: 1;
	width: auto;
	min-width: 0;
}

.gdv-chat-submit,
.gdv-chat-send .gdv-chat-submit {
	border: 0;
	border-radius: 50%;
	background: var(--gdv-brand);
	color: #fff;
	padding: 0;
	width: 44px;
	min-width: 44px;
	height: 44px;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 44px;
}

.gdv-chat-submit svg,
.gdv-chat-send .gdv-chat-submit svg {
	display: block;
	width: 22px;
	height: 22px;
}

.gdv-chat-submit:hover,
.gdv-chat-send .gdv-chat-submit:hover {
	background: var(--gdv-brand-hover);
}

.gdv-chat-submit:disabled,
.gdv-chat-send .gdv-chat-submit:disabled {
	cursor: wait;
}

.gdv-chat-submit:disabled:not(.is-loading) {
	background: var(--gdv-brand-muted);
	cursor: not-allowed;
	box-shadow: none;
}

.gdv-chat-topics {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 10px 0;
}

.gdv-chat-topics-label {
	margin: 0;
	font-size: 11px;
	font-weight: 600;
	color: #3c434a;
}

.gdv-chat-topic-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.gdv-chat-topic {
	border: 0;
	background: #ececec;
	color: #757575;
	border-radius: 999px;
	padding: 5px 11px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.gdv-chat-root .gdv-chat-topic:hover,
.gdv-chat-root .gdv-chat-topic:focus-visible {
	background: #e0e0e0;
	color: #757575;
	outline: none;
}

.gdv-chat-root .gdv-chat-topic.is-on,
.gdv-chat-root .gdv-chat-topic.is-on:hover,
.gdv-chat-root .gdv-chat-topic.is-on:focus,
.gdv-chat-root .gdv-chat-topic.is-on:focus-visible {
	background: var(--gdv-brand);
	color: #fff;
}

.gdv-chat-submit.is-loading,
.gdv-chat-send .gdv-chat-submit.is-loading {
	color: transparent;
}

.gdv-chat-submit.is-loading svg,
.gdv-chat-send .gdv-chat-submit.is-loading svg {
	opacity: 0;
}

.gdv-chat-submit.is-loading::after,
.gdv-chat-send .gdv-chat-submit.is-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: gdv-chat-spin 0.6s linear infinite;
}

@keyframes gdv-chat-spin {
	to {
		transform: rotate(360deg);
	}
}

.gdv-chat-error {
	color: #b32d2e;
	font-size: 13px;
	margin: 0;
}

.gdv-chat-thread {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.gdv-chat-msgs,
.gdv-chat-pane-msgs {
	flex: 1;
	overflow-y: auto;
	padding: 12px;
	background: #f6f7f7;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gdv-chat-row {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	max-width: 92%;
}

.gdv-chat-row.is-staff {
	align-self: flex-start;
}

.gdv-chat-row.is-guest {
	align-self: flex-end;
}

.gdv-chat-row-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	max-width: 100%;
}

.gdv-chat-row.is-guest .gdv-chat-row-body {
	align-items: flex-end;
}

.gdv-chat-row.is-staff .gdv-chat-row-body {
	align-items: flex-start;
}

.gdv-chat-msg {
	max-width: 100%;
	padding: 8px 10px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.4;
	word-wrap: break-word;
	white-space: pre-wrap;
}

.gdv-chat-msg.is-guest {
	background: var(--gdv-brand);
	color: #fff;
}

.gdv-chat-msg.is-staff {
	background: #fff;
	border: 1px solid #dcdcde;
}

.gdv-chat-link {
	color: inherit;
	text-decoration: underline;
	word-break: break-all;
}

.gdv-chat-msg.is-staff .gdv-chat-link {
	color: var(--gdv-brand);
}

.gdv-chat-msg.is-guest .gdv-chat-link {
	color: #fff;
}

.gdv-chat-msg.is-image {
	padding: 4px;
	max-width: 220px;
	background: #fff;
	border: 1px solid #dcdcde;
	white-space: normal;
}

.gdv-chat-row.is-guest .gdv-chat-msg.is-image {
	background: #fff;
}

.gdv-chat-msg.is-image a {
	display: block;
	line-height: 0;
	cursor: zoom-in;
}

.gdv-chat-msg.is-image img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.gdv-chat-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100010;
	background: rgba(15, 15, 18, 0.82);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px 20px;
}

.gdv-chat-lightbox[hidden] {
	display: none !important;
}

.gdv-chat-lightbox img {
	max-width: min(92vw, 1080px);
	max-height: 86vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.gdv-chat-lightbox-close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.gdv-chat-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.28);
}

.gdv-chat-msg.is-system {
	align-self: center;
	background: transparent;
	color: #646970;
	font-size: 12px;
	text-align: center;
	max-width: 95%;
	padding: 0;
}

.gdv-chat-avatar {
	flex: 0 0 auto;
	border-radius: 50%;
	overflow: hidden;
	display: block;
	line-height: 0;
}

.gdv-chat-avatar.is-sm {
	width: 28px;
	height: 28px;
	margin-top: 2px;
}

.gdv-chat-avatar.is-lg {
	width: 56px;
	height: 56px;
}

.gdv-chat-avatar.is-logo {
	background: #fff;
}

.gdv-chat-avatar svg,
.gdv-chat-avatar img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.gdv-chat-event {
	align-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 10px 8px 4px;
	max-width: 95%;
}

.gdv-chat-event-text {
	margin: 0;
	font-size: 13px;
	color: #787c82;
}

.gdv-chat-event-text strong {
	color: #3c434a;
	font-weight: 700;
}

.gdv-chat-meta {
	display: flex;
	align-items: center;
	gap: 5px;
}

.gdv-chat-row.is-guest .gdv-chat-meta {
	justify-content: flex-end;
}

.gdv-chat-receipt {
	font-size: 11px;
	line-height: 1;
	letter-spacing: -1px;
	color: #b4b7bb;
	user-select: none;
}

.gdv-chat-receipt.is-delivered {
	color: #8c8f94;
}

.gdv-chat-receipt.is-seen {
	color: #1a73e8;
}

.gdv-chat-time {
	display: block;
	font-size: 11px;
	line-height: 1.3;
	color: #8c8f94;
	font-style: normal;
}

.gdv-chat-waiting {
	align-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	max-width: 95%;
	padding: 4px 8px 8px;
}

.gdv-chat-waiting-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #646970;
}

.gdv-chat-waiting-anim {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
}

.gdv-chat-waiting-gif {
	max-height: 48px;
	width: auto;
}

.gdv-chat-waiting.has-gif .gdv-chat-dots {
	display: none;
}

.gdv-chat-dots {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.gdv-chat-dots i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #8c8f94;
	display: block;
	animation: gdv-chat-wait-dot 1.1s infinite ease-in-out;
}

.gdv-chat-dots i:nth-child(2) {
	animation-delay: 0.15s;
}

.gdv-chat-dots i:nth-child(3) {
	animation-delay: 0.3s;
}

@keyframes gdv-chat-wait-dot {
	0%,
	80%,
	100% {
		opacity: 0.3;
		transform: translateY(0);
	}
	40% {
		opacity: 1;
		transform: translateY(-4px);
	}
}

.gdv-chat-row.is-typing .gdv-chat-msg {
	min-width: 52px;
	padding: 10px 14px;
}

.gdv-chat-typing-label {
	font-size: 11px;
	line-height: 1.3;
	color: #8c8f94;
}

.gdv-chat-send {
	display: flex;
	gap: 8px;
	padding: 10px;
	border-top: 1px solid #dcdcde;
	background: #fff;
	align-items: center;
}

.gdv-chat-send input[type="text"] {
	flex: 1;
	width: auto;
}

.gdv-chat-attach-file {
	display: none !important;
}

.gdv-chat-attach {
	appearance: none;
	flex: 0 0 40px;
	width: 40px;
	min-width: 40px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #646970;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gdv-chat-attach svg {
	display: block;
	width: 22px;
	height: 22px;
}

.gdv-chat-attach:hover,
.gdv-chat-attach:focus-visible {
	color: var(--gdv-brand, #0f7b4a);
	background: #f0f0f1;
	outline: none;
}

.gdv-chat-attach:disabled {
	opacity: 0.45;
	cursor: default;
	background: transparent;
}

.gdv-chat-attach.is-loading {
	opacity: 1;
	cursor: wait;
	color: transparent;
}

.gdv-chat-attach.is-loading svg {
	opacity: 0;
}

.gdv-chat-attach.is-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid rgba(15, 123, 74, 0.25);
	border-top-color: var(--gdv-brand, #0f7b4a);
	border-radius: 50%;
	animation: gdv-chat-spin 0.6s linear infinite;
}

.gdv-chat-form[hidden],
.gdv-chat-thread[hidden],
.gdv-chat-error[hidden],
.gdv-chat-mail-ok[hidden] {
	display: none !important;
}

.gdv-chat-root.is-open .gdv-chat-panel[hidden] {
	display: flex !important;
}

.gdv-chat-root:not(.is-open) .gdv-chat-panel {
	pointer-events: none !important;
}

.gdv-chat-root:not(.is-open) .gdv-chat-panel[hidden] {
	display: none !important;
}

.gdv-chat-root:not(.is-open) .gdv-chat-fab {
	pointer-events: auto !important;
	z-index: 99992;
}

.gdv-chat-fab[hidden] {
	display: flex !important;
}

@media (prefers-reduced-motion: reduce) {
	.gdv-chat-root.is-ready .gdv-chat-panel,
	.gdv-chat-root.is-ready:not(.is-open) .gdv-chat-panel,
	.gdv-chat-root.is-ready .gdv-chat-fab,
	.gdv-chat-root.is-ready.is-open .gdv-chat-fab,
	.gdv-chat-close svg,
	.gdv-chat-topic {
		transition: none;
	}
}

@media (max-width: 640px) {
	.gdv-chat-fab {
		left: 12px;
		right: auto;
	}

	.gdv-chat-root.is-right .gdv-chat-fab {
		left: auto;
		right: 12px;
	}

	.gdv-chat-panel,
	.gdv-chat-root.is-right .gdv-chat-panel,
	.gdv-chat-root.is-left .gdv-chat-panel {
		left: 0;
		right: 0;
		bottom: 0;
		top: auto;
		width: auto;
		max-width: none;
		border-radius: 16px 16px 0 0;
		box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
		transform-origin: bottom center;
	}

	.gdv-chat-panel:not(.is-live),
	.gdv-chat-root.is-right .gdv-chat-panel:not(.is-live),
	.gdv-chat-root.is-left .gdv-chat-panel:not(.is-live) {
		height: auto;
		max-height: 72vh;
		max-height: 72dvh;
	}

	.gdv-chat-panel.is-live,
	.gdv-chat-root.is-right .gdv-chat-panel.is-live,
	.gdv-chat-root.is-left .gdv-chat-panel.is-live {
		height: 72vh;
		height: 72dvh;
		min-height: 72vh;
		min-height: 72dvh;
		max-height: 72vh;
		max-height: 72dvh;
	}

	.gdv-chat-panel:not(.is-live) .gdv-chat-form {
		overflow-y: auto;
		min-height: 0;
	}

	.gdv-chat-form {
		padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
	}

	.gdv-chat-send {
		padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	}
}
