.resize-table-active{
  table-layout: fixed;
  position: relative;
}
.resize-table-active th,
.resize-table-active td{
  position: relative;
}
.resize-table-active thead th .resize-handle{
  content: '';
  position: absolute;
  cursor: col-resize;
  height: 100%;
  width: 12px;
  right: -6px;
  top: 0;
}
.resize-table-active thead th .resize-handle .resize-handle-line{
  position: absolute;
  width: 2px;
  height: 100%;
  left: 4px;
  top: 0;
  background: #ccc;
  opacity: 0;
}
.resize-table-active thead th .resize-handle:hover .resize-handle-line,
.resize-table-active thead th .resize-handle.ui-draggable-dragging .resize-handle-line{
  opacity: 1;
  height: 100vh;
}
.resize-table-active.not-fixed-table-layout{
  table-layout: auto;
}
.resize-table-active thead tr th {
    min-width: 75px;
    width: 75px;
}