﻿
input[type="checkbox"] {
    display: none !important;
    border: 0px !important;
}

    input[type="checkbox"] ~ label {
        display: inline-block;
        background: url(../images/check.png) no-repeat left center;
        cursor: pointer;
        height: 25px;
        padding-left: 32px;
        padding-right: 10px;
        padding-top: 10px;
    }

    input[type="checkbox"]:checked ~ label {
        background: url(../images/checked.png) no-repeat left center;
    }

input[type="radio"] {
    display: none !important;
    border: 0px !important;
    list-style-type: none;
}

    input[type="radio"] + label {
        display: inline-block;
        background: url(../images/radio.png) left center no-repeat;
        cursor: pointer;
        height: 25px;
        padding-left: 32px;
        padding-right: 10px;
        font-weight: normal;
        vertical-align: central;
        height: 30px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    input[type="radio"]:checked + label {
        background: url(../images/radio-checked.png) no-repeat left center;
    }
