    /* Radio buttons */
    /* The container */
.container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 2px;
    padding-top: -19px;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

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

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #6CC598;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #6CC598;
}

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

/* Show the indicator (dot/circle) when not checked */
.container input:not(:checked) ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 2px;
	left: 2px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
}

.checkmarkII {
    position: absolute;
    top: 0px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #6CC598;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmarkII {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmarkII {
    background-color: #6CC598;
}

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

/* Show the indicator (dot/circle) when not checked */
.container input:not(:checked) ~ .checkmarkII:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmarkII:after {
 	top: 2px;
	left: 2px;
	width: 10px;
	height: 10px;
	background: white;
}