/* =========================================================
 * bootstrap-checklist.js 
 * https://bootsnipp.com/snippets/featured/checked-list-group
 * =========================================================
 * Bootstrap 3.1.0 Snippet by mouse0270
 * ========================================================= */
.state-icon {
    left: -5px;
}
.list-group-item-primary {
    color: rgb(255, 255, 255);
    background-color: rgb(66, 139, 202);
}

/* DEMO ONLY - REMOVES UNWANTED MARGIN */
.well .list-group {
    margin-bottom: 0px;
}

.checked-list-items{
	padding: 2px 4px;
	border-radius: 5px;
	border:1px solid grey;
	display: inline-block;
	margin:2px 2px;
	font-family: inherit;
}
.checked-list-items span{
	cursor: pointer;
	margin-right: 1px;
}

.checked-list-items span:hover{
	color: #CB4335;
}