.form-control small{
    position:absolute;
    margin: 3px;
    visibility: hidden;
  }
  .multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .hide-character {
    display: none;
  }
  .form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
  }
  .multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: rgba(108, 117, 125, 0.7);
    border: none;
    background-color: transparent;
     outline: none !important;
    cursor: pointer;
  }
  @media (min-width: 500px) {
    .multisteps-form__progress-btn {
      text-indent: 0;
    }
    .hide-character {
      display: block;
    }
  }
  .multisteps-form__progress-btn:before {
    position: absolute;
      top: -14px;
      left: 50%;
      display: block;
      width: 40px;
      height: 40px;
      content: '';
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      transition: 0.15s;
      border: 2px solid transparent;
      border-radius: 50%;
      background-color: #fff;
      box-sizing: border-box;
  }
  .multisteps-form__progress-btn:after {
    position: absolute;
      top: -14px;
      left: 50%;
      display: block;
      width: 40px;
      height: 40px;
      content: '';
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      transition: 0.15s;
      border-radius: 50%;
      background-color: #fff;
      box-sizing: border-box;
  }
  .multisteps-form__progress-btn.js-active {
    color: #065DAA;
  }
  .multisteps-form__progress-btn.js-active:before {
    border-color: #065DAA;
    background-color: #065DAA;
  }
  .multisteps-form__progress-btn.js-active:after {
    background-color: #065DAA;
  }
  .multisteps-form__form {
    position: relative;
  }
  .multisteps-form__panel {
    display: none;
  }
  .multisteps-form__panel.js-active {
    display: block;
  }
  .multisteps-form__panel[data-animation="scaleIn"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  .multisteps-form__panel[data-animation="scaleIn"].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

/* Footer logo on #065DAA: MyGPS.svg uses same blue — white panel for contrast */
.landing-footer-brand {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 1.15rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.landing-footer-brand img {
  display: block;
  max-height: 56px;
  width: auto;
}

/* Landing footer — full-width balanced columns, section labels */
.site-footer-landing .site-footer-heading {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  margin-bottom: 0;
}
.site-footer-landing .site-footer-main {
  max-width: 100%;
}

