.form-app .fieldHeight {
    height: 3.2rem;
  }

  /* Mutual form specific css */
.form-app .customBtn {
    color: #fff;
    background-color: #11386e;
    min-height: 3.2rem;
    font-size: 24px;
    font-weight: 600;
    margin-top: 2rem;
    width: 100%;
    border-radius: 8px;
    /* padding: 1rem 0rem; */
  }

  .btnWrapper {
    margin-left: 0.5rem;
  }
  .invalid-feedback {
    font-size: 1rem;
    color: #dc3545;
  }

  @media (min-width: 992px) {
    .invalid-feedback {
      position: absolute;
    }
  }

  
  .is-invalid {
    border-width: 3px;
  }
  .fielContainer {
    margin-right: 0.5rem;
  }

  /* mimic bootstrap progress bar */
  .progress {
    height: 1.5rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
  }

    .progress-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background-color: #007bff;
        transition: width 0.6s ease;
    }


  #stepperComponent ul {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
    display: -ms-flexbox !important;
    display: flex !important;
    counter-reset: step;
  }
  #stepperComponent .progressbar li {
    list-style-type: none;
    position: relative;
    color: #bbb;
  }
  #stepperComponent .progressbar li.active:before {
    width: 30px;
    height: 30px;
    content: "";
    margin: auto;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    bottom: 0;
    left: 0;
    right: 0;
    border: 2px solid #76f3a0;
  }
  #stepperComponent .progressbar li:after {
    width: 80%;
    height: 3px;
    content: "";
    position: absolute;
    background-color: #bbb;
    top: 13px;
    left: -40%;
  }
  #stepperComponent .progressbar li:first-child:after {
    content: none;
  }
  #stepperComponent .progressbar li.active {
    color: #bbb;
  }
  #stepperComponent .progressbar li.passed {
    color: #76f3a0;
  }
  #stepperComponent .progressbar li.active:after,
  #stepperComponent .progressbar li.passed:after {
    background-color: #76f3a0;
  }
  
  .circle-icon {
    position: absolute;
    width: 172px;
    height: 172px;
    background-color: #EAEAE9;
    border-radius: 86px;
    top: -86px;
    left: 50%;
    margin-left: -86px;
    border: 6px solid #fff;
  }
  
  .mode-fade-enter-active,
  .mode-fade-leave-active {
    transition: opacity 0.5s ease;
  }
  .mode-fade-enter-from,
  .mode-fade-leave-to {
    opacity: 0;
  }
  .addressFieldWrapper {
    position: relative;
  }
  #placesResults {
    position: absolute;
    width: 100%;
    z-index: 2;
  }
  .results {
    position: relative;
    width: 100%;
    text-align: left;
    outline: none;
  }
  .results .items {
    color: #000;
    border-radius: 0px 0px 6px 6px;
    overflow: hidden;
    border-right: 1px solid #7d7d7d;
    border-left: 1px solid #7d7d7d;
    border-bottom: 1px solid #7d7d7d;
    position: absolute;
    background-color: #fff;
    left: 0;
    right: 0;
    z-index: 1;
    height: 253px;
    overflow: auto;
  }
  
  .results .items div {
    color: #000;
    padding-left: 1em;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #e6e6e6;
    padding: 0.8rem;
  }
  
  .results .items div:hover {
    background-color: #f5f5f5;
  }

  .list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
  }

  .list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
  }

  .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
  }

  .list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
  }

  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
  }

  .list-group-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
    border-color: #007bff;
  }
  
  #form-main {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  
  #form-loader {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .form-title {
    text-align: center;
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  .button-holder {
    margin: auto;
    width: 389px;
    margin-bottom: 0;
  }
  
  .button-holder button {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
  }
  
  .question-label {
    font-weight: 400;
    font-size: 1.75rem;
    margin-bottom: .5rem;
  }
  
  .question-box {
    margin-top: 1.5rem;
  }

  .step {
    max-width: 56rem;
    margin: 0 auto;
  }

  #stepperComponent {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .thank-you-text > * {
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .thank-you-text > h3 {
    text-transform: capitalize;
  }

  .button-holder.email-submit {
    display: flex;
    flex-direction: column;
    overflow-x: visible;
    padding: 0 1rem;
  }

  .email-submit > button.btn.customBtn {
    margin: 0;
  }

  @media (min-width: 991.98px) {
    #stepperComponent {
      padding-left: 0;
      padding-right: 0;
    }
  }



@media (min-width: 420px) and (max-width: 432px) {
    /* Pesky spacing */
    h5.question-label, label.question-label {
      font-size: 1.20rem;
    }
  }
  
  @media (max-width: 991.98px) {
    .question-box {
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .question-holder {
      margin-right: 0;
    }
    .button-holder {
      margin: 1.5rem 0 1.5rem 0;
    }
    .customBtn {
      margin-top: 0rem !important;
    }
    #form-main {
      margin-left: 0rem;
      margin-right: 0rem;
    }
    .form-title {
      padding-left: 0rem;;
      padding-right: 0rem;;
    }
    .button-holder {
      width: 100%;
    }

  }
  @media (max-width: 767.98px) {
    .fielContainer {
      width: 100%;
      margin-right: 0px !important;
    }

  }

  /* mimic the custom select from bootstrap */

  select.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

    select.custom-select:focus {
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    select.custom-select:focus::-ms-value {
        color: #495057;
        background-color: #fff;
    }

    select.custom-select[multiple], select.custom-select[size]:not([size="1"]) {
        height: auto;
        padding-right: 0.75rem;
        background-image: none;
    }

    select.custom-select:disabled {
        color: #6c757d;
        background-color: #e9ecef;
    }

    select.custom-select::-ms-expand {
        display: none;
    }
    select.custom-select:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #495057;
    }
    select.custom-select-sm {
        height: calc(1.8125rem + 2px);
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
        padding-left: 0.75rem;
        font-size: 0.875rem;
    }

    select.custom-select-lg {
        height: calc(2.875rem + 2px);
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
        padding-left: 0.75rem;
        font-size: 1.25rem;
    }

    .spinner-border {
      display: inline-block;
      width: 5rem;
      height: 5rem;
      vertical-align: text-bottom;
      border: 0.25em solid currentColor;
      border-right-color: transparent;
      border-radius: 50%;
      -webkit-animation: spinner-border .75s linear infinite;
      animation: spinner-border .75s linear infinite;
    }
    
    @-webkit-keyframes spinner-border {
      0% {
        -webkit-transform: rotate(0deg);
      }
      100% {
        -webkit-transform: rotate(360deg);
      }
    }
    
    @keyframes spinner-border {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }