/* Chekbox */

.checkbox {
  padding: 0px;
  margin-top: 1px;
  margin-bottom: 1px;
  height:20px;
}
.checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  margin: 0px;
  border: 1px solid #ccc;
  border-radius: 2px;
  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;
  -webkit-transition: all border 0.15s ease-in-out, color 0.15s ease-in-out ease-out;
  -moz-transition: all border 0.15s ease-in-out, color 0.15s ease-in-out ease-out;
  -o-transition: all border 0.15s ease-in-out, color 0.15s ease-in-out ease-out;
  transition: all border 0.15s ease-in-out, color 0.15s ease-in-out ease-out;
}
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  left: 0;
  top: 0px;
  margin: 0px;
  padding-top: 1px;
  font-size: 14px;
  text-align: center;
  color: #555555;
}
.checkbox input[type="checkbox"] {
  opacity: 0;
}
.checkbox input[type="checkbox"]:checked + label::after {
  font-family: 'FontAwesome';
  content: "\f00c";
}
.checkbox input[type="checkbox"]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 5px;
}
.checkbox-primary input[type="checkbox"]:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}
.checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-danger input[type="checkbox"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-info input[type="checkbox"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-warning input[type="checkbox"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-success input[type="checkbox"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.checkbox-success input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.form-group .checkbox label,
.form-group .radio label {
  font-weight: 400;
  width: 100%;
  text-transform: none;
  padding-left: 5px;
}
.form-group .checkbox label span,
.form-group .radio label span {
  font-size: 11px;
  color: #999999;
}

/* fine checkbox */

/* VALIDATION */
.form-group span.error {
    font-size: 11px;
    color: #bd4036;
    line-height: 25px;
}
.form-control[readonly] {background:#fff;}
