#divWizardModal hr {
  box-sizing: border-box;
}
#divWizardModal .modal-dialog {
  height: calc(100% - 80px);
  width: 900px;
  max-width: calc(100% - 20px);
}
#divWizardModal .modal-header {
  min-height: 90px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #1a5a88;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#divWizardModal .modal-header #wizardTitle {
  margin: 5px 0px;
  color: #e5eff7;
}
#divWizardModal .modal-header #wizardSubtitle {
  color: #e5eff7;
  margin-bottom: 5px;
}
#divWizardModal .modal-header #btnWizardClose {
  position: absolute;
  top: 15px;
  right: 20px;
  background-color: transparent;
  border: none;
  color: #c7e2f7;
  padding: 0px;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 20px;
}
#divWizardModal .modal-subheader {
  display: flex;
  background-color: whitesmoke;
  overflow-x: auto;
  overflow-y: hidden;
  max-height: 0px;
  transition: max-height 1s;
}
#divWizardModal .modal-subheader .wizard-step-info {
  opacity: 0;
  transition: opacity 0.5s;
}
#divWizardModal .modal-subheader.active {
  max-height: 200px;
  padding: 10px;
}
#divWizardModal .modal-subheader.active .wizard-step-info {
  opacity: 1;
}
#divWizardModal .modal-subheader:empty {
  display: none;
}
#divWizardModal .wizard-step-info {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}
#divWizardModal .wizard-step-info .wizard-step-property {
  display: block;
}
#divWizardModal .wizard-step-info:not(:last-child) {
  margin-right: 25px;
  padding-right: 25px;
  border-right: solid 1px #e0dada;
}
#divWizardModal .modal-content {
  height: 100%;
}
#divWizardModal .wizard-modal-form {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#divWizardModal .modal-body {
  flex-grow: 1;
  overflow-y: auto;
}
#divWizardModal .modal-footer {
  position: relative;
  background-color: #f3f0f0;
}
#divWizardModal .modal-footer #wizardStepCounter {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  color: #8e8e8e;
  top: 20px;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
}
#divWizardModal .btn-primary {
  background-color: #1a5a88;
}
#divWizardModal .wizard-step {
  display: none;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s;
}
#divWizardModal .wizard-step.active {
  display: flex;
}
#divWizardModal .wizard-step.loading {
  opacity: 0;
}
#divWizardModal .wizard-form {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  align-content: baseline;
}
#divWizardModal .wizard-form > div {
  width: 33%;
  margin-right: 20px;
  margin-bottom: 20px;
}
#divWizardModal .wizard-form hr {
  width: 100%;
  border-color: #ececec;
}
#divWizardModal .wizard-form label:not(.checkbox) {
  width: 100%;
  color: #353535;
  font-weight: bold;
}
#divWizardModal .wizard-form .bootstrap-select {
  width: 100%;
}
#divWizardModal .wiz-checkbox {
  display: flex;
  align-items: center;
  padding: 10px 0px 5px 0px;
  border-bottom: solid 1px gainsboro;
}
#divWizardModal .wiz-checkbox input {
  position: relative;
  margin: 0;
  height: inherit;
  width: inherit;
  opacity: inherit;
}
#divWizardModal .wiz-checkbox label {
  padding: 0 0 0 20px;
}
#divWizardModal .checkbox.indented {
  margin-left: 16px;
}
#divWizardModal .checkbox:hover {
  background-color: whitesmoke;
}

.btn-wizard {
  background-color: var(--primary-color-500);
  min-width: 140px;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  color: #f7f8ff;
  border: solid 1px var(--primary-color-700);
  border-radius: 5px;
  margin-right: 20px;
}

.btn-wizard:hover {
  background-color: var(--primary-color-700);
}/*# sourceMappingURL=wizard.css.map */