.mySwiper {
  position: relative;
}

.npl-section-skip-to-feature {
  position: fixed;
  width: 100%;
  z-index: 2;
  bottom: 110px;
  display: block;
  pointer-events: none;
}

.skip {
  width: 96%;
  margin: 0 auto;
}

.skip li a {
  font-size: var(--fifteen);
  font-weight: var(--menuWeight);
  color: var(--df);
  text-decoration: none;
}

.skip div {
  width: 110px;
  transform: rotate(270deg);
  position: relative;
  margin-right: 5px;
  pointer-events: auto;
}

.skip div .line {
  border: none;
  border-bottom: 1px solid var(--df);
  transform: rotate(360deg);
  position: absolute;
  bottom: 5px;
  right: 110px;
  width: 90px;
  animation: line 6s ease-in-out infinite;
}

@keyframes line {
  0% {
    width: 0;
    right: 110px;
  }

  5% {
    width: 90px;
  }

  90% {
    right: 110px;
  }

  100% {
    width: 90px;
    right: 300px;
  }
}
