﻿


/*html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}
*/
.table-scroll {
    position: relative;
    z-index: 1;
    margin: auto;
    overflow: auto;
    min-height:150px;
}

    .table-scroll table {
        width: 100%;
        margin: auto;
        border-collapse: separate;
        border-spacing: 0;
    }

.table-wrap {
    position: relative;
}

.table-scroll th,
.table-scroll td {
    padding: 10px 10px;
    vertical-align: top;
}

.table-scroll th {
    background-color: #fff;
    border-top: 2px solid #fff;
}
    .table-scroll thead th {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        background-color: #fff;
    }
.table thead th{
    border-bottom: 2px solid #cfcbcb;
    z-index: 999;
}
  
.table-scroll tfoot,
.table-scroll tfoot tr,
.table-scroll tfoot td {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 4;
    background-color:#fff;
}

