section.steps .finish {
  min-height: 500px;
}

.steps-head {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}
.steps-head.active {
  display: block;
}

.wizard-form {
  opacity: 0;
  transition: all ease 0.5s;
  overflow: hidden;
  position: relative;
}
.wizard-form .confirmation .button-custom.button-sec {
  color: #fff;
  text-decoration: none;
}
.wizard-form .confirmation .button-custom.button-sec:hover {
  color: #fff;
  text-decoration: none;
}
.wizard-form .mobile-title {
  text-transform: uppercase;
  color: #a89473;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 0 0 25px 25px;
  border: 1px solid #a89473;
  border-top: none;
  position: relative;
}
.wizard-form .mobile-title {
  position: relative;
  border: 1px solid #a89473;
  border-top: none;
  border-left: none;
  border-right: none;
}
.wizard-form .mobile-title:after, .wizard-form .mobile-title:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.wizard-form .mobile-title:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #fff;
  border-width: 20px;
  margin-left: -20px;
}
.wizard-form .mobile-title:before {
  border-color: rgba(194, 225, 245, 0);
  border-top-color: #a89473;
  border-width: 21px;
  margin-left: -21px;
}
.wizard-form.active {
  opacity: 1;
}
.wizard-form.active .wizard-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.wizard-form.active .wizard-holder {
  opacity: 1;
  height: auto;
}
.wizard-form .wizard-start.hidden {
  display: none;
}
.wizard-form .wizard-steps.hidden {
  display: none;
}

.wizard-loader {
  position: absolute;
  z-index: 10;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80px;
  transition: opacity 0.5s;
}

.wizard-holder {
  opacity: 0;
  height: 360px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-bottom: 0;
  transition: opacity 0.5s;
}

.wizard-results.hidden {
  display: none;
}

.wizard {
  display: block;
  width: 100%;
  overflow: hidden;
}
.wizard .alert {
  margin-top: 10px;
}
.wizard.hidden {
  display: none;
}
.wizard fieldset {
  background: transparent;
  padding: 0;
  margin: 0;
}
.wizard > .content {
  min-height: 300px;
  position: relative;
  width: auto;
  background: transparent;
  padding: 0;
  margin: 0;
}
.wizard > .content > .body {
  position: relative;
}
.wizard .wizard-error.hidden {
  display: none;
}
.wizard .steps {
  width: 100%;
}
.wizard .steps ul {
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.wizard .steps ul li {
  width: calc(100% / 3);
}
.wizard .steps ul li.done a {
  opacity: 0.7;
}
.wizard .steps ul li.current a {
  font-weight: 600;
  color: #a89473;
  border-color: #a89473;
  background: #EEEAE3;
}
.wizard .steps ul li.current a:after {
  border-left-color: #EEEAE3;
}
.wizard .steps ul li.current a:before {
  border-left-color: #a89473;
}
.wizard .steps ul li .d-table-cell {
  height: 52px;
}
.wizard .steps ul li a {
  line-height: 1.4;
  position: relative;
  display: block;
  width: calc(100% - 40px);
  background: #fff;
  text-align: center;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #E5E5E5;
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.wizard .steps ul li a:after, .wizard .steps ul li a:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.wizard .steps ul li a:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #ffffff;
  border-width: 26px;
  margin-top: -26px;
}
.wizard .steps ul li a:before {
  border-color: rgba(0, 0, 0, 0);
  border-left-color: #E5E5E5;
  border-width: 27px;
  margin-top: -27px;
}
.wizard a {
  outline: 0;
}
.wizard ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.wizard ul > li {
  display: block;
  padding: 0;
}
.wizard > .content {
  padding-top: 20px;
  display: block;
  overflow: hidden;
  position: relative;
  width: auto;
}
.wizard > .content > .title {
  position: absolute;
  left: -999em;
}
.wizard > .actions {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 0;
}
.wizard > .actions > ul {
  display: block;
}
.wizard > .actions > ul > li {
  display: inline-block;
}
.wizard > .actions > ul > li:nth-child(1) a {
  background: #fff;
  color: #a89473;
  margin-right: 30px;
  border: 2px solid #a89473;
}
.wizard > .actions > ul > li:nth-child(1) a:hover {
  box-shadow: 11px 7px 20px rgba(0, 0, 0, 0.25);
}
.wizard > .actions > ul > li.disabled a {
  display: none;
}
.wizard > .actions > ul > li:nth-child(3) {
  text-align: right;
}

@media (max-width: 1600px) {
  .wizard .steps ul li a {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .wizard .steps {
    position: relative;
  }
  .wizard .steps ul li a {
    padding: 0 0 0 20px;
    line-height: 1.2;
  }
  .wizard .steps ul li a .text {
    display: inline-block;
    margin-top: 3px;
  }
}
@media (max-width: 992px) {
  .wizard .steps {
    position: relative;
  }
  .wizard .steps ul li a {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .wizard .steps {
    position: relative;
  }
  .wizard .steps ul li a {
    width: calc(100% - 35px);
  }
  .wizard .steps ul li a .number {
    font-size: 16px;
    line-height: 1.4;
  }
  .wizard .steps ul li a .text {
    position: absolute;
    top: -30px;
    opacity: 0;
    left: 0;
    min-width: 250px;
    text-align: left;
  }
}

/*# sourceMappingURL=steps.css.map */
