@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"); }
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
:root {
  --color-1: #f7f8fa;
  --color-2: #999;
  --color-3: #dfe4ec;
  --color-5: #fff;
  --color-7: #dad8e4;
  --color-8: #e6e6e6;
  --color-10: #666;
  --color-9: #2c769b;
  --color-4: #3a6b7e;
  --color-11: #a8c2d2;
  --color-12: #6fa0b5;
  
}
body {
  font-family: "Muli-Regular";
  background: var(--color-1);
  font-size: 15px;
  color: var(--color-2);
  margin: 0; }

:focus {
  outline: none; }

textarea {
  resize: none; }

input, textarea, select, button {
  font-family: "Muli-Regular";
  font-size: 15px; }

p, h1, h2, h3, h4, h5, h6, ul {
  margin: 0; }

ul {
  padding: 0;
  margin: 0;
  list-style: none; }

a {
  text-decoration: none; }

textarea {
  resize: none; }

img {
  max-width: 100%; }

.wrapper {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center; }

.wizard {
  width: 920px;
  position: relative; }

.wizard > .steps {
  position: absolute;
  top: 20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 9; }

.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: var(--color-3);
  margin-right: 58px;
  position: relative; }
  .wizard > .steps li a:before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--color-3);
    position: absolute;
    right: 22px;
    top: 5px; }
  .wizard > .steps li a:after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--color-4);
    position: absolute;
    left: -48px;
    top: 5px;
    transition: all 0.6s ease; }
.wizard > .steps li.first a {
  background: var(--color-4); }
.wizard > .steps li.checked a {
  background: var(--color-4); }
  .wizard > .steps li.checked a:after {
    width: 38px; }
.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;
  background: var(--color-5);
  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);
}

.inner {

 }

.form-content, .form-content-2 {
  padding-left: 51px;
  padding-right: 51px; 
  padding-bottom: 51px;
}

.form-content {
  padding-top: 65px;
}

.form-content-2 {
  padding-top: 0px;
}


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

h3 {
  font-family: "Muli-SemiBold";
  font-size: 22px;
  color: var(--color-4);
  text-transform: uppercase;
  letter-spacing: 7px;
  padding: 5px 15px;
  display: inline-block;
  border: 1px solid var(--color-7);
  margin-bottom: 75px; }

p {
  font-family: "Muli-SemiBold";
  font-size: 20px;
  color: var(--color-4);
  text-align: center;
  margin-bottom: 26px; }

.form-row {
  display: flex;
  margin-bottom: 18px; }
  .form-row .form-holder {
    width: 50%;
    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; }

.select {
  position: relative; }
  .select .select-control {
    height: 37px;
    border-bottom: 2px solid var(--color-8);
    width: 100%;
    color: var(--color-2);
    display: flex;
    align-items: center;
    cursor: pointer; }
  .select .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: var(--color-5);
    z-index: 9;
    border: 1px solid var(--color-9); }
    .select .dropdown li {
      padding: 5px 10px; }
      .select .dropdown li:hover {
        background: var(--color-9);
        color: var(--color-5); }

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

.form-control {
  height: 37px;
  border: none;
  border-bottom: 2px solid var(--color-8);
  width: 100%;
  color: var(--color-10); }
  .form-control:focus {
    border-color: var(--color-3); }
  .form-control::-webkit-input-placeholder {
    color: var(--color-2); }
  .form-control::-moz-placeholder {
    color: var(--color-2); }
  .form-control:-ms-input-placeholder {
    color: var(--color-2); }
  .form-control:-moz-placeholder {
    color: var(--color-2); }

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: var(--color-2); }
  select.form-control option[value=""][disabled] {
    display: none; }

textarea.form-control {
  padding: 8px 0;
  background: url("../images/textarea-bg.png") no-repeat right bottom 3px; }

.actions {
  position: relative;
  margin-top: 20px;
}

  .actions ul {
    display: flex;
    justify-content: center;
  }
  .actions li a {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 41px;
    width: 135px;
    align-items: center;
    background: var(--color-3);
    font-family: "Muli-SemiBold";
    color: var(--color-10);
    cursor: pointer;
    position: relative;
    padding-left: 28px; }
    .actions li a:before {
      content: '\f301';
      position: absolute;
      top: 14px;
      right: 28px;
      font-family: Material-Design-Iconic-Font; }
    .actions li a:hover {
      background: var(--color-11); }
  .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: var(--color-4);
    color: var(--color-5); }
    .actions li:last-child a:hover {
      background: var(--color-12); }
    .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: var(--color-4);
    color: var(--color-5); }
    .actions li[aria-disabled="false"] ~ li a:hover {
      background: var(--color-12); }

.checkbox-tick label {
  cursor: pointer;
  display: inline-block;
  padding-left: 23px;
  position: relative; }
  .checkbox-tick label.male {
    margin-right: 26px; }
.checkbox-tick input {
  position: absolute;
  opacity: 0;
  cursor: pointer; }
.checkbox-tick input:checked ~ .checkmark {
  background: var(--color-2); }
  .checkbox-tick input:checked ~ .checkmark:after {
    display: block; }
.checkbox-tick .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 13px;
  width: 13px;
  border: 1px solid var(--color-2);
  border-radius: 50%;
  font-family: Material-Design-Iconic-Font;
  color: var(--color-5);
  font-size: 11px; }
  .checkbox-tick .checkmark:after {
    top: 0;
    left: 2px;
    position: absolute;
    display: none;
    content: '\f26b'; }

.checkbox-circle {
  position: relative;
  padding-left: 23px;
  margin-top: 41px;
  width: 63%; }
  .checkbox-circle.mt-24 {
    margin-top: 24px; }
  .checkbox-circle label {
    cursor: pointer;
    color: var(--color-2);
    font-size: 13px;
    line-height: 1.9;
    transform: translateY(-5px); }
    .checkbox-circle label a {
      color: var(--color-4); }
      .checkbox-circle label a:hover {
        color: var(--color-9); }
  .checkbox-circle input {
    position: absolute;
    opacity: 0;
    cursor: pointer; }
  .checkbox-circle input:checked ~ .checkmark:after {
    display: block; }
  .checkbox-circle .checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 1px solid var(--color-2); }
    .checkbox-circle .checkmark:after {
      content: "";
      top: 2px;
      left: 2px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--color-2);
      position: absolute;
      display: none; }

@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-left: 20px;
    padding-right: 20px;
  }

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

  .wrapper {
    background: none; }

  .checkbox-circle {
    width: 100%; }

  .wizard {
    height: 100%; }
    .width-50-per {
      width: 50%;
    }

  }

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





.form-row-2 {
  margin: 5px;
  text-align: center;
}

.form-row-3 {
  margin: 5px;
  line-height: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.width-50-per {
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 767px) {

  .width-50-per {
    width: 100%;
  }
}

.checkbox-button input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.checkbox-button label {
    display: inline-block;
    background-color: var(--color-3);
    padding: 10px 20px;
    font-family: "Muli-SemiBold";
    font-size: 16px;
    color: var(--color-10);
    margin: 5px;
}

.checkbox-button label:hover {
  background-color: var(--color-4);
  color: var(--color-5);
}

.checkbox-button input[type="radio"]:focus + label {
  background-color: var(--color-4);
  color: var(--color-5);
}

.checkbox-button input[type="radio"]:checked + label {
  background-color: var(--color-4);
  color: var(--color-5);
}



.overlay{ 
  color: #000;
  background: #fff; 
  opacity: 0.8;
  width:      100%;
  height:     100%; 
  z-index:    10;
  top:        0; 
  left:       0; 
  position:   fixed; 

  text-align: center;
}
.overlay svg{
  width: 150px;
}