.table-responsive-stack-csj tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

table-bordered-csj {
    /*border: 1px solid lightskyblue;*/
    /*border: 1px solid #dddddd;*/
}
.table-bordered-csj > thead > tr > th,
.table-bordered-csj > tbody > tr > th,
.table-bordered-csj > tfoot > tr > th,
.table-bordered-csj > thead > tr > td,
.table-bordered-csj > tbody > tr > td,
.table-bordered-csj > tfoot > tr > td {
    border: 0.1px solid #454545;
    padding: 10px;
    /*border: 1px solid #dddddd;*/
}
.table-bordered-csj > tbody > tr > td:first-child {
    font-weight: bold;;
}

.table-bordered-csj > thead > tr > th,
.table-bordered-csj > thead > tr > td {
    /*border-bottom-width: 1px;*/
}

.table-responsive-stack-csj td,
.table-responsive-stack-csj th {
    display:block;
    /*
       flex-grow | flex-shrink | flex-basis   */
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.table-responsive-stack-csj .table-responsive-stack-thead-csj {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .table-responsive-stack-csj tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-bottom: 1px solid #ccc;
        display:block;

    }
    /*  IE9 FIX   */
    .table-responsive-stack-csj td {
        float: left\9;
        width:100%;
    }
}