.multistep_form {
    width: 85%;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    /* padding: 50px 35px 10px 35px; */
    margin: auto;
    border-radius: 10px;
    box-shadow: 12px 12px 40px 0px rgb(0 0 0 / 6%);
    overflow: hidden;
  }
  .multistep_form header {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 30px 0;
  }
  .multistep_form .form-outer {
    width: 100%;
    /* overflow: hidden; */
  }
  .multistep_form .form-outer form {
    display: flex;
    width: 300%;
  }
  .multistep_form .form-outer form .page {
    width: 33.33%;
    transition: margin-left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .multistep_form .form-card{
    padding: 50px;
    /* max-height: 410px;
    overflow-y: auto; */
    padding-top: 0px;
    margin-top: 40px;
  }
  .multistep_form .form-outer form .page .title {
    text-align: left;
    font-size: 25px;
    font-weight: 500;
  }
  .multistep_form .form-outer form .page .field > div {
    /* width: 330px;
    height: 45px;
    margin: 45px 0; */
    display: flex;
    position: relative;
    justify-content: end;
  }
  .multistep_form .form-outer form .page .field > div button {
    width: max-content;
  }
  .multistep_form form .page .field .label {
    position: absolute;
    top: -30px;
    font-weight: 500;
  }
  .multistep_form form .page .field input {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding-left: 15px;
    font-size: 18px;
  }
  .multistep_form form .page .field select {
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
  }
  .multistep_form form .page .field button {
    /* width: 100%;
    height: calc(100% + 5px); */
    border: none;
    /* background: #d33f8d;
    margin-top: -20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase; */
    transition: 0.5s ease;
  }
  .multistep_form .form_buttons_div{
    border-top: 1px solid #F2F2F2;
  }
  /* .multistep_form form .page .btns button {
    margin-top: -20px!important;
  } */
  .multistep_form form .page .btns button.prev {
    margin-right: 16px;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    background-color: transparent;
    border: 1px solid #CFD6DC;
    border-radius: 8px;
  }
  .multistep_form form .page .btns button.next {
    margin-left: 3px;
  }
  .multistep_form .progress-bar {
    display: flex;
    /* margin: 40px 0; */
    padding: 50px;
    padding-bottom: 0px;
    user-select: none;
    flex-direction: row;
    background-color: transparent;
  }
  .multistep_form .progress-bar .step {
    text-align: center;
    width: 100%;
    position: relative;
  }
  .multistep_form .progress-bar .step p {
    font-weight: 500;
    font-size: 18px;
    color: #757B8A;
    margin-bottom: 8px;
  }
  .multistep_form .progress-bar .step .bullet.active + p{
    color: var(--primary-color);
  }
  .multistep_form .progress-bar .step .bullet.active p{
    color: var(--primary-color);
  }
  .multistep_form .progress-bar .step .bullet {
    height: 25px;
    width: 25px;
    border: 2px solid #CFD6DC;
    display: inline-block;
    border-radius: 50%;
    /* position: relative; */
    position: unset;
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    cursor: pointer;
  }
  .multistep_form .progress-bar .step .bullet.active {
    border-color: var(--primary-color);
    background: transparent;
  }
  .multistep_form .progress-bar .step .bullet span {
    position: absolute;
    transform: translateX(-50%);
    width: 11px;
    height: 11px;
    background: transparent;
    top: 7px;
    border-radius: 50px;
  }
  .multistep_form .progress-bar .step .bullet.active span {
    background: var(--primary-color);
  }
  /* .multistep_form .progress-bar .step .bullet.active span {
    display: none;
  } */
  .multistep_form .progress-bar .step .bullet:before,
  .multistep_form .progress-bar .step .bullet:after {
    /* position: absolute;
    content: '';
    bottom: 11px;
    right: -50%;
    height: 3px;
    width: 100%;
    background: #262626; */

    position: absolute;
    content: '';
    top: 11px;
    right: -40%;
    height: 2px;
    width: 80%;
    background: #CFD6DC;
  }
  .multistep_form .progress-bar .step .bullet.active:after {
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 0.3s linear forwards;
  }
  @keyframes animate {
    100% {
      transform: scaleX(1);
    }
  }
  .multistep_form .progress-bar .step:last-child .bullet:before,
  .multistep_form .progress-bar .step:last-child .bullet:after {
    display: none;
  }
  .multistep_form .progress-bar .step p.active {
    color: #d43f8d;
    transition: 0.2s linear;
  }
  .multistep_form .progress-bar .step .check {
    position: absolute;
    left: 50%;
    top: 70%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
  }
  .multistep_form .progress-bar .step .check.active {
    display: block;
    color: #fff;
  }

  /* bullet requirement */

  .multistep_form .progress-bar .step:first-child .bullet, .progress_dot_border{
    border-color: var(--primary-color) !important;
  }


  /* multiselect tree dropdown start */
  .tree-multi-select .dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .tree-multi-select .dropdown-btn {
    cursor: pointer;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #CFD6DC;
  }
  .tree-multi-select .dropdown-btn:after{
    content: "\f078";
    font-family: FontAwesome;
    right: 14px;
    position: absolute;
    top: 18px;
    font-style: normal;
    font-size: 13px;
    color: var(--black-color);
  }
  .tree-multi-select .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    z-index: 101;
    width: 100%;
    border: 1px solid #CFD6DC;
    border-radius: 8px;
    height: 270px;
    overflow-y: auto;
  }
  .tree-multi-select .dropdown-content.show {
    display: block;
  }
  .tree-multi-select .action-buttons, .tree-multi-select #tree-container {
    padding: 10px;
  }
  .tree-multi-select .action-buttons {
    text-align: right;
  //  padding-bottom: 0px;
	position: sticky;
    top: 0;
    z-index: 100;
	background-color: white;
  } 
  .tree-multi-select .action-buttons .selection-btn{
    border: 0px;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    background-color: #eee;
  } 
  /* Move checkboxes to the right side */
  .jstree-anchor > .jstree-checkbox {
    margin-left: 10px;
    float: right;
  }
  .jstree-icon.jstree-themeicon{
    display: none;
  }
  .jstree-default .jstree-anchor {
    /* padding: 10px 24px; */
    padding: 10px 24px 10px 0px;
    height: unset;
    line-height: unset;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.jstree-default .jstree-node, .jstree-default .jstree-ocl{
  background-image: unset;
  /* width: unset !important;
  height: unset !important; */
}
/* .jstree-default .jstree-ocl{
  display: none;
} */
.jstree-default .jstree-node{
  margin-left: 0px;
  position: relative;
  padding-left: 40px;
}
.jstree-default .jstree-leaf{
  margin-left: 0px;
  position: relative;
  padding-left: 20px;
}
/* .jstree-container-ul > li > .jstree-children{
  margin-left: 20px;
  border-left: 1px dashed rgb(203 204 204);
} */

/* checkbox */
.jstree-default .jstree-anchor .jstree-icon{
    position: relative;
}
/* .jstree-default .jstree-anchor[aria-selected="false"] .jstree-icon{ */
.jstree-default .jstree-anchor .jstree-icon{
    background: unset;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.jstree-default .jstree-anchor .jstree-icon.jstree-undetermined:before{
  /* border: 1px solid var(--primary-color); */
    content: "\f146";
    font-family: FontAwesome;
    left: 0px;
    position: absolute;
    top: 0;
    font-style: normal;
    font-size: 26px;
    color: var(--primary-color);
}

.jstree-default .jstree-anchor[aria-selected="true"] .jstree-icon{
  background-image: unset;
}
.jstree-default .jstree-anchor.jstree-clicked > .jstree-icon:after, .jstree-default .jstree-anchor.jstree-clicked + ul li .jstree-icon:after{
  content: "\f14a";
  font-family: FontAwesome;
  left: 0px;
  position: absolute;
  top: 0;
  font-style: normal;
  font-size: 26px;
  color: var(--primary-color);
}

.jstree-default .jstree-ocl{
    position: absolute;
    top: 10px;
    left: 5px;
}
.jstree-default > .jstree-container-ul > li.jstree-closed .jstree-ocl::after{
    content: "\2b";
    font-family: FontAwesome;
    left: 0px;
    position: absolute;
    top: 0;
    font-style: normal;
    font-size: 20px;
    color: var(--primary-color);
    width: 30px;
}
.jstree-default > .jstree-container-ul > li.jstree-open .jstree-ocl::after{
    content: "\f068";
    font-family: FontAwesome;
    left: 0px;
    position: absolute;
    top: 0;
    font-style: normal;
    font-size: 20px;
    color: var(--primary-color);
    width: 30px;
}
.jstree-default > .jstree-container-ul .jstree-children .jstree-ocl{
    display: none;
}

.jstree-default>.jstree-container-ul>.jstree-node > i {
  width: 50px;
    height: 40px;
}
  /* multiselect tree dropdown end */



  /* sign-up modal start*/
  #signup_form_popup .multistep_form{
    width: 100%;
    box-shadow: none;
  }
  /* sign-up modal end*/
  
 