<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* iCheck plugin Square skin, blue
----------------------------------- */
.icheckbox,
.iradio {
    display: block;
    margin: 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url(blue.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox {
    background-position: 0 0;
}
.icheckbox.hover {
    background-position: -24px 0;
}
.icheckbox.checked {
    background-position: -48px 0;
}
.icheckbox.disabled {
    background-position: -72px 0;
    cursor: default;
}
.icheckbox.checked.disabled {
    background-position: -96px 0;
}

.iradio {
    background-position: -120px 0;
}
.iradio.hover {
    background-position: -144px 0;
}
.iradio.checked {
    background-position: -168px 0;
    *transition: all 0.2s ease-in-out;
}
.iradio.disabled {
    background-position: -192px 0;
    cursor: default;
}
.iradio.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,
    .iradio {
        background-image: url(blue@2x.png);
        -webkit-background-size: 240px 24px;
        background-size: 240px 24px;
    }
}</pre></body></html>