gx-drop-table-area {
  position: relative;
}
gx-drop-table-area .cell {
  position: absolute;
}
gx-drop-table-area .cell .cell-content {
  position: relative;
  height: 100%;
}
gx-drop-table-area .cell .cell-content [data-active] {
  background-color: var(--gx-place-holder-color, var(--color-accent-primary-default));
}
gx-drop-table-area .cell .cell-content [data-place-holder=inside] {
  position: absolute;
  z-index: 10000;
  left: var(--gx-le-table-placeholder-width, 4px);
  right: var(--gx-le-table-placeholder-width, 4px);
  top: var(--gx-le-table-placeholder-width, 4px);
  bottom: var(--gx-le-table-placeholder-width, 4px);
}
gx-drop-table-area .cell .cell-content [data-place-holder=inside] [data-place-holder-marker] {
  pointer-events: none;
  width: 100%;
  height: 100%;
}
gx-drop-table-area .cell .cell-content [data-place-holder=left] {
  position: absolute;
  z-index: 8000;
  left: -1px;
  top: 0px;
  bottom: 0px;
  width: 50%;
}
gx-drop-table-area .cell .cell-content [data-place-holder=left] [data-place-holder-marker] {
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: var(--gx-le-table-placeholder-width, 4px);
}
gx-drop-table-area .cell .cell-content [data-place-holder=right] {
  position: absolute;
  z-index: 8000;
  right: -1px;
  top: 0px;
  bottom: 0px;
  width: 50%;
}
gx-drop-table-area .cell .cell-content [data-place-holder=right] [data-place-holder-marker] {
  position: absolute;
  pointer-events: none;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: var(--gx-le-table-placeholder-width, 4px);
}
gx-drop-table-area .cell .cell-content [data-place-holder=top] {
  position: absolute;
  z-index: 9000;
  left: 0px;
  right: 0px;
  top: 0px;
  height: 25%;
}
gx-drop-table-area .cell .cell-content [data-place-holder=top] [data-place-holder-marker] {
  position: absolute;
  pointer-events: none;
  left: 0px;
  right: 0px;
  top: 0px;
  height: var(--gx-le-table-placeholder-width, 4px);
}
gx-drop-table-area .cell .cell-content [data-place-holder=bottom] {
  position: absolute;
  z-index: 9000;
  left: -1px;
  right: -1px;
  bottom: 0px;
  height: 25%;
}
gx-drop-table-area .cell .cell-content [data-place-holder=bottom] [data-place-holder-marker] {
  position: absolute;
  pointer-events: none;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: var(--gx-le-table-placeholder-width, 4px);
}