/* Customize the label (the container) */
.chk-custom-container {
  display: inline-block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
}

/* Hide the browser's default checkbox */
.chk-custom-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.chk-custom-container input ~ .checkmark {
	/*
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  */
  	width: 25px;
    height: 25px;
    cursor: pointer;
	position: relative;
	display: inline-block;
    vertical-align: middle;
    background: #fcfff4;
    background: -webkit-linear-gradient(top, #fcfdf9 0%, #e6e6e6 40%, #f3f3f3 100%);
    background: linear-gradient(to bottom, #fcfdf9 0%, #e6e6e6 40%, #f3f3f3 100%);
    border-radius: 4px;
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
    z-index: 100;
}
.chk-custom-container > *{	
    vertical-align: middle;
}
/* On mouse-over, add a grey background color */
.chk-custom-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chk-custom-container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.chk-custom-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.chk-custom-container .checkmark:after {
	
  left: 9px;
  top: 2px;
  width: 8px;
  height: 18px;
  border: solid #333;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  /*
  font-size:1.5em;
  content: "\01F5F8";*/
}

.ui-radiobutton {
	margin-right:10px !important;
	vertical-align: top !important;
}