:root {
  --primary: #004aad;
}

body {
  font-family: 'Karla', sans-serif;
}

.navbar-light {
  border-bottom: solid 1px #e9ecf4;
}
.navbar-light .navbar-brand img {
  height: 25px;
}
.navbar-light .navbar-nav .nav-link {
  padding: 30px 15px;
  font-size: 16px;
  font-weight: bold;
  color: #030303;
}

main {
  min-height: calc(100vh - 102px);
}

.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 {
  padding-top: 15px;
  padding-bottom: 30px;
}
/* Esta é a regra correta para o wizard horizontal */
.wizard .steps > ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(#7b7f89, #7b7f89);
  background-size: calc(100% - 50px) 4px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 5px;
  padding-bottom: 5px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1020;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgba(255, 255, 255);
}

.wizard .steps > ul li a {
  display: inline-block;
}

.wizard .steps > ul li span.number {
  display: inline-block;
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #7b7f89;
  text-align: center;
  line-height: 30px;
  color: #fff;
}
.wizard .steps > ul li.current span.number {
  background-color: var(--primary);
  width: 50px;
  height: 50px;
  line-height: 45px;
}

.wizard .steps > ul li.done span.number {
  background-color: var(--primary);
  border-color: var(--primary);
}

.wizard .content {
  margin-bottom: 45px;
}
.wizard .content .title {
  display: none;
}
.wizard .content .bd-wizard-step-title {
  font-size: 20px;
  font-weight: bold;
  color: #7b7f89;
  margin-bottom: 45px;
}
.wizard .content .section-heading {
  font-size: 35px;
  font-weight: bold;
  color: #030303;
  margin-bottom: 17px;
  text-align: center;
}
section {
  margin-top: 2rem;
}
.wizard .content p {
  font-size: 16px;
  color: #030303;
}
.wizard .content .purpose-radio {
  position: relative;
  display: inline-block;
}
.wizard .content .purpose-radio .purpose-radio-input {
  position: absolute;
  opacity: 0;
}
.wizard
  .content
  .purpose-radio
  .purpose-radio-input:checked
  + .purpose-radio-label {
  border-color: var(--primary);
}
.wizard
  .content
  .purpose-radio
  .purpose-radio-input:checked
  + .purpose-radio-label
  .label-icon {
  color: var(--primary);
}
.wizard
  .content
  .purpose-radio
  .purpose-radio-input:checked
  + .purpose-radio-label
  .label-icon
  .label-icon-default {
  display: none;
}
.wizard
  .content
  .purpose-radio
  .purpose-radio-input:checked
  + .purpose-radio-label
  .label-icon
  .label-icon-active {
  display: inline-block;
}
.wizard
  .content
  .purpose-radio
  .purpose-radio-input:checked
  + .purpose-radio-label
  .label-text {
  color: var(--primary);
  font-weight: bold;
}
.wizard .content .purpose-radio .purpose-radio-label {
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 65px;
  max-width: 100%;
  border: 1px solid #7b7f89;
  border-radius: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  padding: 0.5rem;
  padding-left: 1rem;
  gap: 1rem;
}
@media (max-width: 575px) {
  .wizard .content .purpose-radio .purpose-radio-label {
    width: 100%;
  }
}
.wizard .content .purpose-radio .purpose-radio-label .label-icon {
  font-size: 21px;
  color: #000000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wizard
  .content
  .purpose-radio
  .purpose-radio-label
  .label-icon
  .label-icon-active {
  display: none;
}
.wizard .content .purpose-radio .purpose-radio-label .label-text {
  font-size: 16px;
  color: #030303;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wizard .content .purpose-radios-wrapper {
  margin-top: 60px;
  flex-direction: column;
  display: flex;
  width: 100%;
}
.wizard .content .purpose-radios-wrapper .purpose-radio {
  margin-right: 18px;
  width: 100%;
}
@media (max-width: 575px) {
  .wizard .content .purpose-radios-wrapper .purpose-radio {
    margin-right: 0;
    margin-bottom: 18px;
    width: 100%;
    max-width: none;
  }
}
.wizard .content .purpose-radios-wrapper .purpose-radio:last-child {
  margin-right: 0;
}
.wizard .content .form-control {
  padding: 26px 25px;
  min-height: 50px;
  max-width: 550px;
  border-radius: 4px;
  border: solid 1px #ececec;
}
.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 > ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: flex;
}

.wizard .actions li a {
  display: inline-block;
  border-radius: 6px;
  background-color: var(--primary);
  padding: 16px 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;
}

@media (min-width: 768px) {
  .container {
    min-height: 450px;
  }
  .wizard.vertical {
    padding-left: 200px;
    position: relative;
    min-height: 450px;
  }
  .wizard.vertical .steps {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 480px;
    position: absolute;
    left: 0;
    display: -webkit-box;
    display: flex;
  }
  .wizard.vertical .steps > ul {
    width: 50px; /* ALTERADO */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    align-items: center;
    background-size: 4px calc(100% - 50px);
    margin-bottom: 0;
    background-position: center; /* ADICIONADO */
    left: 50px;
    top: auto;
  }

  /* ADICIONADO */
  .wizard.vertical .steps > ul li {
    text-align: center;
  }

  .wizard.vertical .steps > ul li:not(:last-child) {
    margin-bottom: 24px;
  }
}

/*# sourceMappingURL=bd-wizard.css.map */

#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-align: center;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.mb-other {
  margin-bottom: 20rem;
}

.input-error {
  border: 2px solid red !important;
  animation: shake 0.3s ease-in-out;
}

/* Animação shake */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(0);
  }
}
