.multistep-form-wrapper-all {
  text-align: center;
  position: relative;
  margin-top: 30px;
}

.multistep-form {
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 1em;
  flex-wrap: nowrap;
}

.multistep-form .multistep-item {
  display: flex;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin: 15px 1px;
  border: 1px solid #00376e;
}

.multistep-form .multistep-item.active:hover {
  color: #FFF;
}

.multistep-form .multistep-item:hover {
  background-color: #00376e;
  color: white;
}

.multistep-form .multistep-item.active {
  background-color: #00376e;
  color: white;
}

.multistep-page-wrapper {
  min-height: 540px;
}

.multistep-page {
  background: white;
  border: 0 none;
  border-radius: 0px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  /*stacking fieldsets above each other*/
  position: relative;
}

#multistepForm .multistep-page {
  display:none;
}

#multistepForm .active.multistep-page {
  display:block;
}

.form-help-text {
  margin-top:-10px;
}

/* validation styles */
#multistepForm input.input-error {
  border-color: red;
}

#multistepForm p.remainingChar {
  display:none;
  color:red;
}

#multistepForm .input-error-message {
  display:none;
  color:red;
}

.multistep-page.active {
  position:relative;
}

#multistepForm {
  min-height:800px;
}
