/* Code Example 
<div class='checkbox'>
	<label class='cb-container'>
		<input type='checkbox'>
		<span class='checkmark'></span>
	</label>
</div>
*/

.cb-container {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin:0;
  left:0;
  padding-left:25px !important;
}
/* Hide the browser's default checkbox */
.cb-container input {
  opacity: 0;
  cursor: pointer;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #FFF;
  border:1px solid #999;
}
/* On mouse-over, add a grey background color */
.cb-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a white background */
.cb-container input:checked ~ .checkmark {
  background-color: #FFF;
}
.cb-container input:disabled ~ .checkmark {
  background-color: #ccc;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.cb-container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.cb-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #072d4d;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
