  /* @override 
	http://localhost:8888/BSI-Market-Access/css/04-certifications.css */

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: .7; 
	}  
	100% {
		transform: scale(2.4);
		opacity: 0;
	}
}
  
        
#certifications {
	margin-top: 2rem; }

.certifications__container {
	text-align: center;
	display: flex; }

.certification {
	transition: all .6s;
	position: relative;
	padding: 0 .8rem;
	box-sizing: border-box; }

#certifications.has-active .name,
#certifications.has-active .checkbox {
	opacity: .3; }

#certifications .name {
	height: 3.4rem;
	position: relative;
	margin-bottom: 1rem;
	display: flex;
	justify-content: center; }
	
#certifications .checkbox {
	position: relative;
	background: #ebebeb;
	margin: 0 auto;
	border: 1px solid #706f6f;
	display: block;
	width: 10px;
	height: 10px; }
	
#certifications.has-active .active .name,
#certifications.has-active .active .checkbox {
	opacity: 1; }

#certifications .active .checkbox {	
	background: #D72D18; }
	
#certifications .active .checkbox:after {
	position: absolute;
	display: block;
	content: '';
	top: 0;
	background-color: #D72D18;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-play-state: running; }	


.certification .tooltop {
	padding: .1rem .4rem;
	border-radius: 4px;
	transform: translate(-50%, 0);
	left: 50%;
	bottom: -30px;
	opacity: 0;
	transition: all .5s;
	position: absolute;
	background: rgba(255,255,255,.4);
	border: 1px solid #ddd; }


.certification .tooltop:before {
	content: '';
	position: absolute;
	display: block;
	top: -6px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 0px;
	height: 0px;
	z-index: 1;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #ddd; }
		

.certification:hover .tooltop {
	bottom: -35px;
	opacity: 1; }
	
	
	
@media all and (max-width:1100px) {
	
	.certifications__container {
		flex-wrap: wrap;
		justify-content: center; }
	
	.certification {
		margin-bottom: 3rem; }
	
	#certifications .name {
		height: 2rem; }
		
}