.vcb-root {
	--vcb-green: #274149;
	--vcb-blue: #003da5;
	--vcb-red: #e30613;
	--vcb-orange: #ec6607;
	--vcb-bg: #ffffff;
	--vcb-ink: #274149;
	--vcb-muted: #555454;
	--vcb-line: #dadada;
	--vcb-soft: #f5f5f5;
	--vcb-shadow: 0 22px 58px rgba(39, 65, 73, 0.22);
	font-family: "Montserrat", "Open Sans", Arial, sans-serif;
	position: relative;
	z-index: 9999;
}

.vcb-root *,
.vcb-root *::before,
.vcb-root *::after {
	box-sizing: border-box;
}

.vcb-root button {
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
	line-height: 1;
}

.vcb-embed-shell {
	bottom: 24px;
	position: fixed;
	right: 24px;
}

.vcb-root .vcb-launcher {
	align-items: center;
	background: var(--vcb-blue);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(0, 61, 165, 0.28);
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font: 800 14px/1 "Montserrat", "Open Sans", Arial, sans-serif;
	gap: 10px;
	letter-spacing: 0;
	min-height: 52px;
	padding: 9px 18px 9px 10px;
	transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.vcb-root .vcb-launcher:hover,
.vcb-root .vcb-launcher:focus-visible {
	background: #002f80;
	box-shadow: 0 18px 40px rgba(0, 61, 165, 0.34);
	transform: translateY(-1px);
}

.vcb-root .vcb-launcher__icon {
	align-items: center;
	background: transparent;
	border-radius: 50%;
	display: inline-flex;
	height: 34px;
	justify-content: center;
	overflow: hidden;
	width: 34px;
}

.vcb-root .vcb-launcher__avatar {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.vcb-root .vcb-icon-button svg {
	height: 21px;
	width: 21px;
}

.vcb-root .vcb-icon-button svg path {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.vcb-root .vcb-panel {
	background: var(--vcb-bg);
	border: 1px solid var(--vcb-line);
	border-radius: 8px;
	bottom: 74px;
	box-shadow: var(--vcb-shadow);
	color: var(--vcb-ink);
	display: flex;
	flex-direction: column;
	height: calc(100vh * 0.75);
	min-height: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	right: 0;
	transform: translateY(14px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	visibility: hidden;
	width: calc(100vw * 0.333333);
}

.vcb-root.is-open .vcb-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.vcb-root .vcb-panel__header {
	align-items: center;
	background: #ffffff;
	border-top: 5px solid var(--vcb-red);
	color: var(--vcb-green);
	display: flex;
	justify-content: space-between;
	min-height: 88px;
	padding: 18px 18px 15px;
	position: relative;
}

.vcb-root .vcb-header-brand {
	align-items: center;
	display: inline-flex;
	gap: 12px;
}

.vcb-root .vcb-header-avatar {
	border: 1px solid var(--vcb-line);
	border-radius: 50%;
	display: block;
	height: 44px;
	object-fit: cover;
	object-position: center;
	width: 44px;
}

.vcb-root .vcb-header-actions {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.vcb-root .vcb-panel__header::after {
	background: var(--vcb-orange);
	bottom: 0;
	content: "";
	height: 3px;
	left: 18px;
	position: absolute;
	width: 52px;
}

.vcb-root .vcb-eyebrow,
.vcb-root .vcb-title,
.vcb-root .vcb-message p {
	margin: 0;
}

.vcb-root .vcb-eyebrow {
	color: var(--vcb-blue);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-transform: none;
}

.vcb-root .vcb-icon-button {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--vcb-line);
	border-radius: 50%;
	color: var(--vcb-blue);
	cursor: pointer;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	padding: 0;
	width: 38px;
}

.vcb-root .vcb-icon-button:hover,
.vcb-root .vcb-icon-button:focus-visible {
	background: var(--vcb-soft);
	border-color: var(--vcb-red);
	color: var(--vcb-red);
}

.vcb-root .vcb-panel__body {
	background: var(--vcb-soft);
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	overscroll-behavior: contain;
	overflow: hidden;
	padding: 16px;
}

.vcb-root .vcb-panel__body--embed {
	padding: 0;
}

.vcb-root .vcb-embed-placeholder {
	align-items: center;
	color: var(--vcb-muted);
	display: flex;
	flex: 1;
	font: 400 14px/1.7 "Open Sans", Arial, sans-serif;
	justify-content: center;
	padding: 28px;
	text-align: center;
}

.vcb-root .vcb-embed-placeholder p {
	margin: 0;
}

.vcb-root .vcb-iframe-host {
	display: flex;
	flex: 1;
	min-height: 0;
}

.vcb-root .vcb-iframe {
	background: #ffffff;
	border: 0;
	display: block;
	flex: 1;
	height: 100%;
	width: 100%;
}

.vcb-root.is-embed-ready .vcb-embed-placeholder {
	display: none;
}

@media (max-width: 640px) {
	.vcb-root .vcb-embed-shell {
		bottom: 16px;
		right: 16px;
	}

	.vcb-root .vcb-panel {
		border: 0;
		border-radius: 0;
		bottom: auto;
		box-shadow: none;
		height: 100vh;
		inset: 0;
		max-width: none;
		position: fixed;
		right: auto;
		width: 100vw;
	}

	@supports (height: 100dvh) {
		.vcb-root .vcb-panel {
			height: 100dvh;
		}
	}

	.vcb-root.is-open .vcb-panel {
		transform: translateY(0);
	}

	.vcb-root .vcb-launcher__label {
		max-width: 120px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.vcb-root .vcb-header-avatar {
		height: 40px;
		width: 40px;
	}
}
