/* Wizard */

.wizard {
  display: block;
  width: 100%;
  overflow: hidden;
}

.wizard a {
  outline: 0;
}

/* ========== steps ========== */

.wizard > .steps {
  position: relative;
  display: block;
  width: 100%;
}

.wizard > .steps .current-info {
  position: absolute;
  left: -999em;
}

.wizard > .steps .number {
  font-size: 14px;
}

.wizard > .steps > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wizard > .steps > ul > li {
  float: left;
  width: 25%;
  text-align: center;
}

@media (max-width: 767px) {
  .wizard > .steps > ul > li {
    width: 50%;
  }
}

.wizard > .steps a {
  display: block;
  margin: 0 0.5em 0.5em;
  padding: 1em;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}

/* disabled */
.wizard > .steps .disabled a {
  background: #f5f5f5;
  color: #999;
  cursor: default;
}

/* current */
.wizard > .steps .current a {
  background: #007bff;
  color: #fff;
  cursor: default;
}

/* done */
.wizard > .steps .done a {
  background: #66b0ff;
  color: #fff;
}

/* error */
.wizard > .steps .error a {
  background: #dc3545;
  color: #fff;
}

/* ========== content ========== */

.wizard > .content {
  background: #fff;
  margin: 0.5em;
  min-height: 24em;
  position: relative;
  overflow: auto;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
}

.wizard > .content > .title {
  position: absolute;
  left: -999em;
}

.wizard > .content > .body {
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%;
}

.wizard > .content > .body ul {
  list-style: disc;
}

.wizard > .content > .body iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.wizard > .content > .body input {
  display: block;
  border: 1px solid #e0e0e0;
}

.wizard > .content > .body input[type="checkbox"] {
  display: inline-block;
}

.wizard > .content > .body input.error {
  background: #fbe3e4;
  border-color: #f5a5ab;
  color: #dc3545;
}

.wizard > .content > .body label {
  display: inline-block;
  margin-bottom: 0.5em;
}

.wizard > .content > .body label.error {
  color: #dc3545;
  margin-left: 1.5em;
}

/* ========== actions ========== */

.wizard > .actions {
  padding-top: 20px;
  text-align: right;
}

.wizard > .actions > ul {
  display: inline-block;
}

.wizard > .actions > ul > li {
  float: left;
  margin: 0 0.5em;
}

.wizard > .actions a {
  display: inline-block;
  padding: 0.5em 1em;
  background: #007bff;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.wizard > .actions .disabled a {
  background: #6c757d;
}

/* ========== vertical ========== */

.wizard.vertical > .steps {
  float: left;
  width: 30%;
}

@media (max-width: 767px) {
  .wizard.vertical > .steps {
    width: 42%;
  }
}

.wizard.vertical > .steps > ul > li {
  float: none;
  width: 100%;
  text-align: left;
}

.wizard.vertical > .content {
  float: left;
  width: 65%;
  margin: 0 2.5% 0.5em;
}

@media (max-width: 767px) {
  .wizard.vertical > .content {
    width: 52%;
  }
}

.wizard.vertical > .actions {
  float: right;
  width: 95%;
  margin: 0 2.5%;
}

@media (max-width: 767px) {
  .wizard.vertical > .actions {
    width: 100%;
    margin: 0;
  }
}
.clearfix ul li::marker {
  content: none;
}
