.systems-table-container {
    overflow-x: auto;
    overflow-y: auto;
    width: 100%;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .systems-table-container.st-single {
        overflow-x: hidden;
    }
}

table.systems-table {
    width: auto;
    border-collapse: collapse;
    table-layout: auto;
}

.systems-table th, .systems-table td {
    border: 1px solid #ddd;
    text-align: left;
    padding: 8px;
    width: calc((1240px - 300px) / 3);
    min-width: calc((1240px - 300px) / 3);
    background: #fff;
}

.systems-table-container.st-single .systems-table th, .systems-table-container.st-single .systems-table td {
    width: auto;
}

.systems-table thead th, .systems-table thead td {
    background-color: #ea9244;
    border-color: #ea9244;
    color: white;

    font-size: 16px;
    font-weight: bold;
}

.systems-table th:first-child, .systems-table td:first-child {

    width: 300px !important;
    min-width: 300px !important;
    background-color: #F4F4F4;
    border: 1px solid #ddd;
    border-right: 1px solid #ea9244;
}

@media (min-width: 768px) {
    .systems-table thead th, .systems-table thead td {
        position: sticky;
        top: 0;
        z-index: 50; /* Ensures the header is above other rows but below the first column */
    }
    .systems-table th:first-child, .systems-table td:first-child {
        position: sticky;
        left: 0;
        z-index: 100;
    }
}

.systems-table thead th:first-child, .systems-table thead td:first-child {
    background-color: #ea9244;
    border-color: #ea9244;
    color: white;
    z-index: 200;
}

.systems-table thead th {
    background-color: #ea9244;
    color: #fff;
}

.systems-table tbody th, .systems-table tbody td {
    font-size: 16px;
    line-height: 160%;
    color: #767676;
    font-weight: normal;
    background: #fff;
}

.systems-table .title {
    color: #ea9244;
    font-size: 20px;
    font-weight: 600;
}

.systems-table .subtitle {
    color: #555;
    font-size: 17px;
    font-weight: bold;
}

.systems-table .title-row, .systems-table .subtitle-row,
.systems-table .title-row td, .systems-table .subtitle-row td,
.systems-table .title-row th, .systems-table .subtitle-row th {
    background-color: #f0f0f0;
}

.systems-table .tx-start {
    text-align: left;
}
.systems-table .tx-center {
    text-align: center;
}
.systems-table .tx-end {
    text-align: right;
}

.systems-table .ty-start {
    vertical-align: top;
}
.systems-table .ty-center {
    vertical-align: middle;
}
.systems-table .ty-end {
    vertical-align: bottom;
}

.tier-filters {
    margin: 0 -0.5rem;
    padding: 0;
    box-sizing: border-box;
}
.tier-filters li {
    box-sizing: border-box;
    /*display: inline-block;*/
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    background-color: #F4F4F4;
    border: 1px solid #DDD;
    /*padding: 0.5rem 2rem;*/
    cursor: pointer;

    padding: 5px 17px;
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
}

.tier-filters li.tier-filtering-on {
    background-color: #ea9244;
    border: 1px solid #ea9244;
    color: white;
}