body {
  font-family: 'Karla', sans-serif;
  background-color: #f2f3f8;
}

/* 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: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 0;
}

.wizard .steps>ul li {
  width: 270px;
  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: 15px 10px;
}

.wizard .steps>ul li a .media {
  display: flex;
  align-items: center;
}

.wizard .steps>ul li .bd-wizard-step-icon {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: #e1e1e1;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  color: #4a2950;
  margin-right: 11px;
  margin: 0 auto;
}

.wizard .steps>ul li .bd-wizard-step-title {
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  display: none;
}

.wizard .steps>ul li .bd-wizard-step-subtitle {
  line-height: 1;
  font-size: 14px;
  color: #c8c8c8;
  display: none;
}

.wizard .steps>ul li.current .bd-wizard-step-icon,
.wizard .steps>ul li.done .bd-wizard-step-icon {
  background-color: #4a2950;
  color: #fff;
}

.wizard .steps>ul li.current a {
  background-color: #fff;
}

.wizard .content {
  padding: 30px 20px 35px;
  background-color: #fff;
}

.wizard .content .title {
  display: none;
}

.wizard .content .content-wrapper {
  max-width: 100%;
  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: 16px 15px;
  min-height: 50px;
  max-width: 550px;
  border-radius: 4px;
  border: solid 1px #ababab;
}

.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 20px 35px;
  background-color: #fff;
}

.wizard .actions>ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
  border-bottom: 1px solid #f5f5f4;
}

.wizard .actions li a {
  display: inline-block;
  border-radius: 6px;
  background-color: #00d69f;
  padding: 10px 30px;
  color: #fff;
  font-style: 15px;
  font-weight: bold;
}

.wizard .actions li.disabled {
  display: none;
}

.wizard .actions li:not(.disabled)+li,
.wizard .actions li:not(:first-child):last-child {
  margin-left: 15px;
}

/*# sourceMappingURL=bd-wizard.css.map */

.wizard .actions li a {
  background-color: #262261;
}