span.bold {
	font-weight: 600;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	color: #000;
	background-color: #FAF9F6;
	line-height: 1.1;
	padding: 25px;
	font-family: 'EB Garamond', serif;
	font-size: 1rem;
}

hr {
	margin: 10px;
}

a {
	color: #2a46ad;
}

svg {
	vertical-align: middle;
}

.red-hl {
	color: #d52207;
}
.area-border {
	border: 3px double #000;

}
.application {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 30px;
	margin: 10px auto;
	max-width: 1200px;
	background-color: #fff;
}

.application .app-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.application .app-header .contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 20px;
}

.application .app-header img {
	width: 100%;
	margin-bottom: 10px;
}

.application .app-header p {
	margin: 20px;
}

.application .app-header h3, .application .app-header p {
	text-align: center;
	margin-bottom: 10px;
	font-weight: 600;
}

.application section.app-info p {
	padding-bottom: 5px;
}

.application section.app-info ul {
	padding: 10px;
	margin-left: 20px;
}

.application section.app-info ul li {
	padding-left: 5px;
}

.application section.app-entry.app-key, .app-key {
	display: -webkit-box;
	display: -ms-flexbox;
	display: block;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	padding: 15px;
	background: #fff;
	opacity: .95;
	border: 1px solid #000;
	position: sticky;
	position: -webkit-sticky;
	align-self: flex-start;
	top: 0;
	z-index: 1;
}

.application section.app-entry .app-key h4, .application section.app-entry .app-key dl {
	padding: 10px;
}

.application section.app-entry .app-area {
	margin: 10px;
}

.application section.app-entry .app-area p {
	padding: 0;
	margin-left: 0;
}

.application section.app-entry .app-area p.checkbox-label {
	padding-left: 10px;
	margin: 0;
	padding-bottom: 0;
	text-align: center;
  padding-right: 0;
}

.application section.app-entry .app-area .group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	text-align: left;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
}
.group.col {
    flex-direction: column !important;
    display: flex;
    gap: 10px;
  }

.application section.app-entry .app-area .check-group {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	margin: 10px;
	max-width: 100px;
	width: 100%;
	height: 28px;
}

.application section.app-entry .app-area .check-group .squarechk {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	position: relative;
	width: 100%;
	min-width: 28px;
}

.application section.app-entry .app-area .check-group .squarechk label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-flex: .33;
	-ms-flex: .33;
	flex: .33;
	background-color: #fff;
	border: 1px solid #ccc;
	cursor: pointer;
	height: 25px;
	left: 0;
	position: absolute;
	top: 0;
	width: 28px;
	font-size: 1rem;
	padding: 3px 0 2px 5px;
}

.application section.app-entry .app-area .check-group .squarechk label::after {
	border: 2px solid #000;
	border-top: 0;
	border-right: none;
	content: "";
	height: 6px;
	left: 7px;
	opacity: 0;
	position: absolute;
	top: 9px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 12px;
	visibility: hidden;
}

.application section.app-entry .app-area .check-group .squarechk input[type="checkbox"]:checked + label {
	/*     background-color: #66bb6a; */
	border-color: #000;
}

.application section.app-entry .app-area .check-group .squarechk input[type="checkbox"]:checked + label:after {
	opacity: 1;
}

.application section.app-entry .app-area .check-group .squarechk input[name="complete"].checked + label {
	background-color: #aeff92;
}

.application section.app-entry .app-area .check-group .squarechk input[name="inprogress"].checked + label {
	background-color: yellow;
}

.application section.app-entry .app-area .check-group .squarechk input[name="remaining"].checked + label {
	background-color: red;
}

.application section.app-entry .app-area .group-column {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 4rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	max-width: 150px;
	/* margin-right: 20px; */
}
.application section.app-entry .app-area .input-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 10px;
	margin-left: 5px;
}

.application section.app-entry .app-area .input-group label {
	padding-left: 0;
	margin-left: 10px;
}

.application .app-footer {
	padding: 10px;
}
/* Simple highlight class */
.highlighted {
	background-color: yellow;
	border-radius: 6px;
}

.completed {
	background-color: #aeff92;
	border-radius: 6px;
}
/* requirements styling */

ul.inline-list-style, ul.inline-list-style li {
	display: inline-block;
	list-style: none;
}
ul.inline-list-style {
	line-height: 20px;
	padding-left: 10px;
}
/* <!-- targets * empty list --> */
li:empty, li.requires-either:after {
	content: "or";
}

.course-desc {
	text-decoration: underline;
	font-weight: 600;
}
.course-descriptor {
	margin-right: 0.15rem;
}

.inputs li {
  display: inline-block;
  margin-right: 0.15rem; 
  text-align: left; 
}

.inputs li:last-child::after{
	content: '';
}

/* iconify text link */
svg.ext-link {
	visibility: visible;
	display: inline;
	font-size: 75%;
}
a.link-to {
	text-decoration: none;
}

.row {
	display: flex;

	width: 100%;
}

.row p strong {
	min-height: 100%;
	width: 100%;
	text-wrap: nowrap;
	padding: 0;
}

/* print btn styles */
.print-app-btn {
	display: block;
	width: 100%;
	max-width: 150px;
	padding: 10px;
	background: #fff;
	border: 1px solid #000;
	border-radius: 3px;
	font-size: 1rem;
	font-family: 'EB Garamond', serif;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	height: min-content;
	margin: 1rem;
}
.btn-center {
	margin: 1rem auto;
}
.print-icon {
	margin-right: 5px;
}
.subarea{
		font-weight:bold;
		font-size:1.1em;
}
.loading{
	width: 100%;
	height:100vh;
	display: flex;
	justify-content: center;
	align-items:center;
	flex-direction: column;
}
.loading span{
	width:50px;
	height:50px;
	border-radius: 50%;
	border: 6px solid black ;
	border-bottom:6px solid white;
	animation: spin 2s linear infinite;
	margin-bottom:20px ;
}
@keyframes spin{
	to{
		transform: rotate(360deg)
	}
}
@media only screen and (min-width: 600px) {
	.application .app-header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	.application .app-header .contact {
		-webkit-box-orient: horizontal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.application .app-header .contact img {
		width: 35%;
		height: auto;
		margin-bottom: 0;
	}
	.application section.app-entry .app-area p {
		padding: 10px;
	}
	.application section.app-entry .app-area .input-group {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
	}
}
