.table-list {
    width: 100%;
    border-collapse: collapse;
    border: none;
}
.table-list td,
.table-list th {
    padding: 20px;
    border-bottom: 1px solid var(--color-grey-light);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
}
.table-list th {
    text-align: right;
    font-weight: bold;
    color: var(--color-primary);
}
.table-list td:first-child,
.table-list th:first-child {
    padding-left: 16px;
    position: relative;
}
.table-list td:first-child:before,
.table-list th:first-child:before {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    top: calc(20px + 0.5em);
    left: 0;
    background: var(--color-black);
    border-radius: 50%;
}
.table-list td:last-child,
.table-list th:last-child {
    padding-right: 0;
}
@media screen and (min-width: 768px) {
    .table-list td,
    .table-list th {
        font-size: 18px;
    }
}