.nbito-client .nbito-table
{
    width:100%;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -ms-flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-color:inherit;
    /*
    background-color:#F3F2E6;
    */
}

/**************************************\
| Allgemein
\**************************************/

.nbito-client .nbito-table .nbito-button{margin:0;}

.nbito-client .nbito-table-row:after
{
    content: "";
    display:block;
    clear:both;
}
.nbito-client .nbito-table-col
{
    display:block;
    float:left;
    padding:0;
    padding-left:10px;
    padding-right:10px;
    border-right:1px rgba(0,0,0,0.1) solid;
    
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    
    height:34px;
    font-size:1em;
    line-height:34px;
    text-align:middle;
}
.nbito-client .nbito-table-col > a{font-size:1em; line-height:34px;}
.nbito-client .nbito-table-cell
{
    display:table-cell;
    vertical-align:middle;
    line-height:34px;
    height:34px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.nbito-client .nbito-table-cell span{ line-height:34px; height:34px; }

.nbito-client .nbito-table-cell .nbito-icon
{
    margin-right:6px;
}
.nbito-client .nbito-table-col.nbito-align-center
{
    text-align:center;
}
.nbito-client .nbito-table-col.nbito-align-right
{
    text-align:right;
}
.nbito-client .nbito-table-col.nbito-align-left
{
    text-align:left;
}



/**************************************\
| Header
\**************************************/

.nbito-client .nbito-table-header
{
    background-color:rgba(0,0,0,0.09);
    border-bottom:1px rgba(0,0,0,0.2) solid;
}

.nbito-client .nbito-table-header > .nbito-table-row:last-child
{
    margin-right:17px;
}

.nbito-client .nbito-table-header .nbito-table-row
{
    background-color: #666666;
    color: #fff;
}

.nbito-client .nbito-table-header .nbito-table-cell
{
    display:block;
    white-space:nowrap;
    cursor:pointer;
    overflow:hidden;
}

.nbito-client .nbito-table-header .nbito-table-cell span
{
    font-size:0.8em;
    opacity:0.5;
}


/**************************************\
| Body
\**************************************/

.nbito-client .nbito-table-body
{
    position:relative;
    max-height:500px;
    overflow-y:scroll;
    
}

/*
.nbito-client .nbito-table-body .nbito-table-row:hover
{
    -moz-box-shadow:    inset 0 0 10px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
    box-shadow:         inset 0 0 10px rgba(0,0,0,0.3);
}
*/
.nbito-client .nbito-table-body .nbito-table-row
{
    border-bottom:1px rgba(0,0,0,0.1) solid;
    line-height:34px;
}

.nbito-client .nbito-table-body .nbito-table-row.nbito-inactive
{
    opacity:0.5;
}

.nbito-client .nbito-table-body > .nbito-table-row:nth-child(even)
{
    background-color:rgba(0,0,0,0.05);
}
.nbito-client .nbito-table-body > .nbito-table-row:nth-child(odd)
{
    border-bottom:1px rgba(0,0,0,0.2) solid;
    background-color:rgba(255,255,255,0.4);
}
.nbito-client .nbito-table-body > .nbito-table-row:nth-child(even):hover
{
    background-color:rgba(0,0,0,0.1);
}
.nbito-client .nbito-table-body > .nbito-table-row:nth-child(odd):hover
{
    background-color:rgba(255,255,255,0.1);
}

/**************************************\
| Footer
\**************************************/

.nbito-client .nbito-table-footer
{
    background-color: rgba(0,0,0,0.09);
    border-top:1px rgba(0,0,0,0.1) solid;
}
.nbito-client .nbito-table-footer > .nbito-table-row:last-child
{
    margin-right:17px;
}
.nbito-client .nbito-table-footer .nbito-icon{margin-left:12px;}
