.bem-table {
    border-collapse: collapse;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(63, 63, 68, 0.15), 0 0 0 1px rgba(63, 63, 68, 0.05);
    border-radius: 4px;
}

.bem-table.bem-table_theme_block {
    display: table;
    background-color: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
}

.bem-table .bem-table__row {
    border-bottom: 1px solid #eff2f5;
}
.bem-table .bem-table__row:first-child {
    border-top: 1px solid #dfe3e8;
}

.bem-table .bem-table__row:hover {
    background-color: #fbfbfe;
}

.bem-table .bem-table__row.bem-table__row_group {
    background-color: #e8f1fb;
}
.bem-table .bem-table__row.bem-table__row_group:hover {
    background-color: #e8f1fb;
}
.bem-table .bem-table__row.bem-table__row_child-group >.bem-table__cell:first-child
{
    position: relative;
    padding-left: 28px;
}
.bem-table .bem-table__row.bem-table__row_group.bem-table__row_child-group .bem-table__cell {
    font-size: 11px;
    height: 25px;
}

.bem-table .bem-table__row.bem-table__row_child-group >.bem-table__cell:first-child:before
{
    content: "";
    height: 35px;
    width: 5px;
    border-left: 1px solid #dfe3e8;
    position: absolute;
    top: 0;
    left: 20px;
}
.bem-table .bem-table__row.bem-table__row_child-group >.bem-table__cell:first-child:after
{
    content: "";
    height: 35px;
    width: 20px;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.bem-table .bem-table__row_head {
    background-color: #fefdfd;
    border-bottom-width: 1px;
}
.bem-table .bem-table__row_head:hover {
    background-color: #fefdfd;
}

.bem-table.bem-table_theme_block .bem-table__row,
.bem-table.bem-table_theme_block .bem-table__row:hover {
    display: table-row;
    border-top: none;
    border-bottom: none;
    background-color: transparent;
}

.bem-table .bem-table__cell {
    font-family: Roboto;
    font-size: 13px;
    color: #212b36;
    text-align: left;
    padding: 0 20px;
    height: 35px;
    box-sizing: border-box;
    vertical-align: middle;
}

.bem-table .bem-table__cell.bem-table__cell_padding_small
{
    padding: 0 5px;
}
.bem-table .bem-table__cell.bem-table__cell_padding_middle
{
    padding: 5px 10px;
}

.bem-table .bem-table__cell.bem-table__cell_center {
    text-align: center;
}

.bem-table.bem-table_theme_block .bem-table__cell {
    display: table-cell;
    border: none;
    height: auto;
    width: auto;
    padding: 0px;
}
.bem-table.bem-table_theme_block .bem-table__cell.bem-table__cell_width_70 {
    width: 70%;
}
.bem-table.bem-table_theme_block .bem-table__cell.bem-table__cell_width_30 {
    width: 30%;
}
.bem-table.bem-table_theme_block .bem-table__cell.bem-table__cell_right {
    text-align: right;
}
.bem-table.bem-table_theme_block .bem-table__cell.bem-table__cell_center {
    text-align: center;
}

.bem-table .bem-table__cell.bem-table__cell_link {
    color: #007ace;
}

.bem-table .bem-table__cell.bem-table__cell_head {
    font-family: 'Roboto-Bold';
    font-size: 13px;
    font-weight: bold;
}

.bem-table .bem-table__cell.bem-table__cell_pointer {
    cursor: pointer;
}

.bem-table .bem-table__cell.bem-table__cell_bold {
    font-family: Roboto-Bold;
}

.bem-table.bem-table_border .bem-table__cell {
    border-color: #eff2f5;
    border-left-width: 1px;
    border-style: solid;
}
.bem-table.bem-table_border .bem-table__cell:first-child {
    border-left-width: 0px;
}

.bem-table .bem-table__cell.bem-table__cell_relative{
    position: relative;
}
    