
pragma-advanced-list .hotspot-bottom, .pragma-advanced-list .hotspot-bottom {
  position: absolute;
  height: 5px;
  left: 0;
  bottom: 0;
  z-index: 999;
}

.list-clone {
  --x: 0;
  --y: 0;
  --width: 0;
  --height: 0;
  position: absolute;
  display: flex;
  flex-direction: row;
  width: calc(var(--width) * 1px);
  height: calc(var(--height) * 1px);
  will-change: transform;
  padding-right: 1rem;
  padding-left: 32px;
  min-height: 2rem;
  white-space: nowrap;
  border: 1px solid var(--c-accent);
  background: var(--c-surface-bg);
}
.list-clone .hotspot {
  display: none;
}
.list-clone svg {
  height: 2rem;
  padding: 0.25rem;
  fill: var(--c-text);
}
.list-clone .list-item-actions {
  height: 2rem;
  min-width: 2rem;
}
.list-clone .list-item-container {
  flex: 1;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
}
.list-clone .drag-handle {
  line-height: 32px;
  box-sizing: border-box;
  position: absolute;
  left: 4px;
  padding-top: 4px;
  z-index: 99;
}
.list-clone .drag-handle svg {
  fill: none;
  stroke: var(--c-surface-bg);
}

.tree-clone {
  --width: 0;
  --height: 0;
  display: flex;
  flex-direction: row;
  height: calc(var(--height) * 1px);
  width: calc(var(--width) * 1px);
  background: var(--c-surface-bg) !important;
  border: 1px solid var(--c-accent);
  position: absolute;
  align-items: center;
  -webkit-box-shadow: 0 0 0.7rem 0 rgba(79, 79, 79, 0.4);
  -moz-box-shadow: 0 0 0.7rem 0 rgba(79, 79, 79, 0.4);
  box-shadow: 0 0 0.7rem 0 rgba(79, 79, 79, 0.4);
  will-change: transform;
  z-index: 999;
}
.tree-clone .tree-expand-arrow-container {
  min-width: 2rem;
  display: inline-block;
}
.tree-clone .tree-item-actions {
  height: 2rem;
  min-width: 2rem;
}
.tree-clone .tree-item-actions svg {
  height: 2rem;
  padding: 0.25rem;
  fill: var(--c-text);
}
.tree-clone .tree-item-container {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tree-clone .tree-item-container svg {
  height: 32px;
  width: 32px;
  padding: 0;
  fill: var(--c-text);
}
.tree-clone .drag-handle {
  line-height: 32px;
  box-sizing: border-box;
  position: absolute;
  left: 4px;
  padding-top: 4px;
  z-index: 99;
}
.tree-clone .drag-handle svg {
  fill: none;
  stroke: var(--c-surface-bg);
}

.group-header-clone {
  --x: 0;
  --y: 0;
  --width: 0;
  --height: 0;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  position: absolute;
  width: calc(var(--width) * 1px);
  height: calc(var(--height) * 1px) !important;
  transform: translate(calc(var(--x) * 1px), calc(var(--y) * 1px));
  background: var(--c-surface-bg);
  z-index: 999;
  -webkit-box-shadow: 0 0 0.7rem 0 rgba(79, 79, 79, 0.4);
  -moz-box-shadow: 0 0 0.7rem 0 rgba(79, 79, 79, 0.4);
  box-shadow: 0 0 0.7rem 0 rgba(79, 79, 79, 0.4);
  pointer-events: none;
}
.group-header-clone h2 {
  font-size: var(--font-size-base);
  line-height: 1.69rem;
  color: var(--c-subheading);
  font-weight: 700;
  padding: 0.69rem 0 0 0.5rem;
  margin: 0;
  flex: 1;
}
.group-header-clone:before {
  content: "";
  display: block;
  width: 0.4rem;
  background-color: var(--c-accent);
}
.group-header-clone .pragma-group-expand-button {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.group-header-clone .pragma-group-expand-button svg {
  display: none;
}
.group-header-clone .pragma-group-expand-button:hover {
  background: var(--c-hover);
}
.group-header-clone .pragma-group-expand-button:active {
  background: var(--c-hover);
}
.group-header-clone .pragma-group-expand-button[aria-disabled=true] {
  pointer-events: none;
  background: var(--c-disabled);
}
.group-header-clone .pragma-group-expand-button:focus {
  box-shadow: inset 0 0 0 0.1rem var(--c-focus);
  outline: none;
}

.clone.col-resize {
  background: var(--c-focus);
  z-index: 999;
}

.placeholder {
  --width: 0px;
  --height: 0px;
  position: absolute;
  width: calc(var(--width) * 1px);
  height: calc(var(--height) * 1px);
  border: 1px dashed var(--c-focus);
  box-sizing: border-box;
  will-change: transform;
}

.invalid-target {
  cursor: no-drop;
}

.moving {
  --top: 0;
  --duration: 0;
  will-change: transform;
  transition: transform calc(var(--duration) * 1ms) ease-out;
  transform: translateY(calc(var(--top) * 1px));
}

.highlight {
  --left: 0;
  --top: 0;
  --width: 0;
  --bottom: 0;
  display: block;
  position: absolute;
  width: calc(var(--width) * 1px);
  height: calc(var(--height) * 1px);
  background: hotpink;
  opacity: 0.2;
  will-change: transform;
  transform: translate(calc(var(--left) * 1px), calc(var(--top) * 1px));
  transition: transform 0.05s linear;
}

.hotspot-top {
  z-index: 99999998;
  left: 0;
}

.hotspot-bottom {
  z-index: 99999998;
  left: 0;
  bottom: 0;
}

.hotspot-left {
  z-index: 99999998;
  left: 0;
}

.hotspot-right {
  z-index: 99999998;
  right: 0;
}

.hotspot-left, .hotspot-right {
  position: absolute;
  height: 100vh;
  width: 40px;
  top: 0;
}

.hotspot-top, .hotspot-bottom {
  position: absolute;
  width: 100%;
  height: 32px;
}

.group-caret-animation {
  --width: 0;
  position: absolute;
  z-index: 999;
  height: 3px;
  width: calc(var(--width) * 1px);
  top: 0;
  left: 0;
  opacity: 0;
  transform-origin: center;
  transition: all ease-in-out 400ms;
}

.group-caret {
  --width: 0;
  position: relative;
  z-index: 998;
  background-color: var(--c-accent);
  box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
  display: inline-block;
  width: calc(var(--width) * 1px);
  height: 3px;
  opacity: 0;
  transition: all ease-in-out 150ms;
  will-change: transform;
}

.group-caret.pause .group-caret-animation {
  animation: group-cursor-blink 400ms ease-in-out 0ms 2;
}

@keyframes group-cursor-blink {
  0% {
    opacity: 1;
    background: none;
    border-top: 1px solid var(--c-accent);
    border-bottom: 1px solid var(--c-accent);
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    transform: scaleY(10);
  }
}
