.cdf-wrap {
	--cdf-primary: #334986;
	--cdf-primary-dark: #24386d;
	--cdf-secondary: #E6E6E6;
	--cdf-accent: #FF931E;
	--cdf-accent-dark: #db7411;
	--cdf-ink: #18213d;
	--cdf-muted: #5f6b82;
	--cdf-border: #d8deea;
	--cdf-soft: #f6f8fb;
	--cdf-soft-strong: #edf1f7;
	--cdf-success: #13795b;
	--cdf-error: #b42318;
	--cdf-radius: 8px;
	color: var(--cdf-ink);
	font-family: "Barlow", Arial, sans-serif;
	max-width: 1180px;
	margin: 0 auto;
}

.cdf-wrap *,
.cdf-wrap *::before,
.cdf-wrap *::after {
	box-sizing: border-box;
}

.cdf-wrap [hidden] {
	display: none !important;
}

.cdf-form {
	background: #ffffff;
	border: 1px solid var(--cdf-border);
	border-radius: var(--cdf-radius);
	box-shadow: 0 20px 52px rgba(24, 33, 61, 0.1);
	overflow: visible;
}

.cdf-header {
	background: linear-gradient(135deg, #ffffff 0%, #f3f6fb 100%);
	border-bottom: 1px solid var(--cdf-border);
	border-radius: calc(var(--cdf-radius) - 1px) calc(var(--cdf-radius) - 1px) 0 0;
	padding: clamp(24px, 4vw, 44px);
	position: relative;
}

.cdf-header::before {
	background: var(--cdf-accent);
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.cdf-kicker {
	color: var(--cdf-accent);
	font-size: 0.82rem;
	font-weight: 800;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.cdf-header h3 {
	color: var(--cdf-primary);
	font-size: clamp(1.7rem, 3vw, 2.55rem);
	font-weight: 800;
	line-height: 1.12;
	margin: 0;
}

.cdf-header p:last-child {
	color: var(--cdf-muted);
	font-size: 1.03rem;
	font-weight: 500;
	line-height: 1.55;
	margin: 12px 0 0;
	max-width: 760px;
}

/* --- Hero header (title hierarchy) --- */

.cdf-header .cdf-hero-title {
	color: var(--cdf-primary);
	font-size: clamp(2rem, 4.4vw, 3rem);
	font-weight: 800;
	letter-spacing: 0.5px;
	line-height: 1.05;
	margin: 0;
}

.cdf-hero-promo {
	color: var(--cdf-accent);
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	font-weight: 800;
	margin: 8px 0 0;
}

.cdf-hero-sub {
	color: var(--cdf-ink);
	font-size: 1.05rem;
	font-weight: 500;
	margin: 4px 0 0;
}

.cdf-header p.cdf-hero-desc {
	color: var(--cdf-muted);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.55;
	margin: 14px 0 0;
	max-width: none;
	text-wrap: balance;
}

.cdf-layout {
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 1fr) minmax(310px, 370px);
	padding: clamp(18px, 3vw, 34px);
}

.cdf-main {
	display: grid;
	gap: 22px;
	min-width: 0;
}

.cdf-section {
	background: #ffffff;
	border: 1px solid var(--cdf-border);
	border-radius: var(--cdf-radius);
	padding: clamp(20px, 2.7vw, 28px);
}

.cdf-section-heading {
	align-items: center;
	display: flex;
	gap: 12px;
	margin: 0 0 18px;
}

.cdf-section-heading span {
	align-items: center;
	background: var(--cdf-primary);
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	flex: 0 0 32px;
	font-size: 0.9rem;
	font-weight: 800;
	height: 32px;
	justify-content: center;
	width: 32px;
}

.cdf-section-heading h3 {
	color: var(--cdf-primary);
	font-size: 1.16rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
}

.cdf-section-help {
	color: var(--cdf-muted);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.45;
	margin: -6px 0 18px;
}

.cdf-plan-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cdf-plan-card {
	background: var(--cdf-soft);
	border: 2px solid transparent;
	border-radius: var(--cdf-radius);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 20px;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cdf-plan-card:hover,
.cdf-plan-card:focus-within {
	border-color: rgba(51, 73, 134, 0.4);
	box-shadow: 0 14px 30px rgba(24, 33, 61, 0.1);
	transform: translateY(-1px);
}

.cdf-plan-card.is-selected {
	background: #ffffff;
	border-color: var(--cdf-primary);
	box-shadow: 0 16px 34px rgba(51, 73, 134, 0.16);
}

.cdf-plan-card input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.cdf-plan-card-head {
	align-items: flex-start;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-bottom: 14px;
}

.cdf-plan-card strong {
	color: var(--cdf-primary);
	display: block;
	font-size: 1.26rem;
	font-weight: 800;
	line-height: 1.2;
}

.cdf-plan-card small {
	color: var(--cdf-accent-dark);
	display: block;
	font-size: 0.84rem;
	font-weight: 800;
	margin-top: 4px;
}

.cdf-plan-check {
	background: #ffffff;
	border: 2px solid #aeb9cb;
	border-radius: 999px;
	display: inline-block;
	flex: 0 0 22px;
	height: 22px;
	position: relative;
	width: 22px;
}

.cdf-plan-card.is-selected .cdf-plan-check {
	background: var(--cdf-accent);
	border-color: var(--cdf-accent);
}

.cdf-plan-card.is-selected .cdf-plan-check::after {
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	content: "";
	height: 9px;
	left: 7px;
	position: absolute;
	top: 3px;
	transform: rotate(45deg);
	width: 5px;
}

.cdf-plan-card ul,
.cdf-demo-result ul {
	margin: 0;
	padding-left: 18px;
}

.cdf-plan-card li {
	color: var(--cdf-muted);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.45;
	margin: 8px 0;
}

.cdf-plan-card li::marker {
	color: var(--cdf-accent);
}

.cdf-fields-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cdf-field,
.cdf-member-field {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.cdf-field-compact {
	max-width: 260px;
}

.cdf-field span,
.cdf-member-field span {
	color: var(--cdf-ink);
	font-size: 0.9rem;
	font-weight: 700;
}

.cdf-field input,
.cdf-field select,
.cdf-member-field input,
.cdf-member-field select {
	appearance: none;
	background: #ffffff;
	border: 1px solid #c8d0df;
	border-radius: var(--cdf-radius);
	color: var(--cdf-ink);
	font: inherit;
	font-weight: 500;
	min-height: 48px;
	outline: none;
	padding: 11px 13px;
	transition: border-color 140ms ease, box-shadow 140ms ease;
	width: 100%;
}

.cdf-field input:focus,
.cdf-field select:focus,
.cdf-member-field input:focus,
.cdf-member-field select:focus {
	border-color: var(--cdf-primary);
	box-shadow: 0 0 0 3px rgba(51, 73, 134, 0.16);
}

.cdf-field.has-error input,
.cdf-field.has-error select,
.cdf-member-field.has-error input,
.cdf-member-field.has-error select,
.cdf-checkbox.has-error {
	border-color: var(--cdf-error);
}

.cdf-field input[readonly] {
	background: var(--cdf-soft-strong);
	color: var(--cdf-muted);
	cursor: not-allowed;
}

.cdf-field select:disabled {
	background: var(--cdf-soft-strong);
	color: var(--cdf-muted);
	cursor: not-allowed;
}

.cdf-coverage-help {
	color: var(--cdf-muted);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.45;
	margin: 18px 0 14px;
}

.cdf-coverage-message {
	border-radius: var(--cdf-radius);
	font-size: 0.93rem;
	font-weight: 600;
	line-height: 1.45;
	margin-top: 14px;
	padding: 13px;
}

.cdf-coverage-message.is-success {
	background: #effaf6;
	border: 1px solid #aee5d2;
	color: var(--cdf-success);
}

.cdf-coverage-message.is-error {
	background: #fff4f2;
	border: 1px solid #ffc9c1;
	color: var(--cdf-error);
}

.cdf-members {
	display: grid;
	gap: 14px;
}

.cdf-member-card {
	background: var(--cdf-soft);
	border: 1px solid var(--cdf-border);
	border-radius: var(--cdf-radius);
	padding: 18px;
}

.cdf-member-title {
	color: var(--cdf-primary);
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 14px;
}

.cdf-member-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cdf-checkboxes {
	display: grid;
	gap: 10px;
}

.cdf-checkbox {
	align-items: flex-start;
	background: var(--cdf-soft);
	border: 1px solid transparent;
	border-radius: var(--cdf-radius);
	color: var(--cdf-muted);
	display: flex;
	font-weight: 500;
	gap: 10px;
	line-height: 1.45;
	padding: 13px;
}

.cdf-checkbox input {
	accent-color: var(--cdf-primary);
	flex: 0 0 auto;
	margin-top: 4px;
}

.cdf-summary {
	align-self: flex-start;
	background: #ffffff;
	border: 1px solid var(--cdf-border);
	border-top: 6px solid var(--cdf-accent);
	border-radius: var(--cdf-radius);
	box-shadow: 0 20px 46px rgba(24, 33, 61, 0.14);
	padding: 24px;
}

.cdf-summary-label {
	color: var(--cdf-primary);
	font-size: 0.84rem;
	font-weight: 800;
	text-transform: uppercase;
}

.cdf-price {
	color: var(--cdf-accent);
	font-size: clamp(2.2rem, 4vw, 2.9rem);
	font-weight: 800;
	line-height: 1.05;
	margin-top: 8px;
}

.cdf-price-note {
	color: var(--cdf-muted);
	font-size: 0.94rem;
	font-weight: 500;
	margin-top: 4px;
}

.cdf-summary-list {
	border-top: 1px solid var(--cdf-border);
	display: grid;
	gap: 0;
	margin: 20px 0 0;
}

.cdf-summary-list div {
	border-bottom: 1px solid var(--cdf-border);
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: 13px 0;
}

.cdf-summary-list dt {
	color: var(--cdf-muted);
	font-size: 0.92rem;
	font-weight: 500;
	margin: 0;
}

.cdf-summary-list dd {
	color: var(--cdf-ink);
	font-size: 0.92rem;
	font-weight: 700;
	margin: 0;
	min-width: 0;
	text-align: right;
	word-break: break-word;
}

.cdf-summary-note {
	background: #fff6ed;
	border: 1px solid #ffd4a6;
	border-radius: var(--cdf-radius);
	color: #7c3e08;
	font-size: 0.93rem;
	font-weight: 500;
	line-height: 1.45;
	margin: 18px 0 0;
	padding: 13px;
}

.cdf-actions {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.cdf-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: var(--cdf-radius);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 50px;
	padding: 13px 16px;
	text-align: center;
	transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
	width: 100%;
}

.cdf-button:hover {
	transform: translateY(-1px);
}

.cdf-button-primary {
	background: var(--cdf-accent);
	color: #ffffff;
}

.cdf-button-primary:hover,
.cdf-button-primary:focus {
	background: var(--cdf-accent-dark);
	color: #ffffff;
}

.cdf-button-secondary {
	background: #ffffff;
	border-color: var(--cdf-border);
	color: var(--cdf-primary);
}

.cdf-button-secondary:hover,
.cdf-button-secondary:focus {
	background: var(--cdf-soft-strong);
	border-color: var(--cdf-primary);
	color: var(--cdf-primary);
}

.cdf-alert {
	border-radius: var(--cdf-radius);
	font-size: 0.93rem;
	font-weight: 500;
	line-height: 1.45;
	margin-top: 14px;
	padding: 13px;
}

.cdf-alert.is-success {
	background: #effaf6;
	border: 1px solid #aee5d2;
	color: var(--cdf-success);
}

.cdf-alert.is-error {
	background: #fff4f2;
	border: 1px solid #ffc9c1;
	color: var(--cdf-error);
}

.cdf-demo-result {
	background: var(--cdf-soft);
	border: 1px solid var(--cdf-border);
	border-radius: var(--cdf-radius);
	margin-top: 14px;
	padding: 15px;
}

.cdf-demo-result h4 {
	color: var(--cdf-primary);
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 10px;
}

.cdf-demo-result li {
	color: var(--cdf-muted);
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 4px 0;
}

.cdf-demo-result strong {
	color: var(--cdf-ink);
}

@media (max-width: 920px) {
	.cdf-layout {
		grid-template-columns: 1fr;
	}

	.cdf-summary {
		position: static !important;
		top: auto !important;
		height: auto !important;
	}
}

@media (max-width: 680px) {
	.cdf-form {
		border-radius: 0;
	}

	.cdf-layout,
	.cdf-header {
		padding: 18px;
	}

	.cdf-plan-grid,
	.cdf-fields-grid,
	.cdf-member-grid {
		grid-template-columns: 1fr;
	}

	.cdf-section {
		padding: 16px;
	}

	.cdf-summary-list div {
		display: grid;
		gap: 4px;
	}

	.cdf-summary-list dd {
		text-align: left;
	}
}

@media (min-width: 921px) {

	.cdf-summary,
	.cdf-wrap [data-cardio-summary] {
		position: sticky !important;
		top: 24px !important;
		align-self: start !important;
		height: fit-content !important;
	}
}

/* --- Contract acceptance ([cardio_aceptacion]) --- */

.cdf-acceptance .cdf-acceptance-body {
	display: grid;
	gap: 22px;
	padding: clamp(18px, 3vw, 34px);
}

.cdf-acceptance .cdf-summary-list {
	border-top: none;
	margin-top: 0;
}

.cdf-price-block {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cdf-price-promo,
.cdf-price-full {
	background: var(--cdf-soft);
	border: 1px solid var(--cdf-border);
	border-radius: var(--cdf-radius);
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 18px;
}

.cdf-price-promo {
	border-color: var(--cdf-accent);
}

.cdf-price-label {
	color: var(--cdf-muted);
	font-size: 0.9rem;
	font-weight: 600;
}

.cdf-price-full-amount {
	color: var(--cdf-ink);
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1.1;
	margin-top: 4px;
}

.cdf-legal {
	background: var(--cdf-soft);
	border: 1px solid var(--cdf-border);
	border-radius: var(--cdf-radius);
	color: var(--cdf-muted);
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.55;
	max-height: 220px;
	overflow-y: auto;
	padding: 16px 18px;
}

.cdf-legal p {
	margin: 0 0 12px;
}

.cdf-legal p:last-child {
	margin-bottom: 0;
}

.cdf-legal:focus {
	border-color: var(--cdf-primary);
	box-shadow: 0 0 0 3px rgba(51, 73, 134, 0.16);
	outline: none;
}

.cdf-mp-note {
	background: #eef2fb;
	border-color: #c9d6f2;
	color: var(--cdf-primary);
}

@media (max-width: 680px) {
	.cdf-acceptance .cdf-acceptance-body {
		padding: 18px;
	}

	.cdf-price-block {
		grid-template-columns: 1fr;
	}
}

.cdf-contract-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.cdf-contract-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
}

.cdf-contract-modal__panel {
	position: relative;
	z-index: 1;
	width: min(980px, 100%);
	height: min(88vh, 860px);
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

.cdf-contract-modal__close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 50;
	width: 42px;
	height: 42px;
	min-width: 42px;
	border: 0;
	border-radius: 999px;
	background: #334986;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	padding: 0;
	box-shadow: 0 12px 28px rgba(24, 33, 61, 0.28);
	transition: background-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.cdf-contract-modal__close span[aria-hidden="true"] {
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	margin-top: -1px;
}

.cdf-contract-modal__close:hover,
.cdf-contract-modal__close:focus {
	background: #24386d;
	color: #ffffff;
	box-shadow: 0 14px 34px rgba(24, 33, 61, 0.34);
	transform: scale(1.03);
	outline: none;
}

.cdf-contract-modal__content {
	height: 100%;
	background: #ffffff;
	padding: 0;
	overflow: hidden;
}

body.cdf-modal-open {
	overflow: hidden;
}

/* Nuevo layout limpio del contrato dentro del modal */
.cdf-contract-modal__content .cdf-modal-acceptance {
	max-width: none;
	height: 100%;
	margin: 0;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	background: #ffffff;
}

.cdf-modal-acceptance__header {
	border-top: 5px solid var(--cdf-accent);
	border-bottom: 1px solid var(--cdf-border);
	background: linear-gradient(135deg, #ffffff 0%, #f3f6fb 100%);
	padding: 34px 160px 32px 42px;
}

.cdf-modal-acceptance__kicker {
	color: var(--cdf-accent);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.cdf-modal-acceptance__header h3 {
	color: var(--cdf-primary);
	font-size: clamp(2rem, 3.4vw, 2.8rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin: 0;
}

.cdf-modal-acceptance__header p {
	color: var(--cdf-muted);
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.45;
	margin: 12px 0 0;
	max-width: 720px;
}

.cdf-modal-acceptance__body {
	min-height: 0;
	overflow-y: auto;
	padding: 30px 42px;
}

.cdf-modal-acceptance__body .cdf-legal {
	background: #ffffff;
	border: 0 !important;
	border-radius: 0;
	color: var(--cdf-ink);
	font-size: 0.96rem;
	line-height: 1.68;
	max-height: none;
	overflow: visible;
	padding: 0;
}

.cdf-modal-acceptance__body .cdf-legal:focus {
	border-color: transparent;
	box-shadow: none;
	outline: none;
}

.cdf-modal-acceptance__body .cdf-legal h3 {
	color: var(--cdf-primary);
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 8px;
}

.cdf-modal-acceptance__body .cdf-legal h4 {
	color: var(--cdf-primary);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
	margin: 24px 0 8px;
}

.cdf-modal-acceptance__body .cdf-legal h3+h4 {
	color: var(--cdf-muted);
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	margin-top: 0;
	text-transform: uppercase;
}

.cdf-modal-acceptance__footer {
	background: #ffffff;
	border-top: 1px solid var(--cdf-border);
	box-shadow: 0 -12px 28px rgba(24, 33, 61, 0.08);
	display: grid;
	gap: 12px;
	padding: 18px 42px 22px;
}

.cdf-modal-acceptance__footer .cdf-field {
	max-width: 360px;
}

.cdf-modal-acceptance__footer .cdf-actions {
	margin-top: 0;
}

.cdf-modal-acceptance__footer .cdf-button {
	width: auto;
	min-width: 260px;
}

@media (min-width: 769px) {
	.cdf-modal-acceptance__footer {
		grid-template-columns: minmax(220px, 280px) minmax(320px, 1fr) auto;
		align-items: end;
		column-gap: 16px;
	}

	.cdf-modal-acceptance__footer .cdf-alert,
	.cdf-modal-acceptance__footer .cdf-demo-result {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.cdf-contract-modal {
		padding: 0;
	}

	.cdf-contract-modal__panel {
		width: 100%;
		height: 100dvh;
		border-radius: 0;
	}

	.cdf-contract-modal__close {
		top: 10px;
		right: 10px;
		width: 38px;
		height: 38px;
		min-width: 38px;
		font-size: 22px;
		padding: 0;
	}

	.cdf-modal-acceptance__header {
		padding: 58px 18px 22px;
	}

	.cdf-modal-acceptance__body {
		padding: 22px 18px;
	}

	.cdf-modal-acceptance__footer {
		padding: 16px 18px 22px;
	}

	.cdf-modal-acceptance__footer .cdf-button {
		width: auto;
		min-width: 180px;
	}
}

/* --- Mensaje de error por campo --- */

.cdf-field-error {
	color: var(--cdf-error);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.3;
	margin-top: 2px;
}

/* --- Fecha de nacimiento: selects dia / mes / anio --- */

.cdf-dob-selects {
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.3fr) minmax(0, 1fr);
}

.cdf-dob-selects select {
	min-width: 0;
}

@media (max-width: 480px) {
	.cdf-dob-selects {
		grid-template-columns: 1fr;
	}
}

.cdf-checkbox a {
	color: var(--cdf-primary);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cdf-checkbox a:hover,
.cdf-checkbox a:focus {
	color: var(--cdf-accent-dark);
}

.cdf-contract-notice {
	background: #eef2fb;
	border: 1px solid #c9d6f2;
	border-radius: var(--cdf-radius);
	color: var(--cdf-primary);
	display: grid;
	gap: 4px;
	line-height: 1.45;
	padding: 13px;
}

.cdf-contract-notice strong {
	font-size: 0.95rem;
	font-weight: 800;
}

.cdf-contract-notice span {
	color: var(--cdf-muted);
	font-size: 0.93rem;
	font-weight: 500;
}

.cdf-contract-notice.is-accepted {
	background: #effaf6;
	border-color: #aee5d2;
	color: var(--cdf-success);
}

.cdf-contract-notice.is-accepted span {
	color: var(--cdf-success);
	font-weight: 700;
}

.cdf-loading-bar {
	background: rgba(19, 121, 91, 0.16);
	border-radius: 999px;
	display: block;
	height: 5px;
	margin-top: 10px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.cdf-loading-bar::before {
	animation: cdf-loading-slide 950ms ease-in-out infinite;
	background: currentColor;
	border-radius: inherit;
	content: "";
	height: 100%;
	left: -45%;
	position: absolute;
	top: 0;
	width: 45%;
}

@keyframes cdf-loading-slide {
	0% {
		left: -45%;
	}

	100% {
		left: 100%;
	}
}