.table {
    position: relative;
}

.table__wrapper {
    display: flex;
    overflow: hidden;
}

.table__titles {
    flex: 0 0 250px;
    z-index: 2;
    border-right: 1px solid var(--border-color);
}

.table__row-title {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    min-height: 3.75rem;
    box-sizing: border-box;
}

.table__slider {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.table__column {
    height: auto;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    display: block !important;
}



.table__column-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: transparent;
}

.table__column:last-child .table__column-content {
    border-right: none;
}

.table__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
    width: 100%;
}

.table__cell-inner {
    width: 100%;
    display: flex;
    flex-direction: var(--cell-text-direction, column);
}

.table__cell .table__cell-inner {
    justify-content: center;
}

.table__cell-inner_row {
    gap: 1rem;
}

.table__cell.row-style-true_false .cell-icon svg {
    display: block;
    margin: 0 auto;
}

.table__footer {
    border-bottom: 1px solid var(--border-color);
}



@media (min-width: 992px) {
    .table__wrapper {
        display: grid;
        grid-template-columns: repeat(calc(var(--table-columns) * 2 + (var(--divider-first-col, 1) * 2 - 2)), 1fr);
    }

    .table__slider {
        grid-column: span calc(var(--table-columns) * 2 - 2);
    }

    .table__titles {
        grid-column: span calc(var(--divider-first-col, 1) * 2);
    }

    .table__slider .swiper-wrapper {
        display: flex;
        transform: none !important;
    }

    .table__column {
        flex: 1;
        width: auto !important;
        border: none;
    }

    .table__column-content .table__cell{
        border-right: 1px solid var(--border-color);
    }

    .table__column:last-child .table__column-content .table__cell{
        border-right: none;
    }

    .swiper-pagination {
        display: none;
    }
}

@media (max-width: 768px) {
    .table__titles {
        flex: 0 0 140px;
    }
}

@media (max-width: 468px) {
    .table__titles {
        flex: 0 0 120px;
    }
}