/* The container */
.customCheckMarkContainer {
	display: block;
  	position: relative;
  	padding-left: 10px;
  	cursor: pointer;
  	line-height:30px;
  	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}

.customCheckMarkContainer:not(:last-of-type) {
	border-bottom: 1px solid #ddd;
}

/* Hide the browser's default radio button */
.customCheckMarkContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 3px;
  right: 10px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 10px solid #ddd;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.customCheckMarkContainer:hover input ~ .checkmark {
  border-color: #bbb;
}

/* When the radio button is checked, add a blue background */
.customCheckMarkContainer input:checked ~ .checkmark {
  border-color: #aaa;
}

/* Show the indicator (dot/circle) when checked */
.customCheckMarkContainer input:checked ~ .checkmark {
   border-width: 6px;
}