/* The checker */
.checker {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 21px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checker input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.az-custom label {
	display: inline-block;
	position: relative;
	font-size: 1.4em;
	padding-left: 50px;
	
	color: rgba(0,0,0,0.7);
	cursor: pointer;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.az-custom input[type="checkbox"],
.az-custom input[type="radio"],
.az-custom label::before {
	width: 21px;
	height: 21px;
	top: 55%;
	left: 10px;
	margin-top: -22px;
	position: absolute;
	cursor: pointer;
}
.az-custom input[type="checkbox"],
.az-custom input[type="radio"] {
	opacity: 0;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	z-index: 100;
}

.az-custom label::before {
	content: '';
	border: 3px solid #111111;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
/* When the checkbox is checked, add a white background*/ 
.checker input:checked ~ .checkmark {
  background-color: #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checker input:checked ~ .checkmark:after {
  display: block;
 }

/* Style the checkmark/indicator */
.checker .checkmark:after {
  left:15px;
  top: -4px;
  width: 13px;
  height: 24px;
  border: solid #df780e;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
