.headerEvaluation {
  padding: 25px 0px 50px;
  /* position: relative; */
}

.headerEvaluation .container {
  position: relative;
}

.backBtn {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #DBDDF4;
  border-radius: 100%;
  top: 8px;
  left: 0px;
  padding: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.backBtn:hover img{
  transform: scale(1.15);
}

.logoEval {
  display: block;
  margin: 0 auto;
  max-width: 90px;
}

.progressStepsWrapper {
  max-width: 1000px;
  margin: 0 auto 50px;
  width: 100%;
  display: none;
}

.allSteps {
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 0px 10px;
}
        #allStepsDsktp {
          display: flex;
        }
    
        #allStepsMob {
          display: none;
        }

.allSteps .singleStep {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  max-width: max-content;
}
.allSteps .singleStep.currentStep .stepLogo {
background: #FF5B2E;
border: 1px solid #FF5B2E;
}
.allSteps .singleStep.currentStep .stepLogo img{
filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(0%) hue-rotate(30deg) brightness(103%) contrast(101%);
}
.allSteps .singleStep.currentStep .stepText {
color: #FF5B2E;
}
.allSteps .singleStep.completedStep .stepLogo {
background: #2BD376;
border: 1px solid #2BD376;
position: relative;
}
.allSteps .singleStep.completedStep .stepLogo img {
display: none;
}
.allSteps .singleStep.completedStep .stepLogo::before {
content: url(../images/steps/completedStep.svg);
position: absolute;
    top: 54%;
      left: 46%;
transform: translate(-50%, -50%);
}

.allSteps .singleStep .stepLogo {
  background: transparent;
  border: 1px solid #FFE0D7;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.allSteps .singleStep .stepLogo img {
  width: 20px;
  height: 20px;
}

.allSteps .singleStep .stepText {
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 200%;
  color: #6B6E98;
}



/* Steps Bar css */
.stepsBar {
  position: relative;
  width: 100%;
  height: 8px;
  background-color: #FFEEE9;

  overflow: hidden;
  border-radius: 8px;
  margin-top: 20px;
}
.progressBar {
  height: 100%;
  background-color: #FF5B2E;
  width: 0%;
  border-radius: 8px;
  transition: width 0.8s ease-in-out;
  max-width: 99%;
}


/* Progress bar will use dynamic width via JavaScript */

 
/* Responsive design */
@media (max-width: 768px) {
  .allSteps {
    gap: 20px;
    flex-wrap: wrap;
  }

  .allSteps .singleStep {
    flex-direction: column;
    gap: 5px;
  }

  .allSteps .singleStep .stepText {
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .headerEvaluation{
        padding: 25px 0px 30px;
  }
  .progressStepsWrapper{
    margin-bottom: 30px;
  }
  #allStepsDsktp{
    display: none;
  }
  #allStepsMob{
    display: block;
  }
  #allStepsMob .singleStep{
    display: none;
  }
  #allStepsMob .singleStep.currentStep{
        display: flex;
          justify-content: space-between;
          align-items: center;
          flex-direction: row;
          width: 100%;
          max-width: 100%;
  }
    .allSteps{
      padding: 0px;
    }
    .allSteps .singleStep.currentStep .stepText {
        color: #6B6E98;
    }
    .singleStep .stepNo{
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
    color: #6B6E98;
    }
  .stepsBar{
    margin-top: 13px;
  }
  .progressStepsWrapper {
    padding: 0 15px;
  }
  .backBtn {
    left: 15px;
    padding: 4px 0px 0;
    width: 29px;
    height: 29px;
  }
  .backBtn img{
    width: 17px;
    height: 17px;
  }
  .logoEval {
    max-width: 89px;
    width: 100%;
  }
  .logoEval img{
    width: 100%;
    height: 100%;
  }
}