.table{
    border: 1px solid #eee;
    table-layout: fixed;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    overflow-x: auto;
    /* white-space: nowrap; */
    -webkit-overflow-scrolling: touch;
}
.table th {
    font-weight: bold;
    padding: 5px;
    background: #efefef;
    border: 1px solid #dddddd;
}
.table td{
    padding: 5px 10px;
    border: 1px solid #eee;
    text-align: left;
}
.table tbody tr:nth-child(odd){
    background: #fff;
    color: #606475;
}
.table tbody tr:nth-child(even){
    background: #F7F7F7;
    color: #606475;
}
/*tr:nth-child(odd):hover {*/
/*    background: #ffffff;*/
/*    color: #606475;*/
/*}*/
.tab-mob {
    width: 70%;
}
@media (max-width: 769px) {
    .tab-mob {
        width: 100%;
    }
}



