

#multistepsform {

  margin: 50px auto;
  text-align: center;
  position: relative;
}
#multistepsform fieldset {
  border: 0 none;
  box-sizing: border-box;
  position: relative;
}
#multistepsform h2.wdywtj{
    font-weight: 400;
}
#multistepsform h2.wdywtj span{
    font-weight: 700;
}
#multistepsform fieldset:not(:first-of-type) {
  display: none;
}
#multistepsform .form-control , #multistepsform .form-select {
    padding: 1.1rem 2rem;
    color: #ffffff;
    background-color: #1E1E1E;
    border: 0px solid #ced4da;
    border-radius: 1.25rem !important;
}
#multistepsform .form-select, #multistepsform .form-select option{
    font-size: 20px;
}

#multistepsform input,
#multistepsform textarea {
background-color: #1E1E1E;
  border-radius: 20px;
  width: 100%;
  box-sizing: border-box;
    border: 0 none;
}
#multistepsform input:focus,
#multistepsform textarea:focus {
  outline: none;
  color: #637373;
}
#multistepsform .action-button {
  width: 210px;
    height: 60px;
    font-style: var(--lato);
    color: #fff;
    font-size: 20px;
    line-height: 29px;
    background-color: var(--primary-dark);
    box-shadow: 0px 4px 20px rgb(0 0 0 / 25%);
    border-radius: 20px;
}

#multistepsform .action-button:hover,
#multistepsform .action-button:focus {
  box-shadow: 0 0 0 2px #f08a5d, 0 0 0 3px #ff976;
  color: #fff;
}

#multistepsform #progressbar {
  margin-bottom: 80px;
  overflow: hidden;
  counter-reset: step;
}
#multistepsform #progressbar li {
  list-style-type: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  width: 25%;
  float: left;
  position: relative;
}
#multistepsform #progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 50px;
  line-height: 50px;
  display: block;
  color: #fff;
  font-size: 20px;
  background: #1E1E1E;
  border-radius: 50px;
  margin: 0 auto 5px auto;
}
#multistepsform #progressbar li:after {
  content: "";
  width: 100%;
  height: 14px;
  background: #1E1E1E;
  position: absolute;
  left: -50%;
  top: 18px;
  z-index: -1;
}
#multistepsform #progressbar li:first-child:after {
  content: none;
}
#multistepsform #progressbar li.active {
  color: #fff;
    
}
#multistepsform #progressbar li.active:before, #multistepsform #progressbar li.active:after {
  background: #C6FF00;
  color: black;
}