.wizard {
  display: none;
  position: absolute;
  background-color: rgba(85, 85, 85, 0.6);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 20px;
  overflow: auto;
}
@media only screen and (max-width: 480px) {
  .wizard {
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .wizard {
    padding-top: 64px;
  }
}
.wizard .panel {
  position: relative;
}
.wizard-header-close-button {
  float: right;
  background: none;
  border: none;
}
.wizard-header-close-icon {
  width: inherit !important;
  height: inherit !important;
  position: relative !important;
  padding-top: 0 !important;
}
.wizard-body-progressbar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.wizard-body-progressbar .bar-item {
  width: 340px;
  flex-grow: 1;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .wizard-body-progressbar .bar-item {
    width: 100px;
  }
  .wizard-body-progressbar .bar-item:not(:first-child):before {
    content: " ";
    display: block;
    height: 5px;
    width: 80%;
    position: relative;
    top: 36%;
    right: 41.5%;
  }
}
.wizard-body-progressbar .bar-item:not(:first-child):before,
.wizard-body-progressbar .bar-item .counter {
  background-color: #bfbfbf;
  transition: 0.5s;
}
.wizard-body-progressbar .bar-item .counter {
  float: none;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14pt;
}
.wizard-body-progressbar .bar-item .title {
  font-weight: normal;
}
.wizard-body-progressbar .bar-item.blue:before,
.wizard-body-progressbar .bar-item.blue .counter {
  background-color: #85d0e7;
}
.wizard-body-progressbar .bar-item.blue .title {
  font-weight: bold;
}
.wizard-body-progressbar .bar-item.green:before,
.wizard-body-progressbar .bar-item.green .counter {
  background-color: #00af00;
}
.wizard-body-progressbar .bar-item.red:before,
.wizard-body-progressbar .bar-item.red .counter {
  background-color: #d9534f;
}
.wizard-body {
  border-top: #ccc solid 1px;
  padding-top: 20px;
}
.wizard-foot .fa-spinner {
  padding: 0;
  margin-left: 5px;
}
.wizard_root {
  display: none;
}
