/** table */
section.table > .typo3element {
    margin-top: 100px;
    margin-bottom: 100px;
}
table.ce-table th {
    /*background-color: var(--table-th-background-color);*/
    color: var(--table-th-color);
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    padding: 26px 10px 26px 20px;
    border-right: 1px solid var(--color-sherpa-blue-20);
}

table.ce-table td {
    padding: 15px 10px 15px 20px;
    font-size: 18px;
    border-right: 1px solid var(--color-sherpa-blue-20);
}
table.ce-table:not(.ce-table-bordered) td:last-child, table.ce-table:not(.ce-table-bordered) th:last-child {
    border-right: none;
}

table.ce-table tr {
    border-bottom: 1px solid var(--color-sherpa-blue-20);
}
table.ce-table tbody tr:last-child {
    border-bottom: none;
}

table.ce-table-bordered th, table.ce-table-bordered td {
    border: 1px solid var(--table-bordered-td-border-color);
}

table.ce-table-bordered th {
    background: var(--table-bordered-th-background-color);
    border-color: var(--table-bordered-th-border-color);
}

table.ce-table-bordered th:first-child {
    border-left-color: var(--table-bordered-th-border-left-color-first-child);
}

table.ce-table-bordered th:last-child {
    border-right-color: var(--table-bordered-th-border-right-color-last-child);
}

table.ce-table-bordered td {
    vertical-align: top;
}

table.ce-table-striped thead th {
    background-color: var(--table-striped-thead-th-background-color);
    color: var(--table-striped-thead-th-color);
}

table.ce-table tbody th {
    border: 1px solid var(--table-tbody-th-border-color);
    border-bottom-color: var(--table-tbody-th-border-bottom-color);
    width: 25%;
}

table.ce-table tbody:last-child tr:last-child th {
    border-bottom-color: var(--table-tbody-last-child-tr-last-child-th-border-bottom-color);
}

table.ce-table tfoot tr:last-child th {
    border-bottom: 1px solid var(--table-tfoot-tr-last-child-th-border-bottom-color);
}

table.ce-table th ~ td {
    border: 1px solid var(--table-th-sibling-td-border-color);
    padding: 10px;
}

table.ce-table tr:nth-child(1){
    background: var(--color-sherpa-blue-80);
    color: white;
}

table.ce-table.secondstriped tr:nth-child(2){
    background: var(--color-sherpa-blue-40);
}

table.contenttable {
    border-collapse: collapse;
    width: 100%;
}

table.contenttable thead td {
    background-color: var(--table-content-thead-td-background-color);
    border: 1px solid;
    border-color: var(--table-content-thead-td-border-color);
    color: var(--table-content-thead-td-color);
    font-weight: 600;
    padding: 10px;
}

table.contenttable thead td:first-child {
    border-left-color: var(--table-content-thead-td-border-color-first-child);
}

table.contenttable thead td:last-child {
    border-right-color: var(--table-content-thead-td-border-color-last-child);
}

table.contenttable td {
    padding: 5px 10px;
    vertical-align: top;
}

table.contenttable tr:nth-of-type(even) {
    background-color: var(--table-content-tr-background-color-even);
}