@charset "utf-8";
/* CSS Document */
ul.ks-cboxtags {
	list-style: none;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
	font-size: 0.9em;
}
ul.ks-cboxtags li{
	display: inline;
}
ul.ks-cboxtags li label{
	width: 100%;
	display: inline-block;
	background-color: rgba(0,0,0,0.9);
	border: 1px solid rgba(139, 139, 139, .3);
	color: #CCCCCC;
	border-radius: 5px;
	white-space: nowrap;
	margin: 3px 0px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition: all .2s;
}
ul.ks-cboxtags li label {
	cursor: pointer;
	padding-top: 5px;
	padding-right: 12px;
	padding-bottom: 5px;
	padding-left: 12px;
}

ul.ks-cboxtags li label::before {
	font-family: FontAwesome;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-weight: 800;
	font-size: 12px;
	padding: 2px 6px 2px 2px;
	content: "\f067";
	transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label::before {
	font-family: FontAwesome;
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label {
	border: 1px solid #666666;
	background-color: #333; /*#12bbd4;*/
	color: #CCC;
	transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
  display: absolute;
}
ul.ks-cboxtags li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
ul.ks-cboxtags li input[type="checkbox"]:focus + label {
  border: 1px solid #999999;
}