/**********************

  SCROLL ICON STARTER SB 2025

  ***********************/
.scrollicon {
  position: absolute;
  bottom: 0;
  /* Add safe area padding for iOS */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  /* Fine transparent line */
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  z-index: 2;
  /* Smooth fade-out */
}

.scrollicon.hidden {
  opacity: 0;
  /* Make it invisible */
}

.scroll-bar {
  position: absolute;
  width: 100%;
  height: 25%;
  /* Height of the white bar */
  background-color: #fff;
  /* White color */
  animation: scroll 1.5s infinite ease-in-out;
}

@keyframes scroll {
  0% {
    top: -20%;
    /* Start slightly above the visible area */
  }

  100% {
    top: 160%;
    /* Move past the visible area */
  }
}

@media (max-width: 996px) {
  .scrollicon {
    height: 60px;
  }
}
