#fuelux-wizard {
  margin-top: 60px;
}

.wizard-steps {
  position: relative;
  left: -40px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 60px 0 0;
  list-style: none;
}

.wizard-steps li {
  float: left;
  display: block;
  min-width: 33%;
  max-width: 33%;
  text-align: center;
}

.wizard-steps li::before {
  position: relative;
  top: 12px;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  font-size: 0;
  content: '';
  border-top: 3px solid #e5e8ed;
}

.wizard-steps li:first-child::before {
  left: 50%;
  max-width: 50%;
}

.wizard-steps li:last-child::before {
  width: 50%;
  max-width: 50%;
}

.wizard-steps li.active::before,
.wizard-steps li.complete::before,
.wizard-steps li.active .step,
.wizard-steps li.complete .step {
  font-weight: bold;
  color: #34a0ed;
  background-color: #f2f7fb;
  border-color: #cbdeee;
  box-shadow: inset 0 0 1px 2px #fff;
}

.wizard-steps li .step {
  position: relative;
  z-index: 2;
  display: inline;
  padding: 7px 15px;
  font-size: 19px;
  line-height: 12px;
  color: #d8dce6;
  text-align: center;
  background-color: #fff;
  border: 2px solid #e5e8ed;
  border-radius: 32px;
}

.wizard-steps li.complete .title,
.wizard-steps li.active .title {
  color: #2b3d53;
}

.wizard-steps li.active .title {
  font-size: 15px;
  font-weight: bold;
}

.wizard-steps li .title {
  position: relative;
  top: -55px;
  z-index: 104;
  display: block;
  max-width: 100%;
  font-size: 13px;
  line-height: 15px;
  color: #b1bcc5;
  text-align: center;
  word-wrap: break-word;
  table-layout: fixed;
}

/* step content */
.step-content {
  margin-top: 40px;
}

.step-content .step-pane {
  display: none;
  min-height: 267px;
}

.step-content .active {
  display: block;
}

/* step forms */
.form-wrapper .field-box {
  float: left;
  width: 100%;
  margin-bottom: 25px;
  margin-left: 0;
}

.form-wrapper .field-sub-box {
  float: left;
}

.form-wrapper .field-box:last-child {
  margin-bottom: 0;
}

.form-wrapper label {
  position: relative;
  top: 2px;
  float: left;
  display: inline-block;
  width: 120px;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  cursor: auto;
}

.form-wrapper input[type='text'],
select.form-control,
.form-wrapper input[type='file'],
.form-wrapper textarea {
  width: 400px;
  font-size: 13px;
}

.form-wrapper .description {
  width: 400px;
  margin-top: 5px;
}

.form-wrapper.payment-info label {
  width: 150px;
}

.form-wrapper .alert-msg {
  display: block;
  margin-top: 10px;
  margin-bottom: -4px;
  margin-left: 120px;
}

.form-wrapper .alert-msg i {
  font-size: 14px;
}

/*** Form states ***/
.form-wrapper .field-box {
  /* error */

  /* success */
}

.form-wrapper .field-box.error label,
.form-wrapper .field-box.error .alert-msg {
  color: #c73939;
}

.form-wrapper .field-box.error input {
  border-color: #c73939;
}

.form-wrapper .field-box.success label,
.form-wrapper .field-box.success .alert-msg {
  color: #379e48;
}

.form-wrapper .field-box.success input {
  border-color: #379e48;
}

/* actions */
.wizard-actions {
  float: right;
  margin-top: 30px;
  margin-right: 130px;
}

.wizard-actions .btn-next {
  margin-left: 15px;
}

.wizard-actions .btn-finish {
  display: none;
  margin-left: 15px;
}

/* responsive */
@media (width <= 979px) {
  .step-content {
    margin-left: 0;
  }
}

@media (width <= 600px) {
  .wizard-steps {
    left: 0;
  }

  .form-wrapper input[type='text'],
  .form-wrapper textarea {
    width: 200px;
  }
}
