.c_table {
    border-collapse: collapse;
    width: 100%;
}

.c_table.c_table--triple thead tr {
    border-bottom: 1px solid #ccc;
}

.c_table.c_table--triple thead tr th {
    text-align: center;
    padding: 15px 10px;
    border: 0;
    color: #0057B8;
}

.c_table.c_table--triple tbody tr {
    background: none;
    border-bottom: 1px solid #ccc;
}

.c_table.c_table--triple tbody tr:nth-child(odd) td {
    background: none;
}

.c_table.c_table--triple tbody tr td:nth-child(n+2) {
    text-align: center;
}

.c_table.c_table--triple tbody tr td:first-child {
    color: #0057B8;
}

.c_table.c_table--triple tbody tr td:last-child {
    color: #0057B8;
}

.c_table.c_table--triple tbody tr td {
    background: none;
    padding: 15px 10px;
    border: 0;
}

.c_table.c_table--styled thead tr {
    border-bottom: 1px solid #ccc;
}

.c_table.c_table--styled thead tr th {
    color: #000;
    border: 0;
}

.c_table.c_table--styled thead tr th:first-child {
    padding-left: 0;
}

.c_table.c_table--styled thead tr th:nth-child(n+2) {
    text-align: center;
}

.c_table.c_table--styled tbody tr {
    border-bottom: 1px solid #ccc;
}

.c_table.c_table--styled tbody tr td:first-child {
    color: #000;
    padding-left: 0;
}

.c_table.c_table--styled tbody tr td:nth-child(n+2) {
    text-align: center;
}

.c_table.c_table--styled tbody tr:nth-child(odd) td {
    background-color: transparent;
}

.c_table.c_table--styled tbody tr td {
    padding: 20px 10px;
    border: 0;
}

.c_table .status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    background-color: #0057B8;
    margin: 0 auto;
}

.c_table .status.times {
    background-color: #999;
}

.c_list {
    margin: 0;
    list-style: none;
}

.c_list.c_list--rect {}

.c_list.c_list--rect li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.c_list.c_list--rect li:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('../../../image/checkmark.svg') no-repeat;
    left: 0;
    top: 0;
}

.c_list.c_list--dotted li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.c_list.c_list--dotted li:last-child:after {
    display: none;
}

.c_list.c_list--dotted li:hover:before {
    box-shadow: 0 0 0 10px rgb(0, 0, 0, .2);
}

.c_list.c_list--dotted li:before {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #999;
    content: "";
    left: 0;
    transition: .3s ease-in-out;
    top: 6px;
}

.c_list.c_list--dotted li:after {
    position: absolute;
    border-left: 1px dotted #ccc;
    width: 1px;
    bottom: -18px;
    content: "";
    left: 3px;
    top: 21px;
}

.c_list.c_list--numeric {
    list-style-type: none;
    counter-reset: num;
}

.c_list.c_list--numeric li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.c_list.c_list--numeric li:before {
    width: 20px;
    height: 20px;
    position: absolute;
    content: '';
    background-color: #0057B8;
    top: 0;
    left: 0;
}

.c_list.c_list--numeric li:after {
    content: counter(num);
    counter-increment: num;
    position: absolute;
    top: 1px;
    left: 6px;
    color: #fff;
}

.table__wrapper {
    min-height: 0.1%;
    overflow-x: auto;
}