.scroll-indicator {
  display: none;
   
}
.scroll-indicator.active{
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 40px;   
}

.scroll-indicator a {
  position: relative;
  padding: 0;
  background-image: url("../images/sc_off.png");
  width: 25px;
  height: 25px;
  /*   background-size: cover; */
  background-repeat: no-repeat;  
}



.scroll-indicator a.active {
  background-image: url("../images/sc_on.png");
}

.scroll-indicator a::before {
  content: attr(data-section);
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(4px, -50%);
  background: red;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  padding: 2px 10px;
  text-transform: uppercase;
  font-size: 13px;
  pointer-events: none;
  box-shadow: 0 7px 14px -6px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 400ms ease;
}

.scroll-indicator a:hover::before {
  opacity: 1;
  transform: translate(0, -50%);
}

#scrollAreaFrame{
  overflow: hidden;
}

@media screen and (max-width: 769px){
    .scroll-indicator, .scroll-indicator.active{
        display: none !important;        
    }
}
