.table-container {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    background-color: white;
    display: inline-table;
    align-items: center;
}

.table-container .table-main-div {
    height: 100%;
    overflow-x: auto;
}

.table-container .wrap-content {
    height: fit-content;
    min-height: fit-content;
}

table {
    background-color: white;
    margin: auto;
    table-layout: fixed;
    height: 100%;
}

table thead {
    display: table;
    table-layout: fixed;
    width: 100%;
}

table tbody {
    display: block;
    overflow: overlay;
}

table tbody tr {
    display: table;
    table-layout: fixed;
    width: 100%;
}

th {
    color: var(--ba-primary-opacity);
    box-shadow: inset 0 -1px 0 0 var(--ba-low-opacity);
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    height: 48px;
    cursor: pointer;
    padding: 0;
    position: relative;
}

th span {
    padding: 16px 0;
    display: inline-block;
    line-height: 16px;
}

th .v-divisor {
    height: 40px;
    position: absolute;
    right: -1px;
    margin: 4px 0;
}

th:first-child, td:first-child {
    text-align: center;
    min-width: 110px;
}

th iron-icon {
    position: absolute;
    right: 16px;
    top: 12px;
}

th:hover {
    background-color: var(--ba-lower-opacity);
}

th:active {
    background-color: var(--ba-low-opacity);
}

tr:hover, tr:nth-child(even):hover {
    background-color: var(--ba-lower-opacity);
}

tr.selected:hover, tr:nth-child(even).selected:hover {
    background-color: var(--ba-secondary-color);
}

tr.selected, tr:nth-child(even).selected {
    background-color: var(--ba-secondary-color);
    font-weight: 600;
}

tr {
    background-color: #FFFFFF;
    height: 40px;
    cursor: pointer;
}

tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: none;
}

tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: none;
}

tr:nth-child(even) {
    background-color: rgba(38, 50, 56, 0.03);
}

td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 24px;
    box-shadow: 1px 0 0 0 var(--ba-low-opacity);
}

th.sortable:last-child .v-divisor {
    display: none;
}

table .col-checkbox {
    position: relative;
}

table .col-checkbox .row-collapse {
    position: absolute;
    left: 0;
    top: 0;
}

.col-checkbox {
    width: 110px;
}

.col-principal {
    width: 250px;
}

.col-date {
    width: 150px;
}

td.col-date {
    text-align: center;
}

.col-number {
    width: 160px;
}

.col-small-number {
    width: 110px;
}

td.col-number, td.col-small-number {
    text-align: right;
}

.col-text {
    width: 200px;
}

.col-small-text {
    width: 100px;
}

/*background: repeating-linear-gradient(rgba(38, 50, 56, 0.03), rgba(38, 50, 56, 0.03) 40px, white 40px, white 80px );*/