/**
 * @author vincent loh <vincent.ml@gmail.com>
 * @version: v1.0.0
 * https://github.com/vinzloh/bootstrap-table/
 * Sticky header for bootstrap-table
 */

.fix-sticky {
    position: fixed;
    z-index: 100;
    
}
.fix-sticky thead {
    background-color: #333; /* Custom*/
    color: #fff; /* Custom*/
}

.fix-sticky thead th,
.fix-sticky thead th:first-child {
    text-align:center !important; /* Custom*/
    border-right: 5px !important; /* Custom*/
    border-color: #fff !important; /* Custom*/
    border-style: solid; /* Custom*/
}

