body {
  font-family: 'Karla', sans-serif;
  background-color: #f0f2f5;
}


/* Wizard */
.wizard a:hover {
  text-decoration: none;
}

.wizard .audible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wizard .steps>ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

.wizard .steps>ul li {
  width: 320px;
  max-width: calc(25% - 6px);
}

.wizard .steps>ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: rgba(153, 155, 163, 0.1);
  padding: 28px 30px 24px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .wizard .steps>ul li a {
    padding: 15px 10px;
  }
}

@media (max-width: 767px) {
  .wizard .steps>ul li a .media {
    display: block;
  }
}

.wizard .steps>ul li .bd-wizard-step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #e1e1e1;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  color: #5e72e4;
  margin-right: 11px;
}

@media (max-width: 767px) {
  .wizard .steps>ul li .bd-wizard-step-icon {
    margin: 0 auto;
  }
}

.wizard .steps>ul li .bd-wizard-step-title {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}

@media (max-width: 767px) {
  .wizard .steps>ul li .bd-wizard-step-title {
    display: none;
  }
}

.wizard .steps>ul li .bd-wizard-step-subtitle {
  font-size: 14px;
  color: #666;
}

@media (max-width: 767px) {
  .wizard .steps>ul li .bd-wizard-step-subtitle {
    display: none;
  }
}

.wizard .steps>ul li.current .bd-wizard-step-icon,
.wizard .steps>ul li.done .bd-wizard-step-icon {
  background-color: #5e72e4;
  color: #fff;
}

.wizard .steps>ul li.current a {
  background-color: #fff;
}

.wizard .content {
  padding: 100px 35px 20px 35px;
  background-color: #fff;
  min-height: 420px;
}

@media (max-width: 767px) {
  .wizard .content {
    padding-left: 20px;
    padding-right: 20px;
    min-height: auto;
  }
}

.wizard .content .title {
  display: none;
}

.wizard .content .content-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wizard .content .section-heading {
  font-weight: bold;
  color: #030303;
  margin-bottom: 22px;
}

.wizard .content p {
  font-size: 16px;
  color: #030303;
}

.wizard .content .form-control {
  padding: 1rem 1.5rem;
  min-height: 50px;
  border: solid 1px #ececec;
  margin-top: 10px;
}

.wizard .content .form-control.is-invalid {
  border-color: #dc3545;
}

.wizard .content .form-control::-webkit-input-placeholder {
  color: #919aa3;
}

.wizard .content .form-control::-moz-placeholder {
  color: #919aa3;
}

.wizard .content .form-control:-ms-input-placeholder {
  color: #919aa3;
}

.wizard .content .form-control::-ms-input-placeholder {
  color: #919aa3;
}

.wizard .content .form-control::placeholder {
  color: #919aa3;
}

.wizard .actions {
  padding: 0 35px 35px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
}

@media (max-width: 767px) {
  .wizard .actions {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.wizard .actions>ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: flex-end;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
}

.wizard .actions li a {
  display: inline-block;
  border-radius: 6px;
  background-color: #5e72e4;
  padding: 18px 40px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}

.wizard .actions li.disabled {
  display: none;
}

.wizard .actions li:not(.disabled)+li,
.wizard .actions li:not(:first-child):last-child {
  margin-left: 15px;
}

.wizard-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 98 204 / 75%);
  text-align: center;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  border-radius: 8px;
}

/* -- */