﻿/* Application Process Css Start */

.application-section {
    padding: 80px 64px;
}

.modal {
	background: #fff;
	border-radius: 12px;
	width: 100%;
	max-width: 820px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	animation: fadeIn .3s ease;
	display: block;
    position: static;
    margin: 0 auto;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(12px)
	}
	to {
		opacity: 1;
		transform: none
	}
}
.modal-header {
	border-radius: 16px 16px 0 0;
	padding: 32px 24px;
	background: var(--Deep-Teal, #2E6F7E);
	position: relative;
	display: block;
	border-bottom: none;
}
.modal-header h2 {
	color: var(--Pure-White, #FFF);
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 0 0 8px;
}
.modal-header .subtitle {
	color: var(--Pure-White, #FFF);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.close-btn {
	position: absolute;
	right: 24px;
	top: 32px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
}
.close-btn:hover {
	opacity: 1;
}
.progress-bar {
	height: 5px;
	background: #dde3e3;
}
.progress-fill {
	height: 100%;
	background: #c49a2a;
	transition: width .4s ease;
}
.modal-body {
	padding: 64px 24px 20px;
	min-height: 420px;
}
.screen {
	display: none;
}
.screen.active {
	display: block;
	animation: slideIn .22s ease;
}
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(10px)
	}
	to {
		opacity: 1;
		transform: none
	}
}
.section-title {
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0 0 24px;
}
#screen-0 .section-title {
    margin: 0;
}
.section-desc {
	color: var(--Dark-Gray, #767676);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0 0 40px;
}
.checklist-group {
	margin-bottom: 24px;
}
.checklist-group h4 {
	margin: 0 0 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.check-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 4px 0;
	cursor: pointer;
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.check-item input[type=checkbox] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--Rich-Teal, #255A66);
	cursor: pointer;
	flex-shrink: 0;
}
.eligibility-wrap {
	position: relative;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
}
.form-group {
	display: flex;
	flex-direction: column;
    position:relative;
}
.form-group.full {
	grid-column: 1/-1;
}
.form-group label .req {
	color: #DB0808;
}
.form-group input,
.form-group select,
.form-group textarea {
	padding: 16px 24px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
	color: var(--Dark-Gray, #767676);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #3a7a7a;
	box-shadow: none;
}
.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 24px center;
	padding-right: 32px;
}
.form-group textarea {
	resize: vertical;
	min-height: 60px;
}
.sign-note {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 4px 0 0;
}
.upload-box.is-invalid {
	border-color: #DB0808;
	background: #FFF5F5;
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
	border-color: #DB0808;
}
.check-item.is-invalid {
	color: #DB0808;
}
.radio-group.is-invalid {
	outline: 1px solid #DB0808;
	border-radius: 8px;
	padding: 8px;
}
.field-error {
	color: #DB0808;
	font-family: Inter;
	font-size: 13px;
	font-weight: 400;
	margin-top: 6px;
	display: block;
}
.step-error {
	color: #DB0808;
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
	padding: 12px 16px;
	border-radius: 8px;
	background: #FFF5F5;
	border: 1px solid #DB0808;
}
.form-error-banner {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 20px;
	background: #FEF2F2;
	border: 1px solid #FECACA;
	border-radius: 8px;
	margin-bottom: 20px;
}
.form-error-banner .error-icon {
	flex-shrink: 0;
	margin-top: 2px;
}
.form-error-banner .error-content {
	flex: 1;
}
.form-error-banner .error-title {
	color: #DC2626;
	font-family: Inter;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 4px;
}
.form-error-banner .error-desc {
	color: #991B1B;
	font-family: Inter;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}
.upload-box {
	border-radius: 16px;
	border: 2px dashed var(--Deep-Teal, #2E6F7E);
	padding: 24px 20px;
	text-align: center;
	cursor: default;
	background: var(--Pure-White);
	transition: background .2s, border-color .2s;
	display: block;
	position: relative;
}
.upload-box.has-file {
	cursor: default;
	padding: 20px 24px;
}
.upload-empty {
	display: block;
	cursor: pointer;
	margin: 0;
}
.upload-box.has-file .upload-empty {
	display: none;
}
.upload-preview[hidden] {
	display: none !important;
}
.upload-box.has-file .upload-preview {
	display: block;
}
.upload-icon {
	margin-bottom: 16px;
}
.upload-box strong {
	display: block;
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 0 0 16px;
}
.upload-box small {
	color: var(--Warm-Gray, #716E6E);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: block;
}
.upload-box input[type=file] {
	display: none;
}
.upload-preview-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
	text-align: left;
}
.upload-filename {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-weight: 500;
	word-break: break-all;
	flex: 1;
	min-width: 0;
}
.upload-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--Deep-Teal, #2E6F7E);
	font-family: Inter;
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
	flex-shrink: 0;
}
.upload-preview-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.upload-action {
	background: none;
	border: none;
	padding: 0;
	color: var(--Deep-Teal, #2E6F7E);
	font-family: Inter;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: underline;
}
.upload-action:hover {
	color: var(--Rich-Teal, #255A66);
}
.radio-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 4px;
}
.radio-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .875rem;
	color: #333;
	cursor: pointer;
}
.radio-item input {
	accent-color: #3a7a7a;
	width: 20px;
	height: 20px;
}
.attest-box {
	border-radius: 16px;
	border: 1px solid var(--Off-White, #F7F7F4);
	background: var(--Off-White, #F7F7F4);
	padding: 40px;
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 40px;
	max-height: 200px;
    overflow-y: auto;
}
.attest-box p {
	margin-bottom: 8px;
}
.attest-box h5 {
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 24px 0 8px;
}
.info-banner {
	padding: 24px;
	border-radius: 8px;
	background: rgba(46, 111, 126, 0.10);
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.success-wrap {
	text-align: center;
	padding: 20px 0 10px;
}
.success-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #E2BE6A;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}
.success-wrap h3 {
	color: var(--Rich-Teal, #255A66);
	text-align: center;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0 0 16px;
}
.success-wrap p {
	color: var(--Charcoal, #2F3438);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.next-steps {
	text-align: left;
	padding: 32px 0 0;
}
.next-steps strong {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.next-steps ul {
	margin: 0;
	padding: 0;
}
.next-steps ul li {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	list-style: none;
}
.next-steps p {
	text-align: left;
	margin: 40px 0 0;
}

.step-dots {
	display: flex;
	gap: 16px;
	align-items: center;
}
.dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #B4B6B8;
	transition: all .25s;
	flex-shrink: 0;
}
.dot.done {
	background: var(--Warm-Gold);
}
.dot.active {
	background: var(--Rich-Teal);
}

.specialty-courses {
	padding: 16px 24px;
	border-radius: 16px;
	border: 1px solid #E3EAF0;
	background: #F9FAFB;
}
.specialty-courses .form-group.full:last-child {
    margin: 0;
}
.btn-close-final svg path {
	transition: all .2s;
}
.btn-close-final:hover svg path {
	fill: #fff;
}
.form-group.hide {
    display: none;
}
button.deletebtn {
    padding: 0;
    border: none;
    position: absolute;
    top: 35px;
    right: 15px;
    z-index: 9999;
    background: transparent;
    font-weight: 600;
}

.modal-footer {
	display: flex;
	padding: 24px 40px;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	border-radius: 0 0 16px 16px;
	border-top: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #F9FAFB;
}
.btn {
	cursor: pointer;
	border: 1px solid var(--Rich-Teal, #255A66);
	transition: all .2s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px;
	border-radius: 8px;
	background: var(--Rich-Teal, #255A66);
	color: var(--Pure-White, #FFF);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0;
}
.btn-back {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	color: var(--Dark-Gray, #767676);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding: 0;
	margin: 0;
	background: transparent;
	border-radius: 0;
	border: none;
}
.btn-back:hover {
	color: var(--Rich-Teal, #255A66);
}
.btn-back:hover svg path {
	fill: var(--Rich-Teal);
}
.btn-next:hover {
	background: var(--Pure-White);
	color: var(--Rich-Teal);
	border: 1px solid var(--Rich-Teal, #255A66);
}
.btn-next:hover svg path {
	fill: var(--Rich-Teal);
}
.modal-footer>* {
	margin: 0;
}
.btn-submit {
	border-radius: 8px;
	background: var(--Warm-Gold, #D4A44A);
	border-color: var(--Warm-Gold, #D4A44A);
}
.btn-submit:hover {
	background: var(--Pure-White);
	color: var(--Warm-Gold, #D4A44A);
	border: 1px solid var(--Warm-Gold, #D4A44A);
}
.btn-enroll:hover {
	background: var(--Pure-White);
    color: var(--Rich-Teal);
    border: 1px solid var(--Rich-Teal, #255A66);
}
.btn-close-final {
	border-radius: 8px;
	border: 1px solid var(--Rich-Teal, #255A66);
	background: var(--Pure-White, #FFF);
	color: var(--Rich-Teal, #255A66);
}
.btn-close-final:hover {
	background:var(--Rich-Teal, #255A66);
	color: var(--Pure-White);
}
.success-btns {
	display: flex;
	gap: 24px;
    flex-direction: row-reverse;
}

@media screen and (max-width: 1200px) {
	.application-section {
		padding: 80px 20px;
	}
}
@media screen and (max-width: 1024px) {
	.application-section {
		padding: 50px 20px;
	}
	.modal-header h2 {
		font-size: 28px;
	}
	.modal-body {
		padding: 40px 24px 20px;
	}
	.modal-footer {
		padding: 24px 30px;
	}
	#screen-5 > div:nth-child(3) {
		margin: 30px 0 30px !important;
	}
	.attest-box {
		padding: 24px;
		font-size: 18px;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 991px) {
	.modal-header h2 {
        font-size: 26px;
    }
}
@media screen and (max-width: 767px) {
	.modal-header {
		padding: 20px 20px;
	}
	.modal-header h2 {
        font-size: 24px;
    }
	.modal-header .subtitle {
		font-size: 18px;
	}
	.close-btn {
		right: 20px;
    	top: 20px;
	}
	.section-title {
		font-size: 18px;
	}
	.section-desc {
		margin: 0 0 20px;
	}
	.checklist-group {
		margin-bottom: 20px;
	}
	.step-dots {
		gap: 5px;
	}
	.dot {
		width: 10px;
    	height: 10px;
	}
	.btn {
		padding: 12px;
		font-size: 13px;
	}
	.form-group input, .form-group select, .form-group textarea {
		padding: 15px 15px;
	}
	.upload-box {
		padding: 20px 0;
	}
	#screen-5 > div:nth-child(3) {
        margin: 20px 0 20px !important;
    }
	.section-title {
		margin: 0 0 20px;
	}
	.attest-box {
        padding: 20px;
        font-size: 16px;
        margin-bottom: 20px;
    }
	.attest-box h5 {
		font-size: 18px;
		margin: 20px 0 8px;
	}
	#screen-8 > div:nth-child(4) {
		margin: 20px 0 !important;
	}
	.info-banner {
		padding: 20px;
	}
	.btn.btn-back {
		padding: 0;
	}
	.success-wrap {
		padding: 10px 0 10px;
	}
	.success-wrap h3 {
		font-size: 20px;
	}
	.next-steps {
		padding: 20px 0 0;
	}
	.next-steps p {
		margin: 20px 0 0;
	}

}

@media(max-width:580px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
	.modal-body {
		padding: 24px 18px 12px;
	}
	.modal-footer {
		padding: 14px 18px 20px;
	}
	.badge-b {
		display: none;
	}
}

/* Specialty Course Repeater */
.license-training-section {
	padding: 0;
	margin-bottom: 0;
}
.license-training-section .form-grid {
	gap: 16px;
}
.specialty-section {
	margin-top: 8px;
}
.specialty-section > label {
	font-size: 16px;
	font-weight: 500;
	color: var(--Charcoal, #2F3438);
	margin-bottom: 12px;
	display: block;
}
.specialty-course-item {
	background: var(--Pure-White, #FFFFFF);
	border: 1px solid var(--Gray-300, #D1D5DB);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 12px;
	position: relative;
}
.specialty-course-item .form-grid {
	gap: 12px;
}
.specialty-course-item .form-group {
	margin-bottom: 0;
}
.specialty-course-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.specialty-course-header span {
	font-size: 14px;
	font-weight: 500;
	color: var(--Deep-Teal, #2E6F7E);
}
.btn-remove-specialty {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px 8px;
	color: #DC2626;
	font-size: 18px;
	line-height: 1;
	border-radius: 4px;
	transition: background 0.2s;
}
.btn-remove-specialty:hover {
	background: #FEE2E2;
}
.add-course {
	margin-top: 8px;
}
.btn-add-specialty {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 1px dashed var(--Deep-Teal, #2E6F7E);
	border-radius: 8px;
	padding: 10px 16px;
	color: var(--Deep-Teal, #2E6F7E);
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}
.btn-add-specialty:hover {
	background: rgba(46, 111, 126, 0.05);
	border-color: var(--Rich-Teal, #255A66);
}
.btn-add-specialty span {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Application Process Css End */
