label {
	font-weight: bold;
	font-size: 16px;
	color: #777777;
	margin-bottom: 11px;
	width: 90%;
	float: left;
	cursor: pointer;
	padding: 0 0;
	box-shadow: 3px 1px 10px #00000044;
	box-sizing: border-box;
	background: #e6e6e6;
	transition: all 0.5s ease 0s;
	margin-left: 10px;
}

input[type="text"]{
	border: 0;
	box-shadow: none;
	outline: none;
}

input[type="radio"]{
	display: none;
}

input[type="radio"] + label{	
	line-height: 40px;
	border-radius: 50px 20px 20px 50px;
}


input[type="radio"] + label:before{
	border: 3px solid #868686;
	content: "";
	width: 40px;
	height: 40px;
	float: left;
	margin-right: 0;
	margin-top: 0;
	background: #fff;
	border-radius: 100%;
}

input[type="radio"]:checked + label {
	background: #868686;
	color:white;
}

input[type="radio"]:checked + label:after {
	content: "";
	width: 0;
	height: 0;
	border: 14px solid #868686;
	float: left;
	margin-left: -34px;
	margin-top: 6px;
	border-radius: 100%;
}

input[type="radio"]:checked + label:before{
	border-color: #868686;
}

.categorias label {
	padding: 0 0;
	box-shadow: 3px 1px 10px #00000044;
}
label span{
	padding-left:10px;
}
.categorias input[type="radio"] + label:before{
	content: "";
	width: 40px;
	height: 40px;
	float: left;
	margin-right: 0;
	margin-top: 0;
	background: #fff;
	border-radius: 100%;
}

.categorias input[type="radio"]:checked + label:after {
	content: "";
	width: 0;
	height: 0;
	float: left;
	margin-left: -34px;
	margin-top: 6px;
	border-radius: 100%;
}

