.checkbox {
  padding-left: 20px
}

.checkbox label {
  display: inline-block;
  padding-left: 5px;
  position: relative
}

.checkbox label::before {
  -o-transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #e5ebec;
  content: "";
  display: inline-block;
  height: 23px;
  left: 0;
  margin-left: -20px;
  position: absolute;
  transition: .3s ease-in-out;
  width: 23px;
  outline: 0 !important
}

.checkbox label::after {
    color: #2b2b2b;
    display: inline-block;
	  font-size: 18px;
    height: 23px;
    left: 0;
    margin-left: -14px;
    line-height: 23px;
    position: absolute;
    width: 23px
}

.checkbox input[type="checkbox"]:checked + label::after {
   content: "\2713";
   font-family: FontAwesome;
    font-size: 16px;
   font-weight: 900; 
 
}

.checkbox label::before {
  -o-transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #e5ebec;
    border-top-color: rgb(229, 235, 236);
    border-right-color: rgb(229, 235, 236);
    border-bottom-color: rgb(229, 235, 236);
    border-left-color: rgb(229, 235, 236);
  content: "";
  display: inline-block;
  height: 23px;
  left: 0;
  margin-left: -20px;
  position: absolute;
  transition: .3s ease-in-out;
  width: 23px;
  outline: 0 !important;
}
.checkbox input[type=checkbox]:disabled {
  cursor: not-allowed;
  opacity: 0;
  z-index: 1;
  outline: 0 !important
}
.checkbox input[type=checkbox] {
  cursor: pointer;
  opacity: 0;
  z-index: 1;
  outline: 0 !important
}

.checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"], .radio input[type="radio"], .radio-inline input[type="radio"] {
  position: absolute;
  margin-top: 4px\9;
  margin-left: -20px;
}

input[type="checkbox"], input[type="radio"] {
  margin: 4px 0 0;
    margin-left: 0px;
  margin-top: 1px\9;
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

.checkbox.checkbox-circle label::before {
  border-radius: 50%
}
.checkbox input[type=checkbox]:disabled+label {
  opacity: .65
}

.checkbox-active input[type="checkbox"]:disabled+label{
  opacity: 1;
}

.checkbox input[type=checkbox]:focus+label::before {
  outline-offset: -2px;
  outline: 0;
  outline: dotted thin
}
 

.checkbox input[type=checkbox]:disabled+label::before {
  background-color: #e5ebec;
  cursor: not-allowed;
}


.checkbox-primary input[type=checkbox]:checked+label::before {
  background-color: #0283cc;
  border-color: #0283cc
}

.checkbox-primary input[type=checkbox]:checked+label::after {
  color: #fff
}

.checkbox-danger input[type=checkbox]:checked+label::before {
  background-color: #e74a25;
  border-color: #e74a25
}

.checkbox-danger input[type=checkbox]:checked+label::after {
  color: #fff
}

.checkbox-info input[type=checkbox]:checked+label::before {
  background-color: #00bbd9;
  border-color: #00bbd9
}

.checkbox-info input[type=checkbox]:checked+label::after {
  color: #fff
}

.checkbox-warning input[type=checkbox]:checked+label::before {
  background-color: #ffb136;
  border-color: #ffb136
}

.checkbox-warning input[type=checkbox]:checked+label::after {
  color: #fff
}

.checkbox-success input[type=checkbox]:checked+label::before {
  background-color: #2ecc71;
  border-color: #2ecc71
}

.checkbox-success input[type=checkbox]:checked+label::after {
  color: #fff
}

.checkbox-purple input[type=checkbox]:checked+label::before {
  background-color: #4a23ad;
  border-color: #4a23ad
}

.checkbox-purple input[type=checkbox]:checked+label::after {
  color: #fff
}

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

.checkbox-red input[type=checkbox]:checked+label::after {
  color: #fff
}

.checkbox-inverse input[type=checkbox]:checked+label::before {
  background-color: #282f32;
  border-color: #282f32
}

.checkbox-inverse input[type=checkbox]:checked+label::after {
  color: #fff
}

.radio {
  padding-left: 20px
}

.radio label {
  display: inline-block;
  padding-left: 5px;
  position: relative
}

.radio label::before {


  -o-transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #e5ebec;
  content: "";
  display: inline-block;
  height: 23px;
  left: 0;
  margin-left: -20px;
  position: absolute;
  transition: .3s ease-in-out;
  width: 23px;
  outline: 0 !important
  
}

.radio label::after {
  -moz-transition: -moz-transform .3s cubic-bezier(.8, -.33, .2, 1.33);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -o-transition: -o-transform .3s cubic-bezier(.8, -.33, .2, 1.33);
  -webkit-transform: scale(0, 0);
  -webkit-transition: -webkit-transform .3s cubic-bezier(.8, -.33, .2, 1.33);
  background-color: #2b2b2b;
  border-radius: 50%;
  content: " ";
  display: inline-block;
  height: 10px;
  left: 6px;
  margin-left: -20px;
  position: absolute;
  top: 6px;
  transform: scale(0, 0);
  transition: transform .3s cubic-bezier(.8, -.33, .2, 1.33);
  width: 10px;
}

.radio input[type=radio] {
  cursor: pointer;
  opacity: 0;
  z-index: 1;
  outline: 0 !important
}

.radio input[type=radio]:disabled+label {
  opacity: .65
}

.radio input[type=radio]:focus+label::before {
  outline-offset: -2px;
  outline: -webkit-focus-ring-color auto 5px;
  outline: dotted thin
}

.radio input[type=radio]:checked+label::after {
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1)
}

.radio input[type=radio]:disabled+label::before {
  cursor: not-allowed
}

.radio.radio-inline {
  margin-top: 0
}

.radio.radio-single label {
  height: 17px
}

.radio-primary input[type=radio]+label::after {
  background-color: #0283cc
}

.radio-primary input[type=radio]:checked+label::before {
  border-color: #0283cc
}

.radio-primary input[type=radio]:checked+label::after {
  background-color: #0283cc
}

.radio-danger input[type=radio]+label::after {
  background-color: #e74a25
}

.radio-danger input[type=radio]:checked+label::before {
  border-color: #e74a25
}

.radio-danger input[type=radio]:checked+label::after {
  background-color: #e74a25
}

.radio-info input[type=radio]+label::after {
  background-color: #00bbd9
}

.radio-info input[type=radio]:checked+label::before {
  border-color: #00bbd9
}

.radio-info input[type=radio]:checked+label::after {
  background-color: #00bbd9
}

.radio-warning input[type=radio]+label::after {
  background-color: #ffb136
}

.radio-warning input[type=radio]:checked+label::before {
  border-color: #ffb136
}

.radio-warning input[type=radio]:checked+label::after {
  background-color: #ffb136
}

.radio-success input[type=radio]+label::after {
  background-color: #2ecc71
}

.radio-success input[type=radio]:checked+label::before {
  border-color: #2ecc71
}

.radio-success input[type=radio]:checked+label::after {
  background-color: #2ecc71
}

.radio-purple input[type=radio]+label::after {
  background-color: #4a23ad
}

.radio-purple input[type=radio]:checked+label::before {
  border-color: #4a23ad
}

.radio-purple input[type=radio]:checked+label::after {
  background-color: #4a23ad
}

.radio-red input[type=radio]+label::after {
  background-color: #e74a25
}

.radio-red input[type=radio]:checked+label::before {
  border-color: #e74a25
}

.radio-red input[type=radio]:checked+label::after {
  background-color: #e74a25
}
