.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table th,
.table td {
    padding: 1.2rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
    min-width: 180px;
    max-width: 180px;
    text-align: center;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table .thead-dark th {
    color: #fff;
    background-color: #385469;
    border: none;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}


@media (max-width: 575.98px) {
    .table {
        width: 1200px;
        max-width: 1200px;
    }

    .table-responsive th, td {
        min-width: 180px;
        max-width: 180px;
        text-align: center;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive>.table-bordered {
    border: 0;
}

.table-responsive th, td {
    text-align: center;
}