.lines-wrap-item {
  position: absolute;
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fafafa 2px, transparent 2px);
  background-size: 80px 1px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lines-wrap-item {
    background-size: 120px 1px;
  }
}
.lines-wrap-item .animated-line {
  width: 160px;
  height: 100%;
  top: -30px;
  left: 0;
  position: absolute;
}

@media (min-width: 768px) {
  .lines-wrap-item .animated-line {
    width: 240px;
  }
}
.lines-wrap-item .animated-line:before,
.lines-wrap-item .animated-line:after {
  content: "";
  width: 2px;
  left: 50%;
  height: 30px;
  position: absolute;
  background-image: linear-gradient(0deg, #f16900, transparent);
  border-radius: 50px;
  animation: scrollTop 15s ease-out infinite;
}

.lines-wrap-item .animated-line:before {
  left: 100%;
  background-image: linear-gradient(0deg, transparent, #f16900);
  animation: scrollBottom 15s ease-out infinite;
}

.lines-wrap-item .animated-line:nth-child(2) {
  left: 160px;
}

.lines-wrap-item .animated-line:nth-child(2):after {
  animation-delay: 3s;
}

.lines-wrap-item .animated-line:nth-child(2):before {
  animation-delay: 1.5s;
}

@media (min-width: 768px) {
  .lines-wrap-item .animated-line:nth-child(2) {
    left: 240px;
  }
}
.lines-wrap-item .animated-line:nth-child(3) {
  left: 320px;
}

.lines-wrap-item .animated-line:nth-child(3):after {
  animation-delay: 1s;
}

.lines-wrap-item .animated-line:nth-child(3):before {
  animation-delay: 0.5s;
}

@media (min-width: 768px) {
  .lines-wrap-item .animated-line:nth-child(3) {
    left: 480px;
  }
}
.lines-wrap-item .animated-line:nth-child(4) {
  left: 480px;
}

.lines-wrap-item .animated-line:nth-child(4):after {
  animation-delay: 2s;
}

.lines-wrap-item .animated-line:nth-child(4):before {
  animation-delay: 2.5s;
}

@media (min-width: 768px) {
  .lines-wrap-item .animated-line:nth-child(4) {
    left: 720px;
  }
}
.lines-wrap-item .animated-line:nth-child(5) {
  left: 640px;
}

.lines-wrap-item .animated-line:nth-child(5):after {
  animation-delay: 4s;
}

.lines-wrap-item .animated-line:nth-child(5):before {
  animation-delay: 6s;
}

@media (min-width: 768px) {
  .lines-wrap-item .animated-line:nth-child(5) {
    left: 960px;
  }
}
.lines-wrap-item .animated-line:nth-child(6) {
  left: 800px;
}

.lines-wrap-item .animated-line:nth-child(6):after {
  animation-delay: 2.5s;
}

.lines-wrap-item .animated-line:nth-child(6):before {
  animation-delay: 3s;
}

@media (min-width: 768px) {
  .lines-wrap-item .animated-line:nth-child(6) {
    left: 1200px;
  }
}
.lines-wrap-item .animated-line:nth-child(7) {
  left: 960px;
}

.lines-wrap-item .animated-line:nth-child(7):after {
  animation-delay: 3.3s;
}

.lines-wrap-item .animated-line:nth-child(7):before {
  animation-delay: 1.5s;
}

@media (min-width: 768px) {
  .lines-wrap-item .animated-line:nth-child(7) {
    left: 1440px;
  }
}
.lines-wrap-item .animated-line:nth-child(8) {
  left: 1120px;
}

.lines-wrap-item .animated-line:nth-child(8):after {
  animation-delay: 0.3s;
}

.lines-wrap-item .animated-line:nth-child(8):before {
  animation-delay: 1.5s;
}

@media (min-width: 768px) {
  .lines-wrap-item .animated-line:nth-child(8) {
    left: 1680px;
  }
}
@keyframes scrollTop {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0.5;
  }
}
@keyframes scrollBottom {
  0% {
    opacity: 1;
    bottom: 0;
  }
  100% {
    bottom: 100%;
    opacity: 0.5;
  }
}/*# sourceMappingURL=linesAnimation.css.map */