/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* line 6, ../../sass/src/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 27, ../../sass/src/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 31, ../../sass/src/_reset.scss */
body {
  line-height: 1;
}

/* line 34, ../../sass/src/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 37, ../../sass/src/_reset.scss */
blockquote, q {
  quotes: none;
}
/* line 39, ../../sass/src/_reset.scss */
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

/* line 44, ../../sass/src/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* line 26, ../../sass/src/_animations.scss */
.turning {
  animation-name: turning;
  -webkit-animation-name: turning;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
}

@keyframes turning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes turning {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
/* line 79, ../../sass/src/_animations.scss */
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
/* line 141, ../../sass/src/_animations.scss */
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
/* line 203, ../../sass/src/_animations.scss */
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
/* line 265, ../../sass/src/_animations.scss */
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
/* line 327, ../../sass/src/_animations.scss */
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
/* line 407, ../../sass/src/_animations.scss */
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
/* line 456, ../../sass/src/_animations.scss */
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
/* line 512, ../../sass/src/_animations.scss */
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
/* line 568, ../../sass/src/_animations.scss */
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
/* line 649, ../../sass/src/_animations.scss */
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
pulse
==============================================
*/
/* line 720, ../../sass/src/_animations.scss */
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
  }
}
/*
==============================================
floating
==============================================
*/
/* line 767, ../../sass/src/_animations.scss */
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
/* line 808, ../../sass/src/_animations.scss */
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
/* line 849, ../../sass/src/_animations.scss */
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
/* line 918, ../../sass/src/_animations.scss */
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
/* line 987, ../../sass/src/_animations.scss */
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
/* line 1056, ../../sass/src/_animations.scss */
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/* line 10, ../../sass/src/_typography.scss */
html, body {
  font-size: 100%;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

/* line 16, ../../sass/src/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: "brix-slab", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  -webkit-font-feature-settings: "kern";
  -moz-font-feature-settings: "kern";
  -moz-font-feature-settings: "kern=1";
}
/* line 25, ../../sass/src/_typography.scss */
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 500;
}
/* line 26, ../../sass/src/_typography.scss */
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
/* line 32, ../../sass/src/_typography.scss */
h1 a, h1 a:link, h1 a:visited, h1 a:active, h2 a, h2 a:link, h2 a:visited, h2 a:active, h3 a, h3 a:link, h3 a:visited, h3 a:active, h4 a, h4 a:link, h4 a:visited, h4 a:active, h5 a, h5 a:link, h5 a:visited, h5 a:active, h6 a, h6 a:link, h6 a:visited, h6 a:active {
  color: #333333;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
}
/* line 37, ../../sass/src/_typography.scss */
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #e51a77;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
}

/* line 43, ../../sass/src/_typography.scss */
h1 {
  font-size: 2.2rem;
  line-height: 2.5rem;
  margin: 0px 0 48px 0;
}
/* line 48, ../../sass/src/_typography.scss */
h1 .small {
  font-size: 1.3rem;
}
/* line 52, ../../sass/src/_typography.scss */
h1 .link {
  margin-left: 20px;
}
/* line 56, ../../sass/src/_typography.scss */
h1.post-type {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin: 0 0 20px 0;
}

/* line 67, ../../sass/src/_typography.scss */
h2 {
  font-size: 1.9rem;
  line-height: 2.2rem;
  margin: 40px 0 40px 0;
}
/* line 71, ../../sass/src/_typography.scss */
h2 .small {
  font-size: 1.1rem;
}

/* line 76, ../../sass/src/_typography.scss */
h3 {
  font-size: 1.3rem;
  line-height: 1.7rem;
  margin: 25px 0 25px 0;
  font-weight: 500;
}

/* line 84, ../../sass/src/_typography.scss */
h2[id]::before, h3[id]::before {
  content: '';
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

/* line 93, ../../sass/src/_typography.scss */
h4 {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.2rem;
  margin: 40px 0 10px 0;
}

/* line 104, ../../sass/src/_typography.scss */
h5 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin: 15px 0 15px 0;
}

/* line 109, ../../sass/src/_typography.scss */
h6 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin: 12px 0 12px 0;
}

/* line 115, ../../sass/src/_typography.scss */
p, li, td, th {
  font-family: "freight-text-pro", Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 133, ../../sass/src/_typography.scss */
p a, p a:link, p a:visited, p a:active, li a, li a:link, li a:visited, li a:active, td a, td a:link, td a:visited, td a:active, th a, th a:link, th a:visited, th a:active {
  color: #e51a77;
  text-decoration: none;
}

/* line 139, ../../sass/src/_typography.scss */
p, li {
  margin: 0 0 1.6rem 0;
}

/* line 144, ../../sass/src/_typography.scss */
p.dropcap {
  position: relative;
}
/* line 147, ../../sass/src/_typography.scss */
p.dropcap:first-letter {
  color: #444;
  float: left;
  font-size: 4rem;
  line-height: 3rem;
  padding-top: 0.1rem;
  padding-right: 0.3rem;
  padding-left: 0;
}
/* line 170, ../../sass/src/_typography.scss */
p.event-date {
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin: 0 0 20px 0;
  color: #009599;
}

/* line 180, ../../sass/src/_typography.scss */
.hilight {
  color: black;
  background-color: #ffff67;
}

/* line 186, ../../sass/src/_typography.scss */
strong {
  font-weight: 700;
}

/* line 187, ../../sass/src/_typography.scss */
em {
  font-style: italic;
}

/* line 189, ../../sass/src/_typography.scss */
.instruction {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.4rem;
  margin: 0 0 15px 0;
}

/* line 199, ../../sass/src/_typography.scss */
.breadcrumbs {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.9em;
  line-height: 1.2rem;
}

/* line 208, ../../sass/src/_typography.scss */
td, th {
  font-size: 1.2rem;
}

/* line 212, ../../sass/src/_typography.scss */
ul, ol {
  margin: 0 0 1.6rem 40px;
}
/* line 215, ../../sass/src/_typography.scss */
ul li, ol li {
  margin: 0 0 0.5rem 0;
}
/* line 218, ../../sass/src/_typography.scss */
ul li ul, ul li ol, ol li ul, ol li ol {
  margin-bottom: 0;
}

/* line 225, ../../sass/src/_typography.scss */
ul li {
  list-style: disc;
}

/* line 231, ../../sass/src/_typography.scss */
ol > li {
  list-style: decimal;
}
/* line 236, ../../sass/src/_typography.scss */
ol.alpha > li {
  list-style: upper-alpha;
}
/* line 241, ../../sass/src/_typography.scss */
ol.number > li {
  list-style: decimal;
}

/* line 249, ../../sass/src/_typography.scss */
blockquote p, blockquote li {
  font-style: italic;
  padding-left: 25px;
  border-left: 3px solid #e6e6e6;
}

/* line 256, ../../sass/src/_typography.scss */
hr {
  display: block;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #d3d3d3;
  height: 1px;
  width: 100%;
  margin: 0 0 2rem 0;
  padding: 0.6rem 0 0 0;
}

/* line 268, ../../sass/src/_typography.scss */
.done {
  text-decoration: line-through;
}

/* line 272, ../../sass/src/_typography.scss */
.clickable {
  cursor: pointer;
}

/* line 276, ../../sass/src/_typography.scss */
.small {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}

/* line 281, ../../sass/src/_typography.scss */
.dimmed {
  color: #888;
}

/* line 285, ../../sass/src/_typography.scss */
.red {
  color: #ff0000;
}

@media screen and (max-width: 430px) {
  /* line 290, ../../sass/src/_typography.scss */
  p, li, td, th, dt, dd {
    font-size: 1.1rem;
    margin: 0 0 1.1rem 0;
    line-height: 1.5rem;
  }

  /* line 297, ../../sass/src/_typography.scss */
  p.dropcap {
    position: relative;
  }
  /* line 300, ../../sass/src/_typography.scss */
  p.dropcap:first-letter {
    color: #444;
    float: left;
    font-size: 3.7rem;
    line-height: 3rem;
    padding-top: 0rem;
    padding-right: 0.3rem;
    padding-left: 0;
  }

  /* line 314, ../../sass/src/_typography.scss */
  li {
    margin: 0 0 0.5rem 28px;
  }

  /* line 318, ../../sass/src/_typography.scss */
  h1 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin: 0px 0 30px 0;
  }

  /* line 324, ../../sass/src/_typography.scss */
  h2 {
    font-size: 1.3rem;
    line-height: 1.6rem;
    margin: 25px 0 25px 0;
  }

  /* line 330, ../../sass/src/_typography.scss */
  h3 {
    text-transform: uppercase;
    color: #888;
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin: 30px 0 30px 0;
    font-weight: 500;
  }
}
/* line 1, ../../sass/src/_table.scss */
table {
  width: 100%;
  margin: 0 0 1.6rem 0;
  table-layout: fixed;
  border-collapse: collapse;
  /* Todo List ***************************/
  /* Email ***************************/
}
/* line 9, ../../sass/src/_table.scss */
table thead {
  border-bottom: 1px solid #d3d3d3;
}
/* line 14, ../../sass/src/_table.scss */
table thead tr th a.asc:after {
  font-family: FontAwesome;
  content: "\f0d8";
  display: inline-block;
  padding-left: 3px;
  vertical-align: middle;
  font-style: normal;
}
/* line 22, ../../sass/src/_table.scss */
table thead tr th a.desc:after {
  font-family: FontAwesome;
  content: "\f0d7";
  display: inline-block;
  padding-left: 3px;
  vertical-align: middle;
  font-style: normal;
}
/* line 35, ../../sass/src/_table.scss */
table tr.ui-sortable-helper {
  background-color: #fff;
}
/* line 40, ../../sass/src/_table.scss */
table tr:hover.clickable td, table tr:hover.clickable th {
  background-color: #ffe9f5;
}
/* line 46, ../../sass/src/_table.scss */
table td, table th {
  padding: 8px 15px;
  border-bottom: 1px solid #d3d3d3;
  position: relative;
  vertical-align: top;
}
/* line 60, ../../sass/src/_table.scss */
table td a, table td a:link, table td a:visited, table td a:active, table th a, table th a:link, table th a:visited, table th a:active {
  box-shadow: none;
}
/* line 62, ../../sass/src/_table.scss */
table td a i, table td a:link i, table td a:visited i, table td a:active i, table th a i, table th a:link i, table th a:visited i, table th a:active i {
  box-shadow: none;
}
/* line 67, ../../sass/src/_table.scss */
table td img, table th img {
  display: inline-block;
}
/* line 72, ../../sass/src/_table.scss */
table td p:last-of-type, table th p:last-of-type {
  margin-bottom: 0;
}
/* line 78, ../../sass/src/_table.scss */
table td.thumb, table th.thumb {
  text-align: center;
  padding: 0 0 0 0;
  line-height: 0;
}
/* line 83, ../../sass/src/_table.scss */
table td.thumb a, table td.thumb a:link, table td.thumb a:visited, table th.thumb a, table th.thumb a:link, table th.thumb a:visited {
  display: inline-block;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}
/* line 89, ../../sass/src/_table.scss */
table td.thumb img, table th.thumb img {
  display: block;
  max-height: 75px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* line 97, ../../sass/src/_table.scss */
table td.number, table th.number {
  text-align: right;
}
/* line 101, ../../sass/src/_table.scss */
table td.code, table th.code {
  width: 25px;
  text-align: center;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
/* line 108, ../../sass/src/_table.scss */
table td.yesno, table th.yesno {
  width: 25px;
  text-align: center;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
/* line 115, ../../sass/src/_table.scss */
table td.check, table th.check {
  position: relative;
  width: 25px;
}
/* line 119, ../../sass/src/_table.scss */
table td.check input, table th.check input {
  margin: 0 0 0 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* line 128, ../../sass/src/_table.scss */
table td.full-name, table th.full-name {
  width: 180px;
  text-align: center;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
/* line 135, ../../sass/src/_table.scss */
table td.date, table th.date {
  text-align: center;
  width: 75px;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
/* line 142, ../../sass/src/_table.scss */
table td.datetime, table th.datetime {
  text-align: center;
  width: 140px;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
/* line 149, ../../sass/src/_table.scss */
table td.description, table th.description {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
/* line 155, ../../sass/src/_table.scss */
table td.actions, table th.actions {
  width: 80px;
  text-align: center;
}
/* line 160, ../../sass/src/_table.scss */
table td.actions a i, table th.actions a i {
  font-size: 1.6rem;
  line-height: 1.6rem;
}
/* line 167, ../../sass/src/_table.scss */
table td.sortHandle, table th.sortHandle {
  text-align: center;
  cursor: pointer;
}
/* line 174, ../../sass/src/_table.scss */
table td label {
  display: none;
}
/* line 179, ../../sass/src/_table.scss */
table td:nth-child(odd):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d3d3d3;
  width: 1px;
  height: 10px;
}
/* line 190, ../../sass/src/_table.scss */
table td:nth-child(even):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d3d3d3;
  width: 1px;
  height: 10px;
}
/* line 202, ../../sass/src/_table.scss */
table th {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
/* line 209, ../../sass/src/_table.scss */
table.vertical-table th {
  width: 25%;
  text-align: right;
}
/* line 215, ../../sass/src/_table.scss */
table.vertical-table tr td {
  text-align: left;
}
/* line 219, ../../sass/src/_table.scss */
table.vertical-table tr td.image img {
  width: 100%;
}
/* line 225, ../../sass/src/_table.scss */
table.vertical-table tr td.photo img {
  width: 150px;
}
/* line 230, ../../sass/src/_table.scss */
table.vertical-table tr td.number {
  text-align: right;
}
/* line 237, ../../sass/src/_table.scss */
table.vertical-table.stats th {
  width: 70%;
  text-align: left;
}
/* line 243, ../../sass/src/_table.scss */
table.vertical-table.stats tr td {
  text-align: left;
}
/* line 245, ../../sass/src/_table.scss */
table.vertical-table.stats tr td.number {
  text-align: right;
}
/* line 259, ../../sass/src/_table.scss */
table.todo-table td a {
  color: #333333;
}
/* line 263, ../../sass/src/_table.scss */
table.todo-table td a:hover,
table.todo-table tr.priority-hold td a:hover,
table.todo-table tr.priority-rainy td a:hover {
  color: #FF30B2;
  text-decoration: none;
}
/* line 270, ../../sass/src/_table.scss */
table.todo-table tr.priority-hold td,
table.todo-table tr.priority-hold td a {
  color: #ccc;
}
/* line 275, ../../sass/src/_table.scss */
table.todo-table tr.priority-rainy td,
table.todo-table tr.priority-rainy td a {
  color: #7da0af;
}
/* line 280, ../../sass/src/_table.scss */
table.todo-table tr.priority-urgent {
  background-color: #FFCAED;
}
/* line 291, ../../sass/src/_table.scss */
table.email-table thead tr th.from {
  width: 15%;
}
/* line 295, ../../sass/src/_table.scss */
table.email-table thead tr th.category {
  width: 15%;
}
/* line 299, ../../sass/src/_table.scss */
table.email-table thead tr th.subject {
  width: 55%;
}
/* line 303, ../../sass/src/_table.scss */
table.email-table thead tr th.sent {
  width: 15%;
}
/* line 313, ../../sass/src/_table.scss */
table.email-table tbody tr td span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  vertical-align: middle;
}

@media screen and (max-width: 1000px) {
  /* line 331, ../../sass/src/_table.scss */
  table thead {
    display: none;
  }
  /* line 335, ../../sass/src/_table.scss */
  table th {
    display: none;
  }
  /* line 339, ../../sass/src/_table.scss */
  table tbody {
    display: block;
    width: 100%;
    padding: 0 0 0 0;
    border-top: 1px solid #d3d3d3;
  }
  /* line 345, ../../sass/src/_table.scss */
  table tbody tr {
    display: block;
    position: relative;
    border-bottom: 1px solid #d3d3d3;
    margin: 0 0 0px 0;
    padding: 10px 25px;
  }
  /* line 352, ../../sass/src/_table.scss */
  table tbody td {
    display: block;
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 10px 0;
    border: 0;
    width: 100%;
    text-align: left;
  }
  /* line 362, ../../sass/src/_table.scss */
  table tbody td.thumb, table tbody td.number, table tbody td.code, table tbody td.yesno, table tbody td.check, table tbody td.full-name, table tbody td.date, table tbody td.datetime, table tbody td.description, table tbody td.actions, table tbody td.sortHandle {
    width: 100%;
    text-align: left;
  }
  /* line 377, ../../sass/src/_table.scss */
  table tbody td label {
    display: block;
    width: 100%;
    color: #888;
    font-size: 0.8rem;
    line-height: 0.9rem;
    text-transform: uppercase;
  }
  /* line 386, ../../sass/src/_table.scss */
  table tbody td.actions {
    width: 100%;
    text-align: left;
  }
  /* line 391, ../../sass/src/_table.scss */
  table tbody td:first-of-type {
    padding-top: 0;
  }
  /* line 395, ../../sass/src/_table.scss */
  table tbody td:last-of-type {
    padding-bottom: 0;
  }
  /* line 400, ../../sass/src/_table.scss */
  table tbody td:nth-child(odd):before {
    display: none;
  }
  /* line 405, ../../sass/src/_table.scss */
  table tbody td:nth-child(even):before {
    display: none;
  }
  /* line 413, ../../sass/src/_table.scss */
  table.vertical-table th {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  /* line 425, ../../sass/src/_table.scss */
  table.vertical-table tr td.thumb, table.vertical-table tr td.number, table.vertical-table tr td.code, table.vertical-table tr td.yesno, table.vertical-table tr td.check, table.vertical-table tr td.full-name, table.vertical-table tr td.date, table.vertical-table tr td.datetime, table.vertical-table tr td.description, table.vertical-table tr td.actions, table.vertical-table tr td.sortHandle {
    text-align: left;
  }
  /* line 444, ../../sass/src/_table.scss */
  table.vertical-table.stats tr td.number {
    text-align: left;
  }
  /* line 454, ../../sass/src/_table.scss */
  table.todo-table tr {
    position: relative;
    padding: 20px 0;
  }
  /* line 458, ../../sass/src/_table.scss */
  table.todo-table tr td.check {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    padding: 0 0 0 0;
  }
  /* line 467, ../../sass/src/_table.scss */
  table.todo-table tr td.description {
    padding: 0 0 0 0;
    width: calc(100% - 150px);
    margin-left: 50px;
  }
  /* line 473, ../../sass/src/_table.scss */
  table.todo-table tr td.full-name {
    width: calc(100% - 150px);
    padding: 0 0 0 0;
    width: calc(100% - 150px);
    margin-left: 50px;
  }
  /* line 480, ../../sass/src/_table.scss */
  table.todo-table tr td.due-date {
    width: calc(100% - 150px);
    padding: 0 0 0 0;
    width: calc(100% - 150px);
    margin-left: 50px;
  }
  /* line 487, ../../sass/src/_table.scss */
  table.todo-table tr td.actions {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100px;
    padding: 0 0 0 0;
  }
  /* line 495, ../../sass/src/_table.scss */
  table.todo-table tr td.actions span {
    position: absolute;
    display: block;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
  }
  /* line 502, ../../sass/src/_table.scss */
  table.todo-table tr td.actions span > a {
    position: relative;
    top: 2px;
  }
  /* line 513, ../../sass/src/_table.scss */
  table.email-table tr {
    position: relative;
    padding: 0px 0;
  }
  /* line 517, ../../sass/src/_table.scss */
  table.email-table tr td {
    padding: 0 0 0 0;
  }
  /* line 520, ../../sass/src/_table.scss */
  table.email-table tr td label {
    display: none;
  }
  /* line 524, ../../sass/src/_table.scss */
  table.email-table tr td.from {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    position: absolute;
    top: 5px;
    left: 10px;
    width: calc(100% - 155px);
    font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1rem;
  }
  /* line 536, ../../sass/src/_table.scss */
  table.email-table tr td.sent {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    position: absolute;
    top: 5px;
    right: 10px;
    width: 135px;
    text-align: right;
    font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
  }
  /* line 549, ../../sass/src/_table.scss */
  table.email-table tr td.subject {
    margin: 0 0 0 10px;
    padding: 30px 0 30px 0;
    width: calc(100% - 20px);
  }
  /* line 555, ../../sass/src/_table.scss */
  table.email-table tr td.category {
    margin: 0 0 0 0;
    width: calc(100% - 20px);
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #009599;
  }
}
/* line 3, ../../sass/src/_layout.scss */
html, body {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}

/* line 10, ../../sass/src/_layout.scss */
body {
  padding: 0;
  margin: 0;
  background-color: white;
  position: relative;
  width: 100%;
}

/* line 18, ../../sass/src/_layout.scss */
#stage {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0px 0% 0px 0%;
  z-index: 0;
  overflow: hidden;
}
/* line 29, ../../sass/src/_layout.scss */
#stage #page {
  background-color: transparent;
  clear: both;
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  z-index: 1;
  padding: 71px 0% 0 0%;
}
/* line 40, ../../sass/src/_layout.scss */
#stage #page p a:hover, #stage #page li a:hover, #stage #page td a:hover, #stage #page th a:hover, #stage #page dd a:hover, #stage #page dt a:hover {
  box-shadow: 0 2px 0 0 #e51a77;
}
/* line 42, ../../sass/src/_layout.scss */
#stage #page p a:hover i, #stage #page li a:hover i, #stage #page td a:hover i, #stage #page th a:hover i, #stage #page dd a:hover i, #stage #page dt a:hover i {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
/* line 49, ../../sass/src/_layout.scss */
#stage .container {
  padding: 50px 5%;
}
/* line 53, ../../sass/src/_layout.scss */
#stage .block {
  padding: 50px 5% 50px 5%;
  position: relative;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}
/* line 39, ../../sass/src/_mixins.scss */
#stage .block:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
@media screen and (max-width: 430px) {
  /* line 53, ../../sass/src/_layout.scss */
  #stage .block {
    padding: 30px 5% 30px 5%;
  }
}
/* line 68, ../../sass/src/_layout.scss */
#stage .block.index, #stage .block.view, #stage .block.form {
  max-width: 720px;
}
/* line 74, ../../sass/src/_layout.scss */
#stage .block.tinted {
  background-color: #eff0f4;
}
/* line 79, ../../sass/src/_layout.scss */
#stage .emailDumpData {
  width: 100%;
  max-width: 720px;
  clear: both;
  position: relative;
  padding: 40px 0;
  border-top: 10px solid #aaa;
  margin: 0 auto;
}
/* line 88, ../../sass/src/_layout.scss */
#stage .emailDumpData .emailHeaders {
  width: 100%;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ccc;
  margin: 0 0 0 0;
}
/* line 94, ../../sass/src/_layout.scss */
#stage .emailDumpData .emailHeaders p {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: #444;
  margin: 0 0 0 0;
}

/* line 105, ../../sass/src/_layout.scss */
.slideShow {
  display: block;
  width: 100%;
  clear: both;
  padding: 1.6rem 0;
  margin-bottom: 1.6rem;
  overflow: hidden;
}

/* line 114, ../../sass/src/_layout.scss */
.valign {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 119, ../../sass/src/_layout.scss */
.altBackground:nth-child(odd) {
  background-color: rgba(74, 234, 255, 0.05);
}
/* line 122, ../../sass/src/_layout.scss */
.altBackground:nth-child(even) {
  background-color: white;
}

/* line 127, ../../sass/src/_layout.scss */
div.actions {
  display: block;
  width: 100%;
  margin: 40px 0;
}
/* line 131, ../../sass/src/_layout.scss */
div.actions a {
  font-size: 2rem;
  line-height: 2rem;
}
/* line 134, ../../sass/src/_layout.scss */
div.actions a i {
  color: #333333;
}

/* line 140, ../../sass/src/_layout.scss */
#map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 768px;
}

/* line 148, ../../sass/src/_layout.scss */
.row {
  display: block;
  width: 100%;
}
/* line 39, ../../sass/src/_mixins.scss */
.row:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}

/* line 154, ../../sass/src/_layout.scss */
#therapist {
  display: block;
  margin: 0 auto;
  width: 366px;
  height: 486px;
}

/* line 162, ../../sass/src/_layout.scss */
#homeWelcome.block.solid {
  position: relative;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,4aeaff+100 */
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #4aeaff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #4aeaff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #4aeaff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#4aeaff',GradientType=0 );
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e51a77+0,9e74ed+100 */
  overflow-x: hidden;
  overflow-y: hidden;
}
/* line 169, ../../sass/src/_layout.scss */
#homeWelcome.block.solid #welcome {
  display: block;
  margin: 10px auto 30px;
  width: 90%;
  max-width: 250px;
}
/* line 176, ../../sass/src/_layout.scss */
#homeWelcome.block.solid #trianglePair {
  display: block;
  width: 102%;
  position: absolute;
  bottom: -2px;
  left: -1%;
}

/* line 186, ../../sass/src/_layout.scss */
div.alert, div.info {
  display: block;
  padding: 26px 5% 0;
  margin: 0 0 20px 0;
  overflow: hidden;
  background-color: #ffc0e0;
  border-radius: 10px;
}

/* line 195, ../../sass/src/_layout.scss */
div.info {
  background-color: #e0efca;
}

/* line 199, ../../sass/src/_layout.scss */
.subSection {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 40px 0;
}
/* line 205, ../../sass/src/_layout.scss */
.subSection *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 430px) {
  /* line 211, ../../sass/src/_layout.scss */
  div.alert {
    padding: 16px 5% 0;
  }
}
/* line 216, ../../sass/src/_layout.scss */
.abuse {
  display: block;
  padding: 10px 5%;
  margin: 20px 0;
  overflow: hidden;
  background-color: #ffc0e0;
  border-radius: 10px;
}
/* line 224, ../../sass/src/_layout.scss */
.abuse p {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  color: black;
}
/* line 230, ../../sass/src/_layout.scss */
.abuse > *:last-child {
  margin-bottom: 0;
}

/* line 235, ../../sass/src/_layout.scss */
.abuse-button {
  display: block;
  padding: 0;
  margin: 20px 0;
  overflow: hidden;
}

/* line 243, ../../sass/src/_layout.scss */
.doubles {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
  flex-direction: row;
  gap: 40px;
}
/* line 251, ../../sass/src/_layout.scss */
.doubles .double {
  box-sizing: border-box;
  flex-grow: 1;
  justify-content: center;
  flex-basis: 50%;
  max-width: 50%;
}
/* line 260, ../../sass/src/_layout.scss */
.doubles .double img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 1260px) {
  /* line 270, ../../sass/src/_layout.scss */
  .doubles {
    flex-wrap: wrap;
  }
  /* line 273, ../../sass/src/_layout.scss */
  .doubles .double {
    flex-basis: 100%;
    max-width: 100%;
  }
}
/* line 280, ../../sass/src/_layout.scss */
#swichBackToAdmin {
  display: block;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background-color: #e51a77;
  border-radius: 5px 5px 0 0;
}
/* line 291, ../../sass/src/_layout.scss */
#swichBackToAdmin a, #swichBackToAdmin a:link, #swichBackToAdmin a:visited {
  font-size: 1rem;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

/* line 1, ../../sass/src/_header.scss */
#stick {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: white;
  overflow: visible;
  height: 71px;
  border-bottom: 1px solid #d3d3d3;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
}
/* line 15, ../../sass/src/_header.scss */
#stick #staging {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background: url("/img/staging.png");
  background-repeat: repeat-x;
  background-size: 180px 18px;
}
/* line 26, ../../sass/src/_header.scss */
#stick #header {
  display: block;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
/* line 32, ../../sass/src/_header.scss */
#stick #header .contain {
  width: 90%;
  padding: 0 0 0 0;
  display: block;
  overflow: visible;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 110;
}
/* line 39, ../../sass/src/_mixins.scss */
#stick #header .contain:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 43, ../../sass/src/_header.scss */
#stick #header .contain #logo {
  position: absolute;
  left: 0;
  top: 19px;
  margin: 0;
  padding: 0;
}
/* line 50, ../../sass/src/_header.scss */
#stick #header .contain #logo img {
  width: 340px;
}
/* line 55, ../../sass/src/_header.scss */
#stick #header .contain #mobileMenu {
  display: none;
  position: absolute;
  top: 19px;
  right: 0;
  width: 32px;
  height: 32px;
  z-index: 110;
}
/* line 64, ../../sass/src/_header.scss */
#stick #header .contain #mobileMenu img {
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 430px) {
  /* line 74, ../../sass/src/_header.scss */
  #stick #header .contain #logo {
    top: 24px;
  }
  /* line 77, ../../sass/src/_header.scss */
  #stick #header .contain #logo img {
    width: 240px;
  }
}

/* line 91, ../../sass/src/_header.scss */
#sideTray {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 71px;
  padding: 0;
  z-index: 105;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 102, ../../sass/src/_header.scss */
#sideTray #nav {
  display: block;
  position: relative;
  clear: both;
  width: 100%;
  max-width: 2000px;
  padding: 0;
  margin: 0 auto;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray #nav:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 112, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container {
  display: block;
  position: relative;
  clear: both;
  width: 90%;
  margin: 0 auto;
  padding: 0 5%;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray #nav .menu-primary-container:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 121, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary {
  display: block;
  clear: both;
  margin: 0 0 0 0;
  height: 71px;
  text-align: right;
  background-color: transparent;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray #nav .menu-primary-container #menu-primary:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 130, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li {
  display: inline-block;
  list-style: none;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  line-height: 71px;
  margin: 0 0 0 0;
  padding: 0 7px;
  position: relative;
}
/* line 140, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li:first-of-type {
  padding-left: 0;
}
/* line 144, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li:last-of-type, #sideTray #nav .menu-primary-container #menu-primary li.last {
  padding-right: 0;
}
/* line 148, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li a, #sideTray #nav .menu-primary-container #menu-primary li a:link, #sideTray #nav .menu-primary-container #menu-primary li a:visited {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #333333;
  line-height: 71px;
}
/* line 158, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-ancestor > a,
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-ancestor > a:link,
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-ancestor > a:visited, #sideTray #nav .menu-primary-container #menu-primary li.current-menu-item > a,
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-item > a:link,
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-item > a:visited {
  color: #e51a77;
}
/* line 165, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li a:hover {
  color: #e51a77;
}
/* line 169, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li ul {
  display: none;
  position: absolute;
  top: 72px;
  left: -5px;
  width: 200px;
  background-color: white;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
/* line 181, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li ul li {
  display: block;
  float: left;
  width: 100%;
  clear: both;
  border-bottom: 1px solid #d3d3d3;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* line 191, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li ul li a, #sideTray #nav .menu-primary-container #menu-primary li ul li a:link, #sideTray #nav .menu-primary-container #menu-primary li ul li a:visited {
  display: block;
  float: left;
  width: 90%;
  text-align: left;
  text-transform: none;
  line-height: 1.1rem;
  padding: 15px 5%;
}
/* line 201, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li ul li a:hover {
  color: #e51a77;
}
/* line 208, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li:last-of-type ul, #sideTray #nav .menu-primary-container #menu-primary li.last ul {
  left: auto;
  right: 0px;
}

@media screen and (max-width: 1000px) {
  /* line 227, ../../sass/src/_header.scss */
  #stick #header .contain #mobileMenu {
    display: block;
  }

  /* line 241, ../../sass/src/_header.scss */
  #sideTray {
    display: none;
    width: 300px;
    height: auto;
    top: 71px;
    right: -310px;
    left: auto;
    padding: 0 0 0 0;
    background-color: white;
    border-top: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
    z-index: 90;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #eff0f4;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 258, ../../sass/src/_header.scss */
  #sideTray #nav {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 264, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 270, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    background-color: white;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 277, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid #d3d3d3;
    list-style: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-align: right;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 289, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li.menu-item-has-children ul {
    display: none;
  }
  /* line 294, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li a, #sideTray #nav .menu-primary-container #menu-primary li a:link, #sideTray #nav .menu-primary-container #menu-primary li a:visited {
    display: block;
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 90%;
    line-height: 3rem;
    padding: 0 5%;
    margin: 0 0 0 0;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li a:after, #sideTray #nav .menu-primary-container #menu-primary li a:link:after, #sideTray #nav .menu-primary-container #menu-primary li a:visited:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 303, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 0 15px 0;
    margin: 0 0 0 0;
    border-left: 0;
    border-right: 0;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 311, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul li {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 0 0 0;
    border-bottom: 0;
    font-weight: 400;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul li:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 317, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul li a, #sideTray #nav .menu-primary-container #menu-primary li ul li a:link, #sideTray #nav .menu-primary-container #menu-primary li ul li a:visited {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 90%;
    padding: 0 5%;
    line-height: 2rem;
    text-align: right;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul li a:after, #sideTray #nav .menu-primary-container #menu-primary li ul li a:link:after, #sideTray #nav .menu-primary-container #menu-primary li ul li a:visited:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
}
/* line 334, ../../sass/src/_header.scss */
#tabs {
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 334, ../../sass/src/_header.scss */
  #tabs {
    display: none;
  }
}
/* line 341, ../../sass/src/_header.scss */
#tabs ul {
  display: inline-block;
  margin: 0 0 0 0;
  padding: 0 0px 0 0;
}
/* line 346, ../../sass/src/_header.scss */
#tabs ul li {
  display: inline-block;
  list-style: none;
  line-height: 1.6rem;
  margin: 0 5px;
  padding: 0 0 0 0;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}
/* line 361, ../../sass/src/_header.scss */
#tabs ul li a, #tabs ul li a:link, #tabs ul li a:visited {
  display: inline-block;
  color: #333333;
  font-size: 0.9rem;
  line-height: 2.6rem;
  text-transform: uppercase;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
/* line 372, ../../sass/src/_header.scss */
#tabs ul li a:hover {
  color: #e51a77;
}
/* line 376, ../../sass/src/_header.scss */
#tabs ul li.current-menu-item {
  border-bottom: 2px solid #e51a77;
}

/* line 389, ../../sass/src/_header.scss */
.disableNav #stick #header .contain #mobileMenu {
  display: none;
}
/* line 399, ../../sass/src/_header.scss */
.disableNav #sideTray #nav .menu-primary-container #menu-primary {
  display: none;
}
/* line 406, ../../sass/src/_header.scss */
.disableNav #tabs {
  display: none;
}
/* line 410, ../../sass/src/_header.scss */
.disableNav #profile-edit-intro {
  display: none;
}

/* line 1, ../../sass/src/_forms.scss */
input, button, select, textarea {
  font-family: "freight-text-pro", Georgia, serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

/* line 7, ../../sass/src/_forms.scss */
label {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

/* line 13, ../../sass/src/_forms.scss */
form {
  display: block;
}

/* line 17, ../../sass/src/_forms.scss */
div.error-message {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #e51a77;
  line-height: 1.4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

/* line 26, ../../sass/src/_forms.scss */
input {
  height: 30px;
  line-height: 30px;
  display: block;
  color: #333333;
  background-color: white;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 0;
}

/* line 37, ../../sass/src/_forms.scss */
select {
  height: 30px;
  line-height: 30px;
  padding: 0;
  border: 1px solid #d3d3d3;
  border-radius: 0;
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: #f6f6f6;
  width: 100%;
}

/* line 51, ../../sass/src/_forms.scss */
textarea {
  width: calc(97% - 2px);
  padding: 7px 1.5%;
  border: 1px solid #d3d3d3;
  font-size: 1.2rem;
  line-height: 1.6rem;
  height: 300px;
  font-weight: 400;
  border-radius: 0;
  -webkit-appearance: none;
}
/* line 62, ../../sass/src/_forms.scss */
textarea.short {
  height: 150px;
}

/* line 68, ../../sass/src/_forms.scss */
label a, label a:link, label a:visited {
  color: #e51a77;
  font-weight: 400;
}

/* line 74, ../../sass/src/_forms.scss */
button,
a.button,
a.button:link,
a.button:visited,
input[type=submit] {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  background-color: #333333;
  color: white;
  display: inline-block;
  border: 0;
  height: 36px;
  line-height: 35px;
  padding: 0 20px;
  margin: 0 0 0 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 18px;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 98, ../../sass/src/_forms.scss */
button.stickToRight,
a.button.stickToRight,
a.button:link.stickToRight,
a.button:visited.stickToRight,
input[type=submit].stickToRight {
  position: relative;
  float: right;
  top: -5px;
}

/* line 105, ../../sass/src/_forms.scss */
button.small,
a.button.small,
a.button.small:link,
a.button.small:visited,
input[type=submit].small {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  background-color: #333333;
  color: white;
  display: inline-block;
  border: 0;
  height: 26px;
  line-height: 25px;
  padding: 0 10px;
  margin: 0 0 0 0;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 13px;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
@media screen and (max-width: 430px) {
  /* line 105, ../../sass/src/_forms.scss */
  button.small,
  a.button.small,
  a.button.small:link,
  a.button.small:visited,
  input[type=submit].small {
    padding: 0 7px;
    height: 20px;
    line-height: 18px;
  }
}
/* line 135, ../../sass/src/_forms.scss */
button.small.stickToRight,
a.button.small.stickToRight,
a.button.small:link.stickToRight,
a.button.small:visited.stickToRight,
input[type=submit].small.stickToRight {
  position: relative;
  float: right;
  top: -5px;
}

/* line 143, ../../sass/src/_forms.scss */
h1 button.small,
h1 a.button.small,
h1 a.button.small:link,
h1 a.button.small:visited,
h1 input[type=submit].small {
  position: relative;
  top: -6px;
  margin: 0 0 0 10px;
}

/* line 154, ../../sass/src/_forms.scss */
input[type="submit"]:disabled,
.preventRepeat:disabled,
button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* line 161, ../../sass/src/_forms.scss */
a.button:hover {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

/* line 165, ../../sass/src/_forms.scss */
.input, .submit {
  display: block;
  padding: 0 0 0 0;
  clear: both;
  background-color: transparent;
}

/* line 173, ../../sass/src/_forms.scss */
.input {
  margin: 0 0 20px 0;
  padding-left: 10px;
  border-bottom: 1px solid #d3d3d3;
  border-left: 3px solid #d3d3d3;
  overflow: visible;
}
/* line 180, ../../sass/src/_forms.scss */
.input label {
  display: inline-block;
  font-size: 0.9rem;
  color: #888;
}

/* line 188, ../../sass/src/_forms.scss */
.submit {
  margin-top: 20px;
}

/* line 192, ../../sass/src/_forms.scss */
.input input[type=text],
.input input[type=password],
.input input[type=tel],
.input input[type=email],
.input input[type=number] {
  width: 100%;
  border: 0;
  -webkit-appearance: none;
}

/* line 202, ../../sass/src/_forms.scss */
.input input[type=file] {
  font-size: 1rem;
  padding: 11px 0 2px 0px;
  line-height: 20px;
}

/* line 211, ../../sass/src/_forms.scss */
.input.textarea {
  padding-bottom: 0px;
  border-bottom: 0;
}
/* line 214, ../../sass/src/_forms.scss */
.input.textarea label {
  margin-bottom: 7px;
}

/* line 219, ../../sass/src/_forms.scss */
.input.select,
.input.month,
.input.year {
  border-bottom: 0;
  padding-bottom: 3px;
}
/* line 224, ../../sass/src/_forms.scss */
.input.select label,
.input.month label,
.input.year label {
  margin-bottom: 5px;
}

/* line 229, ../../sass/src/_forms.scss */
.input.datetime,
.input.date,
.input.time {
  overflow: hidden;
}
/* line 234, ../../sass/src/_forms.scss */
.input.datetime label,
.input.date label,
.input.time label {
  display: block;
  float: left;
}
/* line 239, ../../sass/src/_forms.scss */
.input.datetime input,
.input.date input,
.input.time input {
  border: 0;
  float: left;
  clear: both;
  width: 100%;
  max-width: 300px;
}

/* line 249, ../../sass/src/_forms.scss */
.input.radio label {
  display: inline-block;
  margin: 0 20px 0 0;
  line-height: 30px;
  height: 30px;
  padding: 0 0 0 0;
  color: #333333;
}
/* line 257, ../../sass/src/_forms.scss */
.input.radio label input[type=radio] {
  float: left;
  line-height: 30px;
  height: 30px;
  margin: 0 5px 0 0;
  padding: 0 0 0 0;
}

/* line 267, ../../sass/src/_forms.scss */
.multipleChecboxes {
  padding-bottom: 10px;
  -webkit-column-count: 2;
  /* Chrome, Safari, Opera */
  -moz-column-count: 2;
  /* Firefox */
  column-count: 2;
  -webkit-column-gap: 20px;
  /* Chrome, Safari, Opera */
  -moz-column-gap: 20px;
  /* Firefox */
  column-gap: 20px;
}
@media screen and (max-width: 600px) {
  /* line 267, ../../sass/src/_forms.scss */
  .multipleChecboxes {
    -webkit-column-count: 1;
    /* Chrome, Safari, Opera */
    -moz-column-count: 1;
    /* Firefox */
    column-count: 1;
    -webkit-column-gap: 0px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 0px;
    /* Firefox */
    column-gap: 0px;
  }
}
/* line 288, ../../sass/src/_forms.scss */
.multipleChecboxes .checkbox {
  padding-bottom: 10px;
}
/* line 291, ../../sass/src/_forms.scss */
.multipleChecboxes .checkbox label {
  color: #333333;
  font-size: 1rem;
  line-height: 1.4rem;
}
/* line 297, ../../sass/src/_forms.scss */
.multipleChecboxes .checkbox input[type=checkbox] {
  line-height: 1.4rem;
  height: 1.4rem;
}

/* line 304, ../../sass/src/_forms.scss */
.textInputLabel {
  color: #ccc;
}

/* line 307, ../../sass/src/_forms.scss */
.textarea.noPad {
  margin: 0 0 0 0;
}

/* line 311, ../../sass/src/_forms.scss */
input[type=checkbox] {
  display: inline-block;
  border: 1px solid #333333;
  width: 1rem;
  height: 1rem;
  margin: 0 6px 0 0;
  padding: 0 0 0 0;
  vertical-align: top;
  color: #333333;
}
/* line 321, ../../sass/src/_forms.scss */
input[type=checkbox]:checked {
  background-color: #333333;
}

/* line 325, ../../sass/src/_forms.scss */
.input.checkbox {
  padding: 10px 0 15px 10px;
}
/* line 328, ../../sass/src/_forms.scss */
.input.checkbox label {
  display: inline-block;
  line-height: 1rem;
  vertical-align: top;
  margin: 0 0 0 0;
  color: #333333;
}

/* line 337, ../../sass/src/_forms.scss */
.combo {
  border-top: 0;
  padding: 0;
}
/* line 340, ../../sass/src/_forms.scss */
.combo input {
  float: left;
}
/* line 343, ../../sass/src/_forms.scss */
.combo input[type=text] {
  padding: 0 0 0 0;
  border: 0;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 80%;
  height: 34px;
  -webkit-appearance: none;
}
/* line 352, ../../sass/src/_forms.scss */
.combo input[type=submit] {
  padding: 0 0 0 0;
  width: 20%;
  -webkit-appearance: none;
}

/* line 359, ../../sass/src/_forms.scss */
.copyValue {
  border: 0;
  background-color: transparent;
  padding: 0px 0;
  width: 100%;
}

/* line 366, ../../sass/src/_forms.scss */
.toolbar {
  width: 100%;
  margin: 0 0 20px 0;
}

/* line 371, ../../sass/src/_forms.scss */
:focus {
  outline-color: transparent;
  outline-style: none;
}

/* line 376, ../../sass/src/_forms.scss */
.mce-tinymce.mce-container.mce-panel {
  margin-bottom: 20px !important;
}

/* line 380, ../../sass/src/_forms.scss */
.mce-container {
  white-space: normal !important;
}

/* line 384, ../../sass/src/_forms.scss */
div.mce-tinymce-inline {
  width: 100% !important;
  height: auto !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 0 0 0 !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #d3d3d3 !important;
}
/* line 39, ../../sass/src/_mixins.scss */
div.mce-tinymce-inline:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 397, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout {
  width: auto !important;
  height: auto !important;
  margin: 0 0 0 0 !important;
}
/* line 39, ../../sass/src/_mixins.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 403, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end {
  width: auto !important;
  height: auto !important;
  position: relative !important;
  white-space: normal !important;
  margin: 0 0 0 0 !important;
}
/* line 410, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container-body, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container-body {
  width: auto !important;
  height: auto !important;
  white-space: normal !important;
  margin: 0 0 0 0 !important;
  text-align: center;
}
/* line 417, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container div, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container-body div, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container div, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container-body div {
  margin: 0 0 0 0 !important;
  white-space: normal !important;
}
/* line 422, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container .mce-btn-group, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container-body .mce-btn-group, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container .mce-btn-group, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container-body .mce-btn-group {
  white-space: normal !important;
}

/* line 431, ../../sass/src/_forms.scss */
.btn {
  text-transform: uppercase;
  padding: 6px 25px 5px 25px;
  font-size: 16px;
}

/* line 437, ../../sass/src/_forms.scss */
.searchGroup {
  width: 100%;
  float: none;
  display: block;
  overflow: hidden;
  margin: 0 0 0 0;
}
/* line 444, ../../sass/src/_forms.scss */
.searchGroup .searchText {
  float: left;
  border: 1px solid #d3d3d3;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-right: 0;
  padding: 0 0 0 2%;
  height: 32px;
  width: 66%;
  -webkit-appearance: none;
}
/* line 455, ../../sass/src/_forms.scss */
.searchGroup .searchRemove {
  display: block;
  float: left;
  width: 5%;
  height: 32px;
  padding: 0 0.5%;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
}
/* line 463, ../../sass/src/_forms.scss */
.searchGroup .searchRemove i {
  color: #333333;
  line-height: 32px;
}
/* line 468, ../../sass/src/_forms.scss */
.searchGroup .searchSubmit {
  float: left;
  border-radius: 0px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  height: 34px;
  width: 25%;
  padding-right: 1%;
  padding-left: 1%;
  font-size: 1rem;
}

/* line 481, ../../sass/src/_forms.scss */
#searchBar {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  padding: 10px 5%;
  margin: 0 auto;
  width: 90%;
  border-bottom: 1px solid #d3d3d3;
  overflow: hidden;
}
/* line 492, ../../sass/src/_forms.scss */
#searchBar .displayFormats {
  display: block;
  width: 45%;
  margin: 0 0 0 0;
  list-style: none;
  float: left;
}
/* line 499, ../../sass/src/_forms.scss */
#searchBar .displayFormats li {
  display: inline-block;
  line-height: 34px;
  font-size: 24px;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  margin: -3px 20px 0 0px;
  padding: 0 0 0 0;
  list-style: none;
}
/* line 508, ../../sass/src/_forms.scss */
#searchBar .displayFormats li a {
  display: inline-block;
  color: #888;
}
/* line 512, ../../sass/src/_forms.scss */
#searchBar .displayFormats li a.selected {
  color: #333333;
}
/* line 515, ../../sass/src/_forms.scss */
#searchBar .displayFormats li a i {
  font-size: 24px;
  position: relative;
  vertical-align: middle;
}
/* line 525, ../../sass/src/_forms.scss */
#searchBar .input.select {
  clear: none;
  display: block;
  float: left;
  width: 37%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  border: 0;
}
/* line 534, ../../sass/src/_forms.scss */
#searchBar .input.select label {
  display: none;
}
/* line 537, ../../sass/src/_forms.scss */
#searchBar .input.select select {
  width: 100%;
  height: 34px;
}
/* line 543, ../../sass/src/_forms.scss */
#searchBar .advancedFilter {
  display: block;
  float: right;
  width: 25%;
  padding: 0 2% 0 0;
  text-align: right;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: none;
  height: 32px;
  line-height: 32px;
  color: #e51a77;
}
/* line 557, ../../sass/src/_forms.scss */
#searchBar .searchGroup {
  float: right;
  width: 47%;
}

/* line 565, ../../sass/src/_forms.scss */
ul#arrayOptions {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 5px 0 0 0;
  padding: 0 0 0 0;
}
/* line 572, ../../sass/src/_forms.scss */
ul#arrayOptions li {
  display: block;
  width: 100%;
  overflow: hidden;
  list-style: none;
  margin: 0 0 5px 0;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #d3d3d3;
}
/* line 581, ../../sass/src/_forms.scss */
ul#arrayOptions li span {
  display: block;
  float: left;
  width: 90%;
  margin: 0 0 0 0;
}
/* line 588, ../../sass/src/_forms.scss */
ul#arrayOptions li a {
  display: block;
  float: right;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #333333;
  cursor: pointer;
  margin: 0 0 0 0;
}

/* line 600, ../../sass/src/_forms.scss */
#optionInputGroup {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* line 607, ../../sass/src/_forms.scss */
#optionInputGroup input[type=text] {
  width: 90%;
  border: 1px solid #d3d3d3;
  margin: 5px 0 10px 0;
  float: left;
}
/* line 613, ../../sass/src/_forms.scss */
#optionInputGroup a {
  display: block;
  float: right;
  height: 32px;
  font-size: 1.6rem;
  line-height: 32px;
  color: #333333;
  margin: 5px 0 5px 10px;
  cursor: pointer;
}

/* line 626, ../../sass/src/_forms.scss */
#checkboxes .multipleChecboxes {
  display: none;
}

/* line 631, ../../sass/src/_forms.scss */
.toggler {
  cursor: pointer;
}

/* line 635, ../../sass/src/_forms.scss */
.g-recaptcha {
  margin: 0 0 20px 0;
}

/* line 639, ../../sass/src/_forms.scss */
.category-note {
  display: none;
}

@media screen and (max-width: 768px) {
  /* line 647, ../../sass/src/_forms.scss */
  #searchBar .displayFormats {
    float: none;
    width: 100%;
    margin: 0 0 7px 0;
  }
  /* line 651, ../../sass/src/_forms.scss */
  #searchBar .displayFormats li {
    line-height: 24px;
    font-size: 16px;
    margin: 0 10px 0 0;
  }
  /* line 656, ../../sass/src/_forms.scss */
  #searchBar .displayFormats li a i {
    font-size: 20px;
  }
  /* line 663, ../../sass/src/_forms.scss */
  #searchBar .input.select {
    float: none;
    width: 100%;
    margin: 0 0 10px 0;
  }
  /* line 669, ../../sass/src/_forms.scss */
  #searchBar .advancedFilter {
    width: 100%;
    padding: 5px 0 0 0;
    text-align: left;
  }
  /* line 675, ../../sass/src/_forms.scss */
  #searchBar .searchGroup {
    width: 100%;
    float: none;
  }
}
/* line 684, ../../sass/src/_forms.scss */
.ui-widget-header {
  border: 1px solid #e51a77;
  background-color: #e51a77;
  background-image: none;
  color: #fff;
  font-weight: bold;
}

/* line 692, ../../sass/src/_forms.scss */
.ui-button {
  color: #333333;
  background-color: white;
  background-image: none;
}
/* line 697, ../../sass/src/_forms.scss */
.ui-button:hover, .ui-button:focus {
  border: 1px solid #aaa;
  background-color: white;
  background-image: none;
  color: #333333;
}
/* line 705, ../../sass/src/_forms.scss */
.ui-button .ui-icon {
  background-image: url("/js/jquery-ui/images/ui-icons_222222_256x240.png");
}
/* line 707, ../../sass/src/_forms.scss */
.ui-button .ui-icon:hover, .ui-button .ui-icon:focus {
  background-image: url("/js/jquery-ui/images/ui-icons_222222_256x240.png");
}

/* line 1, ../../sass/src/_system.scss */
#systemMessage {
  position: fixed;
  display: none;
  top: -55px;
  /* Hide by default */
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
  color: #fff;
  padding: 0px 0px 0px 0px;
  z-index: 200;
  text-align: center;
}
/* line 14, ../../sass/src/_system.scss */
#systemMessage div.block {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  color: #fff;
  padding: 29px 35px 10px 15px;
  z-index: 100;
  /*	cursor: pointer; */
  background-color: #e51a77;
  -moz-box-shadow: 0px 0px 4px #000;
  -webkit-box-shadow: 0px 0px 4px #000;
  box-shadow: 0px 0px 4px #000;
  border-radius: 0 0 5px 5px;
}
/* line 28, ../../sass/src/_system.scss */
#systemMessage div.block #messageContent {
  display: block;
  overflow: hidden;
}
/* line 32, ../../sass/src/_system.scss */
#systemMessage div.block #messageContent div.message {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.8rem;
  border: 0;
  background-color: transparent;
  overflow: hidden;
  clear: both;
  color: white;
  margin: 0 0 0 0;
  padding: 0;
  white-space: nowrap;
}
/* line 48, ../../sass/src/_system.scss */
#systemMessage div.block #click2close {
  position: absolute;
  top: 35px;
  right: 10px;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
}

/* Paging *******************************************/
/* line 3, ../../sass/src/_paging.scss */
.paginator {
  clear: both;
  margin: 0px 0px 0px 0px;
  padding: 15px 0;
  text-align: center;
  font-weight: 700;
}
/* line 10, ../../sass/src/_paging.scss */
.paginator .pagination {
  display: inline-block;
  margin: 0 15px;
}
/* line 15, ../../sass/src/_paging.scss */
.paginator .pagination li {
  list-style: none;
  display: inline-block;
  margin: 0 0 0 0;
  padding: 0 10px;
  font-weight: 700;
  font-family: "brix-slab", "Helvetica Neue", Helvetica, sans-serif;
}
/* line 23, ../../sass/src/_paging.scss */
.paginator .pagination li a, .paginator .pagination li a:visited, .paginator .pagination li a:link {
  color: #333333;
  text-transform: uppercase;
  font-size: 1rem;
  box-shadow: 0 0 0 0;
}
/* line 28, ../../sass/src/_paging.scss */
.paginator .pagination li a i, .paginator .pagination li a:visited i, .paginator .pagination li a:link i {
  position: relative;
  top: 0px;
}
/* line 35, ../../sass/src/_paging.scss */
.paginator .pagination li.active a, .paginator .pagination li.active a:visited, .paginator .pagination li.active a:link {
  color: #e51a77;
}
/* line 41, ../../sass/src/_paging.scss */
.paginator .pagination li.disabled a, .paginator .pagination li.disabled a:visited, .paginator .pagination li.disabled a:link {
  color: #ddd;
}

@media screen and (max-width: 1000px) {
  /* line 52, ../../sass/src/_paging.scss */
  .paginator .pagination li {
    display: none;
    /* hide the numbers */
  }
  /* line 55, ../../sass/src/_paging.scss */
  .paginator .pagination li.prev, .paginator .pagination li.next {
    display: inline-block;
  }
}
/* line 3, ../../sass/src/_posts.scss */
#stage #page .block {
  /* Static styles **********************************************************/
  /* Articles styles **********************************************************/
  /* Event styles **********************************************************/
  /* Email styles **********************************************************/
  /* Jobs styles **********************************************************/
  /* Archive styles **********************************************************/
}
/* line 5, ../../sass/src/_posts.scss */
#stage #page .block img.poster {
  display: block;
  width: 100%;
  position: relative;
}
/* line 10, ../../sass/src/_posts.scss */
#stage #page .block img.poster.full {
  padding: 15px 0 0 0;
  margin: 0 0 30px 0;
}
/* line 15, ../../sass/src/_posts.scss */
#stage #page .block img.poster.over {
  width: 140%;
  left: -20%;
  padding: 15px 0 0 0;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 1000px) {
  /* line 15, ../../sass/src/_posts.scss */
  #stage #page .block img.poster.over {
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: 1500px) {
  /* line 15, ../../sass/src/_posts.scss */
  #stage #page .block img.poster.over {
    width: 180%;
    left: -40%;
  }
}
/* line 30, ../../sass/src/_posts.scss */
#stage #page .block img.poster.center {
  padding-top: 15px;
  margin: 0 auto 30px;
  width: auto;
  max-width: 100%;
}
/* line 38, ../../sass/src/_posts.scss */
#stage #page .block.page-title {
  padding-bottom: 0;
}
/* line 43, ../../sass/src/_posts.scss */
#stage #page .block.index, #stage #page .block.related {
  width: 100%;
  max-width: 100%;
  padding: 0 0 35px 0;
  margin: 0 0 0 0;
}
/* line 50, ../../sass/src/_posts.scss */
#stage #page .block.index h3, #stage #page .block.related h3 {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 56, ../../sass/src/_posts.scss */
#stage #page .block.index .post, #stage #page .block.related .post {
  position: relative;
  max-height: 800px;
  overflow: hidden;
  padding: 0 0 40px 0;
  border-bottom: 1px solid #d3d3d3;
  margin: 0 0 40px 0;
}
/* line 65, ../../sass/src/_posts.scss */
#stage #page .block.index .post .meta p, #stage #page .block.related .post .meta p {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  margin: 0 0 0 0;
  color: #888;
}
/* line 73, ../../sass/src/_posts.scss */
#stage #page .block.index .post h1, #stage #page .block.related .post h1 {
  margin: 0 0 30px 0;
}
/* line 78, ../../sass/src/_posts.scss */
#stage #page .block.index .post img.poster.center, #stage #page .block.related .post img.poster.center {
  max-width: 200px;
}
/* line 83, ../../sass/src/_posts.scss */
#stage #page .block.index .post .read-more, #stage #page .block.related .post .read-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 200px 0 0 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
  background-image: linear-gradient(to bottom,rgba(255, 255, 255, 0), white);
}
/* line 94, ../../sass/src/_posts.scss */
#stage #page .block.index .post .read-more a, #stage #page .block.index .post .read-more a:visited, #stage #page .block.index .post .read-more a:link, #stage #page .block.related .post .read-more a, #stage #page .block.related .post .read-more a:visited, #stage #page .block.related .post .read-more a:link {
  font-family: "brix-slab", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: 0 0 0 0;
}
/* line 106, ../../sass/src/_posts.scss */
#stage #page .block.view .post {
  position: relative;
  display: block;
  width: 100%;
  overflow: visible;
  padding: 0 0 40px 0;
  margin: 0 0 40px 0;
  border-bottom: 1px solid #d3d3d3;
}
/* line 116, ../../sass/src/_posts.scss */
#stage #page .block.view .post .meta .date {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  margin: 0 0 0 0;
  color: #888;
}
/* line 124, ../../sass/src/_posts.scss */
#stage #page .block.view .post:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}
/* line 129, ../../sass/src/_posts.scss */
#stage #page .block.view .post.members-only {
  margin-top: 40px;
  border-top: 1px solid #d3d3d3;
  padding-top: 40px;
}
/* line 138, ../../sass/src/_posts.scss */
#stage #page .block .post-body {
  display: block;
  width: 100%;
}
/* line 142, ../../sass/src/_posts.scss */
#stage #page .block .post-body > *:last-child {
  margin-bottom: 0;
}
/* line 146, ../../sass/src/_posts.scss */
#stage #page .block .post-body img {
  display: block;
  width: 100%;
  position: relative;
  padding: 30px 0;
  margin: 0 0 1.2rem 0;
}
/* line 157, ../../sass/src/_posts.scss */
#stage #page .block .post-body img.over {
  display: block;
  position: relative;
  width: 140%;
  left: -20%;
  padding: 30px 0;
  margin: 0 0 1.2rem 0;
}
@media screen and (max-width: 1000px) {
  /* line 157, ../../sass/src/_posts.scss */
  #stage #page .block .post-body img.over {
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: 1500px) {
  /* line 157, ../../sass/src/_posts.scss */
  #stage #page .block .post-body img.over {
    width: 180%;
    left: -40%;
  }
}
/* line 173, ../../sass/src/_posts.scss */
#stage #page .block .post-body img.center {
  display: block;
  padding: 0 0 0 0;
  margin: 0 auto 15px;
  max-width: 100%;
  width: auto;
  /* Set the max-width inline to the exact size of each image. */
}
/* line 181, ../../sass/src/_posts.scss */
#stage #page .block .post-body img.left {
  display: block;
  float: left;
  padding: 0 0 0 0;
  margin: 7px 20px 15px 0;
  width: 35%;
}
/* line 188, ../../sass/src/_posts.scss */
#stage #page .block .post-body img.right {
  display: block;
  float: right;
  padding: 0 0 0 0;
  margin: 7px 0 15px 20px;
  width: 35%;
}
/* line 200, ../../sass/src/_posts.scss */
#stage #page .block#fullEditor .post-body {
  margin: 5px 0 0px 0;
  padding: 0 0 0 0;
  border-bottom: 0;
  border-left: 0;
  overflow: hidden;
}
/* line 207, ../../sass/src/_posts.scss */
#stage #page .block#fullEditor .post-body.mce-edit-focus {
  outline: 0;
}
/* line 212, ../../sass/src/_posts.scss */
#stage #page .block#fullEditor .post-body.empty p {
  color: #aaa;
}
/* line 220, ../../sass/src/_posts.scss */
#stage #page .block .video-large {
  position: relative;
  width: 100%;
  left: 0%;
}
@media screen and (min-width: 1024px) {
  /* line 220, ../../sass/src/_posts.scss */
  #stage #page .block .video-large {
    width: 124%;
    left: -12%;
  }
}
@media screen and (min-width: 1260px) {
  /* line 220, ../../sass/src/_posts.scss */
  #stage #page .block .video-large {
    width: 150%;
    left: -25%;
  }
}
@media screen and (min-width: 1500px) {
  /* line 220, ../../sass/src/_posts.scss */
  #stage #page .block .video-large {
    width: 180%;
    left: -40%;
  }
}
/* line 242, ../../sass/src/_posts.scss */
#stage #page .block .video-link {
  margin: 5px 0 2rem 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
}
/* line 251, ../../sass/src/_posts.scss */
#stage #page .block .video-wrapper {
  width: 100%;
  height: 0;
  left: 0%;
  padding: 56.25% 0 0 0;
  position: relative;
}
/* line 258, ../../sass/src/_posts.scss */
#stage #page .block .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 278, ../../sass/src/_posts.scss */
#stage #page .block.events {
  max-width: 800px;
}
/* line 281, ../../sass/src/_posts.scss */
#stage #page .block.events section {
  width: 100%;
}
/* line 285, ../../sass/src/_posts.scss */
#stage #page .block.events .event {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-start;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
  padding: 0 0 40px 0;
  border-bottom: 1px solid #d3d3d3;
  margin: 0 0 40px 0;
}
/* line 301, ../../sass/src/_posts.scss */
#stage #page .block.events .event:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
/* line 306, ../../sass/src/_posts.scss */
#stage #page .block.events .event .thumb {
  box-sizing: border-box;
  min-width: 20%;
  max-width: 200px;
}
/* line 311, ../../sass/src/_posts.scss */
#stage #page .block.events .event .thumb img {
  width: 100%;
}
/* line 316, ../../sass/src/_posts.scss */
#stage #page .block.events .event .data {
  box-sizing: border-box;
  flex-grow: 1;
}
/* line 320, ../../sass/src/_posts.scss */
#stage #page .block.events .event .data h1 {
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin: -7px 0 10px 0;
  font-weight: 500;
}
/* line 327, ../../sass/src/_posts.scss */
#stage #page .block.events .event .data .date {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin: 0 0 10px 0;
  color: #009599;
}
/* line 335, ../../sass/src/_posts.scss */
#stage #page .block.events .event .data .date .duration {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #333333;
}
/* line 345, ../../sass/src/_posts.scss */
#stage #page .block.events .event .data .abstract p {
  font-size: 1rem;
  line-height: 1.4rem;
  margin: 0 0 0 0;
}
/* line 355, ../../sass/src/_posts.scss */
#stage #page .block.events.main .date {
  margin: 0px 0 10px 0;
}
/* line 359, ../../sass/src/_posts.scss */
#stage #page .block.events.main .section-title {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 0 0 40px 0;
}
/* line 365, ../../sass/src/_posts.scss */
#stage #page .block.events.main .section-title h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin: 0 0 0 0;
  padding: 0 20px;
  display: inline-block;
  width: auto;
  text-align: center;
  background-color: white;
}
/* line 384, ../../sass/src/_posts.scss */
#stage #page .block.events.main .section-title:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  background-color: #d3d3d3;
}
/* line 399, ../../sass/src/_posts.scss */
#stage #page .block.events.view h1 {
  margin: 0px 0 10px 0;
}
/* line 403, ../../sass/src/_posts.scss */
#stage #page .block.events.view .date {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin: 0 0 40px 0;
  color: #009599;
}
/* line 409, ../../sass/src/_posts.scss */
#stage #page .block.events.view .date .duration {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #333333;
}
/* line 418, ../../sass/src/_posts.scss */
#stage #page .block.events.view.thumb-title {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 1265px;
}
/* line 431, ../../sass/src/_posts.scss */
#stage #page .block.events.view.thumb-title .thumb {
  box-sizing: border-box;
  min-width: 20%;
  max-width: 200px;
}
/* line 436, ../../sass/src/_posts.scss */
#stage #page .block.events.view.thumb-title .thumb img {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  width: 100%;
}
/* line 443, ../../sass/src/_posts.scss */
#stage #page .block.events.view.thumb-title .data {
  box-sizing: border-box;
  flex-grow: 1;
}
/* line 447, ../../sass/src/_posts.scss */
#stage #page .block.events.view.thumb-title .data h1 {
  margin: -7px 0 10px 0;
}
/* line 454, ../../sass/src/_posts.scss */
#stage #page .block.events.view.thumb-title .data .date {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin: 0 0 20px 0;
  color: #009599;
}
/* line 470, ../../sass/src/_posts.scss */
#stage #page .block.emails.view ul.meta {
  margin: 0 0 40px 0;
}
/* line 473, ../../sass/src/_posts.scss */
#stage #page .block.emails.view ul.meta li {
  display: block;
  list-style: none;
  margin: 0 0 0 0;
  padding: 10px 0;
  border-bottom: 1px solid #d3d3d3;
}
/* line 480, ../../sass/src/_posts.scss */
#stage #page .block.emails.view ul.meta li .label {
  color: #888;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 0 7px 0 0;
}
/* line 491, ../../sass/src/_posts.scss */
#stage #page .block.emails.view h1 {
  margin-bottom: 28px;
}
/* line 495, ../../sass/src/_posts.scss */
#stage #page .block.emails.view .postReply {
  display: block;
  border: 1px solid #d3d3d3;
  padding: 0 15px 10px 15px;
  margin: 0 0 30px 0;
  border-radius: 4px;
}
/* line 502, ../../sass/src/_posts.scss */
#stage #page .block.emails.view .postReply .meta {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 5px 0;
  margin: 0 0 0 0;
}
/* line 509, ../../sass/src/_posts.scss */
#stage #page .block.emails.view .postReply .meta li {
  display: block;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.2rem;
  list-style: none;
  border-bottom: 0;
  margin: 0 0 0 0;
  padding: 7px 0;
}
/* line 520, ../../sass/src/_posts.scss */
#stage #page .block.emails.view .postReply .meta li.displayName {
  font-weight: 600;
  width: 69%;
  float: left;
}
/* line 524, ../../sass/src/_posts.scss */
#stage #page .block.emails.view .postReply .meta li.displayName a, #stage #page .block.emails.view .postReply .meta li.displayName a:link, #stage #page .block.emails.view .postReply .meta li.displayName a:visited {
  font-weight: 400;
  margin-left: 10px;
}
/* line 530, ../../sass/src/_posts.scss */
#stage #page .block.emails.view .postReply .meta li.date {
  float: right;
  width: 29%;
  text-align: right;
  color: #888;
}
/* line 537, ../../sass/src/_posts.scss */
#stage #page .block.emails.view .postReply .meta li span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  /* line 548, ../../sass/src/_posts.scss */
  #stage #page .block.emails.view .postReply .meta li.displayName {
    clear: both;
    width: 100%;
    padding: 7px 0 0 0;
  }
  /* line 554, ../../sass/src/_posts.scss */
  #stage #page .block.emails.view .postReply .meta li.date {
    float: left;
    clear: both;
    width: 100%;
    text-align: left;
    padding: 0 0 0 0;
  }
}
/* line 572, ../../sass/src/_posts.scss */
#stage #page .block.jobs.index {
  max-width: 90%;
  display: block;
  width: 100%;
  margin: 0 0 30px 0;
}
/* line 39, ../../sass/src/_mixins.scss */
#stage #page .block.jobs.index:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 579, ../../sass/src/_posts.scss */
#stage #page .block.jobs.index .job {
  display: block;
  float: left;
  width: 48%;
  height: 300px;
  margin: 0 0 80px 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #d3d3d3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
/* line 591, ../../sass/src/_posts.scss */
#stage #page .block.jobs.index .job:nth-child(odd) {
  float: left;
}
/* line 594, ../../sass/src/_posts.scss */
#stage #page .block.jobs.index .job:nth-child(even) {
  float: right;
}
/* line 598, ../../sass/src/_posts.scss */
#stage #page .block.jobs.index .job:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: block;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
  background-image: linear-gradient(to bottom,rgba(255, 255, 255, 0), white);
}
/* line 609, ../../sass/src/_posts.scss */
#stage #page .block.jobs.index .job h2 {
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 500;
  margin: 0px 0 1.6rem 0;
}
/* line 617, ../../sass/src/_posts.scss */
#stage #page .block.jobs.index .job p.date {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: 600;
  margin: 0px 0 0.5rem 0;
}
@media screen and (max-width: 1000px) {
  /* line 579, ../../sass/src/_posts.scss */
  #stage #page .block.jobs.index .job {
    width: 100%;
    height: auto;
    max-height: 240px;
    margin-bottom: 60px;
    padding-top: 30px;
    position: relative;
  }
}
@media screen and (min-width: 1500px) {
  /* line 579, ../../sass/src/_posts.scss */
  #stage #page .block.jobs.index .job {
    width: 31.33333333%;
    float: left;
    margin-right: 3%;
  }
  /* line 640, ../../sass/src/_posts.scss */
  #stage #page .block.jobs.index .job:nth-child(odd) {
    float: left;
  }
  /* line 643, ../../sass/src/_posts.scss */
  #stage #page .block.jobs.index .job:nth-child(even) {
    float: left;
  }
  /* line 646, ../../sass/src/_posts.scss */
  #stage #page .block.jobs.index .job:nth-child(3n) {
    float: right;
    margin-right: 0;
  }
}
/* line 657, ../../sass/src/_posts.scss */
#stage #page .block.jobs.view p.date {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 600;
  margin: 0px 0 0.5rem 0;
}
/* line 666, ../../sass/src/_posts.scss */
#stage #page .block.jobs.view h2 {
  margin: 0 0 25px 0;
}
/* line 675, ../../sass/src/_posts.scss */
#stage #page .block.archive .date {
  color: #888;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 600;
}

/* line 690, ../../sass/src/_posts.scss */
.userCards {
  display: block;
  width: 100%;
}
/* line 694, ../../sass/src/_posts.scss */
.userCards .userCard {
  display: block;
  width: calc(96% - 2px);
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 2% 2%;
  overflow: hidden;
  margin: 0 0 10px 0;
}
/* line 698, ../../sass/src/_posts.scss */
.userCards .userCard .thumb {
  display: block;
  width: 75px;
  height: 75px;
  float: left;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
/* line 710, ../../sass/src/_posts.scss */
.userCards .userCard .data {
  display: block;
  width: calc(100% - 100px);
  float: right;
}
/* line 715, ../../sass/src/_posts.scss */
.userCards .userCard .data p {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1.5rem;
}
/* line 725, ../../sass/src/_posts.scss */
.userCards .userCard .data .title {
  font-size: 1rem;
}
/* line 729, ../../sass/src/_posts.scss */
.userCards .userCard .data .pluses {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}

/* line 742, ../../sass/src/_posts.scss */
.question {
  display: block;
  width: 100%;
  margin: 0 0 40px 0;
}
/* line 747, ../../sass/src/_posts.scss */
.question p {
  margin: 0px 0 8px 0;
}

/* line 752, ../../sass/src/_posts.scss */
.bordered {
  display: block;
  width: calc(96% - 2px);
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 2% 2%;
  overflow: hidden;
  margin: 0 0 20px 0;
}

/* line 757, ../../sass/src/_posts.scss */
.comment {
  display: block;
  width: calc(96% - 2px);
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 2% 2%;
  overflow: hidden;
  margin: 0 0 20px 0;
}
/* line 761, ../../sass/src/_posts.scss */
.comment .date {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
/* line 766, ../../sass/src/_posts.scss */
.comment p:last-of-type {
  margin-bottom: 0;
}

/* line 771, ../../sass/src/_posts.scss */
#map {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

/* line 1, ../../sass/src/_gallery.scss */
.thumbnails {
  display: block;
  width: 100%;
  margin: 0 0 30px 0;
}
/* line 39, ../../sass/src/_mixins.scss */
.thumbnails:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 7, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail {
  display: block;
  width: 200px;
  height: 200px;
  float: left;
  background-color: white;
  padding: 15px;
  margin: 1px;
  position: relative;
}
/* line 17, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail.nopad {
  padding: 0 0 0 0;
  background-image: url("/img/stripe-background-ccc.png");
  background-size: 200px 200px;
  background-repeat: repeat;
  background-position: left top;
}
/* line 28, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail a.linkImage {
  display: block;
  width: 200px;
  height: 200px;
  float: left;
  position: relative;
}
/* line 36, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail img {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 42, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail .handle {
  cursor: move;
}
/* line 46, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail .delete {
  position: absolute;
  bottom: 0px;
  font-size: 0.8rem;
  text-align: center;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  width: 200px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1rem;
}
/* line 61, ../../sass/src/_gallery.scss */
.thumbnails.selectOne .thumbnail {
  opacity: 0.3;
}
/* line 63, ../../sass/src/_gallery.scss */
.thumbnails.selectOne .thumbnail.selected {
  opacity: 1;
}
/* line 67, ../../sass/src/_gallery.scss */
.thumbnails.selectOne .thumbnail:hover {
  opacity: 1;
}

/* line 3, ../../sass/src/_directory.scss */
#stage #page .block.users.index {
  max-width: 90%;
}

/* line 9, ../../sass/src/_directory.scss */
.profiles {
  display: block;
  width: 100%;
  margin: 0 0 30px 0;
}
/* line 39, ../../sass/src/_mixins.scss */
.profiles:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 15, ../../sass/src/_directory.scss */
.profiles .profile {
  display: block;
  float: left;
  width: 48%;
  height: 150px;
  margin: 0 0 20px 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #d3d3d3;
  overflow: hidden;
  cursor: pointer;
}
/* line 26, ../../sass/src/_directory.scss */
.profiles .profile:nth-child(odd) {
  float: left;
}
/* line 29, ../../sass/src/_directory.scss */
.profiles .profile:nth-child(even) {
  float: right;
}
/* line 33, ../../sass/src/_directory.scss */
.profiles .profile h2 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 500;
  margin: 0px 0 0.3rem 0;
}
/* line 40, ../../sass/src/_directory.scss */
.profiles .profile p.title {
  color: rgba(51, 51, 51, 0.5);
  font-size: 1.1rem;
  line-height: 1.3rem;
  margin: 0 0 0.7rem 0;
}
/* line 45, ../../sass/src/_directory.scss */
.profiles .profile p.title strong {
  color: rgba(51, 51, 51, 0.7);
}
/* line 50, ../../sass/src/_directory.scss */
.profiles .profile .bio {
  display: block;
}
/* line 53, ../../sass/src/_directory.scss */
.profiles .profile .bio p {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
}
/* line 61, ../../sass/src/_directory.scss */
.profiles .profile .profilePhoto {
  display: block;
  width: 150px;
  height: 150px;
  float: left;
  overflow: hidden;
  background-color: #eff0f4;
  padding: 0;
  margin: 0 4% 0 0;
  position: relative;
}
/* line 78, ../../sass/src/_directory.scss */
.profiles .profile .profilePhoto img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  height: 150px;
}

/* line 92, ../../sass/src/_directory.scss */
#map.profiles .profile {
  width: 100%;
  border-top: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  cursor: default;
}
/* line 99, ../../sass/src/_directory.scss */
#map.profiles .profile h2 a, #map.profiles .profile h2 a:link, #map.profiles .profile h2 a:visited {
  color: #e51a77;
}

@media screen and (max-width: 1000px) {
  /* line 109, ../../sass/src/_directory.scss */
  .profiles .profile {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  /* line 117, ../../sass/src/_directory.scss */
  .profiles .profile {
    height: auto;
    max-height: 240px;
    min-height: 140px;
    margin-bottom: 30px;
    padding-top: 30px;
    position: relative;
  }
  /* line 125, ../../sass/src/_directory.scss */
  .profiles .profile:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    display: block;
    background-color: rgba(255, 255, 255, 0);
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
    background-image: linear-gradient(to bottom,rgba(255, 255, 255, 0), white);
  }
  /* line 136, ../../sass/src/_directory.scss */
  .profiles .profile .profilePhoto {
    position: relative;
    top: 5px;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  /* line 143, ../../sass/src/_directory.scss */
  .profiles .profile .profilePhoto img {
    height: 100px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 160, ../../sass/src/_directory.scss */
  .profiles .profile {
    width: 31.33333333%;
    float: left;
    margin-right: 3%;
  }
  /* line 165, ../../sass/src/_directory.scss */
  .profiles .profile:nth-child(odd) {
    float: left;
  }
  /* line 168, ../../sass/src/_directory.scss */
  .profiles .profile:nth-child(even) {
    float: left;
  }
  /* line 171, ../../sass/src/_directory.scss */
  .profiles .profile:nth-child(3n) {
    float: right;
    margin-right: 0;
  }
}
/* line 180, ../../sass/src/_directory.scss */
#profile.block {
  max-width: 970px;
}
/* line 184, ../../sass/src/_directory.scss */
#profile.block h1 {
  margin-bottom: 5px;
}
/* line 187, ../../sass/src/_directory.scss */
#profile.block h1 .pronouns {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.7);
}
/* line 195, ../../sass/src/_directory.scss */
#profile.block p.title {
  color: rgba(51, 51, 51, 0.5);
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin: 0 0 60px 0;
}
/* line 201, ../../sass/src/_directory.scss */
#profile.block p.title strong {
  color: rgba(51, 51, 51, 0.7);
}
/* line 39, ../../sass/src/_mixins.scss */
#profile.block .doubles:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 209, ../../sass/src/_directory.scss */
#profile.block .doubles .summary {
  display: block;
  float: left;
  width: 25%;
  padding: 40px 0 0 0;
  border-top: 1px solid #d3d3d3;
}
/* line 39, ../../sass/src/_mixins.scss */
#profile.block .doubles .summary:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 217, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .profilePhoto {
  margin: 0 0 27px 0;
  min-height: 150px;
  background-image: url("/img/stripe-background-ccc.png");
  background-size: 200px 200px;
  background-repeat: repeat;
  background-position: left top;
}
/* line 39, ../../sass/src/_mixins.scss */
#profile.block .doubles .summary .profilePhoto:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 226, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .profilePhoto img {
  display: block;
  width: 100%;
  float: left;
}
/* line 234, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .data p, #profile.block .doubles .summary .data li {
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8rem;
}
/* line 242, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .licenses {
  display: block;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* line 248, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .licenses li {
  list-style: none;
  display: block;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
}
/* line 254, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .licenses li p {
  font-size: 16px;
  line-height: 22px;
}
/* line 258, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .licenses li p img {
  display: block;
  width: 38px;
  height: 38px;
  float: right;
  margin: 0px 0 0 5px;
}
/* line 271, ../../sass/src/_directory.scss */
#profile.block .doubles .detail {
  display: block;
  float: right;
  width: 68%;
  padding: 36px 0 0 0;
  border-top: 1px solid #d3d3d3;
}
/* line 39, ../../sass/src/_mixins.scss */
#profile.block .doubles .detail:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 282, ../../sass/src/_directory.scss */
#profile.block .slick {
  background-image: url("/img/stripe-background-ccc.png");
  background-size: 200px 200px;
  background-repeat: repeat;
  background-position: left top;
}
/* line 289, ../../sass/src/_directory.scss */
#profile.block .slick .slick-slide {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  /* Safari */
  transition: opacity 0.5s;
}
/* line 296, ../../sass/src/_directory.scss */
#profile.block .slick .slick-slide.slick-center {
  opacity: 1;
}
/* line 301, ../../sass/src/_directory.scss */
#profile.block .slick img {
  height: 450px;
  margin: 0 0px;
}

@media screen and (max-width: 768px) {
  /* line 315, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary {
    width: 100%;
    float: left;
    padding-bottom: 10px;
  }
  /* line 320, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .profilePhoto {
    width: 30%;
    float: left;
  }
  /* line 325, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data {
    position: relative;
    top: -7px;
    width: 65%;
    float: right;
  }
  /* line 331, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data h3 {
    font-size: 1.5rem;
    line-height: 1.9rem;
    margin-bottom: 15px;
  }
  /* line 337, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data p, #profile.block .doubles .summary .data li {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  /* line 344, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail {
    width: 100%;
    float: left;
  }
}
@media screen and (max-width: 430px) {
  /* line 356, ../../sass/src/_directory.scss */
  #profile.block h1 {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }
  /* line 361, ../../sass/src/_directory.scss */
  #profile.block p.title {
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
  /* line 367, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 18px;
  }
  /* line 372, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .profilePhoto {
    width: 100%;
    float: left;
    margin-bottom: 0;
  }
  /* line 378, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data {
    position: relative;
    top: 0;
    width: 100%;
    float: left;
  }
  /* line 384, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data h2 {
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin: 25px 0 25px 0;
    font-weight: 500;
  }
  /* line 391, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data h3 {
    text-transform: uppercase;
    color: #888;
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin: 25px 0 1rem 0;
    font-weight: 500;
  }
  /* line 402, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail {
    width: 100%;
    float: left;
  }
  /* line 406, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail h2 {
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin: 25px 0 25px 0;
    font-weight: 500;
  }
  /* line 413, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail h3 {
    text-transform: uppercase;
    color: #888;
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin: 25px 0 1rem 0;
    font-weight: 500;
  }
}
/* line 1, ../../sass/src/_account.scss */
#membershipSteps {
  display: block;
  width: 100%;
  border-top: 1px solid #d3d3d3;
}
/* line 39, ../../sass/src/_mixins.scss */
#membershipSteps:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 7, ../../sass/src/_account.scss */
#membershipSteps .row {
  display: block;
  width: 100%;
  float: left;
  border-bottom: 1px solid #d3d3d3;
  padding: 20px 0;
}
/* line 39, ../../sass/src/_mixins.scss */
#membershipSteps .row:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 18, ../../sass/src/_account.scss */
#membershipSteps .row.done .number p {
  opacity: 0.5;
}
/* line 22, ../../sass/src/_account.scss */
#membershipSteps .row.done .number img {
  display: block;
}
/* line 28, ../../sass/src/_account.scss */
#membershipSteps .row.done .description p {
  opacity: 0.5;
}
/* line 34, ../../sass/src/_account.scss */
#membershipSteps .row .number {
  display: block;
  float: left;
  width: 10%;
  position: relative;
}
/* line 40, ../../sass/src/_account.scss */
#membershipSteps .row .number img {
  display: none;
  position: absolute;
  top: 5px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
}
/* line 49, ../../sass/src/_account.scss */
#membershipSteps .row .number p {
  font-family: "brix-slab", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 3rem;
  line-height: 3rem;
  margin: 0 0 0 0;
  text-align: center;
}
/* line 59, ../../sass/src/_account.scss */
#membershipSteps .row .description {
  display: block;
  float: right;
  width: 88%;
}
/* line 64, ../../sass/src/_account.scss */
#membershipSteps .row .description p:last-of-type {
  margin-bottom: 0;
}

/* line 1, ../../sass/src/_poll.scss */
.pollOption {
  display: block;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  margin: 0 0 20px 0;
  padding: 10px 15px 10px 15px;
  width: 100%;
  text-decoration: none;
}
/* line 10, ../../sass/src/_poll.scss */
.pollOption.selected {
  background-color: #ffe9f5;
}
/* line 14, ../../sass/src/_poll.scss */
.pollOption h2 {
  font-family: "freight-text-pro", Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.7rem;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* line 23, ../../sass/src/_poll.scss */
.pollOption .description {
  display: block;
  margin: 5px 0 0 0;
  width: 100%;
}
/* line 28, ../../sass/src/_poll.scss */
.pollOption .description p {
  font-size: 1rem;
  line-height: 1.3rem;
  margin: 0 0 0.7rem 0;
  color: #888;
}
/* line 34, ../../sass/src/_poll.scss */
.pollOption .description p:last-of-type {
  margin-bottom: 0;
}

/* line 3, ../../sass/src/_fancytree.scss */
#tree ul.fancytree-container {
  line-height: normal;
  border: 0;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}
/* line 9, ../../sass/src/_fancytree.scss */
#tree ul.fancytree-container li {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}
/* line 15, ../../sass/src/_fancytree.scss */
#tree span.fancytree-node {
  overflow-x: hidden;
  background-color: rgba(100, 100, 100, 0.1);
  border-radius: 8px;
  cursor: pointer;
}
/* line 21, ../../sass/src/_fancytree.scss */
#tree span.fancytree-node span {
  vertical-align: middle;
  line-height: 40px;
  white-space: nowrap;
}
/* line 28, ../../sass/src/_fancytree.scss */
#tree span.fancytree-node.fancytree-focused span.fancytree-title {
  outline: none;
}
/* line 33, ../../sass/src/_fancytree.scss */
#tree span.fancytree-node.fancytree-active {
  background-color: #3875D7;
}
/* line 35, ../../sass/src/_fancytree.scss */
#tree span.fancytree-node.fancytree-active span.fancytree-title {
  color: white;
  background-color: transparent;
  outline: none;
}
/* line 44, ../../sass/src/_fancytree.scss */
#tree span.fancytree-selected span.fancytree-title {
  background-color: transparent;
}

/* line 2, ../../sass/src/_audit.scss */
.auditlog del {
  background-color: #f2dede;
}
/* line 6, ../../sass/src/_audit.scss */
.auditlog ins {
  color: #3c763d;
  background-color: #dff0d8;
  text-decoration: none;
  border: 1px solid #d6e9c6;
}
/* line 13, ../../sass/src/_audit.scss */
.auditlog table.Differences {
  width: 100%;
  font-weight: normal;
  table-layout: auto;
}
/* line 19, ../../sass/src/_audit.scss */
.auditlog table.Differences th,
.auditlog table.Differences td,
.auditlog .table tbody tbody {
  border-top: none;
  font-weight: normal;
}
/* line 26, ../../sass/src/_audit.scss */
.auditlog td.Left {
  width: 40%;
  margin-right: 0px;
}
/* line 31, ../../sass/src/_audit.scss */
.auditlog td.Right {
  width: 40%;
  margin-left: 5px;
}
/* line 36, ../../sass/src/_audit.scss */
.auditlog tbody.ChangeInsert {
  background-color: #dff0d8;
}
/* line 40, ../../sass/src/_audit.scss */
.auditlog tbody.ChangeDelete {
  background-color: #f2dede;
}
/* line 44, ../../sass/src/_audit.scss */
.auditlog tbody.ChangeReplace {
  background-color: #fcf8e3;
}
/* line 48, ../../sass/src/_audit.scss */
.auditlog tbody.ChangeInsert th,
.auditlog tbody.ChangeDelete th,
.auditlog tbody.ChangeReplace th {
  width: 2%;
  background-color: #eee;
  text-align: center;
}
/* line 56, ../../sass/src/_audit.scss */
.auditlog tbody.ChangeInsert td,
.auditlog tbody.ChangeDelete td,
.auditlog tbody.ChangeReplace td {
  width: 48%;
}
/* line 62, ../../sass/src/_audit.scss */
.auditlog dl {
  display: block;
  overflow: hidden;
}
/* line 67, ../../sass/src/_audit.scss */
.auditlog dl.altrow {
  background: #f4f4f4;
}
/* line 71, ../../sass/src/_audit.scss */
.auditlog dt, .auditlog dd {
  font-size: 12pt;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  border-top: 1px solid #ddd;
  padding: 5px 0px 0px 0px;
  margin: 0px 0px 5px 0px;
}
/* line 80, ../../sass/src/_audit.scss */
.auditlog dt {
  clear: both;
  float: left;
  width: 20%;
  color: #999;
  margin: 0 2% 0 0;
}
/* line 88, ../../sass/src/_audit.scss */
.auditlog dd {
  color: #333333;
  float: left;
  width: 78%;
}
/* line 96, ../../sass/src/_audit.scss */
.auditlog .label {
  display: inline;
  padding: .2em .6em .3em;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 75%;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
/* line 110, ../../sass/src/_audit.scss */
.auditlog a.label:hover,
.auditlog a.label:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
/* line 117, ../../sass/src/_audit.scss */
.auditlog .label:empty {
  display: none;
}
/* line 121, ../../sass/src/_audit.scss */
.auditlog .btn .label {
  position: relative;
  top: -1px;
}
/* line 126, ../../sass/src/_audit.scss */
.auditlog .label-default {
  background-color: #dddddd;
}
/* line 130, ../../sass/src/_audit.scss */
.auditlog .label-default[href]:hover,
.auditlog .label-default[href]:focus {
  background-color: #c4c4c4;
}
/* line 135, ../../sass/src/_audit.scss */
.auditlog .label-primary {
  background-color: #7685c2;
}
/* line 139, ../../sass/src/_audit.scss */
.auditlog .label-primary[href]:hover,
.auditlog .label-primary[href]:focus {
  background-color: #5366b2;
}
/* line 144, ../../sass/src/_audit.scss */
.auditlog .label-success {
  background-color: #8faf6d;
}
/* line 148, ../../sass/src/_audit.scss */
.auditlog .label-success[href]:hover,
.auditlog .label-success[href]:focus {
  background-color: #769752;
}
/* line 153, ../../sass/src/_audit.scss */
.auditlog .label-info {
  background-color: #cfb863;
}
/* line 157, ../../sass/src/_audit.scss */
.auditlog .label-info[href]:hover,
.auditlog .label-info[href]:focus {
  background-color: #c3a63c;
}
/* line 162, ../../sass/src/_audit.scss */
.auditlog .label-warning {
  background-color: #d88bc0;
}
/* line 166, ../../sass/src/_audit.scss */
.auditlog .label-warning[href]:hover,
.auditlog .label-warning[href]:focus {
  background-color: #cb65ab;
}
/* line 171, ../../sass/src/_audit.scss */
.auditlog .label-danger {
  background-color: #e553c6;
}
/* line 175, ../../sass/src/_audit.scss */
.auditlog .label-danger[href]:hover,
.auditlog .label-danger[href]:focus {
  background-color: #de27b7;
}

/* line 1, ../../sass/src/_stripe.scss */
#payment-stripe {
  /* spinner/processing state, errors */
}
/* line 3, ../../sass/src/_stripe.scss */
#payment-stripe .hidden {
  display: none;
}
/* line 7, ../../sass/src/_stripe.scss */
#payment-stripe button:disabled {
  opacity: 0.5;
  cursor: default;
}
/* line 14, ../../sass/src/_stripe.scss */
#payment-stripe .input.stripe {
  padding-bottom: 10px;
}
/* line 17, ../../sass/src/_stripe.scss */
#payment-stripe .input.stripe label {
  margin-bottom: 10px;
}
/* line 21, ../../sass/src/_stripe.scss */
#payment-stripe .input.stripe #card-errors {
  font-size: 1rem;
  color: #e51a77;
  line-height: 1.3rem;
  margin: 0 0 5px 0;
  font-family: "freight-sans-pro", "Helvetica Neue", Helvetica, sans-serif;
}
/* line 29, ../../sass/src/_stripe.scss */
#payment-stripe .input.stripe .sr-checkbox-label {
  margin: 10px 0 0 0;
}
/* line 37, ../../sass/src/_stripe.scss */
#payment-stripe .spinner,
#payment-stripe .spinner:before,
#payment-stripe .spinner:after {
  border-radius: 50%;
}
/* line 42, ../../sass/src/_stripe.scss */
#payment-stripe .spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 55, ../../sass/src/_stripe.scss */
#payment-stripe .spinner:before,
#payment-stripe .spinner:after {
  position: absolute;
  content: "";
}
/* line 60, ../../sass/src/_stripe.scss */
#payment-stripe .spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #333333;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
/* line 72, ../../sass/src/_stripe.scss */
#payment-stripe .spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #333333;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-content: center;
  height: 100vh;
  width: 100vw;
}

form {
  width: 30vw;
  min-width: 500px;
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 40px;
}

#payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

#payment-element {
  margin-bottom: 24px;
}

button {
  background: $purple;
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}
button:hover {
  filter: contrast(115%);
}
*/
/*
@media only screen and (max-width: 600px) {
  form {
    width: 80vw;
    min-width: initial;
  }
}
*/
