body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

#topLogo h3 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    padding: 0 24px;
    text-align: left
}

@media (min-width: 799px) {
    #topLogo h3 {
        border-left:1px solid #d8d8d8;
        color: #666;
        display: inline-block;
        flex: 1 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
        margin: 0 0 0 1em;
        padding: 0 0 0 1em;
        text-align: left;
        text-shadow: none
    }
}

/* Wizard Form */
.wizard-step {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out; 
  }
  
  .wizard-step[data-page-name="birthday"],
  .wizard-step[data-page-name="household"],
  .wizard-step[data-page-name="children"],
  .wizard-step[data-page-name="income"],
  .wizard-step[data-page-name="height"],
  .wizard-step[data-page-name="gender"],
  .wizard-step[data-page-name="pii"],
  .wizard-step[data-page-name="Thanks"] 
  {
    animation-name: fadeInLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  /* Should only fade in for specific steps */
  @-webkit-keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0); }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none; } 
    }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0); }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none; } 
    }
  
  .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft; }