/* iCheck plugin Flat skin, red
----------------------------------- */
.icheckbox_flat-red,
.iradio_flat-red {
    display: block;
    margin: 0;
    padding: 0;
    width: 21px;
    height: 21px;
    background: url('red.png') no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_flat-red {
    background-position: -6px -6px;
}
    .icheckbox_flat-red.checked {
        background-position: -30px -6px;
    }
    .icheckbox_flat-red.disabled {
        background-position: -54px -6px;
        cursor: default;
    }
    .icheckbox_flat-red.checked.disabled {
        background-position: -78px -6px;
    }

.iradio_flat-red {
    background-position: -6px -6px;
}
    .iradio_flat-red.checked {
        background-position: -30px -6px;
    }
    .iradio_flat-red.disabled {
        background-position: -54px -6px;
        cursor: default;
    }
    .iradio_flat-red.checked.disabled {
        background-position: -78px -6px;
    }

/* Retina support */
/* 여기서 사용하지 않음 - Core 로 이전
@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_flat-red,
    .iradio_flat-red {
        background-image: url(red@2x.png);
        -webkit-background-size: 176px 22px;
        background-size: 176px 22px;
    }
} */