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

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

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

/* Wizard */
.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: 30px;
  padding-bottom: 30px; }
  .wizard .steps > ul {
    list-style: none;
    padding-left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#7b7f89), to(#7b7f89));
    background-image: linear-gradient(#7b7f89, #7b7f89);
    background-size: calc(100% - 50px) 4px;
    background-repeat: no-repeat;
    background-position: center; }
    .wizard .steps > ul li a {
      display: inline-block; }
    .wizard .steps > ul li span.number {
      display: inline-block;
      width: 50px;
      height: 50px;
      border: 2px solid #fff;
      border-radius: 50%;
      background-color: #7b7f89;
      text-align: center;
      line-height: 50px;
      color: #fff; }
    .wizard .steps > ul li.current span.number, .wizard .steps > ul li.done span.number {
      background-color: #00d69f; }

.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; }
  .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: #00d69f; }
        .wizard .content .purpose-radio .purpose-radio-input:checked + .purpose-radio-label .label-icon {
          color: #00d69f; }
          .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: #00d69f;
          font-weight: bold; }
    .wizard .content .purpose-radio .purpose-radio-label {
      display: -webkit-box;
      display: flex;
      width: 196px;
      height: 184px;
      max-width: 100%;
      border: 2px solid #7b7f89;
      border-radius: 4px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      -webkit-box-align: center;
              align-items: center;
      -webkit-box-pack: center;
              justify-content: center;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      cursor: pointer; }
      @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;
        margin-bottom: 17px;
        -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; }
    .wizard .content .purpose-radios-wrapper .purpose-radio {
      margin-right: 18px;
      max-width: calc( 33% - 18px); }
      @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: #00d69f;
  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) {
  .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;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        background-size: 4px calc(100% - 50px);
        margin-bottom: 0; }
        .wizard.vertical .steps > ul li:not(:last-child) {
          margin-bottom: 24px; } }

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



/* Important part */
.modal {
    top: 15px !important;
  
}
.modal-dialog{
    overflow-y: initial !important;
    max-width: 650px !important;
}
.modal-body{
    height: 450px !important;
    padding: 5%;
    overflow-y: auto !important;
}

          
            /* .KitDiv { position: relative; width:240px; } */
            .KitDiv { position: relative; }
            .KitDiv input { border:none; background:#fff; display:block; width: 100%; box-sizing: border-box }
            /* .KitDiv img { position: absolute; top: 2px; right: 5px } */
             .KitDiv img { position: absolute; top: 4px; right: 5px; width: 25%; display:block}
             
             @media (max-width: 991px) and (min-width: 768px) {
             .KitDiv img { display:none;}
}

@media (max-width:450px) {
             .KitDiv img { position: absolute; top: 1px; right: 5px; width: 35%; display:block}
}
   

.validateButton{
    padding: 16px 30px;
    font-weight: bold;
    color: white !important;
}

      .select_gender{
    padding: 14px 25px;
    min-height: 50px;
    max-width: 550px;
    border-radius: 4px;
    border: solid 1px #ececec;
    background-color: transparent;
    color: black;
      }

    .patient_ethnicity label{
      display: block !important;
    }

    .patient_ethnicity_radio {
        margin-top: 20px;
    }

    .patient_ethnicity{
      margin-top: 20px;
      padding: 0px 5%;
    }

    .patient_ethnicity_radio .form-check {
        margin-top: 15px;
    }

    .patient_race label{
      display: block !important; 
    }

    .col-md-12.patient_race {
        margin-top: 6%;
    }

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

  span.title_bold {
      font-weight: bold;
      text-decoration: underline;
    line-height: 1.6;

  }

  .patient_electronic_sign label {
      font-weight: bold;
  }

  .patient_electronic_sign {
      margin-top: 5%;
  }

  .patient_ethnicity_head {
      font-weight: bold;
  }

  .patient_ethnicity_radio label {
      display: block;
  }

  span.patient_ethnicity_title {
      color: #808080;
      font-size: 18px;
  }

.form-control.error { 
    border-color: #E74C3C; 
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(255, 0, 0, 0.6);
  }

  .showError{
    margin-bottom: 2%;
    color: #E74C3C;
    text-transform: uppercase;
    font-weight: bold;
  }

  .showError p{
    color: #E74C3C !important;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0% !important;
  }
  
  .mainFamily{
    border-top: 1px solid lightgray;
	padding-top: 10px;
    border-bottom: 1px solid lightgray;
padding-bottom: 10px;
  }
  
  
  a.btn.wizardActionNext {
    display: inline-block;
    border-radius: 6px;
    background-color: #00d69f;
    padding: 16px 30px;
    color: #fff;
    font-style: 15px;
    font-weight: bold;
}

.footer .copyright p {
    text-align: center;
    margin: 0;
    color: #898989;
}

.footer .copyright {
    padding: 0.9375rem;
    background: white;
}

a.nextButton_enable.newenable.btnforward{
  pointer-events: none !important;
  background: rgb(188, 173, 190) !important;
}

.preloader1 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999999;
}

#preloader-logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.loading-msg {
  width: 100%;
  font-size: 0.75em;
  color: #555;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 2px solid #f3f3f3;
  border-top: 3px solid #2489CE;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 1s infinite ease;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*  #loading-msg {
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 25px;
        text-align: center;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #333;
        font-size: 0.8em;
    } */

#loading-msg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 25px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 1em;
}