﻿/*
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;
        font-size: 15px;
        padding-left: 50px !important;
        padding-right: 14px;
        font-weight: 600;
        vertical-align: central;
        height: 30px;
        padding-top: 5px;
        padding-bottom: 44px;
        font-family: var(--primary-font-family);
    }

input[type="radio"]:checked + label { background: url(../images/radio-checked.png) no-repeat left center;}

