.bt-container {
    overflow: auto;
    position: relative;
    height: 100%;
}

.bt-table {
    display: grid;

    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
}

.bt-table-header {
    display: grid;
    position: sticky;
    top: 0;
    z-index: 1;
}

.bt-table-header-loader {
    z-index: 1;
    min-height: 4px;
    max-height: 4px;
}

.bt-table-header-row {
    display: flex;
    width: 100%;

    background-color: #fff;
    border-bottom: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
}

.bt-table-header-cell {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px;
    min-height: 39px;
    max-height: 49px;
    font-weight: 600;
}

.bt-table-header-cell-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bt-table-header-cell-inner-title {
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: nowrap;
}

.bt-table-body {
    display: grid;
    position: relative;
}

.bt-table-body-row {
    display: flex;
    position: absolute;
    width: 100%;

    border-bottom: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
}

.bt-table-body-cell {
    display: flex;
    align-items: center;
    padding: 8px;
    min-height: 39px;
    overflow: hidden;
}

.bt-table-body-cell-without-padding {
    display: flex;
    align-items: center;
    min-height: 39px;
    overflow: hidden;
    padding: 0 4px;
    margin: 0;
}

.bt-column-header-cell {
    width: 100%;
}

.bt-column-header-cell-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bt-column-header-cell-title {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
            line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bt-column-header-cell-context {

}