 /* Customize the label (the container) */
.cb-container {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  padding-top:0;
}

/* Hide the browser's default checkbox */
.cb-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.cb-container input ~ .checkmark,
.cb-container:hover input ~ .checkmark {
  background: white;
  border:1px solid #26ABE0;
}

/* When the checkbox is checked, add a blue background */
.cb-container input:checked ~ .checkmark {
  background: white url(../images/cb_on.png) center center no-repeat;
}

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