.table-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
	margin-bottom: 15px;
}

.search-content .table-container {
	margin-bottom: 0;
    padding-bottom: 0;
}

.bulk_table th:first-child,
.bulk_table td:first-child {
    width: 35px;
}

table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}

tr {
    border-bottom: 1px solid var(--table-border-color);
}
table:not(.vertical) tr:first-child {
    box-shadow: 0 1px 15px -10px rgba(0, 0, 0, 0.5);
}


table.vertical td {
    border: 0;
    word-break: break-word;
}

td {
    padding: 5px 8px;
    border-collapse: collapse;
    font-size: 14px;
    border-right: 1px solid var(--table-border-color);
}
td:first-child,
th:first-child {
    border-left: 1px solid var(--table-border-color);
}

th,
td:before {
    font-size: 14px;
    color: #333;
    text-align: left;
    white-space: nowrap;
    padding: 7px 8px;
    border-collapse: collapse;
    border-right: 1px solid var(--table-border-color);
    border-top: 1px solid var(--table-border-color);
}

.bulk-select-all-marker {
    background:#ddd;
    color:#111;
    border-radius: 100%;
    font-size: 8px;
    padding: 5px;
}

.bulk-select-all-marker.active {
    background: green;
    color:#fff;
}

table tr:nth-child(2) td {
    padding-top:9px;
}

table tr.disabled td {
    color:#aaa;
    background:#f8f8f8;
}

table tr.disabled td a {
    color:#aaa;
}

/* 	Media Query für den Breakpoint
	Collapsing Table

@media screen and (max-width: 767px) {
    table:not(.vertical),
	table:not(.vertical) tbody,
	table:not(.vertical) td,
	table:not(.vertical) tr {
        display: block;
        width: 100%;
    }

    tr {
        margin-bottom: 4px;
        padding-bottom: 4px;
    }

    th {
        display: none;
    }

    table:not(.vertical) td:not([colspan]) {
        padding-left: 50%;
        position: relative;
        padding-bottom: 2px;
        min-height: 25px;
    }

    table:not(.vertical) td:not([colspan]):before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 5px;
    }

    td[colspan] {
        width: 100% !important;
    }
}
*/

table.vertical td:first-child {
    font-weight: bold;
    font-size: 11px;
    line-height: 20px;
    text-transform: uppercase;
    color: #666;
    text-align: left;
    width: 40%;
    vertical-align: top;
    white-space: normal;
    padding-left: 0;
}