.step-app > .step-steps {
  margin: 0 0 1rem 0;
  padding: 0 0 1rem 0;
  display: flex;
  border-radius: 0;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}
.step-app > .step-steps > li {
  list-style: none;
    flex: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
} 
/* .step-app > .step-steps > li {
  list-style: none;
  flex: 1;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: #333;
  background-color: #e5e5e5;
  text-decoration: none;
  border-right: 1px solid #fff;
  box-shadow: 0px 0 0 #000 inset;
  transition: .3s;
} */
/* .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 {

}
.step-app > .step-steps > li.active .number{
  background: #2A5B91;
  color: #fff;
  transition: .3s;
}
.step-app > .step-steps > li.active .bar{
  box-shadow: 300px 0 0 #2A5B91 inset;
  transition: .3s;
}

/* .step-app > .step-steps > li.active {
  background-color: #32c5d2;
  color: #fff;
  box-shadow: 300px 0 0 #000 inset;
  transition: .3s;
} */
/* .step-app > .step-steps > li.error {
  background-color: #e7505a;
  color: #fff;
} */
/* .step-app > .step-steps > li.done {
  background-color: #3cb371;
  color: #fff;
} */
.step-app > .step-steps > li > .number {
  background: #ddd;
  width: 20px;
  min-width: 20px;
  padding: 0;
  font-weight: 600;
  height: 20px;
  display: flex;
  text-align: center;
  margin: 0 5px;
  font-size: 12px;
  border-radius: 100%;
  color: #404040;
  align-items: center;
  justify-content: center;
}
.step-app > .step-steps > li > .bar {
  background: #ddd;
  height: 5px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 0 #2A5B91 inset;
  transition: .3s;
}
.step-app > .step-steps > li:nth-last-child(1) {
  width: auto;
  flex: inherit;
}
.step-app > .step-steps > li:nth-last-child(1) > .number {
  width: 20px;
}
.step-app > .step-steps > li.done .bar{
  box-shadow: 300px 0 0 #3cb371 inset;
  color: var(--text-w);
}
.step-app > .step-steps > li.done .number{
  background-color: #3cb371;
  color: var(--text-w);
}
.step-app > .step-steps > li.error .bar{
  box-shadow: 300px 0 0 #e7505a inset;
  color: var(--text-w);
}
.step-app > .step-steps > li.error .number{
  background-color: #e7505a;
  color: var(--text-w);
}
.step-app > .step-content {
  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 {
    min-height: 80px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column-reverse;
    gap: .6rem;
}
.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;
}
/*# sourceMappingURL=jquery-steps.css.map */