/* table-fixed-header*/
.table-fixed-header {
    white-space: nowrap;
}
.table-container {
    white-space: nowrap;
    position: relative;
    overflow: scroll;
    max-width: 100%;
    width: 100%;
    float: left;
    th {
        height: 33px;
    }
}
.table-container .table {
    margin: 0;
}
.table-header {
    table-layout: fixed;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
}
.table-fixed-columns {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    table {
        table-layout: fixed;
        width: initial;
        background: #fff;
    }
}
.table-fixed-columns-header {
    position: absolute;
}
.table-td-holder {
    td {
        height: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        border-top: 0 !important;
        border-bottom: 0 !important;
    }
}
.table-queries {
  td {
    vertical-align: middle!important;
  }
}