/* Job Application Form - 2026 Design */

/* Main Container */
.panel-job-application-form {
	background: transparent;
	padding: 0;
	min-height:808px;
}

/* Hero Section with Background Image */
.job-application-hero {
	background: rgba(5, 29, 46, 0.85) url('../images/job-application-bg.jpg') 50% 50% no-repeat;
	background-size: cover;
	padding: 80px 0 60px 0;
	position: absolute;
	z-index:1;
	left:0;
	right:0;
	top:0;
	height: 808px;
}

.panel-job-application-form .container {
	position: relative;
	z-index: 2;
}

/* Main Title over background */
.job-application-title {
	color: #FFFFFF;
	text-align: center;
	margin:150px 0 48px 0;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Content Wrapper - White container */
.job-application-content-wrapper {
	background: #FFFFFF;
	border-radius: 12px;
	box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
	padding: 60px 60px 54px 60px;
	position: relative;
	z-index: 3;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.panel-job-application-form .container {
	max-width: 1200px;
}


@media (min-width:768px) {

	/* Step Navigation - Progress Indicator */
	.step-nav-row {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		margin-bottom: 66px;
		position: relative;
	}
	
	.step-nav {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		flex: 0 0 auto;
		min-width:165px;
		z-index: 2;
	}
	
	/* Progress line between steps */
	.step-nav:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 19.5px;
		left: calc(50% + 40px);
		width: 80px;
		height: 2px;
		background: #E9EAEB;
		z-index: 1;
	}
	
	/* Circle badge */
	.step-nav a {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-decoration: none;
		pointer-events: none;
	}
	
	.step-nav a span {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #FFFFFF;
		border: 1.667px solid #DFDFE0;
		font-size: 16px;
		font-weight: 600;
		color: #63666F;
		margin-bottom: 8px;
		transition: all 0.3s ease;
	}
	
	/* Step label */
	.step-nav div {
		font-size: 14px;
		font-weight: 400;
		line-height: 21px;
		color: #63666F;
		white-space: nowrap;
		text-transform: none;
		letter-spacing: 0;
		opacity: 1;
	}
	
	/* Active step styling */
	.step-nav.active a span,
	.step-nav.completed a span {
		background: #003EAB;
		border-color: #003EAB;
		color: #FFFFFF;
	}
	
	.step-nav.active div,
	.step-nav.completed div {
		font-weight: 600;
		color: #003EAB;
	}
	
	/* Clickable steps */
	.step-nav a[href]:not([href="#"]) {
		pointer-events: auto;
		cursor: pointer;
	}
	
	.step-nav a[href]:not([href="#"]):hover span {
		transform: scale(1.05);
		box-shadow: 0 2px 8px rgba(0, 62, 171, 0.2);
	}

}

/* Form Container - now inside white wrapper */
.cb-form-body {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	margin-bottom: 0;
}

/* Form Sections - Legacy styles (no longer used in main form, kept for compatibility) */
.job-detail-top {
	margin-bottom: 40px;
	text-align: center;
}

.job-detail-top h2 {
	font-size: 38px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.76px;
	color: #051D2E;
	margin: 0 0 12px 0;
}

.job-detail-top p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(5, 29, 46, 0.8);
	margin: 0;
}

.job-detail-bottom {
	margin-bottom: 0;
}

.job-detail-bottom .form-control:not(.datepickercontrol) { display: block; width: 100%; padding: 6px 12px; transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; }


.job-detail-bottom h2.form-page-heading {
	font-size: 38px;
	letter-spacing: -0.76px;
	color: #051D2E;
	margin: 0 0 22px 0;
}

.job-detail-bottom h3.form-section-heading {
	font-size: 28px;
	letter-spacing: -0.28px;
	color: #051D2E;
	margin: 0 0 14px 0;
}

/* Section Description - matches Figma "Optional - Upload if available" */
.job-detail-bottom p.form-section-description {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #63666F;
	margin: 0 0 24px 0;
}

.job-detail-bottom hr {
	border: none;
	margin: 32px 0;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #051D2E;
	margin-bottom: 8px;
	display: block;
}

.form-group label.control-label {
	font-weight: 400;
}

.form-group .sublabeltext {
	font-size: 16px;
	font-weight: 400;
	color: #63666F;
	display: inline;
	margin-top: 0;
	font-style: normal;
}

/* Form Controls - matches Figma design */
.job-detail-bottom .form-control,
.job-detail-bottom input[type="text"],
.job-detail-bottom input[type="email"],
.job-detail-bottom input[type="tel"],
.job-detail-bottom input[type="date"],
.job-detail-bottom input[type="file"],
.job-detail-bottom textarea {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #051D2E;
	background: #FFFFFF;
	border: 0.833px solid #DFDFE0;
	border-radius: 8px;
	padding: 12px;
	transition: all 0.2s ease;
	min-height: 49.668px;
}
.job-detail-bottom .form-control:not(.datepickercontrol),
.job-detail-bottom input[type="text"]:not(.datepickercontrol) {
	width:100%;
}

/* Apply to select elements that don't have custom styling */

.form-control::placeholder,
.job-detail-bottom input::placeholder,
.job-detail-bottom textarea::placeholder {
	color: rgba(99, 102, 111, 0.6);
	font-size: 16px;
	font-weight: 400;
}

.job-detail-bottom .form-control:hover,
.job-detail-bottom input[type="text"]:hover,
.job-detail-bottom input[type="email"]:hover,
.job-detail-bottom input[type="tel"]:hover,
.job-detail-bottom input[type="date"]:hover,
.job-detail-bottom textarea:hover {
	border-color: #BFBFC0;
}

.job-detail-bottom .form-control:focus,
.job-detail-bottom input[type="text"]:focus,
.job-detail-bottom input[type="email"]:focus,
.job-detail-bottom input[type="tel"]:focus,
.job-detail-bottom input[type="date"]:focus,
.job-detail-bottom textarea:focus {
	outline: none;
	border-color: #003EAB;
	box-shadow: 0 0 0 3px rgba(0, 62, 171, 0.1);
}

.job-detail-bottom .form-control:disabled,
.job-detail-bottom input:disabled,
.job-detail-bottom textarea:disabled {
	background: #F5F5F5;
	color: #9CA3AF;
	cursor: not-allowed;
}

.job-detail-bottom select:disabled {
	background: #F5F5F5;
	color: #9CA3AF;
	cursor: not-allowed;
	border-color: #DFDFE0;
}

.job-detail-bottom textarea.form-control {
	min-height: 108px;
	resize: vertical;
	line-height: 1.5;
}

.job-detail-bottom select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #FFFFFF;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 9L15 15' stroke='%23051D2E' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M15 9L9 15' stroke='%23051D2E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.59 8.59003L12 13.17L7.41 8.59003L6 10L12 16L18 10L16.59 8.59003Z' fill='%2363666F'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 24px 24px;
	border: 1px solid #B0BABF;
	border-radius: 8px;
	padding: 12px 52px 12px 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: #051D2E;
	cursor: pointer;
	transition: all 0.2s ease;
}

.job-detail-bottom select::-ms-expand {
	display: none;
}

.job-detail-bottom select:focus {
	outline: none;
	border-color: #003EAB;
	box-shadow: 0 0 0 3px rgba(0, 62, 171, 0.1);
}

.job-detail-bottom select:hover {
	border-color: #8A9299;
}

/* Placeholder color for select */
.job-detail-bottom select option[value=""],
.job-detail-bottom select option:disabled {
	color: rgba(99, 102, 111, 0.8);
}

.job-detail-bottom select[value=""] {
	color: rgba(99, 102, 111, 0.8);
}

/* multiselect dropdown (desktop) */
.multiselect-native-select button { font-family:inherit; }
.multiselect-native-select .custom-select { height:50px; border-radius: 8px; border: 0.833px solid #DFDFE0; text-align:left !important; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.364 4.95L11.314 0L12.728 1.414L6.364 7.778L0 1.414L1.414 0L6.364 4.95Z' fill='%2363666F'/%3E%3C/svg%3E"); background-size:12px auto; }
.multiselect-native-select .btn-group { min-width:420px; }
.multiselect-native-select .btn-group { min-width:100%; }
.multiselect-native-select .dropdown-menu { overflow-y:auto; overflow-x: hidden; width:100%; }

/* standard select dropdown (mobile) */
.job-detail-bottom select.form-control { border: 0.833px solid #DFDFE0; padding: 12px 52px 12px 20px; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.364 4.95L11.314 0L12.728 1.414L6.364 7.778L0 1.414L1.414 0L6.364 4.95Z' fill='%2363666F'/%3E%3C/svg%3E"); background-size:12px auto; background-repeat:no-repeat; background-position:right 15px top 50%; }

/* intl tel picker dropdown */
.job-detail-bottom .iti__selected-flag { border-radius: 8px; border: 0.833px solid #DFDFE0; padding:0 15px; }
.job-detail-bottom .iti--allow-dropdown input[type="text"].form-control { margin-left:72px; width:calc(100% - 72px); }

/* date picker control */
.bootstrap-datetimepicker-widget.dropdown-menu { min-width:260px; }
.input-group.date .input-group-text { background:#f3f3f3; border-left:solid 1px #ccc; min-width:50px; justify-content: center; font-size:20px; }

/* file upload control */
.job-detail-bottom .custom-file-input { opacity:1; text-align:center; height:auto; padding:5px 0 10px 0; margin:0; }


input[type="date"] {
	position: relative;
	cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
	opacity: 1;
}

/* File Input - Custom Upload Box matching Figma */
.file-upload-wrapper {
	background: #FFFFFF;
	border: 1.667px solid #DFDFE0;
	border-radius: 8px;
	min-height: 180px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 32px 24px 0 24px;
}

.file-upload-wrapper:hover {
	border-color: #003EAB;
	background: #F9FAFB;
}

.file-upload-wrapper input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.file-upload-icon {
	width: 40px;
	height: 40px;
	margin-bottom: 12px;
}

.file-upload-icon svg {
	width: 100%;
	height: 100%;
}

.file-upload-label {
	font-size: 16px;
	font-weight: 600;
	color: #003EAB;
	text-align: center;
	margin-bottom: 8px;
	line-height: 1.5;
}

.file-upload-hint {
	font-size: 16px;
	font-weight: 400;
	color: #63666F;
	text-align: center;
	line-height: 1.5;
}

.file-upload-wrapper.has-file {
	border-color: #10B981;
	background: #F0FDF4;
}

.file-upload-filename {
	font-size: 14px;
	font-weight: 700;
	color: #051D2E;
	text-align: center;
	word-break: break-word;
	max-width: 100%;
}

/* Fallback for non-custom file inputs */
input[type="file"]:not(.custom-file-input) {
	padding: 0;
	min-height:unset;
	cursor: pointer;
}

/* Checkboxes and Radios */
.checkbox-fields label,
.form-group.citizen-selector label,
.form-group.english-selector label {
	font-weight: 400;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.job-detail-bottom .radio-group-inline input[type="checkbox"],
.job-detail-bottom .radio-group-inline input[type="radio"] {
	width: 20px;
	height: 20px;
	margin: 0;
	cursor: pointer;
	accent-color: #003EAB;
}

/* Radio Group Inline - matches Figma Yes/No radio buttons */
.job-detail-bottom .radio-group-inline {
	display: flex;
	gap: 24px;
	align-items: center;
	padding-bottom:8px;
}

.job-detail-bottom .radio-group-inline label.radio-inline {
	font-size: 16px;
	font-weight: 400;
	color: #6B7280;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 0;
}

.job-detail-bottom .radio-group-inline input[type="radio"] {
	width: 30px;
	height: 30px;
	margin: 0;
	cursor: pointer;
	accent-color: #003EAB;
}

.multi-checkboxes-group {
	background: #FFFFFF;
	border: 0.833px solid #DFDFE0;
	border-radius: 8px;
	padding: 20px;
}

.multi-checkboxes-group label {
	font-size: 16px;
	font-weight: 400;
	color: #051D2E;
	margin-bottom: 12px;
	padding-left: 0;
	cursor: pointer;
}

.multi-checkboxes-group input[type="checkbox"] {
	margin-right: 8px;
}

/* Required Fields */
.form-group.required label:not(.radio-inline):not(.form-check-label):not(.custom-file-input):after {
	content: ' *';
	color: #B20C06;
	font-size:16px;
	vertical-align:middle;
	margin-left:3px;
}
.form-group.required label.no-asterisk:after { display:none !important; }
.form-group.required label.no-asterisk input { margin:5px 6px 0 0; }

/* Terms & Conditions Box */
.terms-conditions-box {
	background: #F2F7FE;
	border-radius: 8px;
	padding: 27px 30px;
	margin-bottom: 32px;
}

.terms-conditions-box .form-section-heading {
	margin-bottom: 16px;
}

.terms-content {
	padding: 15px 0;
}

.terms-content p {
	font-size: 16px;
	font-weight: 400;
	line-height: 22.4px;
	color: rgba(5, 29, 46, 0.8);
	margin-bottom: 16px;
}

.terms-content p:last-child {
	margin-bottom: 0;
}

.terms-content a {
	color: #003EAB;
	text-decoration: underline;
}

.terms-checkboxes {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 8px;
}

.terms-checkbox-label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	color: #051D2E;
	line-height: 24px;
}

.terms-checkbox-input {
	width: 30px;
	height: 30px;
	margin: 0;
	cursor: pointer;
	accent-color: #003EAB;
	flex-shrink: 0;
}

.terms-checkbox-text {
	flex: 1;
}

/* Form Buttons */
.job-detail-buttons {
	padding-top:15px;
}
.job-detail-buttons p {
	margin:45px 0 0 0;
	font-size: 14px;
}
.job-detail-buttons .button { text-decoration:none; }
.job-detail-buttons p a { text-decoration:underline; }

.job-detail-buttons-final {
	display: flex;
	gap: 16px;
	align-items: center;
	border-top: none;
	padding-top: 0;
}

.job-detail-buttons-final .checkbox-fields {
	display: flex;
	gap: 16px;
	align-items: center;
	width: 100%;
}

.btn-jobform-back {
	background: #FFFFFF;
	color: #051D2E;
	border: 0.833px solid #DFDFE0;
	padding: 10px 16px;
	min-width: 96px;
	margin: 0;
	font-weight: 400;
}

.btn-jobform-back:hover {
	background: #F9FAFB;
	border-color: #B0BABF;
	
}

.btn-jobform-submit {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: #FFFFFF;
	background: #5DAD13;
	border: none;
	border-radius: 8px;
	padding: 12px 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
	margin: 0;
}

.btn-jobform-submit:hover {
	background: #4E9210;
	box-shadow: 0 4px 12px rgba(93, 173, 19, 0.3);
}

.btn-jobform-save {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: #051D2E;
	background: #FFFFFF;
	border: 0.833px solid #DFDFE0;
	border-radius: 8px;
	padding: 12px 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
	margin: 0;
	white-space: nowrap;
}

.btn-jobform-save:hover {
	background: #F9FAFB;
	border-color: #B0BABF;
	
}

/* Legacy Terms & Conditions Box - for other steps */
.job-detail-terms {
	background: #F9F9F9;
	border: 1px solid #E0E0E0;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 24px;
	text-align: left;
}

.job-detail-terms p {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #63666F;
	margin-bottom: 16px;
}

.job-detail-terms p:last-child {
	margin-bottom: 0;
}

.job-detail-terms a {
	color: #003EAB;
	text-decoration: underline;
}


.button.btn-jobform-back {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M12.5 15L7.5 10L12.5 5' stroke='%2363666F' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	min-width: 0;
	background-position:left 12px top 50%;
	background-repeat:no-repeat;
	padding-left:42px;
}
.button.btn-jobform-next {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7.5 15L12.5 10L7.5 5' stroke='white' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	min-width: 0;
	background-position:right 12px top 50%;
	background-repeat:no-repeat;
	padding-right:42px;
}

@media (max-width:767px) {
	.button.btn-jobform-back,
	.button.btn-jobform-next {
		padding-left:42px;
		padding-right:42px;
	}
}


/* Thank You Page */
.job-detail-thanks {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 200px 20px 80px 20px;
	position:relative;
	z-index:22;
}

.job-detail-thanks-inner {
	background: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
	padding: 60px;
	max-width: 830px;
	margin: 0 auto;
	text-align: center;
}

.job-detail-thanks h1 {
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1.2px;
	color: #051D2E;
	margin: 0 0 24px 0;
}

.job-detail-thanks p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(5, 29, 46, 0.8);
	margin: 0 0 32px 0;
	max-width: 662px;
	margin-left: auto;
	margin-right: auto;
}


/* Western Australia Notice */
.wa-wrapper {
	background: #FFF9E6;
	border: 1px solid #FFD700;
	border-radius: 10px;
	padding: 32px;
	margin: 40px auto;
	text-align: center;
	max-width: 830px;
}

.wa-wrapper h3 {
	font-size: 22px;
	font-weight: 600;
	color: #051D2E;
	margin: 0 0 16px 0;
}

.wa-wrapper p {
	font-size: 14px;
	line-height: 1.6;
	color: #63666F;
	margin: 0 0 16px 0;
}

.wa-wrapper p em {
	font-style: italic;
	display: block;
	margin-top: 12px;
}

/* International Telephone Input Overrides */
.iti {
	width: 100%;
}

.iti__selected-flag {
	padding: 0 8px 0 16px;
}

#mobileVisibleMessage {
	font-size: 14px;
	color: #EE3124;
	margin-top: 8px;
}

/* Hidden Fields */
.hidden {
	display: none !important;
}

/* Error Messages */
.error-message {
	background: #FEE;
	border: 1px solid #EE3124;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 24px;
	color: #EE3124;
	font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
	.job-application-hero {
		padding: 60px 0 50px 0;
		min-height: 220px;
	}
	
	.job-detail-top h2 {
		font-size: 32px;
	}
	
	.job-detail-thanks h1 {
		font-size: 38px;
	}
}

@media (max-width: 767px) {
	.job-application-hero {
		padding: 50px 0 40px 0;
		min-height: 180px;
	}
	
	.job-application-content-wrapper {
		padding: 30px 20px;
		border-radius: 8px;
	}
	
	.job-detail-top {
		margin-bottom: 32px;
	}
	
	.job-detail-top h2 {
		font-size: 28px;
		letter-spacing: -0.56px;
	}
	
	.job-detail-top p {
		font-size: 14px;
	}
	
	
	.job-detail-buttons {
		padding-top: 20px;
	}
	
	.button.btn-jobform-next,
	.button.btn-jobform-back {
		display: block;
		width: 100%;
		margin: 8px 0;
		min-width: 0;
	}
	
	.job-detail-thanks-inner {
		padding: 40px 24px;
	}
	
	.job-detail-thanks h1 {
		font-size: 32px;
	}
	
	.job-detail-thanks p {
		font-size: 14px;
	}
	
	.wa-wrapper {
		padding: 24px;
		margin: 24px auto;
	}
	
	.form-group .col-sm-3,
	.form-group .col-sm-9 {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.form-group label.col-sm-3 {
		margin-bottom: 8px;
	}
	
	
	.capacity-tasks-wrapper {
		padding: 16px;
	}
	
	.capacity-tasks-header {
		font-size: 14px;
		margin-bottom: 16px;
	}
	
	.capacity-task-row {
		flex-direction: column;
		align-items: flex-start !important;
		gap: 12px;
	}
	
	.capacity-task-label {
		font-size: 14px !important;
	}
	
	.form-intro-text {
		font-size: 16px;
	}
	
	.terms-conditions-box {
		padding: 20px 16px;
	}
	
	.terms-content p {
		font-size: 14px;
		line-height: 20px;
	}
	
	.terms-checkbox-label {
		font-size: 14px;
		align-items: flex-start;
	}
	
	.terms-checkbox-input {
		width: 24px;
		height: 24px;
		margin-top: 2px;
	}
	
	.job-detail-buttons p {
		margin:24px 0 20px 0;
		text-align:center;
	}
	
	.job-detail-buttons-final {
		flex-direction: column;
		align-items: stretch;
	}
	
	.job-detail-buttons-final .checkbox-fields {
		flex-direction: column;
		gap: 12px;
	}
	
	.btn-jobform-back,
	.btn-jobform-submit,
	.btn-jobform-save {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}

/* Additional Form Elements */
.sublabel {
	font-size: 14px;
	font-weight: 400;
	color: #63666F;
	margin-left: 8px;
}

/* Form Intro Text - for step descriptions */
.form-intro-text {
	font-size: 19px;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(5, 29, 46, 0.8);
	margin: 0 0 32px 0;
}

/* Capacity Tasks Wrapper - Step 14 */
.capacity-tasks-wrapper {
	background: #F2F7FE;
	border: 0.833px solid #DFDFE0;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 32px;
}

.capacity-tasks-header {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #051D2E;
	margin-bottom: 24px;
}

.capacity-tasks-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.capacity-tasks-list label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	padding: 12px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	color: #051D2E;
	border-bottom: 1px solid #E5E7EB;
}

.capacity-tasks-list label:last-child {
	border-bottom: none;
}

.capacity-tasks-list .radio-group-inline {
	display: flex;
	gap: 24px;
	margin: 0;
}

.capacity-tasks-list .radio-group-inline label {
	display: flex;
	align-items: center;
	gap: 8px;
	border: none;
	padding: 0;
	margin: 0;
	font-size: 16px;
	color: #6B7280;
	min-width: auto;
}

.capacity-tasks-list input[type="radio"] {
	width: 24px;
	height: 24px;
	margin: 0;
	cursor: pointer;
	accent-color: #003EAB;
}

.capacity-task-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0px; border-bottom: 1px solid rgb(229, 231, 235); }
.capacity-task-row:last-child { border:none; }
.capacity-task-label { flex: 1 1 0%; font-family: Figtree, sans-serif; font-size: 16px; color: rgb(5, 29, 46); }
.capacity-radio-group { display: flex; gap: 24px; }
.capacity-radio-group label { display: flex; align-items: center; gap: 8px; cursor: pointer; margin: 0px; border: medium; padding: 0px; }
.capacity-radio-group label input { width: 24px; height: 24px; accent-color: rgb(0, 62, 171); }
.capacity-radio-group label span { font-size: 16px; color: rgb(107, 114, 128); }


/* Conditional Fields */
#australian-state,
#mailing-address-fields,
#second-applicant,
#jobactiveprovider-details,
#non-citizen-fields,
#non-english-fields,
#desired-location-wrapper,
#licenseFiles {
	margin-top: 16px;
}


/* Well Styling */
.well {
	background: #F9F9F9;
	border: 1px solid #E0E0E0;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 12px;
}




.bullhorn-msg-success { margin: 30px 0; padding: 20px; color: #003300; font-size: 1.5em; background: #DAF2BE; }

/* Legacy styles removed - now using modern Figma-based styles defined above */

/* Keep datepicker control cursor */
.job-detail-bottom .datepickercontrol { border-right:none; }
.job-detail-bottom .input-group-addon { background:#fff; padding:6px 0 0 0; border:solid 1px #ACACAC; border-left:none; border-radius:0; vertical-align:top; }
.job-detail-bottom .input-group-addon .glyphicon { background:url(../images/datepicker.png) 50% 50% no-repeat; width:57px; height:36px; border-left:solid 1px #ACACAC; top:0; }
.job-detail-bottom .input-group-addon .glyphicon:before { display:none; }

/* Multiselect specific styles - kept for backward compatibility with other pages */

.bootstrap-datetimepicker-widget.dropdown-menu { font-size: 14px; list-style: none; background-color: #fff; border: 1px solid #ccc; border: 1px solid rgba(0,0,0,0.15); -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175); box-shadow: 0 6px 12px rgba(0,0,0,0.175); background-clip: padding-box; }
.datepickercontrol.form-control { cursor:pointer; }

a.add-row { display:none; }
a.remove-row { display:none; font-size:12px !important; position:absolute; z-index:500; height:28px !important; line-height:28px !important; width:68px !important; min-width:68px !important; margin:8px 0 0 183px !important; }
a.remove-row.visible { display:block; }

.multi-row-input-row-1 .remove-row,
.multi-row-input-row-1 .remove-row.visible { display:none; }
.multi-row-input-row.visible + a.add-row + .multi-row-input-row.hidden + a.add-row { display:block; }

.multi-row-input-row { margin-bottom:16px; }
.multi-row-input-row .row { margin:0 -8px; }
.multi-row-input-row .row .col-md-3,
.multi-row-input-row .row .col-md-4 { padding:0 8px; }

.multiselect-container.dropdown-menu { max-height:300px; }
.multiselect-container .multiselect-option .form-check-label { margin:0; }
.multiselect-container .dropdown-toggle:after { display:none; }


/* Legacy multiselect and dropdown styles removed - now using modern select styling */

.single-position .main .details label.uploadbutton { background:#363636; border-radius:2px; padding:2px 20px; font-weight:normal; }

.gly-spin {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.wa-wrapper{
	margin-top: 50px;
}
.wa-wrapper p{
	margin-top: 15px;
	margin-bottom: 15px;
}
.wa-wrapper p.mg-bt{
	margin-bottom: 0;
}

/* Extra small screens - step navigation */
@media (max-width: 400px) {
	
	.job-application-hero {
		padding: 40px 0 30px 0;
		min-height: 160px;
	}
	
}



.row.step-nav-mobile-top { display:none; }
.row.step-nav-row { display:flex; }

@media (max-width:767px) {
	
	.step-nav-mobile-top { display:block; margin:0 -3px !important; font-weight: 700; }
	.step-nav-mobile-top .col-3,
	.step-nav-mobile-top .col-4,
	.step-nav-mobile-top .col-6,
	.step-nav-mobile-top .col-8,
	.step-nav-mobile-top .col-9 { padding:0 3px; }
	.step-nav-row { display:none; }
	.step-nav-mobile-line { background:#bbb; border-radius:8px; height:10px; margin:15px 0 36px 0; }
	.step-nav-mobile-line.active { background:var(--blue); }
	.step-nav-mobile-top strong { color:var(--blue); font-weight: 700; }
	
}