/* iCheck plugin Square skin, custom
----------------------------------- */
.icheckbox_square-custom,
.iradio_square-custom {
    display: block;
    margin: 0;
    padding: 0;
    width: 15px;
    height: 15px;
    background: url(custom.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_square-custom {
    background-position: 0 0;
}
    .icheckbox_square-custom.hover {
        background-position: -14px 0;
    }
    .icheckbox_square-custom.checked {
        background-position: -28px 0;
    }
    .icheckbox_square-custom.disabled {
        background-position: -72px 0;
        cursor: default;
    }
    .icheckbox_square-custom.checked.disabled {
        background-position: -96px 0;
    }

.iradio_square-custom {
    background-position: -58px 0;
}
    .iradio_square-custom.hover {
        background-position: -73px 0;
    }
    .iradio_square-custom.checked {
        background-position: -88px 0;
    }
    .iradio_square-custom.disabled {
        background-position: -192px 0;
        cursor: default;
    }
    .iradio_square-custom.checked.disabled {
        background-position: -216px 0;
    }

/* Retina support */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (-moz-min-device-pixel-ratio: 1.5),
       only screen and (-o-min-device-pixel-ratio: 3/2),
       only screen and (min-device-pixel-ratio: 1.5) {
    .icheckbox_square-custom,
    .iradio_square-custom {
        background-image: url(black@2x.png);
        -webkit-background-size: 240px 24px;
        background-size: 240px 24px;
    }
}