.section-heading {
	font-weight: bold;
	margin-bottom: 15px;
}

.section-heading:after {
	content: "";
	display: block;
	border-bottom: 2px dotted #333;
	margin-top: -0.8em;
}

.section-heading + .section-guideline {
	margin-top: -5px;
	margin-bottom: 13px;
}

.section-heading span {
	display: inline-block;
	padding: 4px 4px 4px 0;
	background-color: #fff;
	font-size: 1.125rem;
}

.alert-light .section-heading span {
	background-color: #f9f9f9;
}

.form-section-box .section-heading {
	margin-bottom: 0;
}

.form-section-box .section-heading:after {
	display: none;
}

.form-section-box .section-heading span {
	background-color: transparent;
}

.bordered,
.form-section-box .section-padding {
	border: 1px solid #ced4da;
}

.description-meta {
	border-top: 1px dashed #ccc;
}

.hidden-input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}

.course-category {
	display: block;
	position: relative;
	border-radius: 5px;
	border: 1px solid #ced4da;
	padding: 15px;
}

.course-category .course-category-header {
	display: block;
	margin: -15px -15px 0 -15px;
	padding: 15px;
	color: #152131;
	line-height: 1.1;
}

.course-category .label {
	position: absolute;
	top: 15px;
	right: -10px;
	padding: 6px 8px;
	background-color: #222;
	color: #fff;
	border-radius: 5px;
	font-size: 14px;
}

.course-category-icon {
	font-size: 2rem;
}

.radio-input-group .radio-label {
	display: block;
	position: relative;
	padding: 5px 0 5px 3px;
	margin-bottom: 0;
	user-select: none;
}

.radio-label:before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	box-shadow: 0 0 0 2px #FDC202;
	border: 3px solid #fff;
	border-radius: 9rem;
	vertical-align: -2px;
	margin-right: 3px;
	margin-left: 2px;
}

.radio-input:checked + .radio-label:before {
	background-color: #FDC202;
}

.radio-input:focus + .radio-label:before {
	box-shadow: 0 0 0 2px #FDC202, 0 0 0 7px rgba(253, 194, 2, 0.1);
}

.radio-input-group.invalid .radio-label:before {
	box-shadow: 0 0 0 2px rgb(220, 53, 70), 0 0 0 7px rgb(220, 53, 70, 0.1)
}

.radio-input:disabled + .radio-label {
	color: #999;
}

.radio-input:disabled + .radio-label:before {
	box-shadow: 0 0 0 2px #999;
}

.radio-input-box + .radio-input-box {
	margin-top: -1px;
}

.primary-label {
	font-weight: bold;
	margin-bottom: 10px;
	color: #FDC202;
}

.checkbox-label {
	background-color: #f5f5f5;
	padding: 4px 12px;
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 14px;
	font-size: 14px;
	border-radius: 9rem;
}

.checkbox-input:checked + .checkbox-label {
	background-color: #FDC202;
	color: #fff;
}

.section-inner {
	
}

.one-of-multiple-wrapper .or {
	margin-bottom: 8px;
}

.one-of-multiple-wrapper .or.after-file {
	margin-top: -41px;
	z-index: 2;
	position: relative;
}

.file-upload-box {
	text-align: center;
}

.file-upload-box span {
	display: block;
}

.file-upload-box .status-box {
	border: 2px dashed #ccc;
	margin-bottom: 15px;
	color: #999;
}

.file-upload-box.invalid .status-box {
	border-color: #dc3545;
	box-shadow: 0 0 0 7px rgba(220, 53, 70, 0.1);
}

@keyframes fileInvalidHighlight {
	0% {
		background-color: rgba(220, 53, 69, 0);
	}
	50% {
		background-color: rgba(220, 53, 69, 0.1);
	}
	100% {
		background-color: rgba(220, 53, 69, 0);
	}
}

.file-upload-box.invalid-highlight .status-box {
	animation: 1s linear 0s 3 alternate fileInvalidHighlight;
}

.file-upload-box .status-box:hover {
	border-color: #FDC202;
	color: #FDC202;
	cursor: pointer;
}

.file-upload-box .status-box .status {
	position: absolute;
	top: 50%; left: 0;
	width: 100%;
	transform: translateY(-50%);
}

.file-upload-box .status-box.has-bg {
	border: none;
	color: transparent;
	background-color: #333;
}

.file-upload-box .status-box.has-bg:hover {
	border: none;
	color: #fff;
	opacity: 0.7;
}

.file-upload-box input,
.file-upload-box + input {
	display: none;
}

#bible-quiz-box.invalid {
	animation: 1s linear 0s 3 alternate fileInvalidHighlight;
	border-color: #dc3545;
	box-shadow : 0 0 0 5px rgba(220, 53, 70, 0.1);
}

@keyframes invalidHighlight {
	0% {
		box-shadow: 0 0 0 5px rgba(220, 53, 70, 0.1);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(220, 53, 70, 0.1);
	}
	100% {
		box-shadow: 0 0 0 5px rgba(220, 53, 70, 0.1);
	}
}

.form-control.invalid-highlight {
	animation: 1s linear 0s 3 alternate invalidHighlight;
}

.list-primary {
	padding: 0;
	list-style: none;
}

.list-primary li {
	border-left: 3px solid #FDC202;
	padding-left: 1rem;
	margin-bottom: 5px;
}

@keyframes btnGlow {
	0% {
		box-shadow: 0 0 0 4px rgba(253, 194, 2, 0.15);
	}
	50% {
		box-shadow: 0 0 0 9px rgba(253, 194, 2, 0.15);
	}
	100% {
		box-shadow: 0 0 0 4px rgba(253, 194, 2, 0.15);
	}
}

#help-window-btn {
	animation: 1s linear 0s infinite alternate btnGlow;
}

.help-window-close {
	margin: -14px 0 0 -14px;
	padding: 0 7px;
	font-size: 2rem;
	line-height: 1;
}

.to-the-top {
	right: 0;
	bottom: 90px;
	padding: 4px 10px;
	font-size: 24px;
	opacity: 0.7;
}

.to-the-top:hover {
	opacity: 1;
}

.quiz-page .modal-body {
	min-height: 320px;
}

.quiz-result {
	width: 94px;
}

.quiz-result .result {
	line-height: 1;
}

.form-link-box {
	background-color: #f9f4f0;
}

.modal h4,
.modal h5,
.modal h6 {
	font-weight: bold;
}

@keyframes progressGlow {
	0% {
		background-color: #FDC202;
	}
	50% {
		background-color: #cc811f;
	}
	100% {
		background-color: #FDC202;
	}
}

.quiz-progress {
	height: 4px;
	animation: 1s linear 0s infinite alternate progressGlow;
	box-shadow: 0 0 8px rgba(204, 132, 31, 0.3);
	margin: 0;
	border-radius: 0 5px 5px 0;
}

.application-autosave-box {
	border: 1px solid #e8ddd6;
	background: #faf7f4;
	border-radius: 8px;
	padding: 14px 16px;
}

.application-autosave-status {
	min-height: 1.3em;
}

@media(min-width:768px){
	.help-window {
		max-width: 400px;
	}
}

@media(max-width:767.98px){
	.brand {
		font-size: 14px;
	}
	.brand-image {
		width: 62px;
	}
}