﻿input[type="checkbox"] + .custom-checkbox::before, input[type="radio"] + .custom-radio::before {
    content: "\a0";
}
input[type="checkbox"]:checked + .custom-checkbox::before {
    content: "\f00c";
}
input[type="radio"]:checked + .custom-radio::before {
    content: "\2022";
}
