.radio-list *, .radio-list *::after, .radio-list *::before {
		box-sizing: content-box;
}

.radio-list {
	display: block;
	position: relative;
	height: auto;
	width: 100%;
}


.radio-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: auto;
}

.radio-list ul li{
	color: #1b3149;
	display: block;
	position: relative;
	float: left;
	width: 100%;
	/* height: 100px; */
	border-bottom: 1px solid #dee4ea;
}

.radio-list ul li input[type=radio]{
	position: absolute;
	visibility: hidden;
}

.radio-list ul li label{
	display: block;
	position: relative;
	font-weight: 300;
	font-size: 1.35em;
	padding: 25px 25px 25px 80px;
	margin: 10px auto;
	/*height: 30px;*/
	z-index: 9;
	cursor: pointer;
	-webkit-transition: all 0.25s linear;
}

@media not all and (pointer: coarse) {
.radio-list ul li:hover label{
	color: #8d98a4;
}
} 

.radio-list ul li .check{
	display: block;
	position: absolute;
	border: 5px solid #1b3149;
	border-radius: 100%;
	height: 25px;
	width: 25px;
	top: 30px;
	left: 20px;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}

@media not all and (pointer: coarse) {
.radio-list ul li:hover .check {
	border: 5px solid #8d98a4;
}
} 

.radio-list ul li .check::before {
	display: block;
	position: absolute;
	content: '';
	border-radius: 100%;
	height: 15px;
	width: 15px;
	top: 5px;
	left: 5px;
	margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

.radio-list input[type=radio]:checked ~ .check {
	border: 5px solid #5fa33e;
}

.radio-list input[type=radio]:checked ~ .check::before {
	background: #5fa33e;
}

.radio-list input[type=radio]:checked ~ label {
	color: #5fa33e;
}

	
