.table_wrapper {overflow: auto;}


/***************************************************************************
* Table
****************************************************************************/
table {
    background-color: #FFFFFF;
    border-radius: var(--typo-border-radius-big);
    overflow: hidden;
    box-shadow: 0 0 0.5em rgba(0,0,0,0.1);
}

/***************************************************************************
* Body / Head
****************************************************************************/
table thead {
    background-color: var(--typo-color-blue);
    color: #FFFFFF;
}

/***************************************************************************
* Rows
****************************************************************************/
table tr:nth-child(2n){
    background-color: var(--typo-color-blue-light);
}

/***************************************************************************
* Zellen
****************************************************************************/
table th,
table td {
    padding: 0 var(--typo-gap);
    height: calc(var(--typo-calc-size) * 3rem);
    line-height: 1.2;
    font-size: var(--typo-font-size-small);
}

@media screen and (min-width:64em){
    table th,
    table td {
        height: calc(var(--typo-calc-size) * 4rem);
    }
}

@media screen and (min-width:90em){
    table th,
    table td {
        height: calc(var(--typo-calc-size) * 5rem);
    }
}


/***************************************************************************
* Specials
****************************************************************************/
table em {
    font-style: normal;
    font-size: var(--typo-font-size-very-small);
    line-height: 1;
    display: block;
}

table a {
    font-weight: 700;
    text-decoration: none;
    color: var(--typo-color-blue);
}
table a:after {
    content: '→';
    display: inline-block;
    width: 1.5em; height: 1.5em;
    background-color: var(--typo-color-blue);
    color: #FFFFFF;
    text-align: center;
    line-height: 1.5em;
    border-radius: 50%;
    margin-left: 0.5em;
}