#progressbar {
    margin: 30px 0;
}


.horizontal-timeline .line .cp span {
    top: 15px;
}

.horizontal-timeline .line .float-cp span {
    top: -45px;
    background-color: #ff4156;
    color: #fff;
    border-radius: 5px;
    font-weight: 100;
    padding: 5px 10px;
}

.horizontal-timeline .timeline {
    position: relative;
    height: 100px;
    width: 90%;
  }
  .horizontal-timeline .events-wrapper {
    position: relative;
    overflow: hidden;
  }
  .horizontal-timeline .line{
      position: relative;
      width: 100%;
      z-index: 1;
      left: 0;
      top: 49px;
      height: 3px;
      background: #dfdfdf;
  }
  .horizontal-timeline .filling-line {
      position: absolute;
      z-index: 1;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      background-color: #ff4156;
      transform-origin: left center;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -ms-transform-origin: left center;
      -o-transform-origin: left center;
      -webkit-transition: -webkit-transform 0.3s;
      -moz-transition: -moz-transform 0.3s;
  }
  .horizontal-timeline .line .cp{
    top: -15px;
    position: absolute;
    height: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .horizontal-timeline .line .cp span {
      position: absolute;
      white-space: nowrap;
      transform: translateY(15px);
      -webkit-transform: translateY(15px);
      -moz-transform: translateY(15px);
      -ms-transform: translateY(15px);
      -o-transform: translateY(15px);
      transform: left center;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -ms-transform-origin: left center;
      -o-transform-origin: left center;
  }
  .horizontal-timeline .line .point.unfinish{
      background-color:#E8E8E8;
  }
  .horizontal-timeline .line .point{
    top: 4px;
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background-color: #ff4156;
    border: 4px solid #fff;
    box-shadow: 0 2px 16px rgb(58 87 135 / 15%);
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    -moz-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
  }

  .horizontal-timeline .line .point:hover {
    background-color: #ff4156;
    border-color: #ff4156;
  }
  .arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #d31f2a transparent transparent transparent;
    position: absolute;
    top: -15px;
    display: flex;
    justify-content: center;
    text-align: center;
}
.arrow span {
    position: absolute;
    top: -30px;
}