.selectradio input{
	display: none;
}
.selectradio label{
	display: block;
	float: left;
	cursor: pointer;
	width: 140px;
	margin: 0;
	padding: 12px 5px;
	border-right: 1px solid #abb2b7;
	background: #cccccc;
	color: #555e64;
	font-size: 14px;
	text-align: center;
	line-height: 1;
	transition: .2s;
}
.selectradio label:first-of-type{
	border-radius: 3px 0 0 3px;
}
.selectradio label:last-of-type{
	border-right: 0px;
}
.selectradio input[type="radio"]:checked + label {
	background-color: #b38e3b;
	color: #fff;
}