/* Aspect des checkboxes */
/* :before sert Ã   crÃ©er la case Ã   cocher */

input[type=radio] 
{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    border-radius: 10px;
    height: 22px;
    width: 22px;
    background: #fff;
    border: 2px solid #CCC;
    cursor:pointer;
    vertical-align: middle;
    transition:1s;    
}

input[type="radio"]:checked 
{
  background: #FFFFFF;
  position: relative;  
  border: 2px solid #0CBC2B;
}

input[type="radio"]:checked:before 
{    
    content: '●';
    display: block;
    color: #0CBC2B;
    font-family: Arial;
    font-size: 30px;
    position: absolute;
    top:-10px;
    left:0px;
   
    
  }