.ohke-wizard {
  display: flex
}
.ohke-wizard > div{
  padding: 10px 0;
}
.ohke-wizard > ul {
  list-style-type: none;
  padding: 12px 0;
  margin: 0;
  display: flex;
  flex: 1
}
.ohke-wizard li {
  flex: 1;
  position: relative;
}
.ohke-wizard .bar:before, .ohke-wizard .bar:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  width: 50%;
  height: 2px;
  background: #dce3e9;
}
.ohke-wizard .bar:before {
  left: 0;
}
.ohke-wizard .bar:after {
  right: 0;
}
.ohke-wizard .done .bar:before, .ohke-wizard .active .bar:before, .ohke-wizard .done .bar:after {
  background: var(--light-color) !important;
}
.ohke-wizard .icon {
  position: relative;
  left: calc(50% - 10px);
  width: 20px;
  height: 20px;
}
.ohke-wizard .outer {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--light-color);
}
.ohke-wizard .active .outer {
  width: 24px;
  height: 24px;
  background: var(--light-trans-color) !important;
}
.ohke-wizard .future .outer {
  background: none;
}
.ohke-wizard .future .inner {
  background: #dce3e9 !important;
}
.ohke-wizard .future .inner div {
  color: #252a31 !important;
}
.ohke-wizard .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--light-color);
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 2px;
}
.ohke-wizard .inner div {
  font-family: "Circular Pro", -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 16px;
  margin: 0;
}
.ohke-wizard .button {
  font-family: "Circular Pro", -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #252a31;
  line-height: 16px;
  text-align: center;
  padding: 6px 6px 0;
}
.ohke-wizard .active .button {
  font-weight: 700;
  color: #252a31;
  color: #00ad40;  
}
.wizard-back-btn, .wizard-reset-btn {
  margin-right: 6px !important;
}
.wizard-next-btn, .wizard-finish-btn {
  margin-left: 6px !important;
}