.scroll-container{
    padding: 10px;
    position: fixed;
    top: 0;
    left: calc(55% + 18px); 
    width: 400px;
    height: 100vh; 
    z-index: 1000; 
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    overflow-y: scroll; 
    padding-bottom: 1000px;
    scrollbar-width: none; /* Hide scrollbar for Webkit browsers - Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar for Webkit browsers - Internet Explorer and Edge */
  }
  
  .scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

.scroll-step{
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.2); /* Optional: subtle shadow */
  background-color: #E0F9F6;
  /* margin-top: 40vh; */
  /* margin-bottom: 85vh; */
  display: flex;
  align-items: center;
  font-size: 20px;
  padding: 20px;
  border-radius: 4px;
}

.scroll-step.top{
  margin-top: 40vh;
}

.scroll-step.img{
  flex-direction: column;
}

.scroll-img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    margin-top: 16px;
    margin-bottom: 4px;
}

.scroll-step.inn{
    background-color: #FFEEEE;
}

.scroll-step.last{
    margin-bottom: 110vh;
}

.spacer{
  width: 2px;
  height: 85vh;
  background-color: #22C2B0;
  /* margin-left: 189px; */
  margin-left: 236px;
  opacity: 0.4;
  margin-top: 12px;
  margin-bottom: 12px;
  /* box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); */
}

.mask{
  background: rgba(255,255,255, 0.9);
  z-index: 100; 
  /* margin-left: 130px; */
}

