.quote__steps_v2 {
  display: grid;
  grid-template-columns: 70px 1fr 70px 1fr 70px 1fr 70px;
  padding: 0px 30px;
}

.quote__item_v2 {
  position: relative;
  z-index: 1;
}

.quote__item_v2 ._count {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid #550266;
  color: #550266;
  margin: 0 auto;
  position: relative;
}

.quote__item_v2 small {
  position: absolute;
  width: 150px;
  left: calc(50% - 75px);
  top: 45px;
  text-align: center;
}

.quote__item_v2.active ._count {
  background: #FF784F;
  border-color: #FF784F;
  color: #FF784F;
}

.quote__item_v2.active ._count::after {
  position: absolute;
  content: "✔";
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.quote__item_v2.pending ._count {
  background: #550266;
  color: #fff;
  border-color: #550266;
}

.quote__item_v2_line {
  width: 100%;
  position: relative;
  z-index: 1;
}

.quote__item_v2_line::after {
  position: absolute;
  height: 16px;
  top: 12px;
  left: 0;
  content: '';
  border-radius: 30px;
  background: linear-gradient(90deg, #ff784f 0%, #feaf48 100%);
}

.quote__item_v2_line.active::after {
  width: 100%;
}

.quote__item_v2_line.pending::after {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .quote__steps_v2 {
    grid-template-columns: 45px 1fr 45px 1fr 45px 1fr 45px;
  }

  .quote__item_v2 ._count {
    height: 25px;
    width: 25px;
    font-size: 12px;
  }

  .quote__item_v2_line::after {
    height: 12px;
    top: 7px;
  }

  .quote__item_v2 small {
    top: 30px;
  }
}

@media screen and (max-width: 450px) {
  .quote__steps_v2 {
    grid-template-columns: 35px 1fr 35px 1fr 35px 1fr 35px;
  }

  .quote__item_v2 small {
    width: 100px;
    display: none;
    font-size: 12px;
    top: 30px;
  }

  .quote__item_v2.active small {
    display: block;
    left: calc(50% - 50px);
  }
}