/* Style the form */
.mainMultistepForm {
  /* Style the input fields */
  /* Mark input boxes that gets an error on validation: */
  /* Hide all steps by default: */
  /* Make circles that indicate the steps of the form: */
  /* Mark the active step: */
  /* Mark the steps that are finished and valid: */
}

.mainMultistepForm h1, .mainMultistepForm h2 {
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.mainMultistepForm .steps {
  position: relative;
  min-height: 100px;
}

.mainMultistepForm .steps:after {
  content: " ";
  width: 100%;
  height: 14px;
  background-color: #000;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}

.mainMultistepForm .steps span {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 5;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mainMultistepForm .steps span i {
  position: absolute;
  top: -25px;
  width: 200px;
}

.mainMultistepForm .steps span:nth-child(1) {
  left: -10px;
}

.mainMultistepForm .steps span:nth-child(2) {
  left: 0;
  right: 0;
  margin: auto;
}

.mainMultistepForm .steps span:nth-child(3) {
  right: -10px;
}

.mainMultistepForm .steps .progressbar {
  height: 14px;
  display: block;
  background-color: red;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  -webkit-transition: width ease-in 0.25s;
  transition: width ease-in 0.25s;
}

.mainMultistepForm .tab h3 {
  text-align: left;
  font-weight: bold;
  margin-bottom: 50px;
  font-size: 25px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 2px;
}

.mainMultistepForm .tab .stepContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: auto;
}

.mainMultistepForm .tab .stepContainer .formGroup {
  width: 500px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem 1rem;
}

.mainMultistepForm .tab .stepContainer .formGroup input {
  border-radius: 6px;
  padding: 1em .5rem;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 100%;
}

.mainMultistepForm .tab .stepContainer .formGroup button {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  min-height: 50px;
  padding: 1em .5rem;
  color: #FFF;
  background-color: #bbbbbb;
  text-align: left;
  width: 100%;
  line-height: 35px;
  font-size: 20px;
  border-radius: 6px;
  -webkit-transition: background-color ease-in 0.25s;
  transition: background-color ease-in 0.25s;
  letter-spacing: 2px;
  cursor: pointer;
}

.mainMultistepForm .tab .stepContainer .formGroup button:hover {
  outline: none;
  background-color: #FF0101;
  -webkit-transition: background-color ease-in 0.25s, -webkit-box-shadow ease-in 0.25s;
  transition: background-color ease-in 0.25s, -webkit-box-shadow ease-in 0.25s;
  transition: background-color ease-in 0.25s, box-shadow ease-in 0.25s;
  transition: background-color ease-in 0.25s, box-shadow ease-in 0.25s, -webkit-box-shadow ease-in 0.25s;
}

.mainMultistepForm .tab .stepContainer .formGroup .selected {
  background-color: red;
  -webkit-transition: background-color ease-in 0.25s;
  transition: background-color ease-in 0.25s;
}

.mainMultistepForm #regForm {
  margin: 100px auto;
  padding: 2rem;
  height: auto;
  background: #f6f5f5;
  border-radius: 47px;
  -webkit-transition: height ease-in 0.25s;
  transition: height ease-in 0.25s;
  max-width: 800px;
  overflow-y: hidden;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
}

.mainMultistepForm input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  border: 1px solid #aaaaaa;
}

.mainMultistepForm input.invalid {
  background-color: #ffdddd;
}

.mainMultistepForm .tab {
  display: none;
}

.mainMultistepForm .step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #000;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 1;
  z-index: 5;
}

.mainMultistepForm .step.active {
  background-color: #800;
  opacity: 1;
}

.mainMultistepForm .step.finish {
  background-color: red;
  opacity: 1;
  z-index: 5;
}

.mainMultistepForm .step.finish i {
  color: #800;
}

.mainMultistepForm .formGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mainMultistepForm #finished h3 {
  text-align: center;
  max-width: 600px;
  margin: auto;
  line-height: 50px;
}

.mainMultistepForm #finished .formGroup {
  padding: 1rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  margin-top: 50px;
}

.mainMultistepForm #finished .formGroup button {
  text-align: center;
  display: block;
  outline: none;
  border: none;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  min-height: 50px;
  padding: 1em .5rem;
  background-color: #800;
  width: 100%;
  line-height: 35px;
  font-size: 20px;
  border-radius: 6px;
  -webkit-transition: background-color ease-in 0.25s;
  transition: background-color ease-in 0.25s;
  letter-spacing: 2px;
  cursor: pointer;
}

.mainMultistepForm .finishedTab {
  -webkit-animation: backOutLeft;
          animation: backOutLeft;
  /* referring directly to the animation's @keyframe declaration */
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  /* don't forget to set a duration! */
}

.mainMultistepForm .currentTab {
  -webkit-animation: backInRight;
          animation: backInRight;
  /* referring directly to the animation's @keyframe declaration */
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  /* don't forget to set a duration! */
}
/*# sourceMappingURL=style.css.map */