input[type="checkbox"] {
    display:none;
}

input[type="checkbox"]  + label span {
    display:inline-block;
    width:24px;
    height:24px;
    margin:-2px 10px 0 0;
    vertical-align:middle;
    background:url('/images/theme_ic_check.svg') left top no-repeat;
	background-size:cover;
    cursor:pointer;
}
input[type="checkbox"]:checked + label span {
    background:url('/images/theme_ic_check_on.svg') left top no-repeat;
	background-size:cover;
}

input[type="checkbox"]  + label {
 font-size:14px; font-weight:normal; line-height:1.46; letter-spacing:-0.7px; color:#191919;
}

input[type="radio"] {
    display:none;
}

input[type="radio"]  + label span {
    display:inline-block;
    width:24px;
    height:24px;
    margin:-2px 10px 0 0;
    vertical-align:middle;
    background:url('/images/ic_radio.svg') left top no-repeat;
	background-size:cover;
    cursor:pointer;
}
input[type="radio"]:checked + label span {
    background:url('/images/ic_radio_on.svg') left top no-repeat;
	background-size:cover;
}

input[type="radio"]  + label {
 font-size:14px; font-weight:normal; line-height:1.46; letter-spacing:-0.7px; color:#191919;
}