/*
 * customRadioCheck: jQuery plugin for checkbox and radio replacement
 * Usage: $('input[type=checkbox], input[type=radio]').customRadioCheck();
 * Author: Cedric Ruiz
 * License: MIT
*/
.custom-label {
  display: inline-block;
  cursor: pointer;
}
.custom-radio,
.custom-check {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    top: -.15em; /* Adjust to for best fit */
    margin: 0 .4em;
    width: 15px;
    height: 15px;
    background: url('/img/customRadioCheck.png') 0 0 no-repeat;
}
.custom-radio { background-position: 0 -15px; }
.custom-check.focus { background-position: -15px 0; }
.custom-radio.focus { background-position: -15px -15px; }
.custom-check.checked { background-position: -30px 0; }
.custom-radio.checked { background-position: -30px -15px; }
.custom-check.checked.focus { background-position: -45px 0; }
.custom-radio.checked.focus { background-position: -45px -15px; }
