/*** custom checkboxes ***/

input[type="checkbox"] {
  display: none;
} /* to hide the checkbox itself */
input[type="checkbox"] + label:before {
  font-family: FontAwesome;
  display: inline-block;
}

input[type="checkbox"] + label:before {
  content: "\f096";
} /* unchecked icon */
input[type="checkbox"] + label:before {
  letter-spacing: 10px;
  width: 22px;
  color: #666;
} /* space between checkbox and label */

input[type="checkbox"]:checked + label:before {
  content: "\f046";
} /* checked icon */
input[type="checkbox"]:checked + label:before {
  letter-spacing: 5px;
  width: 22px;
} /* allow space for check mark */


.checkbox{
	margin:6px 0;
	padding-left: 5px;
}
.checkbox label{
	font-weight:600;
	font-family:'Rajdhani', sans-serif;
	font-size:18px;
}
.m-b-25{
	margin-bottom:20px !important;
}