.stepper {
  width: 100%;
  display: flex;
  position: relative;
  min-height: 100%;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.stepper.full {
  min-height: calc(100vh - 64px);
}
.stepper.full-inner {
  min-height: calc(100vh - 64px - 100px);
}
.stepper:before, .stepper:after {
  display: block;
  height: 50px;
  width: 100%;
  content: '';
  flex-grow: 1;
  box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
}
.stepper .back {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 7px;
  left: -44px;
  color: rgba(0, 0, 0, 0.54);
  display: none;
}
.stepper .step-wrapper {
  width: 400px;
  margin: 0 calc(50% - 200px);
  position: relative;
}
.stepper .step {
  width: 100%;
  transition: transform .125s ease-in-out;
  display: none;
}
.stepper .step.slide-out-left {
  transform: translateX(-100%);
}
.stepper .step.slide-out-right {
  transform: translateX(100%);
}
.stepper .step h1 {
  font-weight: 400;
  font-size: 28px;
  text-align: left;
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
}
.stepper .step h2 {
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  margin: 20px 0 0 0;
  color: rgba(0, 0, 0, 0.82);
}
.stepper .step h3 {
  font-weight: 500;
  font-size: 18px;
  text-align: left;
  margin: 10px 0 0 0;
  color: rgba(0, 0, 0, 0.54);
}
.stepper .step p {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.54);
  margin: 10px 0;
  font-size: 16px;
  text-align: left;
}
.stepper .step p.info {
  color: rgba(0, 0, 0, 0.54);
  font-style: italic;
  font-size: 14px;
}
.stepper .step p a {
  color: #5c6bc0;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.stepper .button-wrapper {
  display: flex;
  margin: 50px 0 0 0;
}
.stepper .button-wrapper.center {
  justify-content: center;
}
.stepper .button-wrapper.left {
  justify-content: flex-start;
}
.stepper .button-wrapper.right {
  justify-content: flex-end;
}
.stepper .button-info-wrapper {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.54);
  font-weight: 400;
  margin: 6px 0 0 0;
}
.stepper .button-info-wrapper.center {
  text-align: center;
}
.stepper .button-info-wrapper.left {
  text-align: left;
}
.stepper .button-info-wrapper.right {
  text-align: right;
}
.stepper .step .step-buttons {
  margin: 50px 0 0 0;
  display: flex;
  justify-content: flex-end;
}
.stepper .step .step-buttons-description {
  font-weight: 400;
  font-size: 12px;
  text-align: right;
  color: rgba(0, 0, 0, 0.54);
  margin: 10px 0 0 0;
}