body {
	color: #2d2c2c;
}

a {
	color: var(--color-primary);
}

button.btn-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 26px;
	padding-right: 26px;
}

.btn-link {
	color: var(--color-primary);
	font-weight: 500;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
}

h1 {
	font-size: 45px;
	font-weight: bold;
	color: var(--color-primary);
}

h2, .h2 {
	font-size: 40px;
}

ol,
ul {
	padding-left: 18px;
}

li:not(.nav-item) + li {
	margin-top: 15px;
}

ul > li::marker {
	color: var(--color-primary);
}

.anchor-element:target {
	scroll-margin-top: 130px;
}

#tabs-nav-fixed {
	position: fixed;
	top: var(--header-height);
	right: 0;
	left: 0;
	z-index: 1030;
}

.tabs-nav .nav-link {
	height: 80px;
	display: flex;
	align-items: center;
	font-weight: bold;
	color: #2d2c2c;
	text-transform: uppercase;
	white-space: nowrap;
}

.tabs-nav .nav-link.active {
	border-bottom-color: var(--color-primary);
}

.bg-body-filled {
	background-color: #f4f6fb;
}

#options .option-card {
	background-color: #fff;
	padding: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

#options .option-card::before {
	content: '+';
	border-radius: 99px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d5ddec;
	color: #333;
	font-size: 28px;
	margin-bottom: 25px;
}

.modal-content {
	border-radius: 0px;
}

.program-card {
	position: relative;
}

.program-card::after {
	content: '+';
	border-radius: 99px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: var(--color-primary);
	font-size: 28px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	transition: transform .25s;
}

.program-card:hover::after {
	transform: scale(1.1);
}

#insuredList > .insured-row+.insured-row label {
	display: none;
}

@media (max-width: 767px) {
	.poster-col {
		max-height: 250px;
		overflow: hidden;
	}

	#insuredList {
		gap: 0px !important;
	}

	#insuredList > .insured-row {
		margin-top: -1px;
	}

	#insuredList > .insured-row > .row {
		border: solid 1px var(--bs-border-color);
		padding-top: 15px;
		padding-bottom: 15px;
		margin-top: 0px;
	}

	#insuredList > .insured-row > .row > div {
		margin-top: unset;
	}

	#insuredList > .insured-row > .row > div + div {
		margin-top: 15px;
	}

	#addInsuredBtn,
	#premium,
	#continuePurchaseBtn {
		width: 260px;
	}
}

#payReturnModal .if-loading,
#payReturnModal .if-error,
#payReturnModal .if-success {
	display: none;
}

#payReturnModal.loading .if-loading,
#payReturnModal.error .if-error,
#payReturnModal.success .if-success {
	display: flex;
}

#policyHolderEmail:not(:invalid) {
	border-color: var(--bs-secondary-border-subtle);
}