.single-jurisdiction .fl-row-content-wrap {
	padding-top:60px;
}

.education-experience-table {
	font-family: sans-serif;
	color: #333;
	margin-bottom: 40px;
}

.education-experience-table .text-center {
	text-align: center !important;
}

.education-experience-table .scrollable-table {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding-right:20px;
}

.education-experience-table table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
	table-layout: fixed;
}

.education-experience-table th, td {
	white-space: normal;
	word-wrap: break-word;
	vertical-align: middle;
}

.education-experience-table thead tr.main-header th {
	text-align: left;
	background-color: #084941;
	color: #fff;
	padding:24px 20px;
	font-family: 'Source Serif Pro', serif;
	font-size:32px;
	line-height: 20px;
	font-weight: 700;
}

.education-experience-table thead tr.main-header th span.icon {
	vertical-align: -6px;
	margin-right: 16px;
	margin-left: 6px;
}

.education-experience-table thead tr.main-header th.education-header span.icon {
	vertical-align: -11px;
}

.education-experience-table thead tr.sub-header th {
	background-color: #0A5C52;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	font-weight: 400;
	padding:20px;
}

.education-experience-table thead tr.sub-header th p {
	color: rgba(255, 255, 255, 0.80);
	font-family: 'Source Sans Pro', sans-serif;
	font-size:18px;
	line-height: 160%;
	font-weight: 400;
}

.education-experience-table thead tr.sub-header th p strong {
	color: #fff;
}

.education-experience-table thead tr.sub-header th p.description {
	font-size: 16px;
	padding: 0 20px;
	margin-top: 12px;
}

.education-experience-table td:nth-child(2),
.education-experience-table td:nth-child(3),
.education-experience-table th:nth-child(2),
.education-experience-table th:nth-child(3) {
	text-align: center;
}

.education-experience-table th,
.education-experience-table td {
	padding: 20px;
	border: 1px solid #e0e0e0;
}

.education-experience-table tbody td {
	font-size: 18px;
}

.education-experience-table tbody td:first-child {
	font-weight: 500;
}

.education-experience-table td em {
	display: block;
	font-style: normal;
	font-size: 16px;
	color: #6E7171;
	margin-bottom: 2px;
	line-height: 160%;
}

.education-experience-table sup {
	margin-left: 3px;
}

.education-experience-table .table-footnotes {
	font-size: 12px;
	color: #6E7171;
	line-height: 1.5;
	background-color:#FAF9F7;
	padding: 20px;
    margin-top: -10px;
    border: 1px solid #e0e0e0;
    border-top: 0px;
	margin-right:20px;
}

.education-experience-table .table-footnotes p {
	margin-bottom: 8px;
	font-size: 14px;
}

.education-experience-table .table-footnotes a {
	color: #0d5c4d;
	text-decoration: underline;
}

.requirement-cards {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-right:20px;
	font-family: var(--alt-font-family);
}

.requirement-card {
	display: flex;
	flex-direction: row;
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
}

.card-icon {
	width: 344px;
	padding: 40px;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.card-icon .icon {
	font-size: 28px;
	margin-bottom: 12px;
}

.card-icon h3 {
	font-size: 32px;
	font-weight: 700;
	line-height: 140%;
	margin-bottom: 8px;
	color: #fff;
}

.card-icon p {
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.80);
	line-height: 160%;
}

.card-content {
	flex: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.card-content p {
	font-size: 18px;
	font-weight: 400;
	color: #6E7171;
	line-height: 160%;
	margin-bottom: 16px;
}

.card-content p.title {
	font-weight: 700;
	color: #3B3F40;
	max-width:465px;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 16px;
}

.tag {
	background-color: #FAF9F7;
	color: #4D596A;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
}

.tag-icon {
	padding:8px;
	background-color:#F3F1EC;
}

.tag-icon svg {
	vertical-align: -5px;
}

.tag-text {
	padding-right: 12px;
	padding-left: 8px;
}

.dark-red {
	background-color: #5a1e14;
}

.orange {
	background-color: #bb5b18;
}


/* Optional column layout for CE block */

.requirement-card.continuing-education {
	flex-wrap:wrap;
}

.card-main-content {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.card-content.three-col {
	display: grid;
	grid-template-columns: 42% 58%;
	grid-template-rows: auto auto;
	padding:0px;
	align-items: stretch;
}

.card-content.three-col .left {
	grid-column: 1;
	grid-row: 1 / span 2; /* span both rows */
	display: flex;
	flex-direction: column;
	justify-content: center; /* vertical centering */
	padding: 40px;
	border-right:1px solid #ECE6DF;
}

.card-content.three-col .left p {
	margin-bottom:24px;
}

.card-content.three-col .middle {
	padding:40px;
}

.card-content.three-col .middle:nth-of-type(2) {
	grid-column: 2;
	grid-row: 1;
	border-bottom: 1px solid #ECE6DF;
}

.card-content.three-col .middle:nth-of-type(3) {
	grid-column: 2;
	grid-row: 2;
}

.requirement-card .big-num {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 4px;
}

.requirement-card .footnote {
	background: #f9f9f9;
	border-top: 1px solid #ddd;
	padding: 20px;
	flex-basis: 100%;
	width: 100%;
}

.requirement-card .footnote p {
	font-size:14px;
	color: #6E7171;
}

.requirement-card .border-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-top: 1px solid #ECE6DF;
	padding: 20px;
	flex-basis: 100%;
	width: 100%;
}

.requirement-card .border-top .button-right {
	line-height:56px;
}

.dark-green {
	background-color: #084941;
}

/* Mobile styles  */
@media (max-width: 768px) {
	.requirement-card {
		flex-direction: column;
	}
	.card-icon {
		width: 100%;
	}

	ul#menu-jurisdiction-inner-navigation > li {
		width: 50%;
	}

	.card-content.three-col, .requirement-card .border-top {
		display: block;
	}

	.card-content.three-col .left {
		border-bottom:1px solid #ECE6DF;
	}

	.requirement-card .border-top .button-right {
		margin-top:20px;
	}
}
