.option [type=checkbox]:not(:checked), .option [type=checkbox]:checked {
	position: absolute;
	left: -9999px;
}
.option [type=checkbox] + label {
  margin: 0;
  position: relative;
  cursor: pointer;
  padding: 5px 5px 4px 30px;
  font-size: 14px;
  font-weight: inherit;
	color:#282828;
}
.option label a{
  color:#b50937;
}
.option.has-error [type=checkbox] + label {
	color:#b50937;
}
.option.has-error [type=checkbox] + label:before {
	border: 1px solid #b50937!important;
}

@media only screen and (max-width: 767px) {
  	.option [type=checkbox] + label {
  		padding: 5px 5px 5px 35px;
  		font-size: 12px;
  	}
}
.option [type=checkbox]:not(:checked) + label:before,
.option [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #282828;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .option [type=checkbox]:not(:checked) + label:before, 
  .option [type=checkbox]:checked + label:before {
    height: 25px;
    width: 25px;
  }
}
.option [type=checkbox]:not(:checked) + label:after, .option [type=checkbox]:checked + label:after {
  content: "✔";
  position: absolute;
  left: 8px;
  top: 4px;
  color: #282828;
  transition: all 0.2s;
}
.option [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.option [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.option [type=checkbox]:disabled:not(:checked) + label:before, .option [type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #282828;
  background-color: transparent;
}
.option [type=checkbox]:disabled:checked + label:after {
  color: #282828;
}
.option [type=checkbox]:checked + label:before {
  border: 1px solid #282828;
}
.option [type=checkbox]:checked + label {
  color: #282828;
}
.option [type=checkbox] .option [type=checkbox]:checked:focus + label:before,
.option [type=checkbox] .option [type=checkbox]:not(:checked):focus + label:before {
  border: 2px solid #282828;
}



.option.dark [type=checkbox] + label {
  color:#191919;
}
.option.dark [type=checkbox]:not(:checked) + label:before,
.option.dark [type=checkbox]:checked + label:before {
  border: 1px solid #191919;
}
.option.dark [type=checkbox]:not(:checked) + label:after, 
.option.dark [type=checkbox]:checked + label:after {
  color: #191919;
}
.option.dark [type=checkbox]:disabled:not(:checked) + label:before, 
.option.dark [type=checkbox]:disabled:checked + label:before {
  border-color: #191919;
}
.option.dark [type=checkbox]:disabled:checked + label:after {
  color: #191919;
}
.option.dark [type=checkbox]:checked + label:before {
  border: 1px solid #191919;
}
.option.dark [type=checkbox]:checked + label {
  color: #191919;
}
