/* TENKAI MOD */
.sonata-ba-tbody .help-block.sonata-ba-field-widget-help img{ max-height: 300px } /* Mantis 12621 */

input[type=checkbox].fake-icheck{
 position: relative;
 top: 5px;
 margin-left: 5px;
 margin-right: 5px;
 height: 20px; 
 width: 20px;
}

Xinput[type=checkbox].fake-icheck
{
    position: relative;
    background: #AAA;
    width: 32px;
    height: 20px;
    -webkit-appearance: initial;
    border-radius: 3px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline:none;
    font-size: 8px;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: normal;
    cursor:pointer;
    border:1px solid #ddd;
    margin-right: 5px;
    margin-left:10px;

}
Xinput[type=checkbox].fake-icheck:after
{
    position:absolute;
    top:5%;
    display:block; 
    line-height:15px;
    width:45%;
    height:90%;
    background:#777;
    box-sizing:border-box;
    text-align:center;
    transition: all 0.3s ease-in 0s; 
    color:black;
    border:#888 1px solid;
    border-radius:3px;
}
Xinput[type=checkbox].fake-icheck:after
{
    left:2%;
    content: "O";
}
Xinput[type=checkbox].fake-icheck:checked:after
{
    background: #AFA;
    left:53%;
    content: "I";
}

