#listColors .col-xs-2{
	padding:0px;
}
#listColors .checkbox * {
  cursor: pointer;
}
#listColors .color-box{
	width:25px;
}
#listColors .checkbox {
  padding-left: 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

#listColors .checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}

#listColors .checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #555;
/*  border-radius: 3px;*/
  border-radius: 0px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

#listColors .checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 2px;
  margin-left: -21px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}

#listColors .checkbox input[type="checkbox"]{
  opacity: 0;
  z-index: 1;
  width: 20px;
  height: 20px;
}


#listColors .checkbox input[type="checkbox"]:checked + label::after{
  font-family: "FontAwesome";
  content: "\f00c";
}

#listColors .checkbox.checkbox-circle label::before {
/*  border-radius: 50%;*/
  border-radius: 0;
}

#listColors .checkbox.checkbox-inline {
  margin-top: 0;
}

#listColors .checkbox-red    input[type="checkbox"]:checked + label::after,
#listColors .checkbox-yellow input[type="checkbox"]:checked + label::after,
#listColors .checkbox-green  input[type="checkbox"]:checked + label::after,
#listColors .checkbox-blue   input[type="checkbox"]:checked + label::after,
#listColors .checkbox-black  input[type="checkbox"]:checked + label::after
{color: #fff;}

#listColors .checkbox-red input[type="checkbox"] + label::before
{background-color: #990000;  border-color: #990000;}

#listColors .checkbox-yellow input[type="checkbox"] + label::before
{background-color: #face00;  border-color: #face00;}

#listColors .checkbox-green input[type="checkbox"] + label::before
{background-color: #008000;  border-color: #008000;}

#listColors .checkbox-blue input[type="checkbox"] + label::before
{background-color: #428bca;  border-color: #428bca;}

#listColors .checkbox-black input[type="checkbox"] + label::before
{background-color: #000000;  border-color: #000000;}







input[type="checkbox"].styled:checked + label:after {
  font-family: 'FontAwesome';
  content: "\f00c";
}













