.wdm-ondc-onboarding-wrap{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: #f1f1f1;
}
.wdm-ondc-onboarding-header{
    text-align: center;
}
.wdm-ondc-onboarding-content{
    width: 50%;
    background: #fff;
    padding: 20px;
    margin-top: 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.wdm-ondc-progress-bar-container{
  display: flex;
  justify-content: center;
}
.wdm-ondc-progress{
    counter-reset: step;
    width: 80%;
  }
  .wdm-ondc-progress li{
    list-style-type: none;
    width: 10%;
    float: left;
    font-size: 12px;
    position: relative;
    /* text-align: center; */
  }
  .wdm-ondc-progress li:before{
    content: counter(step);
    width: 20px;
    height: 20px;
    line-height: 20px;
    counter-increment: step;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: block;
    text-align: center;
    margin: 0 0 10px 0;
  }
  
  .wdm-ondc-progress li:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ddd;
    top: 10px;
    left: -100%;
    z-index: -1;
  }
  .wdm-ondc-progress li:first-child:after{
    content: none;
  }
  .wdm-ondc-progress li.active{
    color: green;
  }
  .wdm-ondc-progress li.active:before{
    border-color: green;
    background-color: green;
    color: white;
  }
  .wdm-ondc-progress li.active::after{
    background-color: green;
  }
  .wdm-ondc-progress li.in-progress:before{
    background-color: #d6d6d6;
  }
  .wdm-ondc-progress li.in-progress::after{
    background-color: green;
  }
  .ondc-categories select,
  .ondc-sub-categories select{
    width: 100%;
    margin: 10px 0;
  }
  .ondc-sub-categories{
    display: none;
  }