/*bootstrap5_modifier_candidate_pages.css*/ 

/*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*/
}

/*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; 
}*/
/* Set the fixed height of the footer here */



h2 {
/*	color: #084e79;*/
	/*font-size: 24px;
	font-weight: 400;*/
}


/*
.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: var(--bs-secondary-bg-subtle);
	--bs-alert-border-color: var(--bs-secondary-border-subtle);
	--bs-alert-link-color: var(--bs-secondary-text-emphasis);

}


/* pulse animations look great 2025 */

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.25);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.pulse-once, .pulse {
	animation: pulse 1s forwards 1;
}

.pulse-twice {
	animation: pulse 1s forwards 2;
}

@media(max-width: 768px) {

	.btn-mobile {
		width: 100%;
		display: block;
	}

}

