.progress-div {
  max-width: 90%;
  margin: auto;
}

.progress-inner-div {
  display: flex;
  align-items: center;
  max-width: 70%; 
  padding: 0 5%; 
  margin: auto;
}

.line-div {
  flex-grow: 1;
  border-bottom: 2px solid #CECECE;
  margin-top: -40px;
  z-index: -2;
}

@media (max-width: 768px) {
  .progress-inner-div {
    max-width: 100%;
    padding: 0 2%; 
  }
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-label {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
  margin-top: 8px;
  color: #000000;
}

.step.stepPending .step-icon {
  background-color: #CECECE;
}

.step.stepCurrent .step-icon {
  background-color: #527CDC;
}

.step.stepCompleted .step-icon {
  background-color: #2BCA3C;
}

.line-div.greenClr{
  border-bottom: 2px solid #2BCA3C;  
}

.line-div.blueClr{
  border-bottom: 2px solid #527CDC;  
}

.btn-disabled{
  background-color: #EFEFEF;
  color: #8A8A8A;
}

.btn-disabled:hover {
  background-color: #EFEFEF !important;
  color: #8A8A8A !important;
  pointer-events: none;
}

@media  (max-width:480px) {
  .step-label{
    font-size: 10px;
    line-height: 12px
  }
  .awc-heading{
    font-size: 22px;
  }
  .awc-description{
    font-size: 11px;
  }
  .line-div{
    margin-top: -30px !important;
  }
}