

input[type=checkbox]:not(old),
input[type=radio   ]:not(old){
  /*width   : 0px;*/
  margin  : 0;
  padding : 0;
  opacity : 0;
 margin-bottom:10px !important;
 margin-top:-5px !important;
}

input[type=checkbox]:not(old) + label,
input[type=radio]:not(old) + label{
  display      : inline-block;
  margin-left  : 0px;
  padding-top   : 4px;
  padding-left : 28px;
  background   : url('checks.png') no-repeat 0 0;
 height:25px;
 cursor:pointer;
}

input[type=checkbox]:not(old):checked + label{
  background-position : 0 -24px;
}

input[type=radio]:not(old):checked + label{
  background-position : 0 -48px;
}

@media (max-width: 400px) {
input[type=checkbox]:not(old) + label,
input[type=radio]:not(old) + label{
  display      : inline-block;
  /*margin-left  : -28px;*/
  padding-top   : 4px;
  padding-left : 28px;
  background   : url('checks.png') no-repeat 0 0;
 height:20px;
 cursor:pointer;
}
}