
.animation-layer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
}

.animation-layer-parent-bound {
  position: absolute;
  --x: 0;
  --y: 0;
  --width: 0;
  --height: 0;
  top: calc(var(--y) * 1px);
  left: calc(var(--x) * 1px);
  width: calc(var(--width) * 1px);
  height: calc(var(--height) * 1px);
  z-index: 900;
  overflow: hidden;
}
