.custom-check-box{
	vertical-align: middle;
	 position: relative;
	 width: 1.5em;
	 height: 1.5em;
	 color: #363839;
	 border: 1px solid #f2989d;
	 border-radius: 4px;
	 appearance: none;
	 outline: 0;
	 cursor: pointer;
	 transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}
.custom-check-box:before {
	 position: absolute;
	 content: '';
	 display: block;
	 top: 2px;
	 left: 7px;
	 width: 8px;
	 height: 14px;
	 border-style: solid;
	 border-color: #fff;
	 border-width: 0 2px 2px 0;
	 transform: rotate(45deg);
	 opacity: 0;
}
.custom-check-box:checked {
	 color: #fff;
	 border-color: #f2989d;
	 background: #f2989d;
}
.custom-check-box:checked:before {
	 opacity: 1;
}

label.custom-check-box-label {
  vertical-align: middle;
  position: relative;
  bottom: 0px;
  top: 1px;
  }
