html, body, #app{height: 100%}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
  margin: auto;
}

.border-lg{
  border-width: medium !important;
}

.sizer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 8px;
  height: 100%;
  cursor: e-resize;
  touch-action: none;
}
.sizer:after {
  content: '';
  background: #666;
  display: block;
  width: 4px;
  height: 100%;
  margin-left: 5px;
}
.sizer:hover:after{
  width: 4px;
  margin-left: 3px;
  box-shadow: 0px 0px 5px 0px #ddd;
}

.sizer-global{
  height: 100%;
  background-color: #666;
  margin: 0 5px;
  padding: 0 2px;
  cursor: e-resize;
  touch-action: none;
}
.sizer-global:hover{
  margin: 0 4px;
  padding: 0 3px;
}
.sizer-global-vertical{
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
}

@supports ((position:-webkit-sticky) or (position:sticky)){
  .b-table-sticky-header>.table.b-table>tfoot>tr>th {
    position:-webkit-sticky;
    position: sticky;
    bottom: -1px;
    z-index: 2
  }
  .b-table-sticky-header>.table.b-table>thead>tr>th {
    top: -1px;
  }
}
