.customRadioButton {
	line-height: 2em;
    padding: 4px 0 3px 0;
}

.customRadioButton label {
	line-height: 1em;
    padding: 4px 0;
    margin-right: 12px;
}

.customRadioButton .container {
	display: inline-block;
	position: relative;
	padding-left: 26px;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.customRadioButton .container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.customRadioButton .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 21px;
	width: 21px;
	background-color: #eee;
	border-radius: 50%;
}

.customRadioButton .container:hover input ~ .checkmark {
	background-color: #ccc;
}

.customRadioButton .container input:checked ~ .checkmark {
	background-color: #2196F3;
}

.customRadioButton .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.customRadioButton .container input:checked ~ .checkmark:after {
	display: block;
}

.customRadioButton .container .checkmark:after {
	top: 7px;
    left: 7px;
    width: 7px;
    height: 7px;
	border-radius: 50%;
	background: white;
}