Based on my last question Radio button with custom image,
requesting a solution for custom checkboxes using :before
Solution accepted from @Tambo is as follows. Need customization to be used with checkboxes on the same solution pattern (smart and concise). Thanks.
CSS
[type=radio]{
    position: relative;
    margin: 40px
}
[type=radio]:before{
    content: '';
    position: absolute;
    left: -15px;
    top: -15px;
    width: 32px;
    height: 32px;
    background: red
}
[type=radio]:checked:before{
    background: green
}
HTML
<input type=radio name=radio />
<input type=radio name=radio />
<input type=radio name=radio />
 
     
    