/* progress */
.act_progressbar {
  background-color: #F9FAFC;
  padding: 32px;
  border-radius: 8px;
}

.act_progressbar_bar_wrap {
  margin-bottom: 32px;
  overflow: hidden;
  height: 20px; /* Accommodate dots */
  display: flex;
  align-items: center;
}

.act_progressbar_bar {
  border-radius: 2px;
  background: #D9D9D9;
  height: 12px;
  position: relative;
  width: 100%;
  display: flex;
}

.act_progressbar_bar:before {
  content: '';
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(90deg, #EF6868 0%, #BC1212 100%);
  top: 0;
  left: 0;
  z-index: 1;
}

.act_progressbar_line {
  position: relative;
  flex-shrink: 0;
  background: #D9D9D9;
}

.act_progressbar_line span {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: -4px;
  z-index: 2;
  transform: translateX(-10px);
  border-radius: 50%;
  background-color: #3A3A3A;
}

.act_progressbar_line.on span {
  background-color: #FB8200;
}

.act_progressbar_del {
  /* display: flex; */
}

.act_progressbar_swiper_wrap {
  position: relative;
}

.act_progressbar_swiper_wrap .progressbar-prev,
.act_progressbar_swiper_wrap .progressbar-next {
  top: 55%;
}

.act_progressbar_item {
  /* flex: 1 0 0; */
  border-radius: 8px;
  background: #DFABA5;
  padding: 24px;
  height: auto;
}

.act_progressbar_tit {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}

.act_progressbar_tit.small {
  font-size: 18px;
}

.act_progressbar_intro {
  color: #2b2b2b;
  font-size: 16px;
  line-height: 150%;
  max-height: 192px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  text-overflow: ellipsis;
  overflow: hidden;
}

.act_progressbar_cta {
  color: #2b2b2b;
  font-size: 16px;
  line-height: 130%;
  text-decoration: none;
  margin: 24px 0 0;
  display: inline-block;
}

@media only screen and (max-width: 1025px) {
  .act_progressbar {
    padding: 20px;
  }

  .act_progressbar_item {
    padding: 15px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .act_progressbar {
    padding: 16px 4px 16px 0;
    border-radius: 4px;
  }

  .act_progressbar_in {
    display: flex;
    max-height: 308px;
    padding-left: 20px;
    overflow-x: visible;
    overflow-y: auto;
  }

  .act_progressbar_in::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
    border-radius: 4px;
  }

  .act_progressbar_in::-webkit-scrollbar-thumb {
    background-color: rgba(217, 217, 217, 1);
    border-radius: 4px;
  }

  .act_progressbar_in::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 4px;
  }

  .act_progressbar_swiper_wrap .progressbar-prev,
  .act_progressbar_swiper_wrap .progressbar-next {
    display: none !important;
  }

  .act_progressbar_swiper_wrap {
    display: flex;
    width: 100%;
  }

  .act_progressbar_bar_wrap {
    margin-bottom: 0;
    overflow: visible;
    width: 7px;
    height: auto;
    display: block;
  }

  .act_progressbar_bar {
    height: auto;
    width: 7px;
    flex-shrink: 0;
    margin-right: 16px;
    display: block;
  }

  .act_progressbar_line {
    width: 7px;
    height: auto;
    margin-bottom: 8px;
  }

  .act_progressbar_line:last-child {
    margin-bottom: 0;
  }

  .act_progressbar_del_wrap {
    flex: auto;
    overflow: visible;
    margin: 0 7px 0 12px;
  }

  .act_progressbar_del {
    display: block;
    margin-right: 7px;
  }

  .act_progressbar_item {
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 8px;
    height: auto;
    margin-right: 0;
  }

  .act_progressbar_item:last-child {
    margin-bottom: 0;
  }

  .act_progressbar_line span {
    width: 16px;
    height: 16px;
    left: -5px;
    top: 50%;
    z-index: 2;
    transform: translate(0, -8px);
  }

  .act_progressbar_tit {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .act_progressbar_tit.small {
    font-size: 13px;
  }

  .act_progressbar_intro {
    font-size: 12px;
    max-height: 144px;
  }

  .act_progressbar_cta {
    font-size: 12px;
    margin: 16px 0 0;
  }
}
