.table-content h2 {
    text-align: center;
    margin: 0 0 40px;
}
.table-content > p b {
    color: var(--text_link);
}
.table-content > p {
    color: var(--text_sec);
}
.responsive-table {
    margin: 0 0 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--blue_5) transparent;
}
.responsive-table::-webkit-scrollbar {
    height: 6px;
}
.responsive-table::-webkit-scrollbar-thumb {
    background-color: var(--blue_5);
    border-radius: 10px;
}
.responsive-table table {
    width: 100%;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    border-radius: 20px;
}
.responsive-table thead th:first-of-type {
    border-radius: 20px 0 0;
}
.responsive-table thead th:last-of-type {
    border-radius: 0 20px 0 0;
}
.responsive-table thead th {
    padding: 31.5px 10px;
    background-color: var(--blue_4)!important;
}
.responsive-table thead tr th:first-of-type {
    padding: 18px 10px 18px 63px;
    text-align: left;
}
.responsive-table tbody td {
    border: 1px solid var(--blue_5);
    color: var(--text_sec);
    padding: 18px 10px;
}
.responsive-table tbody tr td:first-of-type {
    padding: 18px 10px 18px 63px;
    text-align: left;
}
.responsive-table th,
.responsive-table td {
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    overflow: hidden;
}
.responsive-table tbody tr:nth-child(odd) {
    background-color: var(--gray_4);
}
.responsive-table tbody tr:nth-child(even) {
    background-color: var(--gray_3);
}
@media (max-width: 1024px) {
    .responsive-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .responsive-table table {
        min-width: unset;
    }
}
@media (max-width: 1024px) {
    .table-content .responsive-table {
        margin: 0 -20px 40px;
        padding: 0 20px;
    }
}