/* $prefixAqua : #01A58A; */
/**
 * Foundation for Sites by ZURB
 * Version 6.2.0
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/* line 22, base/scss/motion-ui/util/_transition.scss */
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

/* line 22, base/scss/motion-ui/util/_transition.scss */
.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

/* line 34, base/scss/motion-ui/util/_transition.scss */
.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

/* line 56, base/scss/motion-ui/_classes.scss */
.slow {
  transition-duration: 750ms !important;
}

/* line 56, base/scss/motion-ui/_classes.scss */
.fast {
  transition-duration: 250ms !important;
}

/* line 62, base/scss/motion-ui/_classes.scss */
.linear {
  transition-timing-function: linear !important;
}

/* line 62, base/scss/motion-ui/_classes.scss */
.ease {
  transition-timing-function: ease !important;
}

/* line 62, base/scss/motion-ui/_classes.scss */
.ease-in {
  transition-timing-function: ease-in !important;
}

/* line 62, base/scss/motion-ui/_classes.scss */
.ease-out {
  transition-timing-function: ease-out !important;
}

/* line 62, base/scss/motion-ui/_classes.scss */
.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

/* line 62, base/scss/motion-ui/_classes.scss */
.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

/* line 62, base/scss/motion-ui/_classes.scss */
.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

/* line 62, base/scss/motion-ui/_classes.scss */
.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

/* line 68, base/scss/motion-ui/_classes.scss */
.short-delay {
  transition-delay: 300ms !important;
}

/* line 68, base/scss/motion-ui/_classes.scss */
.long-delay {
  transition-delay: 700ms !important;
}

/* line 76, base/scss/motion-ui/_classes.scss */
.shake {
  animation-name: shake-7;
}

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

/* line 77, base/scss/motion-ui/_classes.scss */
.spin-cw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

/* line 78, base/scss/motion-ui/_classes.scss */
.spin-ccw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

/* line 79, base/scss/motion-ui/_classes.scss */
.wiggle {
  animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

/* line 81, base/scss/motion-ui/_classes.scss */
.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

/* line 90, base/scss/motion-ui/_classes.scss */
.infinite {
  animation-iteration-count: infinite;
}

/* line 94, base/scss/motion-ui/_classes.scss */
.slow {
  animation-duration: 750ms !important;
}

/* line 94, base/scss/motion-ui/_classes.scss */
.fast {
  animation-duration: 250ms !important;
}

/* line 100, base/scss/motion-ui/_classes.scss */
.linear {
  animation-timing-function: linear !important;
}

/* line 100, base/scss/motion-ui/_classes.scss */
.ease {
  animation-timing-function: ease !important;
}

/* line 100, base/scss/motion-ui/_classes.scss */
.ease-in {
  animation-timing-function: ease-in !important;
}

/* line 100, base/scss/motion-ui/_classes.scss */
.ease-out {
  animation-timing-function: ease-out !important;
}

/* line 100, base/scss/motion-ui/_classes.scss */
.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

/* line 100, base/scss/motion-ui/_classes.scss */
.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

/* line 100, base/scss/motion-ui/_classes.scss */
.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

/* line 100, base/scss/motion-ui/_classes.scss */
.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

/* line 106, base/scss/motion-ui/_classes.scss */
.short-delay {
  animation-delay: 300ms !important;
}

/* line 106, base/scss/motion-ui/_classes.scss */
.long-delay {
  animation-delay: 700ms !important;
}

/* Module: ddcontentblocks Priority: 1 */
/* line 3, themes/base/scss/generated/_site.scss */
.content-block {
  padding: 0;
  width: 100%;
}

/* line 7, themes/base/scss/generated/_site.scss */
.content-block > header,
.content-block > footer {
  padding: 0.625rem 0.9375rem;
}

/* line 11, themes/base/scss/generated/_site.scss */
.content-block .body {
  padding: 0.625rem 0;
}

/* line 14, themes/base/scss/generated/_site.scss */
.content-block .body ul {
  list-style-type: none;
  margin: 0;
}

/* App Download Content Block */
/* line 24, themes/base/scss/generated/_site.scss */
.content-block.AppBlock .body .app-badge {
  background-color: #0e0e0e;
  border-radius: 0.625rem;
  display: inline-block;
  fill: #ffffff;
  margin: 0 auto 1.25rem auto;
  padding: 0.625rem;
  width: 15.625rem;
  margin: 0 0.625rem 0.625rem 0;
}

/* line 34, themes/base/scss/generated/_site.scss */
.content-block.AppBlock .body .app-badge .app-badge-icon {
  color: #ffffff;
  width: 3.125rem;
  height: 3.125rem;
  overflow: hidden;
  margin-right: 0.3125rem;
  float: left;
}

/* line 43, themes/base/scss/generated/_site.scss */
.content-block.AppBlock .body .app-badge .app-badge-text {
  color: #ffffff;
  line-height: 1;
}

/* line 47, themes/base/scss/generated/_site.scss */
.content-block.AppBlock .body .app-badge .app-badge-storename {
  color: #ffffff;
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}

/* Blog Archive Block */
/* line 61, themes/base/scss/generated/_site.scss */
.content-block.BlogArchiveBlock .slidedown-menu-wrapper li a {
  display: block;
  width: 100%;
}

/* line 68, themes/base/scss/generated/_site.scss */
.content-block.BlogArchiveBlock .slidedown-menu-wrapper > li .second-level {
  max-height: 0;
  overflow: hidden;
}

/* line 73, themes/base/scss/generated/_site.scss */
.content-block.BlogArchiveBlock .slidedown-menu-wrapper > li.active .second-level {
  max-height: 10000px;
}

/* Blog Categories Block */
/* line 85, themes/base/scss/generated/_site.scss */
.content-block.BlogCategoriesBlock ul li a {
  display: block;
  width: 100%;
}

/* Grid Content Block */
/* line 95, themes/base/scss/generated/_site.scss */
.content-block.GridBlock .gb-wrapper {
  position: relative;
}

@-moz-document url-prefix() {
  /* line 95, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper {
    display: block;
  }
}

/* line 101, themes/base/scss/generated/_site.scss */
.content-block.GridBlock .gb-wrapper:after {
  content: '';
  display: block;
  padding-bottom: 33.333333%;
}

/* line 108, themes/base/scss/generated/_site.scss */
.content-block.GridBlock .gb-wrapper.rows3:after {
  padding-bottom: 50%;
}

@media screen and (max-width: 39.9375em) {
  /* line 113, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper .gb-item {
    width: 100%;
  }
  /* line 117, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper .gb-item > a .image:after {
    padding-top: 66.666%;
  }
}

@media screen and (min-width: 40em) {
  /* line 95, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper {
    /* 3 Column Layout */
    /* 4 Column Layout */
    /* 5 Column Layout */
  }
  /* line 125, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper .gb-item {
    position: absolute;
    margin: 0;
  }
  /* line 129, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper .gb-item > a {
    height: auto;
    margin: 0;
    width: auto;
    position: absolute;
    top: 0.3125rem;
    bottom: 0.3125rem;
    left: 0.3125rem;
    right: 0.3125rem;
  }
  /* line 139, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper .gb-item > a .info {
    padding: 0.625rem;
  }
  /* line 143, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper .gb-item > a .image:after {
    display: none;
  }
  /* line 152, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.x1 {
    left: 0%;
  }
  /* line 155, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.width1 {
    width: 33.3333%;
  }
  /* line 152, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.x2 {
    left: 33.3333%;
  }
  /* line 155, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.width2 {
    width: 66.6666%;
  }
  /* line 152, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.x3 {
    left: 66.6666%;
  }
  /* line 155, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.width3 {
    width: 99.9999%;
  }
  /* line 160, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.y1 {
    top: 0%;
  }
  /* line 163, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.height1 {
    height: 50%;
  }
  /* line 160, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.y2 {
    top: 50%;
  }
  /* line 163, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols3 .gb-item.height2 {
    height: 100%;
  }
  /* line 172, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.x1 {
    left: 0%;
  }
  /* line 175, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.width1 {
    width: 25%;
  }
  /* line 172, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.x2 {
    left: 25%;
  }
  /* line 175, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.width2 {
    width: 50%;
  }
  /* line 172, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.x3 {
    left: 50%;
  }
  /* line 175, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.width3 {
    width: 75%;
  }
  /* line 172, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.x4 {
    left: 75%;
  }
  /* line 175, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.width4 {
    width: 100%;
  }
  /* line 180, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.y1 {
    top: 0%;
  }
  /* line 183, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.height1 {
    height: 50%;
  }
  /* line 180, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.y2 {
    top: 50%;
  }
  /* line 183, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.height2 {
    height: 100%;
  }
  /* line 180, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.y3 {
    top: 100%;
  }
  /* line 183, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols4 .gb-item.height3 {
    height: 150%;
  }
  /* line 192, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.x1 {
    left: 0%;
  }
  /* line 195, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.width1 {
    width: 20%;
  }
  /* line 192, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.x2 {
    left: 20%;
  }
  /* line 195, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.width2 {
    width: 40%;
  }
  /* line 192, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.x3 {
    left: 40%;
  }
  /* line 195, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.width3 {
    width: 60%;
  }
  /* line 192, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.x4 {
    left: 60%;
  }
  /* line 195, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.width4 {
    width: 80%;
  }
  /* line 192, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.x5 {
    left: 80%;
  }
  /* line 195, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.width5 {
    width: 100%;
  }
  /* line 200, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.y1 {
    top: 0%;
  }
  /* line 203, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.height1 {
    height: 33.33333%;
  }
  /* line 200, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.y2 {
    top: 33.33333%;
  }
  /* line 203, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.height2 {
    height: 66.66666%;
  }
  /* line 200, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.y3 {
    top: 66.66666%;
  }
  /* line 203, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5 .gb-item.height3 {
    height: 99.99999%;
  }
  /* line 210, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.x1 {
    left: 0%;
  }
  /* line 213, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.width1 {
    width: 20%;
  }
  /* line 210, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.x2 {
    left: 20%;
  }
  /* line 213, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.width2 {
    width: 40%;
  }
  /* line 210, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.x3 {
    left: 40%;
  }
  /* line 213, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.width3 {
    width: 60%;
  }
  /* line 210, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.x4 {
    left: 60%;
  }
  /* line 213, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.width4 {
    width: 80%;
  }
  /* line 210, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.x5 {
    left: 80%;
  }
  /* line 213, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.width5 {
    width: 100%;
  }
  /* line 218, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.y1 {
    top: 0%;
  }
  /* line 221, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.height1 {
    height: 50%;
  }
  /* line 218, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.y2 {
    top: 50%;
  }
  /* line 221, themes/base/scss/generated/_site.scss */
  .content-block.GridBlock .gb-wrapper.cols5.rows2 .gb-item.height2 {
    height: 100%;
  }
}

/* Instagram Block */
/* line 232, themes/base/scss/generated/_site.scss */
.content-block.InstagramBlock .column {
  max-width: 100%;
}

/* Standard Content Block */
/* line 242, themes/base/scss/generated/_site.scss */
aside.sidebar .content-block.StandardContentBlock .image, .content-block.StandardContentBlock .image {
  flex: 0 0 100%;
  max-width: 100%;
  order: 1;
  width: 100%;
}

/* line 249, themes/base/scss/generated/_site.scss */
aside.sidebar .content-block.StandardContentBlock .text, .content-block.StandardContentBlock .text {
  flex: 0 0 100%;
  max-width: 100%;
  order: 2;
  width: 100%;
}

@media screen and (min-width: 40em) {
  /* line 260, themes/base/scss/generated/_site.scss */
  .content-block.StandardContentBlock.standard-right .text, .content-block.StandardContentBlock.standard-left .text {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
    order: 1;
  }
  /* line 266, themes/base/scss/generated/_site.scss */
  .content-block.StandardContentBlock.standard-right .image, .content-block.StandardContentBlock.standard-left .image {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
    order: 2;
  }
  /* line 274, themes/base/scss/generated/_site.scss */
  .content-block.StandardContentBlock.standard-right .text {
    text-align: left;
  }
  /* line 280, themes/base/scss/generated/_site.scss */
  .content-block.StandardContentBlock.standard-left .text {
    order: 2;
    text-align: left;
  }
  /* line 284, themes/base/scss/generated/_site.scss */
  .content-block.StandardContentBlock.standard-left .image {
    order: 1;
  }
}

/* line 290, themes/base/scss/generated/_site.scss */
.content-block.StandardContentBlock.standard-fulltext {
  text-align: center;
}

/* line 295, themes/base/scss/generated/_site.scss */
.content-block.StandardContentBlock.standard-fullimage image {
  width: 100%;
}

/* Editor styling */
/* line 304, themes/base/scss/generated/_site.scss */
.cb-content {
  width: 100%;
}

/* Module: ddcontact Priority: 2 */
/* Contact Location Block */
/* line 313, themes/base/scss/generated/_site.scss */
.content-block.ContactLocationBlock .addressMap img {
  width: 100%;
}

/* line 318, themes/base/scss/generated/_site.scss */
.content-block.ContactLocationBlock .body.row.tabs-panel.is-active {
  display: flex;
}

/* line 324, themes/base/scss/generated/_site.scss */
aside.sidebar .content-block.ContactLocationBlock .location-map, .content-block.ContactLocationBlock .location-map {
  flex: 0 0 100%;
  max-width: 100%;
  order: 1;
  width: 100%;
}

/* line 331, themes/base/scss/generated/_site.scss */
aside.sidebar .content-block.ContactLocationBlock .location-details, .content-block.ContactLocationBlock .location-details {
  flex: 0 0 100%;
  max-width: 100%;
  order: 2;
  width: 100%;
}

@media screen and (min-width: 40em) {
  /* line 344, themes/base/scss/generated/_site.scss */
  .content-block.ContactLocationBlock .body.right .location-details, .content-block.ContactLocationBlock .body.left .location-details {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
    order: 1;
  }
  /* line 350, themes/base/scss/generated/_site.scss */
  .content-block.ContactLocationBlock .body.right .location-map, .content-block.ContactLocationBlock .body.left .location-map {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
    order: 2;
  }
  /* line 358, themes/base/scss/generated/_site.scss */
  .content-block.ContactLocationBlock .body.right .location-details {
    text-align: left;
  }
  /* line 364, themes/base/scss/generated/_site.scss */
  .content-block.ContactLocationBlock .body.left .location-details {
    order: 2;
    text-align: left;
  }
  /* line 368, themes/base/scss/generated/_site.scss */
  .content-block.ContactLocationBlock .body.left .location-map {
    order: 1;
  }
}

/* Module: ddmenumanager Priority: 2 */
/* Menu Block */
/* line 381, themes/base/scss/generated/_site.scss */
.content-block.MenuBlock ul {
  display: block;
}

/* line 385, themes/base/scss/generated/_site.scss */
.content-block.MenuBlock li {
  display: block;
  width: 100%;
}

/* line 391, themes/base/scss/generated/_site.scss */
.content-block.MenuBlock .menu .menu {
  max-height: 0;
  overflow: hidden;
}

/* line 395, themes/base/scss/generated/_site.scss */
.content-block.MenuBlock .menu.second-level, .content-block.MenuBlock .menu.third-level {
  max-height: 0;
}

/* line 400, themes/base/scss/generated/_site.scss */
.content-block.MenuBlock .menu .active > .menu {
  max-height: 10000px;
}

/* line 404, themes/base/scss/generated/_site.scss */
.content-block.MenuBlock .menu .active > a > .trigger .fa {
  transform: rotate(180deg);
}

/* line 410, themes/base/scss/generated/_site.scss */
.content-block.MenuBlock a {
  position: relative;
}

/* line 412, themes/base/scss/generated/_site.scss */
.content-block.MenuBlock a .fa {
  position: absolute;
  right: 0.3125rem;
}

/* Module: ddtestimonial Priority: 2 */
/* Testimonial Block */
/* line 424, themes/base/scss/generated/_site.scss */
.content-block.TestimonialBlock .body.row .column {
  max-width: 100%;
}

/* line 3, themes/base/scss/site/_typography.scss */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  color: #61a9d1;
  text-decoration: none;
}

/* ::selection {
	background: $secondary-color;
}
::-moz-selection {
    background: $secondary-color;
} */
/* line 18, themes/base/scss/site/_typography.scss */
.typography h1 {
  margin-top: 2.8125rem;
}

/* line 22, themes/base/scss/site/_typography.scss */
.typography h2 {
  margin-top: 2.1875rem;
}

/* line 26, themes/base/scss/site/_typography.scss */
.typography h3 {
  color: #222222;
  margin-top: 0.9375rem;
}

/* line 31, themes/base/scss/site/_typography.scss */
.typography h4 {
  color: #222222;
  margin-top: 0.625rem;
}

/* line 36, themes/base/scss/site/_typography.scss */
.typography h5,
.typography h6 {
  margin-top: 0.4375rem;
}

/* line 41, themes/base/scss/site/_typography.scss */
.typography h3, .typography h4, .typography h5, .typography h6,
.typography .h3, .typography .h4, .typography .h5, .typography .h6 {
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

/* line 45, themes/base/scss/site/_typography.scss */
.typography a {
  text-decoration: underline;
}

/* line 49, themes/base/scss/site/_typography.scss */
.typography p {
  color: #3c3c3c;
  font-size: 1rem;
  line-height: 1.45em;
  display: inline-block;
  width: 100%;
}

/* line 57, themes/base/scss/site/_typography.scss */
.typography .left {
  text-align: left;
}

/* line 61, themes/base/scss/site/_typography.scss */
.typography .center {
  text-align: center;
}

/* line 65, themes/base/scss/site/_typography.scss */
.typography .right {
  text-align: right;
}

/* line 69, themes/base/scss/site/_typography.scss */
.typography .media {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

/* line 75, themes/base/scss/site/_typography.scss */
.typography .media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 84, themes/base/scss/site/_typography.scss */
.typography ul, .typography ol {
  padding: 0 0 0 1.875rem;
}

/* line 87, themes/base/scss/site/_typography.scss */
.typography ul li, .typography ol li {
  font-size: 1rem;
  line-height: 1.45em;
  margin-bottom: 0.3125rem;
}

/* line 95, themes/base/scss/site/_typography.scss */
.typography img.left {
  float: left;
  max-width: 50%;
  margin: 0.3125rem 1.25rem 1rem 0;
}

/* line 101, themes/base/scss/site/_typography.scss */
.typography img.right {
  float: right;
  max-width: 50%;
  margin: 0.3125rem 0 1rem 1.25rem;
}

/* line 107, themes/base/scss/site/_typography.scss */
.typography img.leftAlone {
  clear: both;
  float: left;
  margin-right: 100%;
  margin-bottom: 1rem;
}

/* line 114, themes/base/scss/site/_typography.scss */
.typography img.center {
  clear: both;
  display: block;
  float: none;
  margin: 0 auto 1rem auto;
}

/* line 122, themes/base/scss/site/_typography.scss */
.typography .captionImage {
  margin-top: 0.3125rem;
}

/* line 125, themes/base/scss/site/_typography.scss */
.typography .captionImage img {
  margin: 0;
}

/* line 129, themes/base/scss/site/_typography.scss */
.typography .captionImage p {
  clear: both;
  font-style: italic;
  margin: 0.3125rem 0;
}

/* line 135, themes/base/scss/site/_typography.scss */
.typography .captionImage.left {
  float: left;
  margin: 0.3125rem 1.875rem 1rem 0;
}

/* line 139, themes/base/scss/site/_typography.scss */
.typography .captionImage.left[style] {
  max-width: 50%;
}

/* line 143, themes/base/scss/site/_typography.scss */
.typography .captionImage.left img {
  float: none;
  margin-right: -0.625rem;
  max-width: none;
  width: 100%;
}

/* line 151, themes/base/scss/site/_typography.scss */
.typography .captionImage.right {
  float: right;
  margin: 0.3125rem 0 1rem 1.875rem;
}

/* line 155, themes/base/scss/site/_typography.scss */
.typography .captionImage.right[style] {
  max-width: 50%;
}

/* line 159, themes/base/scss/site/_typography.scss */
.typography .captionImage.right img {
  float: none;
  margin-left: -0.625rem;
  max-width: none;
  width: 100%;
}

/* line 166, themes/base/scss/site/_typography.scss */
.typography .captionImage.right p {
  margin-left: -0.625rem;
  text-align: left;
}

/* line 172, themes/base/scss/site/_typography.scss */
.typography .captionImage.leftAlone {
  float: none;
  margin: 0 1.25rem 1rem 0;
}

/* line 177, themes/base/scss/site/_typography.scss */
.typography .captionImage.center {
  margin: 0 auto 1rem;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
/* line 11, themes/base/scss/site/elements/_animations.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 18, themes/base/scss/site/elements/_animations.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 23, themes/base/scss/site/elements/_animations.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 28, themes/base/scss/site/elements/_animations.scss */
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

/* line 92, themes/base/scss/site/elements/_animations.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* line 119, themes/base/scss/site/elements/_animations.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 160, themes/base/scss/site/elements/_animations.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 239, themes/base/scss/site/elements/_animations.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

/* line 278, themes/base/scss/site/elements/_animations.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* line 347, themes/base/scss/site/elements/_animations.scss */
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

/* line 408, themes/base/scss/site/elements/_animations.scss */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 469, themes/base/scss/site/elements/_animations.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 550, themes/base/scss/site/elements/_animations.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

/* line 639, themes/base/scss/site/elements/_animations.scss */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 726, themes/base/scss/site/elements/_animations.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 799, themes/base/scss/site/elements/_animations.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 872, themes/base/scss/site/elements/_animations.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 945, themes/base/scss/site/elements/_animations.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1018, themes/base/scss/site/elements/_animations.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

/* line 1061, themes/base/scss/site/elements/_animations.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1104, themes/base/scss/site/elements/_animations.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1137, themes/base/scss/site/elements/_animations.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1170, themes/base/scss/site/elements/_animations.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1213, themes/base/scss/site/elements/_animations.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 1238, themes/base/scss/site/elements/_animations.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1271, themes/base/scss/site/elements/_animations.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1304, themes/base/scss/site/elements/_animations.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-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;
  }
}

/* line 1337, themes/base/scss/site/elements/_animations.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1370, themes/base/scss/site/elements/_animations.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1403, themes/base/scss/site/elements/_animations.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1436, themes/base/scss/site/elements/_animations.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1469, themes/base/scss/site/elements/_animations.scss */
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1502, themes/base/scss/site/elements/_animations.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1535, themes/base/scss/site/elements/_animations.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* line 1560, themes/base/scss/site/elements/_animations.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

/* line 1589, themes/base/scss/site/elements/_animations.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1618, themes/base/scss/site/elements/_animations.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 1647, themes/base/scss/site/elements/_animations.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1676, themes/base/scss/site/elements/_animations.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

/* line 1705, themes/base/scss/site/elements/_animations.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1734, themes/base/scss/site/elements/_animations.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* line 1763, themes/base/scss/site/elements/_animations.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1792, themes/base/scss/site/elements/_animations.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

/* line 1871, themes/base/scss/site/elements/_animations.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

/* line 1944, themes/base/scss/site/elements/_animations.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

/* line 2017, themes/base/scss/site/elements/_animations.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

/* line 2062, themes/base/scss/site/elements/_animations.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

/* line 2107, themes/base/scss/site/elements/_animations.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2166, themes/base/scss/site/elements/_animations.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

/* line 2197, themes/base/scss/site/elements/_animations.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2240, themes/base/scss/site/elements/_animations.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2281, themes/base/scss/site/elements/_animations.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2322, themes/base/scss/site/elements/_animations.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2363, themes/base/scss/site/elements/_animations.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2404, themes/base/scss/site/elements/_animations.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

/* line 2441, themes/base/scss/site/elements/_animations.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

/* line 2478, themes/base/scss/site/elements/_animations.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 2515, themes/base/scss/site/elements/_animations.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 2552, themes/base/scss/site/elements/_animations.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

/* line 2589, themes/base/scss/site/elements/_animations.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* line 2662, themes/base/scss/site/elements/_animations.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 2697, themes/base/scss/site/elements/_animations.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

/* line 2728, themes/base/scss/site/elements/_animations.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* line 2757, themes/base/scss/site/elements/_animations.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 2798, themes/base/scss/site/elements/_animations.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 2839, themes/base/scss/site/elements/_animations.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 2880, themes/base/scss/site/elements/_animations.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 2921, themes/base/scss/site/elements/_animations.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

/* line 2958, themes/base/scss/site/elements/_animations.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3003, themes/base/scss/site/elements/_animations.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

/* line 3040, themes/base/scss/site/elements/_animations.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

/* line 3077, themes/base/scss/site/elements/_animations.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3122, themes/base/scss/site/elements/_animations.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3153, themes/base/scss/site/elements/_animations.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3184, themes/base/scss/site/elements/_animations.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3215, themes/base/scss/site/elements/_animations.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3246, themes/base/scss/site/elements/_animations.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

/* line 3277, themes/base/scss/site/elements/_animations.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 3308, themes/base/scss/site/elements/_animations.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

/* line 3339, themes/base/scss/site/elements/_animations.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* line 3370, themes/base/scss/site/elements/_animations.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* line 1, themes/base/scss/site/elements/_buttons.scss */
.button,
.action {
  border: 0.0625rem solid transparent;
  border-bottom: 0.0625rem solid #3485b2;
  display: inline-block;
  font-size: 1.125rem;
  height: 2.875rem;
  line-height: 1.333;
  padding: 0.625rem 1rem;
  position: relative;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  -webkit-appearance: none;
}

/* line 14, themes/base/scss/site/elements/_buttons.scss */
.button.flat,
.action.flat {
  background-color: transparent;
  border-width: 0;
  padding: 0;
  height: auto;
  color: #61a9d1;
}

/* line 21, themes/base/scss/site/elements/_buttons.scss */
body[data-whatinput=mouse] .button.flat:hover:not(.disabled), body[data-whatinput=mouse]
.action.flat:hover:not(.disabled) {
  color: #27354f;
}

/* line 26, themes/base/scss/site/elements/_buttons.scss */
.typography .button, .typography
.action {
  text-decoration: none;
}

/* line 30, themes/base/scss/site/elements/_buttons.scss */
.button i,
.action i {
  font-weight: 300;
}

/* line 34, themes/base/scss/site/elements/_buttons.scss */
.button.icon-only,
.action.icon-only {
  padding: 0.625rem;
}

/* line 37, themes/base/scss/site/elements/_buttons.scss */
.button.icon-only i,
.action.icon-only i {
  display: block;
  font-size: 1.25rem;
  line-height: 0.9375rem;
  width: 0.9375rem;
}

/* line 45, themes/base/scss/site/elements/_buttons.scss */
.button.large,
.action.large {
  padding: 0.9375rem;
  height: auto;
}

/* line 50, themes/base/scss/site/elements/_buttons.scss */
.button.alternate,
.action.alternate {
  background-color: #ffffff;
  border-color: #d9d9d9;
  color: #27354f;
}

/* line 55, themes/base/scss/site/elements/_buttons.scss */
body[data-whatinput=mouse] .button.alternate:hover:not(.disabled), body[data-whatinput=mouse]
.action.alternate:hover:not(.disabled) {
  background: #bfbfbf;
  border-color: #999999;
  color: #27354f;
}

/* line 78, themes/base/scss/site/elements/_buttons.scss */
.button:before,
.action:before {
  display: none;
  text-indent: 0;
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 2.3125rem;
}

/* line 90, themes/base/scss/site/elements/_buttons.scss */
.button.verified,
.action.verified {
  background: #00FF00;
  text-indent: -9999em;
}

/* line 94, themes/base/scss/site/elements/_buttons.scss */
.button.verified:before,
.action.verified:before {
  display: block;
  content: '\f00c';
  font-size: 1.25rem;
  height: 100%;
  margin: 0 auto;
  text-indent: 0;
  width: 1.875rem;
}

/* line 105, themes/base/scss/site/elements/_buttons.scss */
.button.pending,
.action.pending {
  cursor: wait;
  text-indent: -9999em;
}

/* line 109, themes/base/scss/site/elements/_buttons.scss */
.button.pending:before,
.action.pending:before {
  animation: fa-spin 2s infinite linear;
  display: block;
  content: '\f110';
  font-size: 1.25rem;
  height: 100%;
  margin: 0 auto;
  text-indent: 0;
  width: 1.875rem;
}

/* line 1, themes/base/scss/site/elements/_form.scss */
.userform label.left {
  display: none;
}

/* line 5, themes/base/scss/site/elements/_form.scss */
.help-text {
  margin-top: -1rem;
}

/* line 9, themes/base/scss/site/elements/_form.scss */
label {
  font-weight: bold;
  color: #61a9d1;
}

/* line 14, themes/base/scss/site/elements/_form.scss */
span.error.message {
  display: block;
  margin-top: -1rem;
  width: 100%;
}

/* line 21, themes/base/scss/site/elements/_form.scss */
.optionset ul {
  list-style-type: none;
  margin-left: 0;
}

/* line 25, themes/base/scss/site/elements/_form.scss */
.optionset ul input {
  margin: 0;
}

/* line 32, themes/base/scss/site/elements/_form.scss */
.selectiongroup input {
  pointer-events: none;
}

/* line 40, themes/base/scss/site/elements/_form.scss */
.treemultiselect .help-text,
.treedropdown .help-text {
  clear: both;
}

/* line 46, themes/base/scss/site/elements/_form.scss */
.field.date .year, .field.date .month, .field.date .day {
  display: inline;
  width: 20%;
}

/* line 53, themes/base/scss/site/elements/_form.scss */
form.invalid {
  animation-duration: 400ms;
  animation-timing-function: ease-in-out;
  animation-name: panelShakeAnimation;
}

/* line 59, themes/base/scss/site/elements/_form.scss */
form input[type='text'],
form input[type='password'],
form input[type='date'],
form input[type='datetime'],
form input[type='datetime-local'],
form input[type='month'],
form input[type='week'],
form input[type='email'],
form input[type='number'],
form input[type='search'],
form input[type='tel'],
form input[type='time'],
form input[type='url'],
form input[type='color'],
form textarea {
  height: 2.875rem;
  padding: 0.625rem 1rem;
  line-height: 1.333;
  resize: vertical;
}

/* line 79, themes/base/scss/site/elements/_form.scss */
form input[type='text'].invalid,
form input[type='password'].invalid,
form input[type='date'].invalid,
form input[type='datetime'].invalid,
form input[type='datetime-local'].invalid,
form input[type='month'].invalid,
form input[type='week'].invalid,
form input[type='email'].invalid,
form input[type='number'].invalid,
form input[type='search'].invalid,
form input[type='tel'].invalid,
form input[type='time'].invalid,
form input[type='url'].invalid,
form input[type='color'].invalid,
form textarea.invalid {
  animation-duration: 400ms;
  animation-timing-function: ease-in-out;
  animation-name: panelShakeAnimation;
  border-color: #ec5840;
  box-shadow: inset 0 0.0625rem 0.4375rem #ec5840;
  z-index: 12 !important;
}

/* line 89, themes/base/scss/site/elements/_form.scss */
form .Actions {
  text-align: center;
}

@keyframes panelShakeAnimation {
  0% {
    transform: translateX(0);
  }
  12.5% {
    transform: translateX(-6px) rotateY(-5deg);
  }
  37.5% {
    transform: translateX(5px) rotateY(4deg);
  }
  62.5% {
    transform: translateX(-3px) rotateY(-2deg);
  }
  87.5% {
    transform: translateX(2px) rotateY(1deg);
  }
  100% {
    transform: translateX(0);
  }
}

/* DDUsername Field */
/* line 116, themes/base/scss/site/elements/_form.scss */
#UserForm_Form_DDUsername_Holder {
  display: none;
}

/* line 1, themes/base/scss/site/elements/_alerts.scss */
.alert,
.message {
  background: #ffae00;
  color: #FFF;
  line-height: 1.3em;
  margin-bottom: 0.9375rem;
  padding: 0.4375rem 0.5625rem;
}

/* line 9, themes/base/scss/site/elements/_alerts.scss */
.alert .close,
.message .close {
  color: #000000;
  filter: alpha(opacity=20);
  opacity: 0.2;
  float: right;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1;
  padding-right: 0.3125rem;
  text-decoration: none;
  text-shadow: 0 0.0625rem 0 #ffffff;
}

/* line 21, themes/base/scss/site/elements/_alerts.scss */
.alert p,
.message p {
  color: #FFF;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.3em;
}

/* line 26, themes/base/scss/site/elements/_alerts.scss */
.alert p a,
.alert p a:visited,
.message p a,
.message p a:visited {
  color: #FFF;
  font-weight: bold;
}

/* line 32, themes/base/scss/site/elements/_alerts.scss */
.alert a,
.message a {
  color: #FFF;
  text-decoration: underline;
}

/* line 36, themes/base/scss/site/elements/_alerts.scss */
.alert p:last-of-type,
.message p:last-of-type {
  margin-bottom: 0;
}

/* line 39, themes/base/scss/site/elements/_alerts.scss */
.alert.required, .alert.bad, .alert.validation,
.alert label.error, .alert.alert-error,
.message.required,
.message.bad,
.message.validation,
.message label.error,
.message.alert-error {
  background: #ffae00;
}

/* line 46, themes/base/scss/site/elements/_alerts.scss */
.alert.alert-info, .alert.info,
.message.alert-info,
.message.info {
  background: #ec5840;
}

/* line 50, themes/base/scss/site/elements/_alerts.scss */
.alert.alert-success, .alert.success,
.message.alert-success,
.message.success {
  background: #3adb76;
}

/* line 54, themes/base/scss/site/elements/_alerts.scss */
.alert.alert-warning, .alert.warning,
.message.alert-warning,
.message.warning {
  background: #ffae00;
}

/* line 58, themes/base/scss/site/elements/_alerts.scss */
.alert.inline,
.message.inline {
  display: inline-block;
}

/* Header Message */
/* Ajax page spinner */
/* line 10, themes/base/scss/site/_elements.scss */
.page-ajax {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1020;
}

/* line 19, themes/base/scss/site/_elements.scss */
.page-ajax div {
  background: #27354f;
  border-radius: 50%;
  color: #61a9d1;
  height: 3.75rem;
  position: fixed;
  top: 2.8125rem;
  left: 50%;
  margin-top: -1.875rem;
  margin-left: -1.875rem;
  opacity: 0.75;
  text-align: center;
  width: 3.75rem;
  z-index: 1020;
}

/* line 34, themes/base/scss/site/_elements.scss */
.page-ajax div .fa {
  font-size: 1.875rem;
  display: block;
  line-height: 3.75rem;
  width: 3.75rem;
}

/* line 41, themes/base/scss/site/_elements.scss */
.page-ajax div .ajax-note {
  background: #8a8a8a;
  background: rgba(138, 138, 138, 0.75);
  border-radius: 0.625rem;
  color: #ffffff;
  display: none;
  font-size: 0.8125rem;
  height: 1.625rem;
  line-height: 1.625rem;
  position: absolute;
  bottom: -37px;
  left: -1.5625rem;
  width: 9.375rem;
  text-align: center;
}

/* No JS */
/* line 60, themes/base/scss/site/_elements.scss */
.no-javascript {
  background: #8a8a8a;
  padding: 0.9375rem;
  position: fixed;
  top: 0;
  width: 100%;
  text-align: center;
  z-index: 2000;
}

/* line 68, themes/base/scss/site/_elements.scss */
.no-javascript h4 {
  border-color: #ffffff !important;
  color: #ffffff;
  display: inline-block;
  font-size: 1.25rem;
  margin-bottom: 0.3125rem;
}

/* line 75, themes/base/scss/site/_elements.scss */
.no-javascript p {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.3125rem;
  max-width: 50rem;
  margin: 0 auto;
}

/* line 82, themes/base/scss/site/_elements.scss */
.no-javascript p a {
  color: #ffffff;
  text-decoration: underline;
}

/* line 87, themes/base/scss/site/_elements.scss */
.no-javascript button {
  background: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0.3125rem;
  right: 0.3125rem;
}

/* line 96, themes/base/scss/site/_elements.scss */
.js .no-javascript {
  display: none;
}

/* Pagination */
/* line 107, themes/base/scss/site/_elements.scss */
.pagination {
  text-align: center;
  width: 100%;
}

/* line 111, themes/base/scss/site/_elements.scss */
.pagination ul {
  display: inline-block;
  margin: 0;
}

/* line 115, themes/base/scss/site/_elements.scss */
.pagination li {
  margin: 0;
}

/* line 117, themes/base/scss/site/_elements.scss */
.pagination li a {
  background: #ffffff;
  border-radius: 0;
  font-size: 1.25rem;
  line-height: 1.25rem;
  padding: 0.5rem 0.3125rem;
}

/* line 124, themes/base/scss/site/_elements.scss */
.pagination li a span {
  padding: 0 0.3125rem;
}

/* line 129, themes/base/scss/site/_elements.scss */
.pagination li.selected a {
  font-weight: bold;
}

/* line 132, themes/base/scss/site/_elements.scss */
.pagination li.selected a span {
  border-bottom: 0.125rem solid #61a9d1;
}

/* line 137, themes/base/scss/site/_elements.scss */
.pagination li.first a {
  border: 0.125rem solid #cccccc;
  border-radius: 0.3125rem;
  padding: 0.5rem 1.25rem;
}

/* line 142, themes/base/scss/site/_elements.scss */
.pagination li.first a:before {
  color: #61a9d1;
  content: '\f104';
  font-family: FontAwesome;
  margin-right: 0.625rem;
}

/* line 149, themes/base/scss/site/_elements.scss */
.pagination li.last a {
  border: 0.125rem solid #cccccc;
  border-radius: 0.3125rem;
  padding: 0.5rem 1.25rem;
}

/* line 154, themes/base/scss/site/_elements.scss */
.pagination li.last a:after {
  color: #61a9d1;
  content: '\f105';
  font-family: FontAwesome;
  margin-left: 0.625rem;
}

/* line 161, themes/base/scss/site/_elements.scss */
body[data-whatinput=mouse] .pagination li:hover a,
.pagination li:active a {
  background: #27354f;
  color: #ffffff;
}

/* line 165, themes/base/scss/site/_elements.scss */
body[data-whatinput=mouse] .pagination li:hover a:before, body[data-whatinput=mouse] .pagination li:hover a:after,
.pagination li:active a:before,
.pagination li:active a:after {
  color: #ffffff;
}

/* Orbit/Slick */
/* line 174, themes/base/scss/site/_elements.scss */
.slick-slider {
  margin: 0;
}

/* line 178, themes/base/scss/site/_elements.scss */
button.orbit-previous,
button.orbit-next,
.slick-prev,
.slick-next {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.625rem;
  height: 4.375rem;
  line-height: 3.75rem;
  margin-bottom: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  margin-top: 0;
  z-index: 10;
  width: 2.5rem;
}

/* line 196, themes/base/scss/site/_elements.scss */
button.orbit-previous:hover, button.orbit-previous:active, button.orbit-previous:focus,
button.orbit-next:hover,
button.orbit-next:active,
button.orbit-next:focus,
.slick-prev:hover,
.slick-prev:active,
.slick-prev:focus,
.slick-next:hover,
.slick-next:active,
.slick-next:focus {
  background: none;
  color: #ffffff;
}

/* line 204, themes/base/scss/site/_elements.scss */
.orbit-previous,
.slick-prev {
  border-left-width: 0;
  left: 0;
  border-radius: 0 0.375rem 0.375rem 0;
}

/* line 211, themes/base/scss/site/_elements.scss */
.orbit-next,
.slick-next {
  border-right-width: 0;
  right: 0;
  border-radius: 0.375rem 0 0 0.375rem;
}

/* line 218, themes/base/scss/site/_elements.scss */
.orbit-slide .page-title-wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  height: 100%;
}

/* line 223, themes/base/scss/site/_elements.scss */
.orbit-slide .row {
  height: 100%;
}

/* line 226, themes/base/scss/site/_elements.scss */
.orbit-slide .row > .orbit-content {
  color: #ffffff;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: right;
  align-items: flex-end;
}

/* line 234, themes/base/scss/site/_elements.scss */
.orbit-slide .row > .orbit-content p:first-child {
  font-size: 1.125rem;
  text-transform: uppercase;
  margin: 0;
}

/* line 239, themes/base/scss/site/_elements.scss */
.orbit-slide .row > .orbit-content h1, .orbit-slide .row > .orbit-content h2, .orbit-slide .row > .orbit-content h3, .orbit-slide .row > .orbit-content h4, .orbit-slide .row > .orbit-content h5, .orbit-slide .row > .orbit-content h6 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 3.25rem;
  margin: 0;
}

@media screen and (max-width: 39.9375em) {
  /* line 223, themes/base/scss/site/_elements.scss */
  .orbit-slide .row {
    justify-content: center;
  }
  /* line 248, themes/base/scss/site/_elements.scss */
  .orbit-slide .row > .orbit-content {
    align-items: center;
    padding: 0 2.5rem;
    text-align: center;
  }
}

/* Reveal */
/* line 257, themes/base/scss/site/_elements.scss */
.reveal {
  overflow: visible;
}

/* line 261, themes/base/scss/site/_elements.scss */
.close-button {
  background-color: #61a9d1;
  border-radius: 50%;
  border-width: 0;
  box-shadow: 1px 1px 6px rgba(64, 64, 64, 0.5);
  height: 2rem;
  padding: 0;
  top: -0.875rem;
  right: -10px;
  width: -0.875rem;
}

/* line 272, themes/base/scss/site/_elements.scss */
.close-button i {
  color: #ffffff;
  display: block;
  height: 2rem;
  line-height: 2rem;
  font-size: 1rem;
  width: 2rem;
}

/* line 281, themes/base/scss/site/_elements.scss */
body[data-whatinput=mouse] .close-button:hover {
  background-color: #3a94c6;
}

/* Utility */
/* line 288, themes/base/scss/site/_elements.scss */
.flex-children > * {
  display: flex;
}

/* line 291, themes/base/scss/site/_elements.scss */
.flex-children > *.landscape {
  flex-flow: row wrap;
}

/* Styling for the line under headers etc */
/* line 298, themes/base/scss/site/_elements.scss */
.content-block header > *,
.page-title {
  margin-bottom: 0.9375rem;
  padding-bottom: 0.9375rem;
  position: relative;
}

/* line 304, themes/base/scss/site/_elements.scss */
.content-block header > *:empty,
.page-title:empty {
  display: none;
}

/* line 308, themes/base/scss/site/_elements.scss */
.content-block header > *:after,
.page-title:after {
  content: "";
  display: block;
  height: 0.1875rem;
  width: 3.125rem;
  position: absolute;
  background: #61a9d1;
  margin-top: 0.9375rem;
}

/* line 319, themes/base/scss/site/_elements.scss */
.content-block header > *.text-center:after,
.page-title.text-center:after {
  left: 50%;
  margin-left: -1.5625rem;
}

/* line 2, themes/base/scss/site/_bits.scss */
.bit {
  display: flex;
  flex-flow: column;
  margin-bottom: 1.875rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* line 10, themes/base/scss/site/_bits.scss */
.bit .image {
  background-position: center center;
  background-size: cover;
  display: block;
  align-self: stretch;
}

/* line 16, themes/base/scss/site/_bits.scss */
.bit .image:before {
  content: '';
  display: block;
  padding-top: 50%;
  width: 100%;
}

/* line 24, themes/base/scss/site/_bits.scss */
.bit .info {
  padding: 0.9375rem;
}

/* line 27, themes/base/scss/site/_bits.scss */
.bit .info h1, .bit .info h2, .bit .info h3, .bit .info h4, .bit .info h5, .bit .info h6 {
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

/* line 31, themes/base/scss/site/_bits.scss */
.bit .info h1, .bit .info h2 {
  font-size: 2rem;
  margin-bottom: 0.9375rem;
}

/* line 36, themes/base/scss/site/_bits.scss */
.bit .info h4 {
  font-size: 1.5rem;
}

/* line 40, themes/base/scss/site/_bits.scss */
.bit .info .subinfo {
  margin-bottom: 0.625rem;
}

/* line 44, themes/base/scss/site/_bits.scss */
.bit .info * {
  max-width: 100%;
}

@media screen and (min-width: 40em) {
  /* line 50, themes/base/scss/site/_bits.scss */
  .landscape .bit {
    flex-flow: row wrap;
    flex: 0 0 100%;
  }
  /* line 54, themes/base/scss/site/_bits.scss */
  .landscape .bit .image {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  /* line 58, themes/base/scss/site/_bits.scss */
  .landscape .bit .image:before {
    content: '';
    display: block;
    padding-top: 70%;
    width: 100%;
  }
  /* line 66, themes/base/scss/site/_bits.scss */
  .landscape .bit .info {
    align-items: flex-start;
    display: flex;
    flex: 0 0 66.666%;
    flex-flow: column;
    justify-content: center;
    max-width: 66.666%;
    padding: 2.5rem;
    text-align: left;
  }
}

/* line 79, themes/base/scss/site/_bits.scss */
.bit footer {
  text-align: center;
}

/* line 82, themes/base/scss/site/_bits.scss */
.bit footer a {
  margin: 0;
}

/* line 88, themes/base/scss/site/_bits.scss */
.landscape .bit.accordion {
  flex-flow: column;
}

/* line 92, themes/base/scss/site/_bits.scss */
.smallbit {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.9375rem;
  overflow: hidden;
  width: 100%;
}

/* line 99, themes/base/scss/site/_bits.scss */
.smallbit .image {
  flex-basis: 33.333%;
}

/* line 101, themes/base/scss/site/_bits.scss */
.smallbit .image > div {
  background-size: cover;
  background-position: center center;
  height: 100%;
}

/* line 108, themes/base/scss/site/_bits.scss */
.smallbit .info {
  flex-basis: 66.666%;
  padding: 0.9375rem;
}

/* line 111, themes/base/scss/site/_bits.scss */
.smallbit .info .subinfo {
  margin: 0;
  color: #222222;
}

/* line 118, themes/base/scss/site/_bits.scss */
.smallbit:hover h4 {
  color: #27354f;
}

/* PageBit */
/* line 125, themes/base/scss/site/_bits.scss */
.bit.PageBit {
  border: 0.0625rem solid #e7e7e7;
}

/* line 128, themes/base/scss/site/_bits.scss */
.bit.PageBit .info {
  padding: 1.875rem 1.25rem;
}

/* BlogPostBit */
/* line 134, themes/base/scss/site/_bits.scss */
.bit.BlogPostBit {
  border: 0.0625rem solid #e7e7e7;
}

/* line 137, themes/base/scss/site/_bits.scss */
.bit.BlogPostBit .info {
  padding: 1.875rem 1.25rem;
}

/* BlogPostSmallBit */
/* line 143, themes/base/scss/site/_bits.scss */
.smallbit.BlogPostSmallBit {
  border: 0.0625rem solid #e7e7e7;
}

/* line 146, themes/base/scss/site/_bits.scss */
.smallbit.BlogPostSmallBit h4 {
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

/* TestimonialBit and TestimonialSmallBit */
/* line 152, themes/base/scss/site/_bits.scss */
.bit.TestimonialBit,
.smallbit.TestimonialSmallBit {
  max-width: 100%;
  margin-bottom: 0;
  padding: 0 0.9375rem;
}

/* line 158, themes/base/scss/site/_bits.scss */
.HomePage .bit.TestimonialBit, .HomePage
.smallbit.TestimonialSmallBit {
  padding: 0;
}

/* line 162, themes/base/scss/site/_bits.scss */
.bit.TestimonialBit:focus,
.smallbit.TestimonialSmallBit:focus {
  outline: none;
}

/* line 166, themes/base/scss/site/_bits.scss */
.bit.TestimonialBit .info,
.smallbit.TestimonialSmallBit .info {
  border-width: 0;
  padding: 0.9375rem 0;
}

/* line 170, themes/base/scss/site/_bits.scss */
.bit.TestimonialBit .info h4,
.smallbit.TestimonialSmallBit .info h4 {
  font-size: 1.375rem;
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-weight: 600;
}

/* line 176, themes/base/scss/site/_bits.scss */
aside .bit.TestimonialBit .info, aside
.smallbit.TestimonialSmallBit .info {
  padding-top: 0;
}

/* line 181, themes/base/scss/site/_bits.scss */
.bit.TestimonialBit .cite,
.smallbit.TestimonialSmallBit .cite {
  display: flex;
  align-items: center;
}

/* line 184, themes/base/scss/site/_bits.scss */
.bit.TestimonialBit .cite p,
.smallbit.TestimonialSmallBit .cite p {
  margin: 0;
}

/* line 189, themes/base/scss/site/_bits.scss */
.bit.TestimonialBit img,
.smallbit.TestimonialSmallBit img {
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* line 1, themes/base/scss/site/_blocks.scss */
.content-block {
  padding: 0;
  width: 100%;
}

/* line 5, themes/base/scss/site/_blocks.scss */
.HomePage .content-block {
  padding: 3.75rem 0;
}

/* line 9, themes/base/scss/site/_blocks.scss */
.content-block.primary-background {
  background-color: #61a9d1;
  background-position: center center;
  background-size: cover;
  color: #ffffff;
}

/* line 15, themes/base/scss/site/_blocks.scss */
.content-block.primary-background header > * {
  color: #27354f;
}

/* line 17, themes/base/scss/site/_blocks.scss */
.content-block.primary-background header > *:after {
  background-color: rgba(255, 255, 255, 0.75);
}

/* line 23, themes/base/scss/site/_blocks.scss */
.content-block.primary-background blockquote {
  color: #ffffff;
  padding: 0;
}

/* line 26, themes/base/scss/site/_blocks.scss */
.content-block.primary-background blockquote p {
  color: #ffffff;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.4em;
}

/* line 35, themes/base/scss/site/_blocks.scss */
.content-block.secondary-background {
  background-color: #27354f;
  background-position: center center;
  background-size: cover;
  color: #ffffff;
}

/* line 41, themes/base/scss/site/_blocks.scss */
.content-block.secondary-background header > * {
  color: #ffffff;
}

/* line 50, themes/base/scss/site/_blocks.scss */
.content-block:not(.StandardContentBlock) header {
  padding: 0 0.9375rem;
  text-align: center;
  width: 100%;
}

/* line 55, themes/base/scss/site/_blocks.scss */
.content-block:not(.StandardContentBlock) header h3 {
  font-size: 1.75rem;
}

/* line 62, themes/base/scss/site/_blocks.scss */
aside .content-block {
  margin-bottom: 3.75rem;
  padding: 0;
}

/* line 66, themes/base/scss/site/_blocks.scss */
aside .content-block .row {
  margin: 0;
}

/* line 71, themes/base/scss/site/_blocks.scss */
aside .content-block header:not(.StandardContentBlock) {
  margin-bottom: 1.875rem;
  text-align: left;
}

/* line 76, themes/base/scss/site/_blocks.scss */
aside .content-block header h1, aside .content-block header h2, aside .content-block header h3, aside .content-block header h4, aside .content-block header h5, aside .content-block header h6 {
  color: #27354f;
  font-size: 1.5rem;
}

/* line 83, themes/base/scss/site/_blocks.scss */
.content-block blockquote {
  border-left: none;
  color: #222222;
  padding-left: 0;
}

/* line 89, themes/base/scss/site/_blocks.scss */
.content-block .cite {
  color: #27354f;
  font-size: 1rem;
  line-height: 1.3em;
}

/* Standard Content Blocks */
@media screen and (min-width: 40em) {
  /* line 100, themes/base/scss/site/_blocks.scss */
  .content-block.StandardContentBlock.standard-right .text {
    text-align: right;
  }
}

@media screen and (max-width: 39.9375em) {
  /* line 107, themes/base/scss/site/_blocks.scss */
  .content-block.StandardContentBlock .image {
    padding: 0;
  }
  /* line 110, themes/base/scss/site/_blocks.scss */
  .content-block.StandardContentBlock .text {
    border: 0.0625rem solid #e7e7e7;
  }
  /* line 113, themes/base/scss/site/_blocks.scss */
  .content-block.StandardContentBlock footer {
    text-align: center;
  }
}

/* Contact Form Block */
/* line 121, themes/base/scss/site/_blocks.scss */
.content-block.ContactFormBlock header > * {
  margin: 0;
}

/* line 125, themes/base/scss/site/_blocks.scss */
.content-block.ContactFormBlock .body {
  padding-top: 0;
  width: 100%;
}

/* line 129, themes/base/scss/site/_blocks.scss */
.content-block.ContactFormBlock .body .Actions.row .column {
  text-align: center;
}

/* line 133, themes/base/scss/site/_blocks.scss */
.content-block.ContactFormBlock .body ul {
  margin-bottom: 0.625rem;
}

/* line 139, themes/base/scss/site/_blocks.scss */
aside .content-block.ContactFormBlock .info {
  padding: 0;
  border: none;
}

/* line 144, themes/base/scss/site/_blocks.scss */
aside .content-block.ContactFormBlock .Actions.row {
  margin: 0 -0.9375rem;
}

/* Contact Location Block */
/* line 152, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock .addressMap {
  margin-bottom: 0.9375rem;
}

/* line 156, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock .body {
  width: 100%;
}

/* line 160, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock .location-details {
  display: flex;
  flex-direction: column;
}

/* line 164, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock .location-details > div {
  display: block;
  margin-bottom: 0.625rem;
}

/* line 168, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock .location-details > div .fa,
.content-block.ContactLocationBlock .location-details > div strong,
.content-block.ContactLocationBlock .location-details > div a {
  float: left;
}

/* line 174, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock .location-details > div a {
  padding-left: 2.1875rem;
  clear: both;
}

/* line 181, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock address,
.content-block.ContactLocationBlock .phone,
.content-block.ContactLocationBlock .email {
  color: #27354f;
  display: block;
  height: auto;
  text-align: left;
  margin-bottom: 0.9375rem;
  font-style: normal;
}

/* line 191, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock address span,
.content-block.ContactLocationBlock .phone span,
.content-block.ContactLocationBlock .email span {
  display: block;
  overflow: hidden;
  padding-left: 0;
  overflow: hidden;
}

/* line 198, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock address strong,
.content-block.ContactLocationBlock .phone strong,
.content-block.ContactLocationBlock .email strong {
  display: inline-block;
  float: left;
}

/* Operating Hours Block */
/* line 207, themes/base/scss/site/_blocks.scss */
.content-block.OperatingHoursBlock .hours {
  display: inline;
}

/* line 210, themes/base/scss/site/_blocks.scss */
.content-block.OperatingHoursBlock .hours div,
.content-block.OperatingHoursBlock .hours dt {
  display: inline;
}

/* line 215, themes/base/scss/site/_blocks.scss */
.content-block.OperatingHoursBlock .hours dt,
.content-block.OperatingHoursBlock .hours dd {
  padding: 0 0.625rem 0 2.1875rem;
}

/* line 222, themes/base/scss/site/_blocks.scss */
.content-block.OperatingHoursBlock .hours div:first-child dt {
  padding-left: 0;
}

/* line 228, themes/base/scss/site/_blocks.scss */
.content-block.OperatingHoursBlock .hours dd {
  display: block;
}

/* line 236, themes/base/scss/site/_blocks.scss */
.content-block.ContactLocationBlock .body .fa,
.content-block.OperatingHoursBlock .body .fa {
  background: #61a9d1;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  float: left;
  height: 1.5625rem;
  margin-right: 0.625rem;
  padding-top: 0.25rem;
  text-align: center;
  width: 1.5625rem;
}

/* Testimonial Block */
/* line 253, themes/base/scss/site/_blocks.scss */
.Page .content-block.TestimonialBlock > .row > .column {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 261, themes/base/scss/site/_blocks.scss */
.content-block.TestimonialBlock .info h4 {
  color: #27354f;
  margin-bottom: 0.9375rem;
}

/* line 267, themes/base/scss/site/_blocks.scss */
.content-block.TestimonialBlock .slick-controls {
  position: relative;
}

/* line 271, themes/base/scss/site/_blocks.scss */
.content-block.TestimonialBlock .slick-dots {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
}

/* line 278, themes/base/scss/site/_blocks.scss */
.content-block.TestimonialBlock .slick-dots li button {
  background: #27354f;
  border-radius: 50%;
  font-size: 0;
  height: 0.75rem;
  margin: 0 0.3125rem;
  padding: 0;
  width: 0.75rem;
}

/* line 289, themes/base/scss/site/_blocks.scss */
.content-block.TestimonialBlock .slick-dots li.slick-active button {
  background: #496393;
}

@media screen and (max-width: 39.9375em) {
  /* line 296, themes/base/scss/site/_blocks.scss */
  .content-block.TestimonialBlock .info {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Menu Block */
/* line 305, themes/base/scss/site/_blocks.scss */
.content-block.MenuBlock header a > * {
  margin: 0;
}

/* line 309, themes/base/scss/site/_blocks.scss */
.content-block.MenuBlock nav.body {
  padding: 0 0.9375rem;
}

/* line 313, themes/base/scss/site/_blocks.scss */
.content-block.MenuBlock .menu {
  flex-direction: column;
}

/* line 316, themes/base/scss/site/_blocks.scss */
.content-block.MenuBlock .menu li {
  border-bottom: 0.0625rem solid #e7e7e7;
  width: 100%;
}

/* line 320, themes/base/scss/site/_blocks.scss */
.content-block.MenuBlock .menu li.current a {
  color: #27354f;
}

/* line 324, themes/base/scss/site/_blocks.scss */
.content-block.MenuBlock .menu li.first {
  border-top-width: 0;
}

/* line 328, themes/base/scss/site/_blocks.scss */
.content-block.MenuBlock .menu li a {
  padding-left: 0;
}

/* Form Block */
/* line 337, themes/base/scss/site/_blocks.scss */
.content-block.FormBlock .body {
  padding: 0.9375rem 0;
}

/* line 342, themes/base/scss/site/_blocks.scss */
aside .content-block.FormBlock.secondary-background header h3,
aside .content-block.FormBlock.secondary-background header h4 {
  color: #ffffff;
  padding-top: 0.9375rem;
  font-size: 1.75rem;
}

/* line 349, themes/base/scss/site/_blocks.scss */
aside .content-block.FormBlock.secondary-background .body.row {
  padding-top: 0;
  marker-top: -0.3125rem;
}

/* line 356, themes/base/scss/site/_blocks.scss */
.content-block.FormBlock.secondary-background {
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}

/* line 366, themes/base/scss/site/_blocks.scss */
.form-content li, .form-content p {
  font-size: 1.25rem;
}

/* line 369, themes/base/scss/site/_blocks.scss */
.form-content li {
  line-height: 1.3em;
  margin-bottom: 0.9375rem;
  padding-left: 1.875rem;
  position: relative;
}

/* line 375, themes/base/scss/site/_blocks.scss */
.form-content li:before {
  font-family: FontAwesome;
  color: #61a9d1;
  content: '\f00c';
  position: absolute;
  top: 0;
  left: 0;
}

/* line 384, themes/base/scss/site/_blocks.scss */
aside .form-content {
  margin-bottom: 0.625rem;
}

/* line 386, themes/base/scss/site/_blocks.scss */
aside .form-content li {
  font-size: 1rem;
  margin-bottom: 0.3125rem;
}

@media screen and (max-width: 39.9375em) {
  /* line 365, themes/base/scss/site/_blocks.scss */
  .form-content {
    margin-bottom: 0.9375rem;
  }
  /* line 394, themes/base/scss/site/_blocks.scss */
  .form-content li {
    font-size: 1rem;
  }
}

/* line 403, themes/base/scss/site/_blocks.scss */
.SubscriptionBlock p:empty {
  display: none;
}

/* line 407, themes/base/scss/site/_blocks.scss */
aside .SubscriptionBlock .body {
  padding-top: 0;
}

/* line 412, themes/base/scss/site/_blocks.scss */
aside .SubscriptionBlock form > .row > .column {
  padding: 0;
}

/* line 416, themes/base/scss/site/_blocks.scss */
aside .SubscriptionBlock form > .row.Actions .column {
  display: flex;
}

/* line 1, themes/base/scss/site/_layout.scss */
body {
  background: #161e2d;
  -webkit-font-smoothing: antialiased;
}

/* line 6, themes/base/scss/site/_layout.scss */
a {
  color: #61a9d1;
}

/* line 8, themes/base/scss/site/_layout.scss */
a:hover, a:active, a:focus {
  color: #27354f;
}

/* line 15, themes/base/scss/site/_layout.scss */
h1, h2, h3, h4, h5, h6 {
  color: #61a9d1;
}

/* Header */
/* line 20, themes/base/scss/site/_layout.scss */
header.page-header {
  background-color: #ffffff;
}

/* line 24, themes/base/scss/site/_layout.scss */
header.page-header .header-top a {
  color: #6f6f6f;
}

/* line 26, themes/base/scss/site/_layout.scss */
header.page-header .header-top a i {
  color: #61a9d1;
}

/* line 31, themes/base/scss/site/_layout.scss */
header.page-header .header-top .header-logo {
  align-items: center;
  display: flex;
}

@media screen and (max-width: 39.9375em) {
  /* line 31, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .header-logo {
    justify-content: center;
    padding: 0.9375rem 0;
    width: 100%;
  }
}

/* line 40, themes/base/scss/site/_layout.scss */
header.page-header .header-top .header-logo .logo {
  background: url(../images/VA-logo-1x.png);
  background-position: top left;
  background-repeat: no-repeat;
  display: block;
  height: 44px;
  margin: 0.625rem 0;
  width: 280px;
}

@media only screen and (min-width: 640px) and (max-width: 700px) {
  /* line 40, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .header-logo .logo {
    width: 200px;
    background-size: 100%;
    background-position: left center;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 40, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .header-logo .logo {
    background: url(../images/VA-logo-2x.png);
    background-size: 100%;
  }
}

/* line 62, themes/base/scss/site/_layout.scss */
header.page-header .header-top .contact {
  display: flex;
  font-size: 1.125rem;
  padding: 30px 20px;
  border-left: 1px solid #c4dfee;
}

@media screen and (max-width: 39.9375em) {
  /* line 62, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact {
    border-left: none;
  }
}

/* line 70, themes/base/scss/site/_layout.scss */
header.page-header .header-top .contact:first-of-type {
  border-left: none;
}

/* line 73, themes/base/scss/site/_layout.scss */
header.page-header .header-top .contact:hover {
  color: #61a9d1;
}

/* line 76, themes/base/scss/site/_layout.scss */
header.page-header .header-top .contact .fa {
  padding-top: 0.3125rem;
  padding-right: 0.3125rem;
}

@media screen and (max-width: 39.9375em) {
  /* line 76, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact .fa {
    padding-top: 0;
  }
}

@media only screen and (max-width: 860px) {
  /* line 87, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .paylink {
    border-left: 1px solid #c4dfee;
    display: flex;
    font-size: 1.125rem;
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 860px) {
  /* line 87, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .paylink {
    display: none;
  }
}

@media screen and (max-width: 39.9375em) {
  /* line 99, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact-info {
    background: #61a9d1;
    justify-content: center;
    padding: 0;
  }
  /* line 104, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact-info .contact span {
    display: none;
  }
  /* line 107, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact-info > .row {
    width: 100%;
  }
  /* line 109, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact-info > .row a {
    border-left: 0.0625rem solid #4198c8;
    display: flex;
    flex: 2 0 33.3333%;
    font-size: 22px;
    justify-content: center;
    padding: 30px 0;
  }
  /* line 116, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact-info > .row a:first-child {
    border-left: none;
  }
  /* line 121, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact-info > .row a.slidedown-menu-switch.active {
    background: #4198c8;
  }
  /* line 126, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact-info > .row a .fa {
    color: #ffffff;
  }
  /* line 132, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact-info > .row.has-paylink a {
    flex: 2 0 25%;
    max-width: 25%;
  }
  /* line 136, themes/base/scss/site/_layout.scss */
  header.page-header .header-top .contact-info > .row.has-paylink a.paylink {
    background-color: #89bfdd;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    text-transform: uppercase;
    text-align: center;
  }
}

/* line 152, themes/base/scss/site/_layout.scss */
header.page-header .header-bottom {
  background: #61a9d1;
}

/* line 155, themes/base/scss/site/_layout.scss */
header.page-header .header-bottom .column {
  display: flex;
  flex-flow: row;
}

@media screen and (max-width: 39.9375em) {
  /* line 161, themes/base/scss/site/_layout.scss */
  header.page-header .header-bottom li {
    width: 100%;
  }
  /* line 163, themes/base/scss/site/_layout.scss */
  header.page-header .header-bottom li a {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  /* line 169, themes/base/scss/site/_layout.scss */
  header.page-header .header-bottom > .row > .column {
    padding: 0;
  }
}

/* line 174, themes/base/scss/site/_layout.scss */
header.page-header .header-bottom .menu-wrapper {
  display: flex;
  flex: 1 1 auto;
  max-width: 100%;
  width: 100%;
}

/* line 181, themes/base/scss/site/_layout.scss */
header.page-header .header-bottom .paylink {
  display: block;
  flex: 1 1 150px;
  max-width: 150px;
  width: 150px;
  background-color: #89bfdd;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: bold;
  padding: 1.25rem;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  align-content: center;
  line-height: 0.875rem;
}

@media only screen and (max-width: 860px) {
  /* line 181, themes/base/scss/site/_layout.scss */
  header.page-header .header-bottom .paylink {
    display: none;
  }
}

/* line 202, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] header.page-header .header-bottom .paylink:hover {
  background-color: #75b4d7;
}

/* line 209, themes/base/scss/site/_layout.scss */
header.page-header .orbit .orbit-slide {
  background-position: center center;
  background-size: cover;
  height: 31.25rem;
}

@media screen and (max-width: 39.9375em) {
  /* line 209, themes/base/scss/site/_layout.scss */
  header.page-header .orbit .orbit-slide {
    height: 26.25rem;
  }
}

/* Page Body */
/* line 221, themes/base/scss/site/_layout.scss */
.page-body {
  background: #ffffff;
  padding: 3.75rem 0 5.625rem 0;
}

/* line 225, themes/base/scss/site/_layout.scss */
.HomePage .page-body {
  padding: 3.75rem 0 1.875rem 0;
}

@media screen and (max-width: 39.9375em) {
  /* line 225, themes/base/scss/site/_layout.scss */
  .HomePage .page-body {
    padding: 3.75rem 0.625rem 1.875rem 0.625rem;
  }
}

@media screen and (min-width: 40em) {
  /* line 233, themes/base/scss/site/_layout.scss */
  .page-body .main {
    order: 2;
  }
  /* line 237, themes/base/scss/site/_layout.scss */
  .page-body .sidebar {
    order: 1;
  }
}

/* Page Title */
/* line 244, themes/base/scss/site/_layout.scss */
h1.page-title {
  color: #222222;
  padding: 0 0 1.875rem 0;
}

/* Footer */
/* line 250, themes/base/scss/site/_layout.scss */
footer.page-footer {
  background: #161e2d;
  color: #b4b4b4;
  font-size: 0.875rem;
  padding-top: 3.125rem;
}

@media screen and (max-width: 39.9375em) {
  /* line 250, themes/base/scss/site/_layout.scss */
  footer.page-footer {
    text-align: center;
  }
}

/* line 258, themes/base/scss/site/_layout.scss */
footer.page-footer a {
  color: #ffffff;
  text-decoration: underline;
}

/* line 261, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer a:hover {
  color: #61a9d1;
}

/* line 264, themes/base/scss/site/_layout.scss */
footer.page-footer a.phone {
  color: #61a9d1;
  text-decoration: none;
}

/* line 267, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer a.phone:hover {
  color: #ffffff;
}

/* line 271, themes/base/scss/site/_layout.scss */
footer.page-footer a > *,
footer.page-footer a strong {
  color: #b4b4b4;
  text-decoration: none;
}

/* line 278, themes/base/scss/site/_layout.scss */
footer.page-footer .top .logo {
  background: url(../images/VA-logo-inverted-1x.png);
  background-position: top left;
  background-repeat: no-repeat;
  display: inline-block;
  height: 5.875rem;
  width: 12.5rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 278, themes/base/scss/site/_layout.scss */
  footer.page-footer .top .logo {
    background: url(../images/VA-logo-inverted-2x.png);
    background-size: 100%;
  }
}

@media screen and (max-width: 39.9375em) {
  /* line 278, themes/base/scss/site/_layout.scss */
  footer.page-footer .top .logo {
    margin: 0 auto;
  }
}

/* line 296, themes/base/scss/site/_layout.scss */
footer.page-footer .top .xero {
  background: url(../images/xero-logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  height: 5.875rem;
  margin-left: 3.75rem;
  width: 10rem;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  /* line 296, themes/base/scss/site/_layout.scss */
  footer.page-footer .top .xero {
    display: block;
    margin-left: 0;
    margin: 0.9375rem 0;
    width: 8.75rem;
  }
}

@media screen and (max-width: 39.9375em) {
  /* line 296, themes/base/scss/site/_layout.scss */
  footer.page-footer .top .xero {
    display: block;
    margin: 0.9375rem auto;
  }
}

/* line 321, themes/base/scss/site/_layout.scss */
footer.page-footer .top .blurb img {
  padding-bottom: 0.9375rem;
}

/* line 328, themes/base/scss/site/_layout.scss */
footer.page-footer .top .contact .address a,
footer.page-footer .top .contact .fax a {
  text-decoration: none;
}

/* line 332, themes/base/scss/site/_layout.scss */
footer.page-footer .top .contact .address,
footer.page-footer .top .contact .email,
footer.page-footer .top .contact .fax {
  color: #b4b4b4;
  padding-left: 1.875rem;
  position: relative;
}

/* line 338, themes/base/scss/site/_layout.scss */
footer.page-footer .top .contact .address a,
footer.page-footer .top .contact .email a,
footer.page-footer .top .contact .fax a {
  display: inline;
  word-wrap: break-word;
}

/* line 342, themes/base/scss/site/_layout.scss */
footer.page-footer .top .contact .address .fa,
footer.page-footer .top .contact .email .fa,
footer.page-footer .top .contact .fax .fa {
  color: #61a9d1;
  position: absolute;
  left: 0;
  top: 0.1875rem;
}

@media screen and (max-width: 39.9375em) {
  /* line 332, themes/base/scss/site/_layout.scss */
  footer.page-footer .top .contact .address,
  footer.page-footer .top .contact .email,
  footer.page-footer .top .contact .fax {
    padding-left: 0;
  }
  /* line 350, themes/base/scss/site/_layout.scss */
  footer.page-footer .top .contact .address > *,
  footer.page-footer .top .contact .email > *,
  footer.page-footer .top .contact .fax > * {
    display: inline-block;
  }
  /* line 353, themes/base/scss/site/_layout.scss */
  footer.page-footer .top .contact .address .fa,
  footer.page-footer .top .contact .email .fa,
  footer.page-footer .top .contact .fax .fa {
    margin-right: 0.3125rem;
    position: relative;
    top: 0;
  }
}

/* line 360, themes/base/scss/site/_layout.scss */
footer.page-footer .top .contact header {
  font-weight: bold;
  padding-bottom: 0.9375rem;
  text-transform: uppercase;
}

/* line 365, themes/base/scss/site/_layout.scss */
footer.page-footer .top .contact a {
  display: flex;
  padding-bottom: 1.25rem;
  position: relative;
}

@media screen and (max-width: 39.9375em) {
  /* line 365, themes/base/scss/site/_layout.scss */
  footer.page-footer .top .contact a {
    justify-content: center;
  }
}

/* line 375, themes/base/scss/site/_layout.scss */
footer.page-footer .top .social header {
  font-weight: bold;
  text-transform: uppercase;
}

/* line 379, themes/base/scss/site/_layout.scss */
footer.page-footer .top .social .phone {
  font-size: 1.75rem;
  font-weight: bold;
  font-family: "futura-pt", Gillsans, Arial, sans-serif;
  font-weight: 700;
}

/* line 384, themes/base/scss/site/_layout.scss */
footer.page-footer .top .social .icons {
  display: block;
  list-style-type: none;
  margin: 0;
  padding-top: 1.25rem;
}

/* line 389, themes/base/scss/site/_layout.scss */
footer.page-footer .top .social .icons .icon {
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  height: 1.875rem;
  text-align: center;
  text-decoration: none;
  width: 1.875rem;
}

/* line 397, themes/base/scss/site/_layout.scss */
footer.page-footer .top .social .icons .icon .fa {
  color: #27354f;
  display: block;
  font-size: 0.875rem;
  line-height: 1.875rem;
}

/* line 403, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer .top .social .icons .icon:hover {
  color: #b4b4b4;
}

/* line 405, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer .top .social .icons .icon:hover .fa {
  color: #ffffff;
}

/* line 409, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer .top .social .icons .icon.facebook:hover {
  background: #3b5998;
}

/* line 412, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer .top .social .icons .icon.linkedin:hover {
  background: #007bb5;
}

/* line 415, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer .top .social .icons .icon.twitter:hover {
  background: #55acee;
}

/* line 418, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer .top .social .icons .icon.instagram:hover {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

/* line 421, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer .top .social .icons .icon.youtube:hover {
  background: #bb0000;
}

/* line 429, themes/base/scss/site/_layout.scss */
footer.page-footer .bottom {
  padding-bottom: 0.625rem;
}

/* line 432, themes/base/scss/site/_layout.scss */
footer.page-footer .bottom .copyright-menu {
  color: #b4b4b4;
  display: flex;
  flex-flow: row;
  list-style-type: none;
  margin: 0;
}

/* line 439, themes/base/scss/site/_layout.scss */
footer.page-footer .bottom .copyright-menu li {
  border-left: 0.0625rem solid #2e769e;
  padding: 0 0.3125rem;
}

/* line 442, themes/base/scss/site/_layout.scss */
footer.page-footer .bottom .copyright-menu li:first-child {
  border-left: none;
  padding-left: 0;
}

@media screen and (max-width: 39.9375em) {
  /* line 432, themes/base/scss/site/_layout.scss */
  footer.page-footer .bottom .copyright-menu {
    flex-flow: column;
    padding: 1.5625rem 0;
  }
  /* line 451, themes/base/scss/site/_layout.scss */
  footer.page-footer .bottom .copyright-menu li {
    padding: 0.3125rem 0;
  }
}

/* line 458, themes/base/scss/site/_layout.scss */
footer.page-footer .bottom .credit a {
  text-decoration: none;
}

/* line 464, themes/base/scss/site/_layout.scss */
footer.page-footer .back-to-top {
  background: #27354f;
  display: block;
  height: 3.125rem;
  padding-top: 0.8125rem;
  position: fixed;
  bottom: 0.625rem;
  right: 0.625rem;
  text-align: center;
  transition: background-color 0.3s;
  width: 3.125rem;
  z-index: 1040;
}

/* line 477, themes/base/scss/site/_layout.scss */
footer.page-footer .back-to-top .fa {
  color: #ffffff;
}

/* line 481, themes/base/scss/site/_layout.scss */
body[data-whatinput=mouse] footer.page-footer .back-to-top:hover {
  background-color: #61a9d1;
}

@media screen and (max-width: 39.9375em) {
  /* line 464, themes/base/scss/site/_layout.scss */
  footer.page-footer .back-to-top {
    display: none;
  }
}

/* Sidebar */
/* line 492, themes/base/scss/site/_layout.scss */
aside.sidebar {
  padding: 1.5625rem 0.9375rem 0 0.9375rem;
}

/* line 3, themes/base/scss/site/_typography.scss */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  color: #61a9d1;
  text-decoration: none;
}

/* ::selection {
	background: $secondary-color;
}
::-moz-selection {
    background: $secondary-color;
} */
/* line 18, themes/base/scss/site/_typography.scss */
.typography h1 {
  margin-top: 2.8125rem;
}

/* line 22, themes/base/scss/site/_typography.scss */
.typography h2 {
  margin-top: 2.1875rem;
}

/* line 26, themes/base/scss/site/_typography.scss */
.typography h3 {
  color: #222222;
  margin-top: 0.9375rem;
}

/* line 31, themes/base/scss/site/_typography.scss */
.typography h4 {
  color: #222222;
  margin-top: 0.625rem;
}

/* line 36, themes/base/scss/site/_typography.scss */
.typography h5,
.typography h6 {
  margin-top: 0.4375rem;
}

/* line 41, themes/base/scss/site/_typography.scss */
.typography h3, .typography h4, .typography h5, .typography h6,
.typography .h3, .typography .h4, .typography .h5, .typography .h6 {
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

/* line 45, themes/base/scss/site/_typography.scss */
.typography a {
  text-decoration: underline;
}

/* line 49, themes/base/scss/site/_typography.scss */
.typography p {
  color: #3c3c3c;
  font-size: 1rem;
  line-height: 1.45em;
  display: inline-block;
  width: 100%;
}

/* line 57, themes/base/scss/site/_typography.scss */
.typography .left {
  text-align: left;
}

/* line 61, themes/base/scss/site/_typography.scss */
.typography .center {
  text-align: center;
}

/* line 65, themes/base/scss/site/_typography.scss */
.typography .right {
  text-align: right;
}

/* line 69, themes/base/scss/site/_typography.scss */
.typography .media {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

/* line 75, themes/base/scss/site/_typography.scss */
.typography .media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 84, themes/base/scss/site/_typography.scss */
.typography ul, .typography ol {
  padding: 0 0 0 1.875rem;
}

/* line 87, themes/base/scss/site/_typography.scss */
.typography ul li, .typography ol li {
  font-size: 1rem;
  line-height: 1.45em;
  margin-bottom: 0.3125rem;
}

/* line 95, themes/base/scss/site/_typography.scss */
.typography img.left {
  float: left;
  max-width: 50%;
  margin: 0.3125rem 1.25rem 1rem 0;
}

/* line 101, themes/base/scss/site/_typography.scss */
.typography img.right {
  float: right;
  max-width: 50%;
  margin: 0.3125rem 0 1rem 1.25rem;
}

/* line 107, themes/base/scss/site/_typography.scss */
.typography img.leftAlone {
  clear: both;
  float: left;
  margin-right: 100%;
  margin-bottom: 1rem;
}

/* line 114, themes/base/scss/site/_typography.scss */
.typography img.center {
  clear: both;
  display: block;
  float: none;
  margin: 0 auto 1rem auto;
}

/* line 122, themes/base/scss/site/_typography.scss */
.typography .captionImage {
  margin-top: 0.3125rem;
}

/* line 125, themes/base/scss/site/_typography.scss */
.typography .captionImage img {
  margin: 0;
}

/* line 129, themes/base/scss/site/_typography.scss */
.typography .captionImage p {
  clear: both;
  font-style: italic;
  margin: 0.3125rem 0;
}

/* line 135, themes/base/scss/site/_typography.scss */
.typography .captionImage.left {
  float: left;
  margin: 0.3125rem 1.875rem 1rem 0;
}

/* line 139, themes/base/scss/site/_typography.scss */
.typography .captionImage.left[style] {
  max-width: 50%;
}

/* line 143, themes/base/scss/site/_typography.scss */
.typography .captionImage.left img {
  float: none;
  margin-right: -0.625rem;
  max-width: none;
  width: 100%;
}

/* line 151, themes/base/scss/site/_typography.scss */
.typography .captionImage.right {
  float: right;
  margin: 0.3125rem 0 1rem 1.875rem;
}

/* line 155, themes/base/scss/site/_typography.scss */
.typography .captionImage.right[style] {
  max-width: 50%;
}

/* line 159, themes/base/scss/site/_typography.scss */
.typography .captionImage.right img {
  float: none;
  margin-left: -0.625rem;
  max-width: none;
  width: 100%;
}

/* line 166, themes/base/scss/site/_typography.scss */
.typography .captionImage.right p {
  margin-left: -0.625rem;
  text-align: left;
}

/* line 172, themes/base/scss/site/_typography.scss */
.typography .captionImage.leftAlone {
  float: none;
  margin: 0 1.25rem 1rem 0;
}

/* line 177, themes/base/scss/site/_typography.scss */
.typography .captionImage.center {
  margin: 0 auto 1rem;
}

/* HomePage */
/* line 3, themes/base/scss/site/_pages.scss */
.HomePage .disclaimer {
  margin-bottom: -0.9375rem;
  padding-top: 0.9375rem;
}

/* line 7, themes/base/scss/site/_pages.scss */
.HomePage .disclaimer p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* BlogPost */
/* line 16, themes/base/scss/site/_pages.scss */
.BlogPost h1,
.BlogPost .post-date {
  float: left;
  margin: 0;
}

/* line 22, themes/base/scss/site/_pages.scss */
.BlogPost h1 {
  display: inline-block;
}

/* line 26, themes/base/scss/site/_pages.scss */
.BlogPost .page-title {
  position: relative;
  padding: 0;
}

/* line 31, themes/base/scss/site/_pages.scss */
.BlogPost .post-date {
  display: inline-block;
  padding: 0.5rem 0.9375rem 0 0;
}

@media screen and (max-width: 39.9375em) {
  /* line 31, themes/base/scss/site/_pages.scss */
  .BlogPost .post-date {
    padding-top: 0.5625rem;
  }
}

/* line 39, themes/base/scss/site/_pages.scss */
.BlogPost .post-date span {
  display: block;
  text-align: center;
}

/* line 42, themes/base/scss/site/_pages.scss */
.BlogPost .post-date span.day {
  background: #e7e7e7;
  color: #27354f;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.4375rem 0.625rem;
}

/* line 49, themes/base/scss/site/_pages.scss */
.BlogPost .post-date span.month {
  color: #ffffff;
  background: #27354f;
  padding: 0 0.625rem;
}

/* line 57, themes/base/scss/site/_pages.scss */
.BlogPost .entry-meta {
  padding-top: 0.9375rem;
}

/* line 60, themes/base/scss/site/_pages.scss */
.BlogPost .entry-meta .fa {
  color: #27354f;
}

/* line 64, themes/base/scss/site/_pages.scss */
.BlogPost .entry-meta > .author,
.BlogPost .entry-meta > .tags {
  padding-right: 0.625rem;
}

/* line 71, themes/base/scss/site/_pages.scss */
.BlogPost article img {
  float: left;
  margin: 0 1.5625rem 0.3125rem 0;
}

/* ContactPage */
/* line 88, themes/base/scss/site/_pages.scss */
.ContactPage .page-body {
  padding-bottom: 0;
}

/* line 91, themes/base/scss/site/_pages.scss */
.ContactPage .page-body .map-wrapper {
  display: block;
  margin-top: 1.875rem;
}

/* line 96, themes/base/scss/site/_pages.scss */
.ContactPage .page-body .full-width-map {
  pointer-events: none;
}

/* line 99, themes/base/scss/site/_pages.scss */
.ContactPage .page-body .full-width-map .map-canvas {
  height: 25rem;
  width: 100%;
}

@media screen and (max-width: 39.9375em) {
  /* line 99, themes/base/scss/site/_pages.scss */
  .ContactPage .page-body .full-width-map .map-canvas {
    height: 18.75rem;
  }
}

/* line 107, themes/base/scss/site/_pages.scss */
.ContactPage .page-body .full-width-map .map-canvas a[title="Click to see this area on Google Maps"],
.ContactPage .page-body .full-width-map .map-canvas .gm-fullscreen-control,
.ContactPage .page-body .full-width-map .map-canvas .gm-bundled-control,
.ContactPage .page-body .full-width-map .map-canvas .gmnoprint,
.ContactPage .page-body .full-width-map .map-canvas .gm-svpc {
  display: none !important;
}

/* Animation enhancements */
/* line 123, themes/base/scss/site/_pages.scss */
.cssanimations .page-banner .is-active .orbit-content > * {
  animation: fadeInUp 1s linear forwards;
  opacity: 0;
}

/* line 129, themes/base/scss/site/_pages.scss */
.cssanimations .page-banner .is-active .orbit-content > *:nth-child(1) {
  animation-delay: 0.05s;
}

/* line 129, themes/base/scss/site/_pages.scss */
.cssanimations .page-banner .is-active .orbit-content > *:nth-child(2) {
  animation-delay: 0.1s;
}

/* line 129, themes/base/scss/site/_pages.scss */
.cssanimations .page-banner .is-active .orbit-content > *:nth-child(3) {
  animation-delay: 0.15s;
}

/* line 129, themes/base/scss/site/_pages.scss */
.cssanimations .page-banner .is-active .orbit-content > *:nth-child(4) {
  animation-delay: 0.2s;
}

/* line 129, themes/base/scss/site/_pages.scss */
.cssanimations .page-banner .is-active .orbit-content > *:nth-child(5) {
  animation-delay: 0.25s;
}

/* line 129, themes/base/scss/site/_pages.scss */
.cssanimations .page-banner .is-active .orbit-content > *:nth-child(6) {
  animation-delay: 0.3s;
}

/* line 129, themes/base/scss/site/_pages.scss */
.cssanimations .page-banner .is-active .orbit-content > *:nth-child(7) {
  animation-delay: 0.35s;
}

/* line 129, themes/base/scss/site/_pages.scss */
.cssanimations .page-banner .is-active .orbit-content > *:nth-child(8) {
  animation-delay: 0.4s;
}

/* line 137, themes/base/scss/site/_pages.scss */
.cssanimations .Blog .animate > *,
.cssanimations .ChildSummaryPage .animate > * {
  animation: fadeInUpSmall .4s linear forwards;
  opacity: 0;
}

/* line 143, themes/base/scss/site/_pages.scss */
.cssanimations .Blog .animate > *:nth-child(1),
.cssanimations .ChildSummaryPage .animate > *:nth-child(1) {
  animation-delay: 0.2s;
}

/* line 143, themes/base/scss/site/_pages.scss */
.cssanimations .Blog .animate > *:nth-child(2),
.cssanimations .ChildSummaryPage .animate > *:nth-child(2) {
  animation-delay: 0.4s;
}

/* line 143, themes/base/scss/site/_pages.scss */
.cssanimations .Blog .animate > *:nth-child(3),
.cssanimations .ChildSummaryPage .animate > *:nth-child(3) {
  animation-delay: 0.6s;
}

/* line 143, themes/base/scss/site/_pages.scss */
.cssanimations .Blog .animate > *:nth-child(4),
.cssanimations .ChildSummaryPage .animate > *:nth-child(4) {
  animation-delay: 0.8s;
}

/* line 143, themes/base/scss/site/_pages.scss */
.cssanimations .Blog .animate > *:nth-child(5),
.cssanimations .ChildSummaryPage .animate > *:nth-child(5) {
  animation-delay: 1s;
}

/* line 143, themes/base/scss/site/_pages.scss */
.cssanimations .Blog .animate > *:nth-child(6),
.cssanimations .ChildSummaryPage .animate > *:nth-child(6) {
  animation-delay: 1.2s;
}

/* line 143, themes/base/scss/site/_pages.scss */
.cssanimations .Blog .animate > *:nth-child(7),
.cssanimations .ChildSummaryPage .animate > *:nth-child(7) {
  animation-delay: 1.4s;
}

/* line 143, themes/base/scss/site/_pages.scss */
.cssanimations .Blog .animate > *:nth-child(8),
.cssanimations .ChildSummaryPage .animate > *:nth-child(8) {
  animation-delay: 1.6s;
}

/* line 150, themes/base/scss/site/_pages.scss */
.PayPage iframe {
  display: block;
  border: 5px solid #EEE;
  margin: 0 auto;
  max-width: 800px;
  height: 450px;
  width: 100%;
}

@media screen and (max-width: 39.9375em) {
  /* line 150, themes/base/scss/site/_pages.scss */
  .PayPage iframe {
    max-width: 800px;
    height: 600px;
  }
}

/* line 163, themes/base/scss/site/_pages.scss */
.PayPage iframe.nab {
  display: block;
  border: 5px solid #EEE;
  margin: 0 auto;
  max-width: 800px;
  height: 450px;
  width: 100%;
}

/* line 176, themes/base/scss/site/_pages.scss */
.Survey .form-row {
  margin-top: 30px;
}

/* line 183, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper .form-section,
.Survey .form-wrapper .form-section {
  background: #f7f7f7;
  padding: 10px 15px 30px 15px;
  margin-bottom: 30px;
}

/* line 189, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper table,
.Survey .form-wrapper table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 15px;
  min-width: 400px;
  border-width: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

/* line 197, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper table thead tr,
.Survey .form-wrapper table thead tr {
  background-color: #27354f;
  color: #ffffff;
  text-align: left;
}

/* line 203, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper table th,
.Survey .response-wrapper table td,
.Survey .form-wrapper table th,
.Survey .form-wrapper table td {
  padding: 12px 15px;
}

/* line 208, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper table tbody tr,
.Survey .form-wrapper table tbody tr {
  border-bottom: 1px solid #dddddd;
}

/* line 211, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper table tbody tr:nth-of-type(even),
.Survey .form-wrapper table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

/* line 215, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper table tbody tr:last-of-type,
.Survey .form-wrapper table tbody tr:last-of-type {
  border-bottom: 2px solid #27354f;
}

/* line 221, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper hr,
.Survey .form-wrapper hr {
  background: #ddd;
  height: 2px;
  border-width: 0;
  margin-bottom: 30px;
}

/* line 228, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper h2,
.Survey .form-wrapper h2 {
  font-size: 28px;
}

/* line 232, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper h3,
.Survey .form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* line 236, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper h3:after,
.Survey .form-wrapper h3:after {
  content: "";
  display: block;
  height: 2px;
  width: 3.125rem;
  position: absolute;
  background: #61a9d1;
  margin-top: 4px;
}

/* line 247, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper h4,
.Survey .form-wrapper h4 {
  color: #27354f;
  font-size: 20px;
}

/* line 252, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper h2, .Survey .response-wrapper h3, .Survey .response-wrapper h4,
.Survey .form-wrapper h2,
.Survey .form-wrapper h3,
.Survey .form-wrapper h4 {
  margin-top: 20px;
}

/* line 256, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper label,
.Survey .form-wrapper label {
  color: #27354f;
  font-weight: normal;
  line-height: 1.4;
  font-size: 16px;
}

/* line 263, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper label.left,
.Survey .form-wrapper label.left {
  color: #27354f;
  font-weight: bold;
  line-height: 1.4;
  font-size: 15px;
}

/* line 271, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper .is-required > label.left:after,
.Survey .form-wrapper .is-required > label.left:after {
  content: ' *';
  color: #ec5840;
}

/* line 277, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper select,
.Survey .response-wrapper option,
.Survey .response-wrapper textarea,
.Survey .response-wrapper date,
.Survey .response-wrapper input,
.Survey .form-wrapper select,
.Survey .form-wrapper option,
.Survey .form-wrapper textarea,
.Survey .form-wrapper date,
.Survey .form-wrapper input {
  font-size: 16px;
  height: auto !important;
  padding: 7px 10px;
}

/* line 287, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper .Actions [type="submit"],
.Survey .form-wrapper .Actions [type="submit"] {
  background: #27354f;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px;
}

/* line 293, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper .Actions [type="submit"]:hover,
.Survey .form-wrapper .Actions [type="submit"]:hover {
  background: #222e45;
}

/* line 297, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper .Actions [type="submit"].draft-submit,
.Survey .form-wrapper .Actions [type="submit"].draft-submit {
  background: #eee;
  color: #27354f;
}

/* line 301, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper .Actions [type="submit"].draft-submit:hover,
.Survey .form-wrapper .Actions [type="submit"].draft-submit:hover {
  background: #e6e6e6;
}

/* line 308, themes/base/scss/site/_pages.scss */
.Survey aside {
  padding-bottom: 0;
  padding-top: 0;
}

/* line 313, themes/base/scss/site/_pages.scss */
.Survey .form-progress {
  position: sticky;
  top: 15px;
  bottom: 15px;
  background: #f2f2f2;
  padding: 30px;
}

/* line 320, themes/base/scss/site/_pages.scss */
.Survey .form-progress h4 {
  color: #27354f;
  font-size: 22px;
  margin-bottom: 20px;
}

/* line 325, themes/base/scss/site/_pages.scss */
.Survey .form-progress h4:after {
  content: "";
  display: block;
  height: 2px;
  width: 3.125rem;
  position: absolute;
  background: #27354f;
  margin-top: 4px;
}

/* line 336, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* line 341, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li {
  font-size: 18px;
}

/* line 344, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li:not(:last-of-type) {
  margin-bottom: 15px;
}

/* line 348, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li a {
  color: #27354f;
}

/* line 352, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li meter {
  display: none;
  margin-bottom: 0;
  background: transparent;
  border-width: 0;
  border-radius: 0;
}

/* line 359, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li meter::-webkit-meter-optimum-value {
  background: #2ea616;
}

/* line 363, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li meter::-moz-meter-bar {
  background: #2ea616;
}

/* line 368, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li.current {
  position: relative;
}

/* line 371, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li.current a {
  color: #61a9d1;
}

/* line 375, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li.current:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left-color: #ffffff;
  left: -30px;
}

/* line 385, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li.current meter {
  display: block;
}

/* line 391, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li.status-incomplete .fa-circle-thin {
  display: inline-block;
}

/* line 395, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li.status-incomplete .fa-check-circle-o {
  display: none;
}

/* line 401, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li.status-complete a {
  color: #2ea616;
}

/* line 405, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li.status-complete .fa-circle-thin {
  display: none;
}

/* line 409, themes/base/scss/site/_pages.scss */
.Survey .form-progress ol li.status-complete .fa-check-circle-o {
  display: inline-block;
  color: #2ea616;
}

/* line 417, themes/base/scss/site/_pages.scss */
.Survey .form-progress meter {
  -webkit-appearance: meter;
}

/* line 422, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper {
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  padding: 30px;
  margin-bottom: 30px;
}

/* line 428, themes/base/scss/site/_pages.scss */
.Survey .response-wrapper dl dt {
  margin-bottom: 0;
}

/* line 434, themes/base/scss/site/_pages.scss */
.Survey #Form_ReviewSurveyForm .Actions {
  display: flex;
  flex-flow: column;
  margin-top: 15px;
  align-items: center;
}

/* line 440, themes/base/scss/site/_pages.scss */
.Survey #Form_ReviewSurveyForm .Actions input {
  margin-bottom: 10px;
}

/* line 444, themes/base/scss/site/_pages.scss */
.Survey #Form_ReviewSurveyForm .Actions a {
  color: #222222;
  text-decoration: underline;
}

/* line 1, themes/base/scss/site/_menu.scss */
.slidedown-menu-switch {
  transition: all 0.1s linear;
  transition-delay: 0.8s;
}

/* line 5, themes/base/scss/site/_menu.scss */
.slidedown-menu-switch.active {
  transition-delay: 0s;
}

@media screen and (min-width: 40em) {
  /* line 1, themes/base/scss/site/_menu.scss */
  .slidedown-menu-switch {
    display: none;
  }
}

/* line 14, themes/base/scss/site/_menu.scss */
.menu-wrapper {
  /* Responsive slidedown menu */
}

/* line 17, themes/base/scss/site/_menu.scss */
.menu-wrapper .menu li {
  position: relative;
}

/* line 21, themes/base/scss/site/_menu.scss */
.menu-wrapper .menu li.current > a {
  background: #3485b2;
  border-left-color: #3485b2;
}

/* line 27, themes/base/scss/site/_menu.scss */
.menu-wrapper .menu li a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 1.25rem 1.25rem;
  position: relative;
  text-transform: uppercase;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  /* line 27, themes/base/scss/site/_menu.scss */
  .menu-wrapper .menu li a {
    padding: 1.25rem 0.9375rem;
  }
}

/* line 40, themes/base/scss/site/_menu.scss */
.menu-wrapper .menu li .menu {
  background: #61a9d1;
  border: none;
}

@media screen and (min-width: 40em) {
  /* line 46, themes/base/scss/site/_menu.scss */
  .menu-wrapper .menu li .trigger {
    display: none;
  }
  /* line 50, themes/base/scss/site/_menu.scss */
  body[data-whatinput=mouse] .menu-wrapper .menu li a:hover {
    background: #3485b2;
    border-left-color: #3485b2;
  }
  /* line 55, themes/base/scss/site/_menu.scss */
  .menu-wrapper .menu li .menu {
    display: none;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 140px;
    z-index: 1000;
  }
}

@media screen and (min-width: 40em) and (max-width: 39.9375em) {
  /* line 65, themes/base/scss/site/_menu.scss */
  .menu-wrapper .menu li .menu li {
    background-color: #2e769e;
  }
}

@media screen and (min-width: 40em) {
  /* line 73, themes/base/scss/site/_menu.scss */
  body[data-whatinput=mouse] .menu-wrapper .menu li:hover .menu {
    display: block;
  }
}

/* line 82, themes/base/scss/site/_menu.scss */
.menu-wrapper > .menu > li {
  /* Hide home button and tighten things up on a smaller tablet */
}

@media screen and (min-width: 641px) and (max-width: 860px) {
  /* line 82, themes/base/scss/site/_menu.scss */
  .menu-wrapper > .menu > li {
    flex: 1 0 auto;
  }
  /* line 87, themes/base/scss/site/_menu.scss */
  .menu-wrapper > .menu > li a {
    justify-content: center;
  }
  /* line 91, themes/base/scss/site/_menu.scss */
  .menu-wrapper > .menu > li.home {
    display: none;
  }
}

@media screen and (min-width: 40em) {
  /* line 97, themes/base/scss/site/_menu.scss */
  .menu-wrapper > .menu > li > a {
    border-left: 0.0625rem solid #4198c8;
  }
}

@media screen and (max-width: 39.9375em) {
  /* line 107, themes/base/scss/site/_menu.scss */
  .menu-wrapper .menu {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.8s linear;
  }
  /* line 115, themes/base/scss/site/_menu.scss */
  .menu-wrapper .menu li .trigger {
    height: 100%;
    padding: 0;
    width: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
  }
  /* line 126, themes/base/scss/site/_menu.scss */
  .menu-wrapper .menu li .trigger .fa {
    transition: all 0.2s ease;
  }
  /* line 132, themes/base/scss/site/_menu.scss */
  .menu-wrapper .menu li.active > a .fa {
    transform: rotate(-180deg);
  }
  /* line 139, themes/base/scss/site/_menu.scss */
  .menu-wrapper.active > .menu,
  .menu-wrapper .active > .menu {
    display: block;
    left: auto;
    top: auto;
    max-height: 625rem;
  }
  /* line 147, themes/base/scss/site/_menu.scss */
  .menu-wrapper > .menu {
    background: #4198c8;
  }
}


.tooltip {
    min-width: 250px;
}

@media screen and (min-width: 39.9375em) {
    body.Blog .sidebar {
        padding-top: 0;
    }
}


.LandingPage .disclaimer-inner {
    display: flex;
}

.LandingPage .disclaimer-inner .logo-wrapper {
    flex: 0 1 170px;
    width: 170px;
}

.LandingPage .disclaimer-inner .content {
    flex: 1 1 auto;
    padding-left: 15px;
}

.LandingPage .disclaimer-inner .content p {
    margin-bottom: 0;
}

.LandingPage .BlogPostBlock {
    padding-top: 50px;
    padding-bottom: 50px;
}

.LandingPage .BlogPostBit .info {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.LandingPage .BlogPostBit .info footer {
    margin-top: auto;
}

.LandingPage .FormBlock {
    padding-top: 50px;
    padding-bottom: 50px;
}

.LandingPage .landing-page-content {
    padding-bottom: 50px;
}

#EditableFormStep_aef5a {
    font-size: 0;
}

@media screen and (min-width: 39.9375em) {
    #EditableTextField_55910,
    #EditableTextField_897e4 {
        width: 32%;
        display: inline-block;
        margin-right: 2%;
    }
     
    #EditableTextField_7e20f {
        width: 32%;
        display: inline-block;
    }
}
 
 .LandingPage iframe {
     max-width: 100%;
 }
 
 .main-content-blocks .SubscriptionBlock {
    margin-top: 60px;
    background: #27354f;
    padding: 30px;
 }
 
 .main-content-blocks .SubscriptionBlock button.secondary {
    color: #FFF;
    background-color: #61a9d1;
    margin-bottom: 0;
 }
 
 .main-content-blocks .SubscriptionBlock button.secondary:hover {
    background-color: #f9f9f9;
    color: #1f2a3f;
 }
 
 .SubscriptionBlock p {
     color: #FFF;
 }