.data-table {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.data-table * {
    box-sizing: border-box;
}

.data-table thead tr th {
    color: #FFF;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
    background-color: #2196F3;
}

.data-table tbody tr td {
    color: #666;
    font-size: 14px;
    padding: 10px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.data-table-btn {
    padding: 5px;
    border: 1px solid #666;
    font-size: 11px;
    line-height: 1.4;
    outline: none;
    border-radius: 4px;
    background-color: transparent;
    color: #666;
}

.data-table-btn:hover {
    background-color: #666;
    color: #fff;
}

.data-table-btn.-delete {
    border-color: #d9534f;
    color: #d9534f;
}

.data-table-btn.-delete:hover {
    background-color: #d9534f;
    color: #FFF;
}

.inp-qtd {
    width: 40px;
    height: 30px;
    border: 2px solid #ccc;
    text-align: center;
    outline: none;
    color: #666;
}

/* cols */
.t-col-10 { width: 10% }
.t-col-20 { width: 20% }
.t-col-25 { width: 25% }
.t-col-30 { width: 30% }
.t-col-40 { width: 40% }
.t-col-50 { width: 50% }
.t-col-50 { width: 50% }
.t-col-60 { width: 60% }
.t-col-70 { width: 70% }
.t-col-75 { width: 75% }
.t-col-80 { width: 80% }
.t-col-90 { width: 90% }
.t-col-100 { width: 100% }

.text-right {
    text-align: right !important;
}

.text-bold {
    font-weight: bold;
}

.text-black-80 {
    color: #333 !important;
}

/* 09/11/2017 */
.toggle-table,
.toggle-table * {
    box-sizing: border-box;
}

.toggle-table {
    width: 100%;
    cursor: pointer;
    height: 24px;
    padding: 0 24px 0 10px;
    background-color: #eee;
    position: relative;
}

.toggle-table > .text {
    width: 100%;
    font-size: 13px;
    color: #888;
    font-weight: 700;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 26px;
}

.toggle-table > .icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ddd;
}

.toggle-table > .icon:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #999 transparent transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.toggle-table.-active > .icon:before {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

/* 
    color default -> #2196F3
*/