1.table-pagination-select {
2  display: flex;
3  flex-direction: row-reverse;
4  justify-content: flex-end;
5  select {
6    width: fit-content;
7  }
8  label {
9    margin-left: $spacer;
10    line-height: $spacer * 2;
11  }
12}
13
14.b-pagination {
15  @include media-breakpoint-up(sm) {
16    justify-content: flex-end;
17  }
18  .page-item.active button {
19    color: theme-color("dark");
20    background-color: color("white");
21    border-color: $border-color;
22    box-shadow: inset 0px -3px theme-color("primary");
23  }
24}