.step-app>.step-steps {
  /* margin: 0;
  padding: 0;
  display: flex;
  border-radius: 3px 3px 0 0;
  overflow: hidden; */
}

.step-app>.step-steps>li a {
  list-style: none;
  /* flex: 1; */
  cursor: pointer;
  /* display: block;
  padding: 10px;
  color: #333;
  background-color: #e5e5e5;
  text-decoration: none;
  border-right: 1px solid #fff; */
}

/* .step-app>.step-steps>li:hover {
  background-color: #ddd;
} */

.step-app>.step-steps>li:last-child a {
  border: none;
}

.step-app>.step-steps>li.active a span {
  background-color: #4361ee;
  color: #fff;
}

.step-app>.step-steps>li.active a div.label {
  color: #4361ee !important;
}

.step-app>.step-steps>li.error a span {
  background-color: #f00;
  color: #fff;
}

.step-app>.step-steps>li.error a div.label {
  color: #f00 !important;
}

.step-app>.step-steps>li.error:after {
  background-color: #f00;
}

.step-app>.step-steps>li.done:after {
  background-color: #8bd40c;
}

.step-app>.step-steps>li:after {
  background-color: #dee2e6;
}


.step-app>.step-steps>li.done a span {
  background-color: #8bd40c;
  color: #fff;
}

.step-app>.step-steps>li.done a div.label {
  color: #8bd40c;
}

.step-app>.step-steps>li>.number {
  background: #fff;
  padding: 0 8px;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  border-radius: 3px;
  color: #333;
}

.step-app>.step-content {
  border: 1px solid #e5e5e5;
  padding: 10px;
  border-radius: 10px;

  /* border-top: 0; */
}

/* .step-app>.step-content>.step-tab-panel {
  display: none;
}

.step-app>.step-content>.step-tab-panel.active {
  display: block;
} */

.step-app>.step-footer {
  margin-top: 15px;
  margin-bottom: 15px;
}

.step-app>.step-footer>.step-btn {
  padding: 4px 16px;
  color: #333;
  text-decoration: none;
  /* background: #e5e5e5; */
  border-radius: 3px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 10px;
}




/*# sourceMappingURL=jquery-steps.css.map */


ul.form-stepper {
  counter-reset: section;
  margin-bottom: 3rem;
}

ul.form-stepper .form-stepper-circle {
  position: relative;
}

ul.form-stepper .form-stepper-circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.form-stepper-horizontal {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

ul.form-stepper>li:not(:last-of-type) {
  margin-bottom: 0.625rem;
  -webkit-transition: margin-bottom 0.4s;
  -o-transition: margin-bottom 0.4s;
  transition: margin-bottom 0.4s;
}

.form-stepper-horizontal>li:not(:last-of-type) {
  margin-bottom: 0 !important;
}

.form-stepper-horizontal li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.form-stepper-horizontal li:not(:last-child):after {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  content: "";
  top: 32%;
}

.form-stepper-horizontal li:after {
  background-color: #dee2e6;
}

.form-stepper-horizontal li.form-stepper-completed:after {
  background-color: #4da3ff;
}

.form-stepper-horizontal li:last-child {
  flex: unset;
}

ul.form-stepper li a .form-stepper-circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 0;
  line-height: 1.7rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.38);
  border-radius: 50%;
}

.form-stepper .form-stepper-active .form-stepper-circle {
  background-color: #4361ee;
  color: #fff;
}

.form-stepper .form-stepper-active .label {
  color: #4361ee;
}

/* .form-stepper .form-stepper-active .form-stepper-circle:hover {
  background-color: #4361ee !important;
  color: #fff !important;
} */

.form-stepper .form-stepper-unfinished .form-stepper-circle {
  background-color: #f8f7ff;
}

.form-stepper .form-stepper-completed .form-stepper-circle {
  background-color: #0e9594 !important;
  color: #fff;
}

.form-stepper .form-stepper-completed .label {
  color: #0e9594 !important;
}

.form-stepper .form-stepper-completed .form-stepper-circle:hover {
  background-color: #0e9594 !important;
  color: #fff !important;
}

.form-stepper .form-stepper-active span.text-muted {
  color: #fff !important;
}

.form-stepper .form-stepper-completed span.text-muted {
  color: #fff !important;
}

.form-stepper .label {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-stepper a {
  cursor: default;
}