.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;
	}
}
