/* 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: 20px;
    width: 20px;
    background: #fff;
    border: 1px solid #000;
    cursor:pointer;
    vertical-align: middle;
}

input[type="radio"]:checked {
  background: #a48dc3;
  position: relative;  
}

/*
input[type="radio"]:checked:before {    
    content: '●';
    display: block;
    color: #FFFFFF;
    font-size: 32px;
    position: absolute;
    top:-11px;
    left:2px;
  }
  */