/* custom-checkbox.css — iCheck minimal skin replacement (Phase 3) */
.jt_icheck {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    margin: 0 6px 0 0;
    transition: border-color .15s, background-color .15s;
}
.jt_icheck:checked {
    border-color: #1ab394;
    background-color: #1ab394;
}
.jt_icheck:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.jt_icheck:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(26,179,148,.25);
}
.jt_icheck_label {
    cursor: pointer;
}
.jt_icheck_label > span {
    font-size: 14px;
    vertical-align: middle;
    letter-spacing: -0.025em;
}
