@charset "utf-8";

colgroup {
    display: none;
}
table.responsive thead {
    display: none;
}
table.responsive th, .responsive td {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d3d3d3;
}
table.responsive tbody tr td {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
    padding-right: 1rem;
}
table.responsive tbody tr td:empty {
    min-height: 4.5rem;
}
table.responsive tbody tr td:first-child {
    background-color: #003461;
    color: #ffffff;
    flex-direction: row;
    align-items: center;
    font-weight: bold;
}
table.responsive tbody tr td:first-child::before {
    content: attr(data-label);
    padding-left: 0.3rem;
    padding-right: 0.3rem;
}
table.responsive tbody tr td:not(:first-child)::before {
    content: attr(data-label);
    width: fit-content;
    color: #003461;
    margin-right: 1rem;
}
table.responsive tbody tr td:last-child {
    margin-bottom: 2rem;
}