header {
  height: 50px;
  width: 100%;
  line-height: 50px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100100;
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91); }
  .hide-header header {
    -webkit-transform: translateY(-10rem);
    transform: translateY(-10rem); }
  header .inner {
    padding: 0 1rem;
    background-color: #FAB149;
    height: 50px; }
    header .inner p {
      text-align: left; }
  header p {
    float: left;
    width: auto;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    padding-left: 4.5rem; }
  header .logo {
    width: auto;
    height: 3rem;
    margin-top: 1rem;
    position: absolute;
    left: 0; }

button.js-menu {
  transition: 0.1s transform linear;
  color: #FFD895;
  position: relative;
  float: right;
  background: 0;
  height: 3.5rem;
  width: 3.5rem;
  padding: 0rem;
  margin: .6rem 1em 0 0;
  z-index: 1;
  outline: 0;
  border: 0;
  cursor: pointer; }

.hamburger, .hamburger::before, .hamburger::after {
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear;
  position: absolute;
  background: #F9D391;
  margin: auto;
  width: 100%;
  height: 0.5rem;
  content: '';
  top: 50%;
  left: 0; }
.hamburger {
  margin-top: -0.2rem; }
.hamburger::before {
  top: -1.2rem; }
.hamburger::after {
  top: 1.2rem; }
.hamburger::before, .hamburger::after {
  transform: rotate(0deg); }
.active .hamburger {
  background: 0; }
  .active .hamburger::before {
    transform: rotate(45deg); }
  .active .hamburger::after {
    transform: rotate(-45deg); }
  .active .hamburger::before, .active .hamburger::after {
    top: 0; }
  .active .hamburger, .active .hamburger::before, .active .hamburger::after {
    transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s; }

nav {
  width: 32rem;
  height: 38rem;
  background: #0858A4;
  z-index: 100020;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateY(-88rem);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  padding-top: 5rem;
  padding-bottom: 3rem; }
  .menu-open nav {
    transform: translateY(0); }
  nav ul {
    margin: 0;
    list-style: none;
    padding: 0; }
    nav ul li {
      text-align: center;
      margin: 1rem 0; }
      nav ul li a {
        padding: 2rem .6rem;
        display: block;
        font-size: 3em;
        font-weight: bold; }
        nav ul li a:hover {
          background: rgba(0, 0, 0, 0.1); }
        nav ul li a:active {
          background: rgba(0, 0, 0, 0.2); }
        nav ul li a.donate {
          margin: 1rem auto;
          font-size: 3em;
          padding: .5rem 4rem; }
        nav ul li a.logo-united-way img {
          height: 6rem;
          width: auto; }

#footer-logo {
  position: fixed;
  bottom: 0rem;
  width: 100%;
  z-index: 100000;
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transform: translateY(10rem); }
  #footer-logo .inner {
    background-color: #0657A3;
    width: 100%;
    max-width: 130rem;
    height: 2rem;
    margin: 0 auto; }
  #footer-logo img {
    position: absolute;
    top: -4.5rem;
    height: 6rem;
    width: auto;
    left: 50%;
    margin-left: -5.3rem;
    /* Center */ }

.show-footer-logo #footer-logo {
  transform: translateY(0); }

#footer {
  position: fixed;
  bottom: 0rem;
  width: 100%;
  z-index: 100010;
  height: 5rem;
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transform: translateY(0); }
  .hide-footer #footer {
    transform: translateY(10rem); }
  #footer .inner {
    font-size: 2.2em;
    font-weight: bold;
    background-color: #fff;
    margin: 0 auto;
    height: 5rem;
    line-height: 5rem;
    width: 100%;
    overflow: hidden; }
  #footer .name {
    margin-left: 1rem;
    color: #0858A4;
    float: left; }
  #footer button.js-menu {
    float: none;
    cursor: pointer;
    margin: 0.7rem 0 0 0;
    position: absolute; }
    #footer button.js-menu .hamburger, #footer button.js-menu .hamburger::before, #footer button.js-menu .hamburger::after {
      background-color: #0858A4; }
  #footer .active button.js-menu .hamburger {
    background-color: transparent; }
  #footer .budget-toggle {
    float: right;
    position: relative;
    padding-left: 4.5rem; }
    #footer .budget-toggle .left {
      position: absolute;
      left: 0;
      top: 0;
      width: 4.5rem; }
    #footer .budget-toggle .right {
      padding: 0 1rem;
      position: relative;
      background-color: #0858A4;
      color: #fff;
      height: 100%;
      margin: 0;
      padding: .1rem 1rem 0 1rem; }
    #footer .budget-toggle .balance-label {
      font-size: .5em;
      line-height: .5em;
      margin: 1rem 0 0 0;
      font-weight: normal; }
      #footer .budget-toggle .balance-label span {
        display: inline-block;
        display: none;
        transition: 0.3s transform linear; }
    #footer .budget-toggle.open .balance-label span {
      transform: rotate(180deg); }
    #footer .budget-toggle .var-balance {
      min-width: 7rem;
      margin-top: -.5rem; }
  #footer .negative .right {
    background-color: #a20625; }
  #footer .negative button.js-menu .hamburger, #footer .negative button.js-menu .hamburger::before, #footer .negative button.js-menu .hamburger::after {
    background-color: #a20625; }
  #footer .negative.active button.js-menu .hamburger {
    background-color: transparent; }

.ft-page .balance.negative .var-balance {
  color: #a20625; }

#budget-table {
  width: 32rem;
  height: 30rem;
  background: #F3EAD4;
  padding-top: 0rem;
  z-index: 100001;
  position: fixed;
  top: auto;
  right: 0;
  bottom: -35rem;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91); }
  .budget-open #budget-table {
    transform: translateY(-35rem); }
  #budget-table table {
    margin: 0 auto;
    width: 100%; }
    #budget-table table th, #budget-table table td {
      font-size: 1em;
      text-align: center;
      padding: 1rem .5rem;
      border: 1px solid #F3EAD4; }
    #budget-table table th {
      font-weight: bold;
      background-color: #0858A4;
      color: #F3EAD4; }
    #budget-table table td {
      color: #000; }
    #budget-table table tr:nth-child(odd) {
      background-color: #F3D9A1; }
    #budget-table table .date {
      width: 15%; }
    #budget-table table .description {
      width: 67%-balanceWidth; }
    #budget-table table .change {
      font-weight: bold;
      width: 18%; }
    #budget-table table .positive {
      /*color: #3D65AC;*/
      color: #0f9036; }
    #budget-table table .negative {
      color: #D46A4A; }
    #budget-table table .balance {
      font-weight: bold;
      width: 18%; }

/* Feet */
#feet .amanda, #feet .james, #feet .dave {
  top: -30rem;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91); }

body.amanda #feet, body.james #feet, body.dave #feet {
  transform: translateY(-5rem); }

body.amanda #feet .amanda {
  transform: translateY(34rem); }

body.james #feet .james {
  transform: translateY(33rem); }

body.dave #feet .dave {
  transform: translateY(34rem); }

body.intro #feet .james {
  transform: translateY(30rem); }

body.intro #feet .amanda, body.intro #feet .dave {
  display: none; }

body.hide-feet #feet .amanda, body.hide-feet #feet .james, body.hide-feet #feet .dave {
  transform: translateY(0); }

#feet {
  position: absolute;
  top: -2rem;
  width: 100%;
  z-index: 500; }
  #feet .amanda, #feet .james, #feet .dave {
    width: 30rem;
    margin: 0 auto;
    position: relative;
    text-align: center; }
    #feet .amanda .foot-left, #feet .amanda .foot-right, #feet .james .foot-left, #feet .james .foot-right, #feet .dave .foot-left, #feet .dave .foot-right {
      width: 5rem;
      position: absolute; }
    #feet .amanda .foot-left, #feet .james .foot-left, #feet .dave .foot-left {
      top: 2rem;
      left: 8rem; }
    #feet .amanda .foot-right, #feet .james .foot-right, #feet .dave .foot-right {
      top: 2rem;
      left: 17rem; }
    #feet .amanda .dress, #feet .james .dress, #feet .dave .dress {
      width: 30rem;
      position: absolute;
      top: -14rem;
      left: 0; }
  #feet .james .foot-left, #feet .james .foot-right {
    width: 11rem; }
  #feet .james .foot-left {
    top: -4.1rem;
    left: 2rem; }
  #feet .james .foot-right {
    top: -4.1rem;
    left: 16rem; }
  #feet .dave .foot-left, #feet .dave .foot-right {
    width: 7rem; }
  #feet .dave .foot-left {
    top: -2.2rem;
    left: 6rem; }
  #feet .dave .foot-right {
    top: -2.2rem;
    left: 17rem; }
  #feet .foot-left {
    -webkit-filter: drop-shadow(-2px 4px 2px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(-2px 4px 2px rgba(0, 0, 0, 0.4)); }
  #feet .foot-right {
    -webkit-filter: drop-shadow(2px 4px 2px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(2px 4px 2px rgba(0, 0, 0, 0.4)); }
  #feet.moving .foot-left {
    animation: foot-left .3s alternate 6;
    -moz-animation: foot-left .3s alternate 6;
    -webkit-animation: foot-left .3s alternate 6;
    -o-animation: foot-left .3s alternate 6; }
  #feet.moving .foot-right {
    animation: foot-right .3s alternate 6;
    -moz-animation: foot-right .3s alternate 6;
    -webkit-animation: foot-right .3s alternate 6;
    -o-animation: foot-right .3s alternate 6; }
  #feet.moving .dress {
    animation: dress        .3s alternate 6;
    -moz-animation: dress    .3s alternate 6;
    -webkit-animation: dress .3s alternate 6;
    -o-animation: dress      .3s alternate 6; }

.flowtime {
  -webkit-transition: -webkit-transform 2s cubic-bezier(0.77, 0.1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.77, 0.1, 0.22, 1); }

@-webkit-keyframes dress {
  0% {
    margin-top: 3px; }

  100% {
    margin-top: 0px; } }
@-moz-keyframes dress {
  0% {
    margin-top: 3px; }

  100% {
    margin-top: 0px; } }
@keyframes dress {
  0% {
    margin-top: 3px; }

  100% {
    margin-top: 0px; } }
@-webkit-keyframes foot-left {
  0% {
    margin-top: 7px;
    margin-left: 0px; }

  100% {
    margin-top: 0px;
    margin-left: 5px; } }
@-moz-keyframes foot-left {
  0% {
    margin-top: 7px;
    margin-left: 0px; }

  100% {
    margin-top: 0px;
    margin-left: 5px; } }
@keyframes foot-left {
  0% {
    margin-top: 7px;
    margin-left: 0px; }

  100% {
    margin-top: 0px;
    margin-left: 5px; } }
@-webkit-keyframes foot-right {
  0% {
    margin-top: -12px;
    margin-left: 50px; }

  100% {
    margin-top: 5px;
    margin-left: 21px; } }
@-moz-keyframes foot-right {
  0% {
    margin-top: -12px;
    margin-left: 50px; }

  100% {
    margin-top: 5px;
    margin-left: 21px; } }
@keyframes foot-right {
  0% {
    margin-top: -8px;
    margin-left: 18px; }

  100% {
    margin-top: 3px;
    margin-left: 0px; } }
/* Layout */
.ft-page {
  padding-top: 5rem;
  margin-top: 0;
  font-size: 1.6em;
  max-height: 100%;
  overflow: hidden; }
  .ft-page h2 {
    font-size: 1.2em;
    font-weight: bold; }
  .ft-page p {
    margin: .5em 0; }
  .ft-page h2.balance, .ft-page p.balance {
    color: #0858A4;
    font-weight: bold; }

.intro-page .inner {
  background-color: rgba(125, 125, 125, 0.6);
  margin-top: 9rem; }

.intro-page .inner, .ft-section.amanda .ft-page .inner, .ft-section.james .ft-page .inner, .ft-section.dave .ft-page .inner {
  width: auto;
  min-width: 8rem;
  text-align: center;
  position: relative; }
.intro-page .innerer, .ft-section.amanda .ft-page .innerer, .ft-section.james .ft-page .innerer, .ft-section.dave .ft-page .innerer {
  padding: 1rem;
  line-height: 1.3; }

.choose-path .inner {
  background-color: transparent;
  margin-top: 1rem; }
.choose-path .choose-path-img {
  width: 18rem;
  height: auto; }
.choose-path ul {
  margin-top: 1rem; }
  .choose-path ul li a {
    display: block;
    padding: 2rem 0;
    font-size: 1.6em;
    font-weight: bold;
    color: #F6EBD3;
    position: relative; }
    .choose-path ul li a img {
      position: absolute;
      left: -6rem;
      top: 1.5rem;
      height: 5.6rem;
      width: auto;
      transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91); }
    .choose-path ul li a.amanda img {
      left: -12.5rem; }
    .choose-path ul li a.dave img {
      left: -10rem; }
    .choose-path ul li a:hover, .choose-path ul li a:active {
      text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4); }
      .choose-path ul li a:hover img, .choose-path ul li a:active img {
        transform: translateX(2rem); }

.ft-section.amanda .ft-page .inner, .ft-section.james .ft-page .inner, .ft-section.dave .ft-page .inner, .ft-section.outro .ft-page .inner {
  background-color: #F3EBD4;
  color: #636466;
  width: auto;
  min-width: 8rem;
  margin: 7rem 2rem;
  text-align: center;
  position: relative; }
.ft-section.amanda .ft-page {
  background: #70be8b url(../img/amanda/background-pattern.png) repeat; }
.ft-section.james .ft-page {
  background: #666666 url(../img/james/background-pattern.png) repeat; }
.ft-section.outro .ft-page, .ft-section.intro .ft-page, .ft-section.dave .ft-page {
  background: black url(../img/dave/background-pattern.png) repeat; }

.ft-section .outro.ft-page .inner {
  margin-top: 0 !important;
  margin-bottom: 0;
  height: 100%; }
  .ft-section .outro.ft-page .inner .innerer {
    padding: 3rem 2rem 14rem 2rem;
    text-align: center; }
.ft-section .outro .logo-large {
  height: 16rem;
  margin: 0 0 1rem 0; }
.ft-section .outro h3.donate-cta {
  color: #ED4F39;
  font-size: 1.2em;
  font-weight: bold;
  margin: 1rem 0 0 0;
  white-space: nowrap; }
.ft-section .outro .ctas {
  width: 24rem;
  margin: 1rem auto 0 auto; }
  .ft-section .outro .ctas .donate {
    width: 100%;
    padding: 1rem 0;
    font-size: 3rem; }
  .ft-section .outro .ctas .half {
    width: 47%;
    position: relative; }
    .ft-section .outro .ctas .half .button {
      width: 100%;
      padding: 0;
      margin-top: 1.5rem;
      background-color: #E9B54A; }
      .ft-section .outro .ctas .half .button:hover {
        background-color: #e3a21d; }
    .ft-section .outro .ctas .half .icon {
      position: absolute;
      top: 1.5rem;
      left: 0rem;
      display: none; }
      .ft-section .outro .ctas .half .icon img {
        height: 3rem;
        width: auto; }
    .ft-section .outro .ctas .half .twitter {
      left: 3.8rem; }
    .ft-section .outro .ctas .half .linkedin {
      left: 8.3rem; }
  .ft-section .outro .ctas .left {
    float: left; }
  .ft-section .outro .ctas .right {
    float: right; }

.ft-section.intro .intro-banner {
  width: 100%;
  background-color: #E9B54A;
  text-align: center;
  margin: 9rem 0 2rem 0; }
  .ft-section.intro .intro-banner img {
    height: 12rem;
    width: auto;
    margin: 2rem auto; }
.ft-section.intro p {
  text-align: center; }

.cssload-main {
  position: absolute;
  content: '';
  left: 50%;
  top: 4rem;
  transform: translate(-100%, -240%);
  -o-transform: translate(-100%, -240%);
  -ms-transform: translate(-100%, -240%);
  -webkit-transform: translate(-100%, -240%);
  -moz-transform: translate(-100%, -240%); }

.cssload-main * {
  font-size: 35px; }

.cssload-heart {
  animation: cssload-heart 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -o-animation: cssload-heart 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -ms-animation: cssload-heart 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -webkit-animation: cssload-heart 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -moz-animation: cssload-heart 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  top: 50%;
  content: '';
  left: 50%;
  position: absolute; }

.cssload-heartL {
  width: 1em;
  height: 1em;
  border: 1px solid #a20625;
  background-color: #a20625;
  content: '';
  position: absolute;
  display: block;
  border-radius: 100%;
  animation: cssload-heartL 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -o-animation: cssload-heartL 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -ms-animation: cssload-heartL 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -webkit-animation: cssload-heartL 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -moz-animation: cssload-heartL 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  transform: translate(-16px, -15px);
  -o-transform: translate(-16px, -15px);
  -ms-transform: translate(-16px, -15px);
  -webkit-transform: translate(-16px, -15px);
  -moz-transform: translate(-16px, -15px); }

.cssload-heartR {
  width: 1em;
  height: 1em;
  border: 1px solid #a20625;
  background-color: #a20625;
  content: '';
  position: absolute;
  display: block;
  border-radius: 100%;
  transform: translate(16px, -15px);
  -o-transform: translate(16px, -15px);
  -ms-transform: translate(16px, -15px);
  -webkit-transform: translate(16px, -15px);
  -moz-transform: translate(16px, -15px);
  animation: cssload-heartR 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -o-animation: cssload-heartR 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -ms-animation: cssload-heartR 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -webkit-animation: cssload-heartR 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -moz-animation: cssload-heartR 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal; }

.cssload-square {
  width: 1em;
  height: 1em;
  border: 1px solid #a20625;
  background-color: #a20625;
  position: relative;
  display: block;
  content: '';
  transform: scale(1) rotate(-45deg);
  -o-transform: scale(1) rotate(-45deg);
  -ms-transform: scale(1) rotate(-45deg);
  -webkit-transform: scale(1) rotate(-45deg);
  -moz-transform: scale(1) rotate(-45deg);
  animation: cssload-square 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -o-animation: cssload-square 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -ms-animation: cssload-square 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -webkit-animation: cssload-square 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -moz-animation: cssload-square 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal; }

.cssload-shadow {
  top: 55px;
  left: 50%;
  content: '';
  position: relative;
  display: block;
  bottom: -.3em;
  width: 1em;
  height: .14em;
  background-color: rgba(99, 100, 102, 0.97);
  border: 1px solid #636466;
  border-radius: 50%;
  animation: cssload-shadow 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -o-animation: cssload-shadow 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -ms-animation: cssload-shadow 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -webkit-animation: cssload-shadow 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -moz-animation: cssload-shadow 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal; }

@keyframes cssload-square {
  50% {
    border-radius: 100%;
    transform: scale(0.5) rotate(-45deg); }

  100% {
    transform: scale(1) rotate(-45deg); } }
@-o-keyframes cssload-square {
  50% {
    border-radius: 100%;
    -o-transform: scale(0.5) rotate(-45deg); }

  100% {
    -o-transform: scale(1) rotate(-45deg); } }
@-ms-keyframes cssload-square {
  50% {
    border-radius: 100%;
    -ms-transform: scale(0.5) rotate(-45deg); }

  100% {
    -ms-transform: scale(1) rotate(-45deg); } }
@-webkit-keyframes cssload-square {
  50% {
    border-radius: 100%;
    -webkit-transform: scale(0.5) rotate(-45deg); }

  100% {
    -webkit-transform: scale(1) rotate(-45deg); } }
@-moz-keyframes cssload-square {
  50% {
    border-radius: 100%;
    -moz-transform: scale(0.5) rotate(-45deg); }

  100% {
    -moz-transform: scale(1) rotate(-45deg); } }
@keyframes cssload-heart {
  50% {
    transform: rotate(360deg); }

  100% {
    transform: rotate(720deg); } }
@-o-keyframes cssload-heart {
  50% {
    -o-transform: rotate(360deg); }

  100% {
    -o-transform: rotate(720deg); } }
@-ms-keyframes cssload-heart {
  50% {
    -ms-transform: rotate(360deg); }

  100% {
    -ms-transform: rotate(720deg); } }
@-webkit-keyframes cssload-heart {
  50% {
    -webkit-transform: rotate(360deg); }

  100% {
    -webkit-transform: rotate(720deg); } }
@-moz-keyframes cssload-heart {
  50% {
    -moz-transform: rotate(360deg); }

  100% {
    -moz-transform: rotate(720deg); } }
@keyframes cssload-heartL {
  60% {
    transform: scale(0.4); } }
@-o-keyframes cssload-heartL {
  60% {
    -o-transform: scale(0.4); } }
@-ms-keyframes cssload-heartL {
  60% {
    -ms-transform: scale(0.4); } }
@-webkit-keyframes cssload-heartL {
  60% {
    -webkit-transform: scale(0.4); } }
@-moz-keyframes cssload-heartL {
  60% {
    -moz-transform: scale(0.4); } }
@keyframes cssload-heartR {
  40% {
    transform: scale(0.4); } }
@-o-keyframes cssload-heartR {
  40% {
    -o-transform: scale(0.4); } }
@-ms-keyframes cssload-heartR {
  40% {
    -ms-transform: scale(0.4); } }
@-webkit-keyframes cssload-heartR {
  40% {
    -webkit-transform: scale(0.4); } }
@-moz-keyframes cssload-heartR {
  40% {
    -moz-transform: scale(0.4); } }
@keyframes cssload-shadow {
  50% {
    transform: scale(0.5);
    border-color: #636466; } }
@-o-keyframes cssload-shadow {
  50% {
    -o-transform: scale(0.5);
    border-color: #636466; } }
@-ms-keyframes cssload-shadow {
  50% {
    -ms-transform: scale(0.5);
    border-color: #636466; } }
@-webkit-keyframes cssload-shadow {
  50% {
    -webkit-transform: scale(0.5);
    border-color: #636466; } }
@-moz-keyframes cssload-shadow {
  50% {
    -moz-transform: scale(0.5);
    border-color: #636466; } }
html {
  font-size: 10px;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-variant: bold;
  color: #F6EAD4;
  background-color: #646464; }

.loading nav, .loading header, .loading #budget-table, .loading #footer, .loading #choose-path-tablet {
  display: none !important;
  visibility: hidden !important; }

@media (max-width: 1024px) {
  .loading #feet .amanda, .loading #feet .dave {
    display: none !important;
    visibility: hidden !important; } }
.ft-default-progress {
  bottom: 7rem; }

/* Buttons */
a {
  text-decoration: none; }

nav a {
  color: #F6EAD4; }

a.button {
  text-transform: lowercase;
  color: #F6EAD4;
  background-color: #0858A4;
  line-height: 1.4em;
  font-size: 1.4em;
  font-weight: bold;
  display: inline-block;
  width: auto;
  padding: 1rem 2rem;
  border-radius: 1rem;
  /*	border-top: 2px solid transparent;
  	border-bottom: 2px solid transparent;
  	border-left: 1px solid transparent;
  	border-right: 1px solid transparent;*/ }
  a.button:hover {
    background-color: #063e73; }
  a.button:active {
    	/*	line-height: 1.1em;
    
    		border-top: 2px solid darken( #0858A4, 30% );
    		border-left: 1px solid darken( #0858A4, 30% );
    		border-right: 1px solid darken( #0858A4, 30% );*/ }

a.button-risk {
  background-color: #FAB149; }

a.donate {
  background-color: #ED4F39;
  /*	&:active {
  		border-top: 2px solid darken( #ED4F39, 30% );
  		border-left: 1px solid darken( #ED4F39, 30% );
  		border-right: 1px solid darken( #ED4F39, 30% );
  		line-height: 2.3rem;
  	}*/ }
  a.donate:hover {
    background-color: #df2d14; }

/* Risk Cards */
.risk-card .inner {
  min-height: 14rem; }
.risk-card a.button {
  opacity: 0;
  transition: opacity .25s ease-in-out;
  transition: 0.6s;
  transition-delay: 5s; }

ul.risk {
  display: block;
  position: relative;
  height: auto;
  min-height: 2rem;
  width: auto;
  margin: 1rem auto; }
  ul.risk li {
    display: none;
    width: auto;
    height: auto;
    min-height: 2rem; }
    ul.risk li.front, ul.risk li.back {
      display: block;
      position: absolute;
      width: 100%;
      transition: opacity .25s ease-in-out;
      transition: 0.6s;
      transition-delay: 5s; }
    ul.risk li.back {
      opacity: 0; }

.flip ul.risk li.front {
  opacity: 0; }
.flip ul.risk li.back {
  opacity: 1; }
.flip a.button {
  opacity: 1; }

ul.choices li {
  list-style-type: disc;
  list-style-position: inside; }

.smaller, .smaller li {
  font-size: .9em; }

/* entire container, keeps perspective */
#choose-path-tablet, #feet a.button {
  display: none; }

@media (min-width: 1024px) {
  #feet {
    max-width: 102.4rem;
    left: 50%;
    margin-left: -51.2rem; }

  header .inner {
    max-width: 128rem;
    margin: 0 auto; }

  body.hide-header #feet {
    transform: translateY(34rem) !important; }

  body.intro .ft-section.intro .intro-banner {
    margin-top: 20rem;
    margin-bottom: 7rem; }
  body.intro #feet {
    z-index: 1;
    transform: translateY(36rem);
    transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
    transition-delay: .5s; }
    body.intro #feet .james, body.intro #feet .amanda, body.intro #feet .dave {
      transform: translateY(0);
      display: block;
      visibility: visible;
      position: absolute; }
    body.intro #feet .dave {
      left: 5%; }
    body.intro #feet .amanda {
      left: 35%; }
    body.intro #feet .james {
      left: 66%; }
    body.intro #feet a.button {
      opacity: 0;
      display: inline-block;
      transition: opacity 0.6s linear; }
  body.intro .ft-page:not(.first) .inner {
    margin-top: 18rem;
    padding-top: 2rem;
    padding-bottom: 3rem; }
  body.intro .ft-page:not(.first) .innerer {
    max-width: 80rem;
    margin: 0 auto; }

  .ft-section .ft-page p {
    margin: 1.5em 0; }

  .ft-page.choose-path .inner {
    display: none; }

  #choose-path-tablet {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    z-index: 600;
    display: block;
    transform: translateY(-20rem);
    transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91); }
    #choose-path-tablet .cp-inner {
      width: auto;
      max-width: 128rem;
      padding: 2rem 1rem;
      margin: 0 auto;
      background-color: #0B58A5;
      text-align: center; }
    #choose-path-tablet img {
      height: 10rem;
      width: auto; }

  body.choose-path-page #choose-path-tablet {
    display: block;
    transform: translateY(0); }
  body.choose-path-page #feet {
    transform: translateY(52rem); }
    body.choose-path-page #feet p {
      text-align: center;
      position: absolute;
      top: 20rem;
      width: 100%; }
    body.choose-path-page #feet a.button {
      display: inline-block;
      font-size: 1.8em;
      float: none;
      margin: 0 auto;
      opacity: 1; }

  body.james #feet, body.amanda #feet, body.dave #feet {
    transform: translateY(4rem); }

  .ft-section.james .inner, .ft-section.amanda .inner, .ft-section.dave .inner {
    max-width: 100rem;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 17rem !important;
    padding-top: 1rem;
    padding-bottom: 2rem; }
    .ft-section.james .inner h2, .ft-section.amanda .inner h2, .ft-section.dave .inner h2 {
      font-size: 1.8em; }
    .ft-section.james .inner a.button, .ft-section.amanda .inner a.button, .ft-section.dave .inner a.button {
      min-width: 10rem;
      margin-right: .5rem;
      margin-left: .5rem; }
  .ft-section.james .innerer, .ft-section.amanda .innerer, .ft-section.dave .innerer {
    max-width: 80rem;
    margin: 0 auto; }

  #footer .inner {
    max-width: 130rem; }

  .ft-page.outro .inner .logo-large {
    margin-top: 0rem;
    margin-bottom: 4rem;
    height: 20rem; }
  .ft-page.outro .inner .ctas {
    width: 30rem; }
  .ft-page.outro .inner .donate {
    margin-bottom: .5rem; }
  .ft-page.outro .inner .facebook {
    left: 1rem !important; }
  .ft-page.outro .inner .twitter {
    left: 5.7rem !important; }
  .ft-page.outro .inner .linkedin {
    left: 11rem !important; } }
