.hide {
  display: none;
}
.wizard-pane {
  position: absolute;
  opacity: 0;
  top: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.wizard-pane.active {
  position: relative;
  visibility: visible;
  opacity: 1;
}
.wizard-pane.activing {
  visibility: visible;
}
.wizard-content {
  position: relative;
  padding: 0;
  transition: height 0.2s ease;
}
.disabled {
  cursor: not-allowed !important;
}
.wizard-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}
.wizard-steps > li {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  color: #666;
}
.wizard-steps > li:hover {
  color: #333;
}
.wizard-buttons {
  text-align: right;
  margin-top: 20px;
}
.wizard-buttons > a {
  text-transform: uppercase;
}
.wizard-buttons > a {
  margin-left: 15px;
}