.swiper-container-wrapper {
  padding: 36px 0 22px 58px;
}

.swiper-container-wrapper--timeline .swiper-slide {
  display: block;
  /* background: #fff; */
  /* height: 300px; */
  height: 100%;
  /* align-items: center;
  justify-content: center; */
  /* border-radius: 10px; */
  border-left: 1px solid #888;

  .swiper-year {
    position: relative;
    color: var(--fs-color-primary);
    padding-left: 20px;

    &::before {
      content: "";
      width: 14px;
      height: 2px;
      background: var(--fs-color-primary);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }

  .swiper-content {
    padding: 20px 40px;
  }
}

.swiper-container-wrapper--timeline .swiper-slide .container {
  padding: 0;
  width: 100%;
}

.swiper-container-wrapper--timeline .swiper-slide .title {
  font-size: 18px;
  opacity: 1;
  transition: 0.5s ease 0.5s;
}

.swiper-container-wrapper--timeline .swiper-slide-active .title {
  opacity: 1;
}

.swiper-container-wrapper--timeline .swiper-pagination-progressbar {
  position: relative;
  margin-bottom: 70px;
  background-color: transparent;
  height: 4px;
  border-bottom: 1px solid #888;
  width: 95%;
  left: 20px;

  @media screen and (max-width:768px) {
    left: 0;
    width: 75%;
  }
}

.swiper-container-wrapper--timeline .swiper-pagination-progressbar-fill {
  background-color: transparent !important;
  height: 3px;
  top: 2px;
}

.swiper-container-wrapper--timeline .swiper-pagination-progressbar:before {
  position: absolute;
  top: 2px;
  left: -100%;
  /* width: 100%; */
  height: 3px;
  background-color: var(--fs-color-primary);
  content: "";
}

.swiper-container-wrapper--timeline .swiper-pagination-progressbar:after {
  position: absolute;
  top: 3px;
  width: 77.5%;
  height: 1px;
  content: "";

}

.swiper-container-wrapper--timeline .swiper-pagination-custom {
  position: relative;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: flex;
  line-height: 1.66;
  bottom: 0;
  z-index: 11;
  width: 75%;
  display: flex;
}

.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch {
  position: relative;
  width: 100%;
  height: 30px;
  line-height: 30px;
  display: block;
}

.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch .switch-title {
  position: absolute;
  font-weight: 400;
  right: 0;
  transform: translateX(50%);
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  cursor: pointer;
  z-index: 1;


}

.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch .switch-title:after {
  position: absolute;
  top: calc(100% + 30px);
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--fs-color-primary);
  border-radius: 2rem;
  content: "";
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  z-index: 1;
}

.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active .switch-title {
  font-weight: 400;
  transition-delay: 0.4s;


}

.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active .switch-title:after {
  background: var(--fs-color-primary);
  width: 25px;
  height: 25px;
  transition-delay: 0.4s;
}

.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active~.swiper-pagination-switch .switch-title {
  color: #ae984c;
  font-weight: 16px;
}

.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active~.swiper-pagination-switch .switch-title:after {
  background: #ae984c;
}

.swiper-button-next {
  bottom: -100%;
  width: 20px;
  right: 28px;
  /* top: 300px; */
  transform: translateY(272px);
  svg {
    path {
      fill: var(--fs-color-primary);
    }
  }
}