/* bs5_candidate_arj_and_wl.css - shared styles for all BS5 candidate pages (ARJ + WL) */ 

/*do not use !important in here (for colours /text) as often this stuff needs to be overwritten by the css for each recruiter (important for position is probably ok)*/

body {
	font-family: 'Open Sans', sans-serif;
	/*margin-bottom: 60px;*/ /*for footer*/
}

h1 {
	margin-bottom: 1.5rem;
}

body.homepage h1 {
	font-size: 2rem;
}

body:not(.homepage) h1 {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.6;
}

/*for footer*/
/*html {
	position: relative;
	min-height: 100%; 
}*/

footer {
/*	position: absolute;
	bottom: 0;
	width: 100%;*/
	/* Set the fixed height of the footer here */
	/*height: 60px;*/
	/*background-color: #f5f5f5; light grey*/
	

}


footer .container-fluid {
	padding-top: 20px;
	padding-bottom: 10px;
	margin-top: 10px;
	min-height: 60px;
}

.atsFooterNav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 14px;
}

.atsFooterNav li {
	margin-right: 30px;
	color: #ccc;
}

.atsFooterNav li:first-child {
	margin-left: 0;
}

.atsFooterNav li a {
	color: #fff;
}

.atsFooterNav li a:hover {
	text-decoration: none;
}



h2 {
	margin-bottom: 1.5rem;
}

body:not(.homepage) h2 {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.6;
}

body:not(.homepage) h3 {
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.1;
}



/*
.btn {

	border-radius: 3px;

}

*/

.link-info {
	cursor: pointer;
}

.js_hidden_initially {
	display: none;
}



 
.pointer {
	cursor: pointer;
}




.underline {
	text-decoration: underline;
}

.normal {
	font-weight: normal !important;
}


.grey {
	color:#ccc !important;
}

.darkgrey {
	color:#666 !important;
}

.link {
	color: #337ab7;
	text-decoration: none;
	cursor: pointer;
}

.link:hover {
	text-decoration: underline;
}


.link_plain  {
	text-decoration: none;
	cursor:pointer;
	color: #17a2b8;
}

.link_plain:hover  {
	text-decoration: none;
	color: #333;
}

.capitilise {
	text-transform: uppercase;
}


.alert-grey {

	--bs-alert-color: var(--bs-secondary-text-emphasis);
	--bs-alert-bg: #f0f0f0;
	--bs-alert-border-color: var(--bs-secondary-border-subtle);
	--bs-alert-link-color: var(--bs-secondary-text-emphasis);

}


/* My account side nav active state */

#my_account_nav .list-group-item.active {
	background-color: #f0f0f0;
	color: #333;
	font-weight: 600;
	border-color: transparent;
	border-left: 3px solid currentColor;
}

#my_account_nav .list-group-item.active:hover {
	color: #333;
}


/* Modern checkboxes and radios */

.form-check-input {
	width: 1.2em;
	height: 1.2em;
	border: 1px solid rgba(0, 0, 0, 0.4);
	cursor: pointer;
	margin-right: 0.65em;
}

.form-check-input:hover {
	border-color: #1a6bb5;
	box-shadow: 0 0 0 0.15rem rgba(26, 107, 181, 0.2);
}

.form-check-input:checked {
	background-color: #1a6bb5;
	border-color: #1a6bb5;
}

.form-check-input:checked:hover {
	background-color: #155a94;
	border-color: #155a94;
}

.form-check {
	margin-bottom: 0.65rem;
}

.form-check-label {
	cursor: pointer;
	padding: 0.15em 0.4em;
	border-radius: 3px;
}

.form-check:hover .form-check-label {
	background-color: #f0f6fc;
}


/* Container max width */

.container {
	max-width: 1170px;
}


@media(max-width: 768px) {

	.btn-mobile {
		width: 100%;
		display: block;
	}

}


/* ===================================================================
   BS3 compatibility for migrated pages
   These styles restore BS3 utility classes and layout behaviour that
   BS5 removed.  Needed by any page migrated from BS3 (apply.cfm etc).
   =================================================================== */

/* BS3 utility classes not in BS5 */
.text-right {
	text-align: right !important;
}
.pull-right {
	float: right !important;
}
.pull-left {
	float: left !important;
}

/* BS3 panel look for BS5 cards */
.card {
	border: 1px solid #ddd;
	margin-bottom: 1rem;
}
.card-header {
	background-color: #f5f5f5;
	border-bottom: 1px solid #ddd;
	color: #333;
	padding: 10px 15px;
	font-size: 14px;
}
.card-body {
	padding: 15px;
}

/* BS3 form-group (removed in BS5) */
.form-group {
	margin-bottom: 1rem;
}

/* BS3 form-horizontal emulation: float col-* children so labels and inputs sit side by side */
.card-body > label[class*="col-"],
.card-body > div[class*="col-"],
.form-group > label[class*="col-"],
.form-group > div[class*="col-"] {
	float: left;
}
.card-body::after,
.form-group::after {
	content: "";
	display: table;
	clear: both;
}

/* BS3 validation styling (has-error) */
.has-error .form-control {
	border-color: #dc3545;
}
.has-error .control-label {
	color: #dc3545;
}

