.checkbox-sb {
  margin-top: 10px;
  margin-bottom: 10px;
}
.checkbox-sb label span,
.checkbox-sb label small {
  display: inline-block;
}
.checkbox-sb label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 9px;
  color: #3b3b3e;
  font-size: 14px;
  cursor: pointer;
}
.checkbox-sb label::before,
.checkbox-sb label::after {
  content: "";
  display: inline-block;
  position: absolute;
  margin-left: -20px;
}
.checkbox-sb label::before {
  width: 18px;
  height: 18px;
  top: 1px;
  left: 4px;
  border: 1px solid #000;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -moz-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}
.checkbox-sb label::after {
  width: 12px;
  height: 12px;
  left: 7px;
  top: 4px;
  background-color: #692c90;
  -webkit-transform: scale(0, 0);
     -moz-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33), -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33), -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33), -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.checkbox-sb input[type="checkbox"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkbox-sb input[type="checkbox"]:focus + label::before {
  outline: 0;
  outline-offset: 0px;
}
.checkbox-sb input[type="checkbox"]:checked + label::after {
  -webkit-transform: scale(1, 1);
     -moz-transform: scale(1, 1);
          transform: scale(1, 1);
}
.checkbox-sb input[type="checkbox"]:disabled {
  cursor: not-allowed;
}
.checkbox-sb input[type="checkbox"]:disabled + label {
  opacity: 0.5;
  cursor: default;
}
.checkbox-sb input[type="checkbox"]:disabled + label::before {
  cursor: not-allowed;
}
.checkbox-sb.checkbox-sb-inline {
  margin-top: 0;
}
.checkbox-right label {
  width: 100% !important;
  padding-left: 9px !important;
}
.checkbox-right > label:after {
  right: 10px;
  left: inherit;
}
.checkbox-right > label:before {
  right: 7px;
  left: inherit;
}
