/*reset*/
.table-responsive table{
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    padding: 0px;
    table-layout: fixed;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px auto;
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
    margin-bottom: 20px;
}

/*scrollbar*/
.table-responsive::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}
.table-responsive::-webkit-scrollbar-thumb {
    background: #dddddd;
    border-radius: 2px;
}
.table-responsive::-webkit-scrollbar-track-piece {
    background: #fff;
}

@media (max-width: 992px) {
    .table-responsive table{
        width: auto!important;
        margin:0 auto 15px auto!important;
    }
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

}


/*fix*/
.table-responsive table p {
    margin: 0!important;
    padding: 0!important;
}

.table-responsive table tbody tr td{
    background-color: inherit!important;
}
