fieldset { 
	border:0;
	margin:0;
	padding:0;
}

.label_check, .label_check_l, .label_radio, .label_radio_l { 
	display:inline-block;
	min-height:28px;
	padding-top:6px;
	margin:0 15px 5px 0;
	line-height:1;
	cursor:pointer;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	background-color:#ffffff;
	border-radius:0;
	background-size:26px;
	backround-position:center;
	transition:all 0.4s;
}
.label_check:hover, .label_check_l:hover, .label_radio:hover, .label_radio_l:hover { 
	transform:translateY(-2px);
}
.label_check_l, .label_radio_l { 
	text-align:left;
}
.label_check input, .label_check_l input, .label_radio input, .label_radio input_l { 
	opacity:0;
	margin-right:5px;
}
.has-js .label_check, .has-js .label_check_l, .has-js .label_radio, .has-js .label_radio_l { 
	padding-left:34px;
}

/* CHECKBOX */
.has-js .label_check, .has-js .label_check_l { 
	background-image:url('../img/check-off-01.png');
	background-repeat:no-repeat;
}
.has-js .label_ceck_l { 
	backround-position:left center;
}
@media (hover: hover) { 
.has-js .label_check:hover, .has-js .label_check_l:hover { 
	background-image:url('../img/check-off-hover.png');
}
}
.has-js label.c_on, .has-js label.cl_on { 
	background-image:url('../img/check-on.png')!important;

}

/* RADIO */
.has-js .label_radio, .has-js .label_radio_l { 
	background-image:url('../img/radio-off-01.png');
	background-repeat:no-repeat;
}
.has-js .label_radio_l { 
	backround-position:left center;
}
@media (hover: hover) { 
.has-js .label_radio:hover, .has-js .label_radio_l:hover { 
	background-image:url('../img/radio-off-hover.png');
}
}
.has-js label.r_on, .has-js label.rl_on { 
	background-image:url('../img/radio-on-01.png')!important;

}

.has-js .label_check input, .has-js .label_check_l input, .has-js .label_radio input, .has-js .label_radio_l input { 
	position:absolute;
	left:-9999px;
	visibility:hidden;
	opacity:0;
}