.progress-line-container li{
 position: relative;
 z-index: 1;
}
.progress-line-container li:before{
  content: '';
  position: absolute;
  width: 141%;
  height: 5px;
  background: #F2FFED;
  right: -110px;
  top: 25%;
  z-index: -1;
}
.progress-line-container li.done:before{
  background: #93d500;
}
.progress-line-container li:nth-last-child(1):before{
	display: none;
}
.apply-progress-line-icon-container.active img{
	filter: brightness(100);
}
select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-field-icon{
	pointer-events: none;
}
@media (max-width: 999px){
.progress-line-container li:before{
  right: -50px;
  top: 34%;
}
}
@media (max-width: 479px){
  .progress-line-container{
    flex-flow: row;
    gap: 0;
    width: 100%;
    justify-content: space-around !important;
  }
}