.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--layer-behind {
  z-index: 1;
}

.vlip-asd--layer-front {
  z-index: 3;
}

.vlip-asd-static-layer-behind > .elementor-shape-divider,
.vlip-asd-static-layer-front > .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: none;
  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-y svg {
  transform: scaleY(-1);
  transform-origin: center;
}

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

.vlip-asd--flip-x.vlip-asd--flip-y svg {
  transform: scale(-1, -1);
}

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

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

.vlip-asd--dir-alternate .vlip-asd__inner {
  animation-name: vlip-asd-move-alternate;
  animation-duration: var(--vlip-asd-speed, 10s);
  animation-iteration-count: infinite;
  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%);
  }
}
