/* @font-face {
  font-family: "Muli-Regular";
  src: url("../fonts/muli/Muli-Regular.ttf"); }
@font-face {
  font-family: "Muli-SemiBold";
  src: url("../fonts/muli/Muli-SemiBold.ttf"); } */

.wizard {
  position: relative; 
}

.wizard > .steps {
  position: absolute;
  /* top: 27.44%; */
  /* top: 110px; */
  /* top: 70px; */
  right: 50%;
  transform: translateX(50%);
  /* z-index: 9;  */
  z-index: 8; 
  top: 6px;
}

.wizard > .steps .current-info, .wizard > .steps .number {
  display: none; 
}

.wizard > .steps ul {
  display: flex;
  justify-content: center; 
}

.wizard > .steps li a {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e9e0cf;
  margin-right: 78px;
  position: relative; }
  .wizard > .steps li a:before {
    content: "";
    width: 58px;
    height: 2px;
    background: #e9e0cf;
    position: absolute;
    right: 22px;
    top: 5px; }
  .wizard > .steps li a:after {
    content: "";
    width: 0;
    height: 2px;
    background: #8c50a0;
    position: absolute;
    left: -68px;
    top: 5px;
    transition: all 0.6s ease; }
.wizard > .steps li.first a {
  background: #8c50a0; }
.wizard > .steps li.checked a {
  background: #8c50a0; }
  .wizard > .steps li.checked a:after {
    width: 58px; }
.wizard > .steps li:last-child a {
  margin-right: 0; }
.wizard > .steps li:first-child a:before {
  display: none; }
.wizard > .steps li:first-child a:after {
  display: none; }

.wizard > .content {
  position: relative;
  height: 621px; 
}

.inner {
  display: flex;
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); }

.image-holder {
  width: 40%;
  height: 521px; }

.form-content {
  width: 100%;
  /* padding-top: 65px; */
  /* padding-top: 45px; */
  padding-left: 51px;
  padding-right: 51px; 
  /* padding-bottom: 65px;  */
}

.form-header {
  text-align: center; }

.form-row {
  display: flex;
  margin-bottom: 18px; }
  .form-row .form-holder {
    width: 100%;
    margin-right: 30px; }
    .form-row .form-holder:last-child {
      margin-right: 0; }
    .form-row .form-holder.w-100 {
      width: 100%;
      margin-right: 0; }
  .form-row .select {
    width: 50%;
    margin-right: 30px; }
    .form-row .select .form-holder {
      width: 100%;
      margin-right: 0; }

.form-holder {
  position: relative; }
  .form-holder i {
    position: absolute;
    bottom: 7px;
    right: 0;
    font-size: 17px; }

.form-control {
  /* height: 37px; */

  height: 40px;
  /* border: none; */
  /* border-bottom: 2px solid #e6e6e6; */
  width: 100%;
  color: #666; }
  .form-control:focus {
    border-color: #e9e0cf; }
  .form-control::-webkit-input-placeholder {
    color: #999; }
  .form-control::-moz-placeholder {
    color: #999; }
  .form-control:-ms-input-placeholder {
    color: #999; }
  .form-control:-moz-placeholder {
    color: #999; }

.actions {
  position: absolute;
  bottom: 55px;
  /* right: 51px;  */
  right: 72px; 
  display: none;
}
  .actions ul {
    display: flex; 
  }

  .actions li a {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 41px;
    width: 135px;
    align-items: center;
    /* background: #e9e0cf; */
    background: #304384;
    /* font-family: "Muli-SemiBold"; */
    font-family: source sans pro, sans-serif;
    /* color: #666; */
    color:#fff;
    cursor: pointer;
    position: relative;
    padding-left: 28px; 
    border-radius: 20px;
  }
    .actions li a:before {
      content: '\f301';
      position: absolute;
      top: 14px;
      right: 28px;
      font-family: Material-Design-Iconic-Font; }
    .actions li a:hover {
      background: #243265; 
    }
  .actions li:first-child a {
    width: 144px;
    padding-left: 48px; }
    .actions li:first-child a:before {
      content: '\f2ff';
      position: absolute;
      top: 14px;
      left: 26px;
      font-family: Material-Design-Iconic-Font; }
  .actions li:nth-child(2) a, .actions li:last-child a {
    margin-left: 20px; }
  .actions li:last-child a {
    width: 124px;
    background: #8c50a0;
    color: #fff; }
    .actions li:last-child a:hover {
      background: #6c367d; 
    }
    .actions li:last-child a:before {
      content: '\f26b';
      position: absolute;
      top: 13px;
      right: 28px;
      font-family: Material-Design-Iconic-Font; }
  .actions li[aria-disabled="true"] a {
    opacity: 0;
    transition: all 1s; }
  .actions li[aria-disabled="false"] ~ li a {
    background: #8c50a0;
    color: #fff; }
    .actions li[aria-disabled="false"] ~ li a:hover {
      background: #6c367d; 
    }

@media (max-width: 991px) {
  .wizard {
    max-width: 768px; }

  .image-holder img {
    height: 521px;
    object-fit: cover; } }
@media (max-width: 767px) {
  .inner {
    display: block;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none; }

  .image-holder {
    width: 100%; }
    .image-holder img {
      width: 100%; }

  .form-content {
    width: 100%;
    padding: 50px 20px 30px; }
    /* padding-top: 65px; */
    /* padding-top: 45px; */
    /* padding-left: 51px;
    padding-right: 51px;  */
    /* padding-bottom: 65px;  */
  /* } */

  .form-row {
    display: block; }
    .form-row .form-holder, .form-row .select {
      width: 100%;
      margin-right: 0;
      margin-bottom: 18px; }

  .wrapper {
    /* height: 1201px; */
    background: none; }

  .checkbox-circle {
    width: 100%; }

  .wizard {
    height: 100%; }
    .wizard > .steps {
      position: absolute;
      /* top: 27.44%; */
      /* top: 110px; */
      top: 70px;
      right: 50%;
      transform: translateX(50%);
      /* z-index: 9;  */
      z-index: 8;
    }

  .actions {
    right: 50%;
    transform: translateX(50%);
    bottom: 3%; } }

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


.steps li {
  pointer-events: none;
}