.vlip-asd {
  --vlip-asd-color: currentColor;
  --vlip-asd-shape-width: 120%;

  position: absolute;
  left: 0;
  width: 100%;
  height: var(--vlip-asd-height, 120px);
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.vlip-asd--behind-static {
  z-index: 1;
}

.vlip-asd-static-over > .elementor-shape-divider {
  z-index: 2;
}

.vlip-asd--top {
  top: 0;
  transform: translateY(-1px);
}

.vlip-asd--bottom {
  bottom: 0;
  transform: translateY(1px);
}

.vlip-asd__inner {
  display: flex;
  width: calc(var(--vlip-asd-shape-width) * 2);
  height: 100%;
  animation: vlip-asd-move-left var(--vlip-asd-speed, 10s) linear infinite;
  will-change: transform;
}

.vlip-asd svg {
  flex: 0 0 var(--vlip-asd-shape-width);
  width: var(--vlip-asd-shape-width);
  height: 100%;
  display: block;
  color: var(--vlip-asd-color);
}

.vlip-asd svg .elementor-shape-fill,
.vlip-asd svg .ha-shape-divider {
  fill: var(--vlip-asd-color) !important;
}

.vlip-asd svg [fill]:not([fill="none"]),
.vlip-asd svg [style*="fill:"] {
  fill: var(--vlip-asd-color) !important;
}

.vlip-asd svg [stroke]:not([stroke="none"]),
.vlip-asd svg [style*="stroke:"] {
  stroke: var(--vlip-asd-color) !important;
}

.vlip-asd--flip svg {
  transform: scaleY(-1);
  transform-origin: center;
}

.vlip-asd--dir-right .vlip-asd__inner {
  animation-name: vlip-asd-move-right;
}

.vlip-asd--dir-left .vlip-asd__inner {
  animation-name: vlip-asd-move-left;
}

.vlip-asd--dir-alternate .vlip-asd__inner {
  animation-name: vlip-asd-move-alternate;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

@keyframes vlip-asd-move-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes vlip-asd-move-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes vlip-asd-move-alternate {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}
