.account-balance-wrapper {
  display: none;
  font-size: 1.5em;
}

.account-balance-wrapper.positive {
  color: #007700;
}

.account-balance-wrapper.negative {
  color: #770000;
}

.account-balance-wrapper.shake {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.quiz {
  padding-top: 20px;
}

.quiz .question .answers {
  padding: 32px 0;
}

.quiz .question .answers .answer {
  width: 100%;
  margin-bottom: 32px;
}

.quiz .solution .continue {
  margin-top: 32px;
  margin-bottom: 32px;
}

.button-v2 {
  text-transform: none;
}

a.button-v2.button-v2--brand {
  display: inline-block;
}

@media (max-width: 767px) {
  .header-v2--menu-active.header-v2--cta-active .header-v2__logo {
    position: static;
  }
}
