

.badges  input { 
	display: none; 
}

.badges label { 
	display: inline-block;
	width: 10%;
	border-radius: 500px;
	overflow: hidden;
	border: 2px solid transparent;
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, 0 );
	height: 100px;
}
.badges label:hover{ 
	border: 2px solid #facaca;
	box-shadow: 0px 0px 5px rgba( 255, 0, 0, .3 );
}
.badges label.selected{ 
	border: 2px solid #cacaca;
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, .3 );
}

.badges label > img {
	width: 100%;
	height: 100%;
}