/* input[type=checkbox]:not(old),*/
input[type=radio   ]:not(old){
  width   : 0;/*28px;*/
  margin  : 0;
  padding : 0;
  opacity : 0;
  float: right;
}

/* input[type=checkbox]:not(old) + label,*/
input[type=radio   ]:not(old) + label{
  display      : inline-block;
  margin-left  : -28px;
  padding-left : 28px;
  background   : url('../images/radio_unchecked_black.svg') no-repeat 0 0;
  line-height  : 14px;
  cursor: pointer;
}


  input[type=radio]:not(old):checked + label{
    background   : url('../images/radio_checked.svg') no-repeat 0 0;
  }