.vex-vpf-inbox-panel,
.vex-vpf-inbox-panel * {
	box-sizing: border-box;
}

.vex-vpf-menu-icon {
	position: relative;
}

.vex-vpf-inbox-nav-badge {
	position: absolute;
	top: -8px;
	right: -10px;
	display: inline-grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border: 2px solid #070707;
	border-radius: 999px;
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
	font-weight: 850;
	font-size: 10px;
	line-height: 1;
}

.vex-vpf-inbox-nav-badge[hidden] {
	display: none !important;
}

.vex-vpf-inbox-panel {
	position: absolute;
	inset: 0;
	z-index: 60;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #070707;
	color: #fff;
	font-family: inherit;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-18px);
	transition: opacity 180ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 220ms;
}

.vex-vpf-inbox-panel[hidden] {
	display: none !important;
}

.vex-vpf-inbox-panel.is-visible,
.vex-vpf-inbox-panel.is-embedded {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	transition-delay: 0s;
}

.vex-vpf-inbox-panel.is-embedded {
	position: relative;
	inset: auto;
	width: 100%;
	height: min(760px, calc(100svh - 150px));
	min-height: 560px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	overflow: hidden;
}

.vex-vpf-inbox-panel.is-fullscreen {
	position: fixed !important;
	top: var(--vex-vpf-top, 0) !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	z-index: 100050 !important;
	width: 100vw !important;
	max-width: none !important;
	height: auto !important;
	min-height: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body.vex-vpf-inbox-fullscreen {
	overflow: hidden !important;
}

.vex-vpf-inbox-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 76px;
	padding: 14px 18px;
	border-bottom: 1px solid rgba(255,255,255,.12);
	background: #070707;
}

.vex-vpf-inbox-header > div:first-child {
	min-width: 0;
}

.vex-vpf-inbox-header h2 {
	margin: 0;
	color: inherit;
	font-weight: 850;
	font-size: 23px;
	line-height: 1.1;
	font-family: inherit;
}

.vex-vpf-inbox-header > div:first-child > span {
	display: block;
	margin-top: 4px;
	overflow: hidden;
	color: #aaaab2;
	font-size: 12px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vex-vpf-inbox-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.vex-vpf-inbox-header-actions button,
.vex-vpf-inbox-mobile-back {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #202024;
	color: #fff;
	cursor: pointer;
}

.vex-vpf-inbox-header-actions button span,
.vex-vpf-inbox-mobile-back svg {
	display: block;
	width: 20px;
	height: 20px;
}

.vex-vpf-inbox-header-actions svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.vex-vpf-inbox-header-actions .is-collapse,
.vex-vpf-inbox-panel.is-fullscreen .vex-vpf-inbox-header-actions .is-expand {
	display: none;
}

.vex-vpf-inbox-panel.is-fullscreen .vex-vpf-inbox-header-actions .is-collapse {
	display: block;
}

.vex-vpf-inbox-body {
	display: grid;
	grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
	flex: 1 1 auto;
	min-height: 0;
}

.vex-vpf-inbox-threads {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
	border-right: 1px solid rgba(255,255,255,.12);
	background: #0b0b0d;
}

.vex-vpf-inbox-search-wrap {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: center;
	gap: 9px;
	margin: 14px;
	padding: 0 14px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	background: #202024;
	color: #aaaab2;
}

.vex-vpf-inbox-search-wrap > span,
.vex-vpf-inbox-search-wrap svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.vex-vpf-inbox-search-wrap input[type="search"] {
	width: 100%;
	height: 42px;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 14px;
	box-shadow: none;
	-webkit-appearance: none;
}

.vex-vpf-inbox-search-wrap input::placeholder {
	color: #aaaab2;
	opacity: 1;
}

.vex-vpf-inbox-thread-list {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
}

.vex-vpf-inbox-thread {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	align-items: start;
	gap: 12px;
	width: 100%;
	min-height: 96px;
	margin: 0;
	padding: 14px;
	border: 0;
	border-bottom: 1px solid rgba(255,255,255,.08);
	border-radius: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.vex-vpf-inbox-thread:hover,
.vex-vpf-inbox-thread:focus-visible,
.vex-vpf-inbox-thread.is-active {
	background: #202024;
}

.vex-vpf-inbox-thread.has-unread {
	background: rgba(254,44,85,.09);
}

.vex-vpf-inbox-thread-avatar {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	overflow: hidden;
	border-radius: 50%;
	background: #303036;
	color: #fff;
	font-weight: 850;
	font-size: 14px;
}

.vex-vpf-inbox-thread-avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vex-vpf-inbox-thread-copy,
.vex-vpf-inbox-thread-top,
.vex-vpf-inbox-thread-bottom {
	display: flex;
	min-width: 0;
}

.vex-vpf-inbox-thread-copy {
	flex-direction: column;
	gap: 6px;
}

.vex-vpf-inbox-thread-top,
.vex-vpf-inbox-thread-bottom {
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.vex-vpf-inbox-thread-top strong,
.vex-vpf-inbox-thread-bottom > span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vex-vpf-inbox-thread-top strong {
	font-size: 14px;
}

.vex-vpf-inbox-thread-top time,
.vex-vpf-inbox-thread-bottom > span {
	color: #aaaab2;
	font-size: 11px;
}

.vex-vpf-inbox-thread-badges {
	display: flex;
	align-items: center;
	gap: 5px;
	min-width: 0;
}

.vex-vpf-inbox-thread-badges small {
	display: inline-flex;
	align-items: center;
	max-width: 145px;
	padding: 3px 7px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255,255,255,.09);
	color: #d6d6dc;
	font-size: 10px;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vex-vpf-inbox-thread-badges .is-type.is-collection,
.vex-vpf-inbox-thread-badges .is-type.is-payment_reminder {
	background: rgba(255,181,45,.17);
	color: #ffd37c;
}

.vex-vpf-inbox-thread-badges .is-type.is-plate {
	background: rgba(37,244,238,.13);
	color: #78fffa;
}

.vex-vpf-inbox-thread-badges .is-type.is-support,
.vex-vpf-inbox-thread-badges .is-type.is-live_chat {
	background: rgba(112,124,255,.18);
	color: #b8beff;
}

.vex-vpf-inbox-thread-unread {
	display: inline-grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
	font-weight: 850;
	font-size: 10px;
}

.vex-vpf-inbox-list-status,
.vex-vpf-inbox-conversation-status {
	padding: 12px 14px;
	color: #aaaab2;
	font-size: 12px;
	text-align: center;
}

.vex-vpf-inbox-list-status.is-error,
.vex-vpf-inbox-conversation-status.is-error {
	color: #ff8a9f;
}

.vex-vpf-inbox-conversation {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
	background: #070707;
}

.vex-vpf-inbox-conversation-header {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 68px;
	padding: 12px 18px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}

.vex-vpf-inbox-conversation-header[hidden] {
	display: none !important;
}

.vex-vpf-inbox-conversation-header > div {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.vex-vpf-inbox-conversation-header strong,
.vex-vpf-inbox-conversation-header span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vex-vpf-inbox-conversation-header strong {
	font-size: 15px;
}

.vex-vpf-inbox-conversation-header span {
	margin-top: 3px;
	color: #aaaab2;
	font-size: 11px;
}

.vex-vpf-inbox-mobile-back {
	display: none;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
}

.vex-vpf-inbox-conversation-empty,
.vex-vpf-inbox-empty-list {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 10px;
	min-height: 100%;
	padding: 28px;
	color: #aaaab2;
	text-align: center;
}

.vex-vpf-inbox-empty-list {
	min-height: 280px;
}

.vex-vpf-inbox-conversation-empty > span,
.vex-vpf-inbox-empty-list-icon {
	display: block;
	width: 66px;
	height: 66px;
	color: #3a3a40;
}

.vex-vpf-inbox-conversation-empty svg,
.vex-vpf-inbox-empty-list-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.vex-vpf-inbox-empty-list-icon svg {
	fill: none;
}

.vex-vpf-inbox-conversation-empty strong,
.vex-vpf-inbox-empty-list strong {
	color: #fff;
	font-size: 18px;
}

.vex-vpf-inbox-conversation-empty p,
.vex-vpf-inbox-empty-list p {
	max-width: 390px;
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
}

.vex-vpf-inbox-messages {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 10px;
	min-height: 0;
	padding: 18px;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.035), transparent 42%), #070707;
}

.vex-vpf-inbox-messages[hidden] {
	display: none !important;
}

.vex-vpf-inbox-message {
	display: flex;
	width: 100%;
}

.vex-vpf-inbox-message.is-outbound {
	justify-content: flex-end;
}

.vex-vpf-inbox-message.is-system {
	justify-content: center;
}

.vex-vpf-inbox-message-bubble {
	max-width: min(78%, 620px);
	padding: 10px 12px;
	border-radius: 14px 14px 14px 4px;
	background: #202024;
	color: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.vex-vpf-inbox-message.is-outbound .vex-vpf-inbox-message-bubble {
	border-radius: 14px 14px 4px 14px;
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
}

.vex-vpf-inbox-message.is-system .vex-vpf-inbox-message-bubble {
	max-width: 90%;
	border-radius: 999px;
	background: rgba(255,255,255,.07);
	color: #b8b8c0;
	text-align: center;
}

.vex-vpf-inbox-message-bubble strong {
	display: block;
	margin-bottom: 3px;
	font-size: 11px;
}

.vex-vpf-inbox-message-bubble p {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	white-space: pre-wrap;
	word-break: break-word;
}

.vex-vpf-inbox-message-bubble small {
	display: block;
	margin-top: 5px;
	color: currentColor;
	font-size: 10px;
	opacity: .68;
	text-align: right;
}

.vex-vpf-inbox-composer {
	display: grid;
	grid-template-columns: minmax(0,1fr) 44px;
	align-items: end;
	gap: 9px;
	padding: 12px 14px;
	border-top: 1px solid rgba(255,255,255,.1);
	background: #0b0b0d;
}

.vex-vpf-inbox-composer[hidden] {
	display: none !important;
}

.vex-vpf-inbox-composer textarea {
	width: 100%;
	min-height: 44px;
	max-height: 140px;
	margin: 0;
	padding: 11px 14px;
	resize: none;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	outline: 0;
	background: #202024;
	color: #fff;
	font: inherit;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: none;
}

.vex-vpf-inbox-composer button {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
	cursor: pointer;
}

.vex-vpf-inbox-composer button:disabled {
	opacity: .55;
	cursor: wait;
}

.vex-vpf-inbox-composer button svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: currentColor;
}

@media (min-width: 961px) {
	.vex-vpf-sidebar.is-inbox-open {
		width: 78px !important;
		max-width: 78px;
		overflow: visible !important;
		padding-right: 12px;
		padding-left: 12px;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel {
		top: 0;
		right: auto;
		bottom: 0;
		left: 78px;
		width: min(980px, calc(100vw - 78px));
		max-width: calc(100vw - 78px);
		height: 100%;
		border-right: 1px solid rgba(255,255,255,.12);
		box-shadow: 28px 0 62px rgba(0,0,0,.32);
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-sidebar-header {
		justify-content: center;
		margin-bottom: 18px;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-sidebar-brand-full {
		display: none;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-sidebar-brand-compact {
		display: grid;
		place-items: center;
		width: 42px;
		height: 42px;
		border-radius: 12px;
		background: #17171a;
		color: #fff;
		font-weight: 850;
		font-size: 20px;
		box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-search-trigger {
		grid-template-columns: 22px;
		justify-content: center;
		width: 48px;
		min-height: 48px;
		margin-right: auto;
		margin-left: auto;
		padding: 0;
		border-radius: 50%;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-search-trigger-label,
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-category-menu,
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-custom-primary-menu,
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-system-menu a > span:last-child,
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-more-trigger > span:last-child,
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-sidebar-account > a > span:last-child {
		display: none !important;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-sidebar-navigation {
		width: 100%;
		overflow: hidden;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-system-menu {
		align-items: center;
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-system-menu a,
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-more-trigger {
		justify-content: center;
		width: 48px;
		min-width: 48px;
		margin-right: auto;
		margin-left: auto;
		padding-right: 0;
		padding-left: 0;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-sidebar-account {
		width: 100%;
		margin-top: 14px;
		padding-top: 14px;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-sidebar-account > a {
		justify-content: center;
		width: 48px;
		margin: 0 auto;
		padding: 3px;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-sidebar-account img,
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-sidebar-account-avatar {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"],
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-panel,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-panel {
	background: #fff;
	color: #16161a;
}

.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-nav-badge {
	border-color: #fff;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-header,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-conversation,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-header,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-conversation,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-header,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-conversation {
	border-color: #dedee3;
	background: #fff;
	color: #16161a;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-threads,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-threads,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-threads,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-composer,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-composer,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-composer {
	border-color: #dedee3;
	background: #fafafa;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-search-wrap,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-search-wrap,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-search-wrap,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-composer textarea,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-composer textarea,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-composer textarea {
	border-color: #dedee3;
	background: #eeeef1;
	color: #16161a;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-search-wrap input,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-search-wrap input,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-search-wrap input {
	color: #16161a;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread {
	border-color: #e5e5e9;
	color: #16161a;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread:hover,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread:focus-visible,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread.is-active,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread:hover,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread:focus-visible,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread.is-active,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread:hover,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread:focus-visible,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread.is-active {
	background: #eeeef1;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread.has-unread,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread.has-unread,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread.has-unread {
	background: rgba(254,44,85,.08);
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread-avatar,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread-avatar,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread-avatar {
	background: #dedee3;
	color: #16161a;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread-top time,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread-bottom > span,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-header > div:first-child > span,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-conversation-header span,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread-top time,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread-bottom > span,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-header > div:first-child > span,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-conversation-header span,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread-top time,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-thread-bottom > span,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-header > div:first-child > span,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-conversation-header span {
	color: #686872;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-conversation-empty strong,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-empty-list strong,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-conversation-empty strong,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-empty-list strong,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-conversation-empty strong,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-empty-list strong {
	color: #16161a;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-messages,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-messages,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-messages {
	background: radial-gradient(circle at 50% 30%, rgba(0,0,0,.025), transparent 42%), #fff;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-message-bubble,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-message-bubble,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-message-bubble {
	background: #eeeef1;
	color: #16161a;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-message.is-outbound .vex-vpf-inbox-message-bubble,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-message.is-outbound .vex-vpf-inbox-message-bubble,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-message.is-outbound .vex-vpf-inbox-message-bubble {
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-header-actions button,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-header-actions button,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-header-actions button {
	background: #eeeef1;
	color: #16161a;
}

@media (max-width: 960px) {
	.vex-vpf-inbox-panel:not(.is-embedded) {
		position: fixed;
		top: var(--vex-vpf-top, 0);
		right: 0;
		bottom: 0;
		left: 0;
		width: 100vw;
		height: auto;
		border: 0;
	}

	.vex-vpf-inbox-panel.is-embedded {
		height: calc(100svh - 118px);
		min-height: 520px;
		border-width: 0;
		border-radius: 0;
	}

	.vex-vpf-inbox-body {
		grid-template-columns: minmax(260px, 340px) minmax(0,1fr);
	}
}

@media (max-width: 720px) {
	.vex-vpf-inbox-header {
		min-height: 64px;
		padding: 10px 12px;
	}

	.vex-vpf-inbox-header h2 {
		font-size: 20px;
	}

	.vex-vpf-inbox-header-actions [data-vex-vpf-inbox-expand] {
		display: none;
	}

	.vex-vpf-inbox-body {
		display: block;
		position: relative;
	}

	.vex-vpf-inbox-threads,
	.vex-vpf-inbox-conversation {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		border: 0;
	}

	.vex-vpf-inbox-conversation {
		visibility: hidden;
		transform: translateX(100%);
		transition: transform 180ms ease, visibility 0s linear 180ms;
	}

	.vex-vpf-inbox-panel.is-thread-open .vex-vpf-inbox-conversation {
		visibility: visible;
		transform: translateX(0);
		transition-delay: 0s;
	}

	.vex-vpf-inbox-panel.is-thread-open .vex-vpf-inbox-threads {
		visibility: hidden;
	}

	.vex-vpf-inbox-mobile-back {
		display: grid;
	}

	.vex-vpf-inbox-message-bubble {
		max-width: 86%;
	}

	.vex-vpf-inbox-panel.is-embedded {
		height: calc(100svh - 118px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.vex-vpf-inbox-panel,
	.vex-vpf-inbox-conversation {
		transition: none !important;
	}
}

.vex-vpf-account-sidebar a,
.vex-vpf-profile-more-menu a {
	position: relative;
}

.vex-vpf-account-inbox-badge {
	display: inline-grid;
	place-items: center;
	min-width: 19px;
	height: 19px;
	margin-left: auto;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
	font-weight: 850;
	font-size: 10px;
	line-height: 1;
}

.vex-vpf-account-inbox-badge[hidden] {
	display: none !important;
}

.vex-vpf-inbox-menu-item.is-inbox-active > a {
	background: #202024;
	color: #fff;
	box-shadow: inset 3px 0 0 var(--vex-vpf-primary, #fe2c55);
}

.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-menu-item.is-inbox-active > a {
	background: #eeeef1;
	color: #111;
}

.vex-vpf-inbox-menu-icon > i {
	display: block;
	width: 100%;
	height: 100%;
	font-style: normal;
}

.vex-vpf-inbox-menu-icon > .is-filled,
.vex-vpf-inbox-menu-item.is-inbox-active .vex-vpf-inbox-menu-icon > .is-outline {
	display: none;
}

.vex-vpf-inbox-menu-item.is-inbox-active .vex-vpf-inbox-menu-icon > .is-filled {
	display: block;
}

/* Version 0.11.1: keep the compact navigation rail beside Messages and mirror TikTok's drawer/full-screen states. */
@media (min-width: 961px) {
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel:not(.is-fullscreen) {
		left: 78px;
		width: 480px;
		max-width: min(480px, calc(100vw - 78px));
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel:not(.is-fullscreen) .vex-vpf-inbox-header > div:first-child > span {
		display: none;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel:not(.is-fullscreen) .vex-vpf-inbox-body {
		position: relative;
		display: block;
		overflow: hidden;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel:not(.is-fullscreen) .vex-vpf-inbox-threads,
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel:not(.is-fullscreen) .vex-vpf-inbox-conversation {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		border-right: 0;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel:not(.is-fullscreen) .vex-vpf-inbox-conversation {
		visibility: hidden;
		transform: translateX(100%);
		transition: transform 180ms ease, visibility 0s linear 180ms;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel:not(.is-fullscreen).is-thread-open .vex-vpf-inbox-conversation {
		visibility: visible;
		transform: translateX(0);
		transition-delay: 0s;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel:not(.is-fullscreen).is-thread-open .vex-vpf-inbox-threads {
		visibility: hidden;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel:not(.is-fullscreen) .vex-vpf-inbox-mobile-back {
		display: grid;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel.is-fullscreen {
		top: var(--vex-vpf-top, 0) !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 78px !important;
		width: calc(100vw - 78px) !important;
		max-width: none !important;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel.is-fullscreen .vex-vpf-inbox-body {
		display: grid;
		grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel.is-fullscreen .vex-vpf-inbox-threads,
	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel.is-fullscreen .vex-vpf-inbox-conversation {
		position: static;
		inset: auto;
		width: auto;
		height: auto;
		visibility: visible;
		transform: none;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel.is-fullscreen .vex-vpf-inbox-threads {
		border-right: 1px solid rgba(255,255,255,.12);
	}

	.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel.is-fullscreen .vex-vpf-inbox-threads {
		border-right-color: #dedee3;
	}

	.vex-vpf-sidebar.is-inbox-open .vex-vpf-inbox-panel.is-fullscreen .vex-vpf-inbox-mobile-back {
		display: none;
	}
}

/* Version 0.12.1: guest Messages screen and professional categorized emoji picker. */
.vex-vpf-inbox-guest-state {
	display: flex;
	flex: 1 1 auto;
	min-height: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 18px;
	padding: 48px 24px;
	text-align: center;
}

.vex-vpf-inbox-guest-icon {
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	color: #777780;
}

.vex-vpf-inbox-guest-icon svg { width: 100%; height: 100%; }
.vex-vpf-inbox-guest-state h3 { margin: 0; color: inherit; font-size: 24px; line-height: 1.15; }
.vex-vpf-inbox-guest-state p { max-width: 420px; margin: 0; color: #aaaab2; font-size: 16px; line-height: 1.5; }
.vex-vpf-inbox-login-button {
	min-width: 226px;
	min-height: 52px;
	margin-top: 8px;
	padding: 12px 24px;
	border: 0;
	border-radius: 10px;
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
	font: inherit;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
}

.vex-vpf-inbox-compose-field { position: relative; min-width: 0; }
.vex-vpf-inbox-compose-field textarea { padding-right: 48px; }
.vex-vpf-inbox-emoji-toggle {
	position: absolute;
	right: 6px;
	bottom: 5px;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 34px !important;
	height: 34px !important;
	min-width: 34px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: #d7d7db !important;
}
.vex-vpf-inbox-emoji-toggle svg { width: 21px; height: 21px; fill: currentColor; }
.vex-vpf-inbox-emoji-picker {
	position: absolute;
	right: 0;
	bottom: calc(100% + 12px);
	z-index: 100;
	width: min(420px, calc(100vw - 28px));
	max-height: min(520px, 62vh);
	padding: 12px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	background: #202024;
	box-shadow: 0 20px 56px rgba(0,0,0,.45);
}
.vex-vpf-inbox-emoji-picker[hidden] { display: none !important; }
.vex-vpf-inbox-emoji-categories { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 4px; margin-bottom: 10px; }
.vex-vpf-inbox-emoji-categories button,
.vex-vpf-inbox-emoji-grid button {
	display: grid;
	place-items: center;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}
.vex-vpf-inbox-emoji-categories button { height: 38px; border-radius: 9px; font-size: 20px; }
.vex-vpf-inbox-emoji-categories button:hover,
.vex-vpf-inbox-emoji-categories button:focus-visible,
.vex-vpf-inbox-emoji-categories button.is-active { background: rgba(255,255,255,.11); }
.vex-vpf-inbox-emoji-search {
	display: grid;
	grid-template-columns: 20px minmax(0,1fr);
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 12px;
	border-radius: 12px;
	background: #303035;
	color: #aaaab2;
}
.vex-vpf-inbox-emoji-search svg { width: 20px; height: 20px; fill: currentColor; }
.vex-vpf-inbox-emoji-search input {
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font: inherit;
}
.vex-vpf-inbox-emoji-picker > strong { display: block; margin: 12px 2px 8px; color: inherit; font-size: 14px; }
.vex-vpf-inbox-emoji-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0,1fr));
	gap: 2px;
	max-height: 300px;
	overflow: auto;
	overscroll-behavior: contain;
}
.vex-vpf-inbox-emoji-grid button { min-height: 40px; border-radius: 8px; font-size: 25px; line-height: 1; }
.vex-vpf-inbox-emoji-grid button:hover,
.vex-vpf-inbox-emoji-grid button:focus-visible { background: rgba(255,255,255,.1); }

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-guest-state p,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-guest-state p,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-guest-state p { color: #6b6b73; }
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-toggle,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-toggle,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-toggle { color: #33343a !important; }
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-picker,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-picker,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-picker {
	border-color: #dedee3;
	background: #fff;
	color: #16161a;
	box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-search,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-search,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-search { background: #f0f0f3; color: #666670; }
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-search input,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-search input,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-search input { color: #16161a; }
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-categories button:hover,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-categories button:focus-visible,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-categories button.is-active,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-grid button:hover,
.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-emoji-grid button:focus-visible { background: #eeeef1; }

@media (max-width: 782px) {
	.vex-vpf-inbox-panel.is-standalone,
	.vex-vpf-inbox-panel.is-guest {
		position: fixed !important;
		top: var(--vex-vpf-top, 0px) !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		z-index: 2147483644 !important;
		width: 100vw !important;
		height: var(--vex-vpf-height, 100dvh) !important;
		max-width: none !important;
	}
	.vex-vpf-inbox-panel.is-guest .vex-vpf-inbox-header { min-height: 64px; }
	.vex-vpf-inbox-panel.is-guest .vex-vpf-inbox-header-actions [data-vex-vpf-inbox-expand] { display: none; }
	.vex-vpf-inbox-guest-state { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
	.vex-vpf-inbox-emoji-picker { position: fixed; right: 10px; bottom: calc(70px + env(safe-area-inset-bottom, 0px)); left: 10px; width: auto; max-height: 62vh; }
	.vex-vpf-inbox-emoji-grid { grid-template-columns: repeat(7, minmax(0,1fr)); }
}

/* Version 0.12.1: center the signed-out Messages header like the mobile activity reference. */
@media (max-width: 782px) {
	.vex-vpf-inbox-panel.is-guest .vex-vpf-inbox-header {
		display: grid;
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		gap: 8px;
		padding: 12px 14px;
	}
	.vex-vpf-inbox-panel.is-guest .vex-vpf-inbox-header::before {
		content: "";
		display: block;
		width: 40px;
		height: 40px;
	}
	.vex-vpf-inbox-panel.is-guest .vex-vpf-inbox-header > div:first-child {
		grid-column: 2;
		text-align: center;
	}
	.vex-vpf-inbox-panel.is-guest .vex-vpf-inbox-header-actions {
		grid-column: 3;
		justify-content: flex-end;
	}
	.vex-vpf-inbox-panel.is-guest .vex-vpf-inbox-header h2 {
		font-size: 20px;
	}
}

@media (max-width: 782px) {
	.vex-vpf-mobile-external-chat-launcher {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}
}

/* Version 0.12.2: portal the mobile message drawer outside the transformed sidebar. */
@media (max-width: 782px) {
	body.vex-vpf-inbox-mobile-open {
		overflow: hidden !important;
	}

	.vex-vpf-inbox-panel.is-mobile-portal:not(.is-embedded) {
		position: fixed !important;
		top: var(--vex-vpf-top, 0px) !important;
		right: 0 !important;
		bottom: calc(68px + env(safe-area-inset-bottom, 0px)) !important;
		left: 0 !important;
		z-index: 2147483644 !important;
		display: flex !important;
		width: 100vw !important;
		max-width: 100vw !important;
		height: auto !important;
		min-height: 0 !important;
		margin: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		transform: none !important;
	}

	.vex-vpf-inbox-panel.is-mobile-portal .vex-vpf-inbox-header,
	.vex-vpf-inbox-panel.is-mobile-portal .vex-vpf-inbox-body,
	.vex-vpf-inbox-panel.is-mobile-portal .vex-vpf-inbox-threads,
	.vex-vpf-inbox-panel.is-mobile-portal .vex-vpf-inbox-conversation {
		width: 100% !important;
		max-width: none !important;
	}

	body.admin-bar .vex-vpf-inbox-panel.is-mobile-portal:not(.is-embedded) {
		top: 46px !important;
	}
}


/* Version 0.12.3: make the mobile Messages surface fill the complete app height. */
@media (max-width: 782px) {
	body.vex-vpf-inbox-mobile-open {
		min-height: 100dvh !important;
		overflow: hidden !important;
	}

	.vex-vpf-inbox-panel.is-mobile-portal:not(.is-embedded) {
		top: 0 !important;
		bottom: 0 !important;
		width: 100vw !important;
		height: 100dvh !important;
		min-height: 100dvh !important;
		max-height: 100dvh !important;
		padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)) !important;
		overflow: hidden !important;
		background: #070707 !important;
	}

	.vex-vpf-inbox-panel.is-mobile-portal[data-vex-vpf-theme="light"]:not(.is-embedded) {
		background: #fff !important;
	}

	.vex-vpf-inbox-panel.is-mobile-portal .vex-vpf-inbox-body,
	.vex-vpf-inbox-panel.is-mobile-portal .vex-vpf-inbox-guest-state {
		min-height: 0 !important;
		flex: 1 1 auto !important;
	}

	body.admin-bar .vex-vpf-inbox-panel.is-mobile-portal:not(.is-embedded) {
		top: 46px !important;
		height: calc(100dvh - 46px) !important;
		min-height: calc(100dvh - 46px) !important;
		max-height: calc(100dvh - 46px) !important;
	}
}

/* Version 0.12.3 correction: fill the complete content height above the persistent mobile nav. */
@media (max-width: 782px) {
	.vex-vpf-inbox-panel.is-mobile-portal:not(.is-embedded),
	body.admin-bar .vex-vpf-inbox-panel.is-mobile-portal:not(.is-embedded) {
		top: var(--vex-vpf-inbox-mobile-top, 0px) !important;
		right: 0 !important;
		bottom: calc(56px + env(safe-area-inset-bottom, 0px)) !important;
		left: 0 !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		padding-bottom: 0 !important;
	}
}


/* Version 0.12.4: opening Messages from the mobile drawer becomes a full app view above the persistent bottom navigation. */
@media (max-width: 782px) {
	body.vex-vpf-inbox-mobile-open .vex-vpf-layout.is-sidebar-open,
	body.vex-vpf-inbox-mobile-open .vex-vpf-site-shell.is-sidebar-open {
		pointer-events: none;
	}

	body.vex-vpf-inbox-mobile-open .vex-vpf-layout > .vex-vpf-sidebar,
	body.vex-vpf-inbox-mobile-open .vex-vpf-layout > .vex-vpf-sidebar-backdrop,
	body.vex-vpf-inbox-mobile-open .vex-vpf-site-shell > .vex-vpf-sidebar,
	body.vex-vpf-inbox-mobile-open .vex-vpf-site-shell > .vex-vpf-sidebar-backdrop {
		opacity: 0 !important;
		visibility: hidden !important;
		transform: translateX(-105%) !important;
		pointer-events: none !important;
	}

	.vex-vpf-inbox-panel.is-mobile-portal:not(.is-embedded),
	body.admin-bar .vex-vpf-inbox-panel.is-mobile-portal:not(.is-embedded) {
		top: 0 !important;
		right: 0 !important;
		bottom: var(--vex-vpf-inbox-mobile-bottom, calc(68px + env(safe-area-inset-bottom, 0px))) !important;
		left: 0 !important;
		display: flex !important;
		width: 100vw !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		transform: none !important;
	}

	.vex-vpf-inbox-panel.is-mobile-portal .vex-vpf-inbox-header {
		flex: 0 0 auto;
	}

	.vex-vpf-inbox-panel.is-mobile-portal .vex-vpf-inbox-body,
	.vex-vpf-inbox-panel.is-mobile-portal .vex-vpf-inbox-guest-state {
		flex: 1 1 auto !important;
		min-height: 0 !important;
		height: auto !important;
	}

	body.vex-vpf-inbox-mobile-open [data-vex-vpf-mobile-nav] {
		z-index: 2147483645 !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}
}

.vex-vpf-inbox-call-card {
	margin-top: 10px;
	padding: 12px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 14px;
	background: rgba(255,255,255,.08);
	text-align: left;
}

.vex-vpf-inbox-call-card-title {
	display: block;
	margin: 0 0 8px;
	font-size: 12px;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.vex-vpf-inbox-call-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
}

.vex-vpf-inbox-call-card-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(255,255,255,.14);
	font-size: 11px;
	text-transform: capitalize;
}

.vex-vpf-inbox-call-card-summary {
	margin: 0 0 10px !important;
	font-size: 13px !important;
}

.vex-vpf-inbox-call-card-media {
	display: grid;
	gap: 6px;
	margin-top: 8px;
}

.vex-vpf-inbox-call-card-media audio {
	width: 100%;
	max-width: 420px;
}

.vex-vpf-inbox-call-card-note {
	font-size: 12px;
	opacity: .82;
}

.vex-vpf-inbox-call-card-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	font-size: 12px;
}

.vex-vpf-inbox-call-card-footer a {
	color: currentColor;
	font-weight: 700;
	text-decoration: underline;
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-call-card,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-call-card,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-call-card {
	border-color: rgba(15,23,42,.12);
	background: rgba(15,23,42,.04);
}

.vex-vpf-inbox-panel[data-vex-vpf-theme="light"] .vex-vpf-inbox-call-card-meta span,
.vex-vpf-layout[data-vex-vpf-theme="light"] .vex-vpf-inbox-call-card-meta span,
.vex-vpf-account-app[data-vex-vpf-theme="light"] .vex-vpf-inbox-call-card-meta span {
	background: rgba(15,23,42,.08);
}
