﻿
.look-checkbox .inner-container
{
    display: table;
    white-space: nowrap;
    overflow-x: visible;
}

.look-checkbox label
{
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

/*  Alignment (always set to middle on vertical and left on horizontally for radio buttons)
    This is the default setting achieved by putting a SPAN inside a DIV.
*/

.look-checkbox input[type=checkbox]
{
    margin: 0 2px 0 2px;
    vertical-align: middle;
}

.look-checkbox span
{
    vertical-align: middle;
}