.checkbox,
.radio {
	position: relative;
	display: inline-block;
	margin: 0 !important;
	padding: 10px 15px;
}
.checkbox input[type="checkbox"],
.radio input[type="radio"] {
	-webkit-appearance: none;
	position: absolute;
	margin: 0 0px;
	width: 30px;
	height: 30px;
	border: 2px solid #656565;
	background: #eeeeee;
	box-shadow: inset 0 0 0 4px white;
	transition: .2s;
	cursor: pointer;
}
.checkbox label,
.radio label {
	display: block;
	min-height: 30px;
	padding-left: 40px;
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	cursor: pointer;
}

/*---------- checkboxs ----------*/
.checkbox input[type="checkbox"] {
	border-radius: 8px;
}
.checkbox input[type="checkbox"]:hover {
	background: #656565;
	box-shadow: inset 0 0 0 6px white;
	background-position: center center;
}
.checkbox input[type="checkbox"]:checked {
	border-color: #ff611d;
	background: #ffffff;
	box-shadow: inset 0 0 0 4px white;
	background-image: url(../images/checkbox.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.checkbox input[type="checkbox"]:focus {
	outline: 0;
}

/*---------- radios ----------*/
.radio input[type="radio"] {
	border-radius: 50%;
}
.radio input[type="radio"]:hover {
	background: #656565;
	box-shadow: inset 0 0 0 6px white;
}
.radio input[type="radio"]:checked {
	border-color: #ff611d;
	background: #ff611d;
	box-shadow: inset 0 0 0 4px white;
}
.radio input[type="radio"]:focus {
	outline: 0;
}
