.glabelcheckboxes {
	padding-bottom: 8px;
}
.glabelcheckboxes div {
	padding-left: 0px !important;
}
.glabelcheckboxes div div label {
	color: #575757;
	padding-left: 32px;
}

.glabelcheckboxes div div input {
	display: none; 
}

/* Base for label styling */
.glabelcheckboxes [type="checkbox"]:not(:checked),
.glabelcheckboxes [type="checkbox"]:checked {
  position: absolute;
}
.glabelcheckboxes [type="checkbox"]:not(:checked) + label,
.glabelcheckboxes [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 37px !important;
  cursor: pointer;
  padding-top: 2px;
  padding-buttom: 8px;
}

/* checkbox aspect */
.glabelcheckboxes [type="checkbox"]:not(:checked) + label:before,
.glabelcheckboxes [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 7px;
  width: 16px; height: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px;
}

/* checked mark aspect */
.glabelcheckboxes [type="checkbox"]:not(:checked) + label:after,
.glabelcheckboxes [type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  top: 8px; 
  left: 12px;
  font-size: 9px;
  line-height: 1;
  color: #579549;
  
  font-family: 'fontawesome-webfont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glabelcheckboxes [type="checkbox"]:checked + label:after {
	content: "\f00c";
}

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

.glabelcheckboxes [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}

.glabelcheckboxes [type="checkbox"]:disabled + label {
  color: #aaa;
}

/* accessibility */
.glabelcheckboxes [type="checkbox"]:checked:focus + label:before,
.glabelcheckboxes [type="checkbox"]:not(:checked):focus + label:before {
  border: 1px dotted blue;
}

/* hover style just for information */
.glabelcheckboxes label:hover:before {
  border: 1px solid #4778d9;
}

.glabelcheckboxes span.iptH > div {
	padding-left: 0px;
}
.glabelcheckboxes.orientHorizon div > div +div {
	padding-left: 10px !important;
}

.glabelcheckboxes.orientVertical div div {
	padding-left: 0px;
}
