.lvis-cv-assistant,
.lvis-cv-assistant * {
	box-sizing: border-box;
}

.lvis-cv-assistant {
	--lvis-navy: #123556;
	--lvis-navy-dark: #0b2945;
	--lvis-blue: #0d8dcc;
	--lvis-slate: #5f6b76;
	--lvis-border: #d8e2e9;
	--lvis-surface: #f5f8fa;
	--lvis-white: #ffffff;
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999999;
	font-family: inherit;
}

.lvis-cv-launcher {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	min-height: 56px;
	padding: 11px 20px 11px 12px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: var(--lvis-navy);
	color: var(--lvis-white);
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: 0 12px 32px rgba(11, 41, 69, 0.28);
	cursor: pointer;
	transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.lvis-cv-launcher:hover,
.lvis-cv-launcher:focus-visible {
	background: var(--lvis-navy-dark);
	box-shadow: 0 15px 36px rgba(11, 41, 69, 0.34);
	transform: translateY(-2px);
}

.lvis-cv-launcher:focus-visible,
.lvis-cv-close:focus-visible,
.lvis-cv-submit:focus-visible,
.lvis-cv-field input:focus-visible,
.lvis-cv-consent input:focus-visible {
	outline: 3px solid rgba(13, 141, 204, 0.32);
	outline-offset: 2px;
}

.lvis-cv-launcher__icon {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.13);
}

.lvis-cv-launcher__icon svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.lvis-cv-panel {
	position: absolute;
	right: 0;
	bottom: 72px;
	width: min(390px, calc(100vw - 32px));
	overflow: hidden;
	border: 1px solid rgba(18, 53, 86, 0.12);
	border-radius: 20px;
	background: var(--lvis-white);
	color: #14212c;
	box-shadow: 0 20px 54px rgba(11, 41, 69, 0.28);
	transform-origin: bottom right;
	animation: lvis-cv-open 180ms ease-out;
}

.lvis-cv-panel[hidden] {
	display: none;
}

@keyframes lvis-cv-open {
	from {
		opacity: 0;
		transform: translateY(8px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.lvis-cv-panel__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 22px 19px;
	background: var(--lvis-navy);
	color: var(--lvis-white);
}

.lvis-cv-panel__eyebrow {
	margin: 0 0 4px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lvis-cv-panel__header h2 {
	margin: 0;
	color: inherit;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.lvis-cv-close {
	display: grid;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--lvis-white);
	font: inherit;
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
}

.lvis-cv-panel__body {
	max-height: min(610px, calc(100vh - 128px));
	overflow-y: auto;
	padding: 20px 22px 22px;
	background: var(--lvis-surface);
}

.lvis-cv-message {
	position: relative;
	margin: 0 24px 18px 0;
	padding: 14px 16px;
	border: 1px solid var(--lvis-border);
	border-radius: 16px 16px 16px 4px;
	background: var(--lvis-white);
	color: #344451;
	font-size: 14px;
	line-height: 1.55;
	box-shadow: 0 5px 18px rgba(18, 53, 86, 0.07);
}

.lvis-cv-form {
	display: grid;
	gap: 13px;
}

.lvis-cv-field {
	display: grid;
	gap: 6px;
}

.lvis-cv-field label {
	margin: 0;
	color: #263746;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
}

.lvis-cv-field label span {
	color: var(--lvis-slate);
	font-size: 12px;
	font-weight: 500;
}

.lvis-cv-field input {
	width: 100%;
	height: 44px;
	margin: 0;
	padding: 9px 12px;
	border: 1px solid var(--lvis-border);
	border-radius: 10px;
	background: var(--lvis-white);
	color: #14212c;
	font: inherit;
	font-size: 15px;
	line-height: 1.2;
	box-shadow: none;
}

.lvis-cv-field input:focus {
	border-color: var(--lvis-blue);
}

.lvis-cv-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.lvis-cv-consent {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 9px;
	align-items: start;
	margin: 2px 0 0;
	color: var(--lvis-slate);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
	cursor: pointer;
}

.lvis-cv-consent input {
	width: 17px;
	height: 17px;
	margin: 1px 0 0;
	accent-color: var(--lvis-blue);
}

.lvis-cv-consent a {
	color: var(--lvis-navy);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.lvis-cv-status {
	display: none;
	margin: 0;
	padding: 10px 12px;
	border-radius: 9px;
	font-size: 13px;
	line-height: 1.4;
}

.lvis-cv-status.is-visible {
	display: block;
}

.lvis-cv-status.is-success {
	background: #e9f6ee;
	color: #1d6a3a;
}

.lvis-cv-status.is-error {
	background: #fff0f0;
	color: #9f2525;
}

.lvis-cv-submit {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 46px;
	margin-top: 2px;
	padding: 11px 18px;
	border: 0;
	border-radius: 10px;
	background: var(--lvis-navy);
	color: var(--lvis-white);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease;
}

.lvis-cv-submit:hover {
	background: var(--lvis-navy-dark);
}

.lvis-cv-submit:active {
	transform: translateY(1px);
}

.lvis-cv-submit[disabled] {
	cursor: wait;
	opacity: 0.72;
}

@media (max-width: 600px) {
	.lvis-cv-assistant {
		right: 16px;
		bottom: 16px;
	}

	.lvis-cv-launcher {
		min-height: 52px;
		padding: 9px 15px 9px 9px;
	}

	.lvis-cv-launcher__icon {
		width: 34px;
		height: 34px;
	}

	.lvis-cv-panel {
		position: fixed;
		right: 12px;
		bottom: 80px;
		left: 12px;
		width: auto;
	}

	.lvis-cv-panel__body {
		max-height: calc(100vh - 190px);
	}
}

@media (max-width: 390px) {
	.lvis-cv-launcher__text {
		display: none;
	}

	.lvis-cv-launcher {
		width: 54px;
		padding: 9px;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lvis-cv-panel {
		animation: none;
	}

	.lvis-cv-launcher,
	.lvis-cv-submit {
		transition: none;
	}
}

