:root {
	--hc-ink: #25313f;
	--hc-muted: #667085;
	--hc-line: #d9e0e8;
	--hc-brand: #a9611f;
	--hc-brand: #ff9800;
	--hc-brand-dark: #7d4312;
	--hc-brand-dark: #f57c00;
	--hc-bg: #f7f9fb;
}

body {
	background: var(--hc-bg);
	color: var(--hc-ink);
	font-family: Arial, Helvetica, sans-serif;
}

.app-main {
	padding: 24px 0 42px;
}

.app-panel {
	background: #fff;
	border: 1px solid var(--hc-line);
	border-radius: 8px;
	padding: 20px;
}

.app-title {
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.app-lead {
	color: var(--hc-muted);
	margin-bottom: 20px;
}

.btn-primary {
	background-color: var(--hc-brand);
	border-color: var(--hc-brand);
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--hc-brand-dark);
	border-color: var(--hc-brand-dark);
}

.form-label {
	font-weight: 600;
}

.dropzone {
	border: 2px dashed #b7c2ce;
	border-radius: 8px;
	background: #fbfcfd;
	min-height: 150px;
	padding: 20px;
}

.dz-message {
	color: var(--hc-muted);
	margin: 2.2em 0;
}

.cv-current {
	border: 1px solid var(--hc-line);
	border-radius: 8px;
	padding: 12px 14px;
	background: #fbfcfd;
}

@media (min-width: 768px) {
	.app-main {
		padding-top: 42px;
	}

	.app-panel {
		padding: 28px;
	}
}


.cv-content-wrapper {
	border: 1px solid rgba(13, 110, 253, .12);
	background: #fff;
	padding: 50px 20px;
}

.cv-content-card,
.cv-content-side-card {
	border: 1px solid rgba(13, 110, 253, .12);
	border-radius: 1.35rem;
	background: #fff;
	box-shadow: 0 14px 42px rgba(15, 23, 42, .07);
	overflow: hidden;
}

.cv-content-side-card {
	position: sticky;
	top: 1.25rem;
}

.cv-side-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #172033;
	margin-bottom: .75rem;
}

.cv-side-illustration {
	width: 100%;
	border-radius: 1rem;
	background: #f5f9ff;
	margin-bottom: 1.25rem;
}

.cv-benefit-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cv-benefit-list li {
	display: flex;
	gap: .75rem;
	padding: .8rem 0;
	border-bottom: 1px solid #eef2f7;
	color: #4b5565;
	font-size: .95rem;
	line-height: 1.45;
}

.cv-benefit-list li:last-child {
	border-bottom: 0;
}

.cv-check {
	width: 1.45rem;
	height: 1.45rem;
	flex: 0 0 1.45rem;
	border-radius: 50%;
	background: rgba(13, 110, 253, .10);
	color: #0d6efd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .85rem;
	font-weight: 900;
}

.cv-security-note {
	border-radius: 1rem;
	background: #f8fafc;
	padding: 1rem;
	color: #667085;
	font-size: .9rem;
	line-height: 1.55;
	margin-top: 1.25rem;
}

@media (max-width: 991.98px) {
	.cv-content-side-card {
		position: static;
	}

	.cv-content-wrapper {
		padding-top: 2rem;
	}
}

@media (max-width: 767.98px) {
	.cv-content-side-card .card-body {
		padding: 1.25rem !important;
	}
}