@charset "UTF-8";
@import url("https://use.typekit.net/zze7osn.css");
/* 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: "freight-display-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  color: #404040;
  -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: 700;
}
/* 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: #404040;
  text-decoration: none;
}
/* line 37, ../../sass/src/_typography.scss */
h1 a.selected, h1 a:link.selected, h1 a:visited.selected, h1 a:active.selected, h2 a.selected, h2 a:link.selected, h2 a:visited.selected, h2 a:active.selected, h3 a.selected, h3 a:link.selected, h3 a:visited.selected, h3 a:active.selected, h4 a.selected, h4 a:link.selected, h4 a:visited.selected, h4 a:active.selected, h5 a.selected, h5 a:link.selected, h5 a:visited.selected, h5 a:active.selected, h6 a.selected, h6 a:link.selected, h6 a:visited.selected, h6 a:active.selected {
  color: #009EC5;
}
/* line 41, ../../sass/src/_typography.scss */
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #FF30B2;
}

/* line 47, ../../sass/src/_typography.scss */
h1 {
  font-size: 3.4rem;
  line-height: 3.4rem;
  margin: 0px 0 38px 0;
}
/* line 52, ../../sass/src/_typography.scss */
h1 .small {
  font-size: 1.3rem;
}

/* line 57, ../../sass/src/_typography.scss */
h2 {
  font-size: 2.3rem;
  line-height: 2.3rem;
  margin: 60px 0 25px 0;
}
/* line 61, ../../sass/src/_typography.scss */
h2 .small {
  font-size: 1.1rem;
}

/* line 66, ../../sass/src/_typography.scss */
h3 {
  font-size: 2rem;
  line-height: 2rem;
  margin: 50px 0 25px 0;
}

/* line 73, ../../sass/src/_typography.scss */
h4 {
  font-size: 1.6rem;
  line-height: 1.9rem;
  margin: 20px 0 20px 0;
}

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

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

/* line 89, ../../sass/src/_typography.scss */
p, li, td, th, blockquote {
  font-family: "freight-text-pro", Georgia, serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.9rem;
  color: #404040;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 107, ../../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, blockquote a, blockquote a:link, blockquote a:visited, blockquote a:active {
  color: #FF30B2;
  text-decoration: none;
}
/* line 112, ../../sass/src/_typography.scss */
p.small, li.small, td.small, th.small, blockquote.small {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.3rem;
}

/* line 121, ../../sass/src/_typography.scss */
#page p a:hover, #page li a:hover, #page td a:hover, #page th a:hover, #page dd a:hover, #page dt a:hover {
  box-shadow: 0 2px 0 0 #ff30b2;
}
/* line 123, ../../sass/src/_typography.scss */
#page p a:hover i, #page li a:hover i, #page td a:hover i, #page th a:hover i, #page dd a:hover i, #page dt a:hover i {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

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

/* line 135, ../../sass/src/_typography.scss */
p.dropcap {
  position: relative;
}
/* line 138, ../../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 162, ../../sass/src/_typography.scss */
strong {
  font-weight: 700;
}

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

/* line 165, ../../sass/src/_typography.scss */
.instruction {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  font-style: italic;
}

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

/* line 176, ../../sass/src/_typography.scss */
ul, ol {
  margin: 0 0 1.6rem 0;
}

/* line 180, ../../sass/src/_typography.scss */
li {
  margin: 0 0 0.5rem 3rem;
}
/* line 183, ../../sass/src/_typography.scss */
li ul, li ol {
  margin-top: 1rem;
}

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

/* line 195, ../../sass/src/_typography.scss */
ol li {
  list-style: decimal;
}

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

/* line 211, ../../sass/src/_typography.scss */
table {
  width: 100%;
  margin: 0 0 1.6rem 0;
}
/* line 217, ../../sass/src/_typography.scss */
table thead {
  border-bottom: 1px solid #d3d3d3;
}
/* line 222, ../../sass/src/_typography.scss */
table tr.ui-sortable-helper {
  background-color: #fff;
}
/* line 227, ../../sass/src/_typography.scss */
table td, table th {
  padding: 8px 15px;
  border-bottom: 1px solid #d3d3d3;
  position: relative;
  vertical-align: top;
}
/* line 241, ../../sass/src/_typography.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 243, ../../sass/src/_typography.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 248, ../../sass/src/_typography.scss */
table td img, table th img {
  display: block;
  width: 100%;
}
/* line 253, ../../sass/src/_typography.scss */
table td p:last-of-type, table th p:last-of-type {
  margin-bottom: 0;
}
/* line 258, ../../sass/src/_typography.scss */
table td.thumb img, table th.thumb img {
  max-height: 75px;
}
/* line 263, ../../sass/src/_typography.scss */
table td.number, table th.number {
  text-align: right;
}
/* line 267, ../../sass/src/_typography.scss */
table td.code, table th.code {
  text-align: center;
}
/* line 271, ../../sass/src/_typography.scss */
table td.date, table th.date {
  text-align: center;
}
/* line 275, ../../sass/src/_typography.scss */
table td.actions, table th.actions {
  text-align: center;
}
/* line 278, ../../sass/src/_typography.scss */
table td.actions a i, table th.actions a i {
  font-size: 1.6rem;
  line-height: 1.6rem;
}
/* line 285, ../../sass/src/_typography.scss */
table td.sortHandle, table th.sortHandle {
  text-align: center;
  cursor: pointer;
}
/* line 290, ../../sass/src/_typography.scss */
table td label, table th label {
  display: none;
}
/* line 297, ../../sass/src/_typography.scss */
table td:nth-child(odd):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d3d3d3;
  width: 1px;
  height: 10px;
}
/* line 308, ../../sass/src/_typography.scss */
table td:nth-child(even):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d3d3d3;
  width: 1px;
  height: 10px;
}
/* line 320, ../../sass/src/_typography.scss */
table th {
  font-style: italic;
}
/* line 325, ../../sass/src/_typography.scss */
table tr.dimmed td {
  color: #aaa;
}
/* line 327, ../../sass/src/_typography.scss */
table tr.dimmed td a, table tr.dimmed td a:link, table tr.dimmed td a:visited {
  color: #aaa;
}

/* line 335, ../../sass/src/_typography.scss */
table.vertical-table th {
  width: 25%;
  text-align: right;
}
/* line 341, ../../sass/src/_typography.scss */
table.vertical-table tr td {
  text-align: left;
}

/* line 348, ../../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 360, ../../sass/src/_typography.scss */
.done {
  text-decoration: line-through;
}

/* line 365, ../../sass/src/_typography.scss */
svg text {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
}

@media screen and (max-width: 1000px) {
  /* line 373, ../../sass/src/_typography.scss */
  p, li, td, th, dt, dd {
    font-size: 1.2rem;
    margin: 0 0 1.3rem 0;
    line-height: 1.7rem;
  }

  /* line 380, ../../sass/src/_typography.scss */
  p.dropcap {
    position: relative;
  }
  /* line 383, ../../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 397, ../../sass/src/_typography.scss */
  li {
    margin: 0 0 0.5rem 28px;
  }

  /* line 401, ../../sass/src/_typography.scss */
  h1 {
    font-size: 2.2rem;
    line-height: 2.4rem;
    margin: 0px 0 30px 0;
  }

  /* line 407, ../../sass/src/_typography.scss */
  h2 {
    font-size: 1.9rem;
    line-height: 1.9rem;
    margin: 40px 0 25px 0;
  }

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

  /* line 422, ../../sass/src/_typography.scss */
  table thead {
    display: none;
  }
  /* line 426, ../../sass/src/_typography.scss */
  table th {
    display: none;
  }
  /* line 430, ../../sass/src/_typography.scss */
  table tbody {
    display: block;
    width: 100%;
    padding: 0 0 0 0;
    border-top: 3px solid #aaa;
  }
  /* line 436, ../../sass/src/_typography.scss */
  table tbody tr {
    display: block;
    position: relative;
    border-bottom: 1px solid #aaa;
    margin: 0 0 15px 0;
    padding: 0 0 30px 0;
  }
  /* line 444, ../../sass/src/_typography.scss */
  table tbody td {
    display: block;
    position: relative;
    width: 98%;
    margin: 0 0 0 0;
    padding: 3px 1%;
    border: 0;
    text-align: left !important;
    overflow: hidden;
  }
  /* line 455, ../../sass/src/_typography.scss */
  table tbody td label {
    display: block;
    width: 100%;
    padding: 0 0;
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.1rem;
    font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  }
  /* line 466, ../../sass/src/_typography.scss */
  table tbody td span {
    display: block;
    width: 100%;
  }
  /* line 473, ../../sass/src/_typography.scss */
  table tbody td.number label {
    float: left;
    width: 70%;
    line-height: 1.6rem;
  }
  /* line 479, ../../sass/src/_typography.scss */
  table tbody td.number span {
    float: right;
    width: 30%;
    text-align: right;
    line-height: 1.6rem;
  }
  /* line 487, ../../sass/src/_typography.scss */
  table tbody td.actions {
    text-align: left;
  }
  /* line 489, ../../sass/src/_typography.scss */
  table tbody td.actions i {
    margin-right: 20px;
  }
  /* line 492, ../../sass/src/_typography.scss */
  table tbody td.actions.wide {
    width: 100%;
  }
  /* line 498, ../../sass/src/_typography.scss */
  table tbody td:nth-child(odd):before {
    display: none;
  }
  /* line 502, ../../sass/src/_typography.scss */
  table tbody td:nth-child(even) {
    background-color: #eff0f4;
  }
  /* line 504, ../../sass/src/_typography.scss */
  table tbody td:nth-child(even):before {
    display: none;
  }
  /* line 512, ../../sass/src/_typography.scss */
  table.vertical-table th {
    width: 100%;
    text-align: left;
    border: 0;
    padding: 5px 0 0 0;
    margin: 0 0 0 0;
    display: block;
    color: #aaa;
    font-size: 1rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    font-family: "freight-display-pro", "Helvetica Neue", Helvetica, sans-serif;
    font-style: normal;
  }
  /* line 528, ../../sass/src/_typography.scss */
  table.vertical-table tr {
    border-bottom: none;
  }
  /* line 530, ../../sass/src/_typography.scss */
  table.vertical-table tr td {
    text-align: left;
    padding: 0px 0 5px 0;
  }
}
/* line 3, ../../sass/src/_layout.scss */
html, body {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  position: relative;
}

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

/* line 19, ../../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 30, ../../sass/src/_layout.scss */
#stage #page {
  background-color: transparent;
  clear: both;
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  z-index: 1;
  padding: 0 0% 0 0%;
}
/* line 40, ../../sass/src/_layout.scss */
#stage #page.disableNav {
  padding-top: 0;
}
/* line 44, ../../sass/src/_layout.scss */
#stage #page.fillWindow {
  position: absolute;
  clear: none;
  display: block;
  min-height: 100%;
  height: 100%;
  max-width: 100%;
}
/* line 53, ../../sass/src/_layout.scss */
#stage #page.food {
  max-width: 100%;
}
/* line 58, ../../sass/src/_layout.scss */
#stage .container {
  padding: 50px 5%;
}
/* line 62, ../../sass/src/_layout.scss */
#stage .audio {
  padding: 20px 5% 0 5%;
  position: relative;
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}
/* line 39, ../../sass/src/_mixins.scss */
#stage .audio:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 71, ../../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 71, ../../sass/src/_layout.scss */
  #stage .block {
    padding: 50px 5% 50px 5%;
  }
}
/* line 86, ../../sass/src/_layout.scss */
#stage .block.form {
  max-width: 720px;
}
/* line 90, ../../sass/src/_layout.scss */
#stage .block.tinted {
  background-color: #eff0f4;
}
/* line 94, ../../sass/src/_layout.scss */
#stage .block.photo {
  max-width: 720px;
  padding: 0px 5% 25px 5%;
}
@media screen and (max-width: 768px) {
  /* line 94, ../../sass/src/_layout.scss */
  #stage .block.photo {
    width: 100%;
    padding: 0px 0 25px 0;
  }
}
/* line 103, ../../sass/src/_layout.scss */
#stage .block.photo img {
  display: block;
  width: 100%;
}
/* line 112, ../../sass/src/_layout.scss */
#stage #home.block p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #aaa;
}
/* line 117, ../../sass/src/_layout.scss */
#stage #home.block p a, #stage #home.block p a:link, #stage #home.block p a:visited {
  color: #404040;
}
/* line 120, ../../sass/src/_layout.scss */
#stage #home.block p a .fa-camera-retro, #stage #home.block p a:link .fa-camera-retro, #stage #home.block p a:visited .fa-camera-retro {
  vertical-align: middle;
}
/* line 129, ../../sass/src/_layout.scss */
#stage #food {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 0 30px 0;
}
/* line 39, ../../sass/src/_mixins.scss */
#stage #food:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 138, ../../sass/src/_layout.scss */
#stage #food .post {
  width: 100%;
}
/* line 141, ../../sass/src/_layout.scss */
#stage #food .post .poster {
  width: 90%;
  padding: 0 5% 0 5%;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 430px) {
  /* line 141, ../../sass/src/_layout.scss */
  #stage #food .post .poster {
    width: 100%;
    padding: 0 0 0 0;
  }
}
/* line 151, ../../sass/src/_layout.scss */
#stage #food .post .poster img {
  display: block;
  width: 100%;
}
/* line 157, ../../sass/src/_layout.scss */
#stage #food .post .info {
  width: 90%;
  padding: 0 5% 30px 5%;
}
/* line 161, ../../sass/src/_layout.scss */
#stage #food .post .info h2 {
  font-size: 1.9rem;
  line-height: 2rem;
  margin: 0px 0 2px 0;
}
/* line 167, ../../sass/src/_layout.scss */
#stage #food .post .info p.meta {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0 0 0 0;
  line-height: 1.3rem;
}
/* line 179, ../../sass/src/_layout.scss */
#stage #food .post .info p.meta span.place {
  margin-right: 10px;
}
/* line 183, ../../sass/src/_layout.scss */
#stage #food .post .info p.meta span.date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #aaa;
}
/* line 190, ../../sass/src/_layout.scss */
#stage #food .post .info p.meta span.admin {
  margin-left: 20px;
}
/* line 200, ../../sass/src/_layout.scss */
#stage #thumbs.block h1 {
  margin-bottom: 55px;
}
/* line 204, ../../sass/src/_layout.scss */
#stage #thumbs.block .thumbs {
  width: 100%;
}
/* line 207, ../../sass/src/_layout.scss */
#stage #thumbs.block .thumbs .thumb {
  display: block;
  float: left;
  width: 150px;
  height: 150px;
}
/* line 212, ../../sass/src/_layout.scss */
#stage #thumbs.block .thumbs .thumb a {
  display: block;
  float: left;
  width: 150px;
  height: 150px;
}
/* line 217, ../../sass/src/_layout.scss */
#stage #thumbs.block .thumbs .thumb a img {
  display: block;
  float: left;
  width: 150px;
  height: 150px;
}

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

/* line 239, ../../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 244, ../../sass/src/_layout.scss */
.altBackground:nth-child(odd) {
  background-color: rgba(0, 158, 197, 0.05);
}
/* line 247, ../../sass/src/_layout.scss */
.altBackground:nth-child(even) {
  background-color: white;
}

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

/* line 265, ../../sass/src/_layout.scss */
#map {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 272, ../../sass/src/_layout.scss */
#map .mapInfo h2 {
  font-size: 1.8rem;
  line-height: 2.2rem;
  margin: 0 0 0 0;
}
/* line 276, ../../sass/src/_layout.scss */
#map .mapInfo h2 a, #map .mapInfo h2 a:link, #map .mapInfo h2 a:visited {
  color: #FF30B2;
}
/* line 280, ../../sass/src/_layout.scss */
#map .mapInfo p {
  margin: 0 0 0 0;
  font-size: 1rem;
  line-height: 1.2rem;
}

/* line 288, ../../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 295, ../../sass/src/_layout.scss */
div.alert {
  display: block;
  padding: 26px 5% 0;
  margin: 0 0 20px 0;
  overflow: hidden;
  background-color: #FF30B2;
  border-radius: 10px;
}

/* line 304, ../../sass/src/_layout.scss */
.vhcenter {
  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%);
}
/* line 307, ../../sass/src/_layout.scss */
.vhcenter.form {
  padding: 0 5% 0 5%;
  width: 90%;
  max-width: 720px;
}
/* line 312, ../../sass/src/_layout.scss */
.vhcenter.form.login {
  text-align: center;
  max-width: 320px;
}
/* line 316, ../../sass/src/_layout.scss */
.vhcenter.form.login label {
  width: 100%;
  text-align: left;
}
/* line 324, ../../sass/src/_layout.scss */
.vhcenter.form.login p, .vhcenter.form.login h1, .vhcenter.form.login h2 {
  text-align: center;
}
/* line 327, ../../sass/src/_layout.scss */
.vhcenter.form.login h1 {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 430px) {
  /* line 335, ../../sass/src/_layout.scss */
  div.alert {
    padding: 16px 5% 0;
  }
}
/* line 340, ../../sass/src/_layout.scss */
#cycleia-animation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -1;
}

/* line 352, ../../sass/src/_layout.scss */
#dyske-logo {
  display: block;
  position: relative;
  width: 120px;
  padding: 10px 10px;
}

/* line 1, ../../sass/src/_header.scss */
#mobileMenu {
  display: block;
  position: fixed;
  bottom: 8px;
  right: 15px;
  width: 60px;
  height: 60px;
  z-index: 110;
}
/* line 10, ../../sass/src/_header.scss */
#mobileMenu img {
  display: block;
  width: 60px;
  height: 60px;
  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%);
}

/* line 19, ../../sass/src/_header.scss */
#foodMenu {
  display: block;
  position: fixed;
  bottom: 8px;
  left: 10px;
  width: 60px;
  height: 60px;
  z-index: 110;
}
/* line 28, ../../sass/src/_header.scss */
#foodMenu img {
  display: block;
  width: 60px;
  height: 60px;
  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%);
}

/* line 37, ../../sass/src/_header.scss */
#sideTray {
  position: fixed;
  display: block;
  width: 200px;
  height: auto;
  bottom: 0;
  right: -212px;
  left: auto;
  padding: 20px 0 3rem 20px;
  background-color: white;
  z-index: 90;
  overflow-x: hidden;
  overflow-y: auto;
  background-image: url("/img/stripe-background-ccc.png");
  background-size: 200px 200px;
  background-repeat: repeat;
  background-position: left top;
  background-color: transparent;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 60, ../../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;
  border-top: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray #nav:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 68, ../../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;
  background-color: white;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray #nav .menu-primary-container:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 75, ../../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;
  border-top: 1px solid #d3d3d3;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray #nav .menu-primary-container #menu-primary:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 83, ../../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: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  width: 100%;
  border-bottom: 1px solid #d3d3d3;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-align: left;
}
/* 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 97, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li.menu-item-has-children ul {
  display: none;
}
/* line 102, ../../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 {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  color: #404040;
  display: block;
  position: relative;
  display: block;
  float: left;
  clear: both;
  height: auto;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 86%;
  line-height: 3rem;
  padding: 0 7%;
  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 113, ../../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 121, ../../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: 300;
}
/* 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 127, ../../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: left;
}
/* 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;
}

@keyframes headerOpen {
  0% {
    opacity: 0;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(400%);
  }
}
@keyframes logoOpen1 {
  0% {
    opacity: 0.2;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes logoOpen2 {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoOpen3 {
  0% {
    opacity: 0.5;
  }
  5% {
    opacity: 1;
  }
  40% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes logoOpen4 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  70% {
    opacity: 0.75;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoOpen5 {
  0% {
    opacity: 0.4;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 0.5;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes logoOpen6 {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0.5;
  }
  35% {
    opacity: 1;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoOpen7 {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
/* line 211, ../../sass/src/_header.scss */
#neurotransmitter-background {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 768px) {
  /* line 222, ../../sass/src/_header.scss */
  #neurotransmitter-background {
    display: none;
  }
}
@supports not (mix-blend-mode: multiply) {
  /* line 225, ../../sass/src/_header.scss */
  #neurotransmitter-background {
    display: none;
  }
}
/* line 228, ../../sass/src/_header.scss */
#neurotransmitter-header {
  width: 100%;
  height: 100px;
  max-width: 720px;
  display: block;
  margin: 0 auto;
  position: relative;
}
/* line 236, ../../sass/src/_header.scss */
#neurotransmitter-header ul {
  display: block;
  width: 100%;
  height: 100px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  position: relative;
  background-color: #eee;
}
/* line 245, ../../sass/src/_header.scss */
#neurotransmitter-header ul li {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
  animation-name: headerOpen;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
/* line 264, ../../sass/src/_header.scss */
#neurotransmitter-header ul li:nth-child(1) {
  top: -80px;
  background-color: #000;
  animation-delay: 0.8s;
}
/* line 265, ../../sass/src/_header.scss */
#neurotransmitter-header ul li:nth-child(2) {
  top: -60px;
  background-color: #222;
  animation-delay: 0.6s;
}
/* line 266, ../../sass/src/_header.scss */
#neurotransmitter-header ul li:nth-child(3) {
  top: -40px;
  background-color: #333;
  animation-delay: 0.4s;
}
/* line 267, ../../sass/src/_header.scss */
#neurotransmitter-header ul li:nth-child(4) {
  top: -20px;
  background-color: #444;
  animation-delay: 0.2s;
}
/* line 268, ../../sass/src/_header.scss */
#neurotransmitter-header ul li:nth-child(5) {
  top: -0px;
  background-color: #555;
  animation-delay: 0s;
}
/* line 272, ../../sass/src/_header.scss */
#neurotransmitter-header #neurotransmitter-logo {
  display: block;
  position: absolute;
  width: 720px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* line 281, ../../sass/src/_header.scss */
#neurotransmitter-header #neurotransmitter-logo img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
/* line 297, ../../sass/src/_header.scss */
#neurotransmitter-header #neurotransmitter-logo img:nth-child(1) {
  animation-name: logoOpen1;
  animation-delay: 1.2s;
}
/* line 298, ../../sass/src/_header.scss */
#neurotransmitter-header #neurotransmitter-logo img:nth-child(2) {
  animation-name: logoOpen2;
  animation-delay: 1s;
}
/* line 299, ../../sass/src/_header.scss */
#neurotransmitter-header #neurotransmitter-logo img:nth-child(3) {
  animation-name: logoOpen3;
  animation-delay: 0.8s;
}
/* line 300, ../../sass/src/_header.scss */
#neurotransmitter-header #neurotransmitter-logo img:nth-child(4) {
  animation-name: logoOpen4;
  animation-delay: 0.6s;
}
/* line 301, ../../sass/src/_header.scss */
#neurotransmitter-header #neurotransmitter-logo img:nth-child(5) {
  animation-name: logoOpen5;
  animation-delay: 0.4s;
}
/* line 302, ../../sass/src/_header.scss */
#neurotransmitter-header #neurotransmitter-logo img:nth-child(6) {
  animation-name: logoOpen6;
  animation-delay: 0.2s;
}
/* line 303, ../../sass/src/_header.scss */
#neurotransmitter-header #neurotransmitter-logo img:nth-child(7) {
  animation-name: logoOpen7;
  animation-delay: 0s;
}
@media screen and (max-width: 510px) {
  /* line 272, ../../sass/src/_header.scss */
  #neurotransmitter-header #neurotransmitter-logo {
    width: 603px;
    height: 83.75px;
  }
}
@media screen and (max-width: 430px) {
  /* line 272, ../../sass/src/_header.scss */
  #neurotransmitter-header #neurotransmitter-logo {
    width: 504px;
    height: 70px;
  }
}

/* line 1, ../../sass/src/_forms.scss */
input[type=text],
input[type=button],
input[type=number] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

/* line 8, ../../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 14, ../../sass/src/_forms.scss */
label {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

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

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

/* line 33, ../../sass/src/_forms.scss */
.message.error {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #D4145A;
  line-height: 1.4rem;
  padding: 10px 0;
}

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

/* line 53, ../../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 67, ../../sass/src/_forms.scss */
textarea {
  width: 100%;
  padding: 5px 0;
  border: 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  height: 300px;
  font-weight: 400;
  border-radius: 0;
  -webkit-appearance: none;
}
/* line 78, ../../sass/src/_forms.scss */
textarea.short {
  height: 150px;
}

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

/* line 90, ../../sass/src/_forms.scss */
button,
a.button,
a.button:link,
a.button:visited,
input[type=submit] {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  background-color: #404040;
  color: white;
  display: inline-block;
  border: 0;
  height: 36px;
  line-height: 34px;
  padding: 0 20px;
  margin: 0 0 0 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 18px;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 115, ../../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 122, ../../sass/src/_forms.scss */
a.button,
a.button:link,
a.button:visited {
  line-height: 36px;
}

/* line 129, ../../sass/src/_forms.scss */
button.small,
a.button.small,
a.button.small:link,
a.button.small:hover,
a.button.small:active,
a.button.small:visited,
input[type=submit].small {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  background-color: #404040;
  color: white;
  display: inline-block;
  border: 0;
  height: 26px;
  line-height: 25px;
  padding: 0 15px;
  margin: 0 0 0 0;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 13px;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 156, ../../sass/src/_forms.scss */
button.small.stickToRight,
a.button.small.stickToRight,
a.button.small:link.stickToRight,
a.button.small:hover.stickToRight,
a.button.small:active.stickToRight,
a.button.small:visited.stickToRight,
input[type=submit].small.stickToRight {
  position: relative;
  float: right;
  top: -5px;
}
/* line 162, ../../sass/src/_forms.scss */
button.small i.fa,
a.button.small i.fa,
a.button.small:link i.fa,
a.button.small:hover i.fa,
a.button.small:active i.fa,
a.button.small:visited i.fa,
input[type=submit].small i.fa {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

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

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

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

/* line 184, ../../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 191, ../../sass/src/_forms.scss */
.input label {
  display: inline-block;
  font-size: 0.9rem;
  color: #aaa;
}

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

/* line 203, ../../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 217, ../../sass/src/_forms.scss */
.input.textarea {
  padding-bottom: 0px;
  border-bottom: 0;
}
/* line 220, ../../sass/src/_forms.scss */
.input.textarea label {
  margin-bottom: 7px;
}

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

/* line 233, ../../sass/src/_forms.scss */
.input.datetime,
.input.date,
.input.time {
  overflow: hidden;
}
/* line 238, ../../sass/src/_forms.scss */
.input.datetime label,
.input.date label,
.input.time label {
  display: block;
  float: left;
}
/* line 243, ../../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 253, ../../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: #404040;
}
/* line 261, ../../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 271, ../../sass/src/_forms.scss */
input[type=image].paypal,
img.paypal {
  width: 240px;
  height: 60px;
}

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

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

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

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

/* line 310, ../../sass/src/_forms.scss */
.combo {
  border-top: 0;
  padding: 0;
  overflow: hidden;
}
/* line 315, ../../sass/src/_forms.scss */
.combo input {
  float: left;
}
/* line 319, ../../sass/src/_forms.scss */
.combo input[type=text],
.combo input[type=email] {
  padding: 0 10px;
  border: 1px solid #d3d3d3;
  border-right: 0;
  border-radius: 18px 0 0 18px;
  width: calc(100% - 152px);
  height: 34px;
  -webkit-appearance: none;
}
/* line 329, ../../sass/src/_forms.scss */
.combo input[type=submit] {
  padding: 0 0 0 0;
  width: 130px;
  -webkit-appearance: none;
  border-radius: 0 18px 18px 0;
}

@media screen and (max-width: 430px) {
  /* line 338, ../../sass/src/_forms.scss */
  .combo {
    text-align: center;
  }
  /* line 341, ../../sass/src/_forms.scss */
  .combo input {
    clear: both;
    float: none;
  }
  /* line 346, ../../sass/src/_forms.scss */
  .combo input[type=text],
  .combo input[type=email] {
    width: calc(100% - 22px);
    border-radius: 0 0 0 0;
    border-right: 1px solid #d3d3d3;
    margin: 0 0 10px 0;
  }
  /* line 354, ../../sass/src/_forms.scss */
  .combo input[type=submit] {
    border-radius: 18px;
  }
}
/* line 362, ../../sass/src/_forms.scss */
.copyValue {
  border: 0;
  background-color: transparent;
  padding: 0px 0;
  width: 100%;
}

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

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

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

/* line 383, ../../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 396, ../../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 402, ../../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 409, ../../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 416, ../../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 421, ../../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 429, ../../sass/src/_forms.scss */
.social-logins {
  display: block;
  margin: 0px 0px 30px 0;
}
/* line 432, ../../sass/src/_forms.scss */
.social-logins li {
  display: inline-block;
  margin: 0 5px 10px;
  padding: 0 0 0 0;
  list-style: none;
  text-align: center;
}
/* line 439, ../../sass/src/_forms.scss */
.social-logins li a, .social-logins li a:link, .social-logins li a:visited, .social-logins li a:active {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  background-color: #404040;
  color: white;
  display: inline-block;
  border: 0;
  height: 36px;
  width: 50px;
  line-height: 34px;
  padding: 0 20px;
  margin: 0 0 0 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 18px;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 462, ../../sass/src/_forms.scss */
.social-logins li a i, .social-logins li a:link i, .social-logins li a:visited i, .social-logins li a:active i {
  margin: 0 0 0 0;
}

/* line 471, ../../sass/src/_forms.scss */
table.ui-datepicker-calendar tr th {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}
/* line 478, ../../sass/src/_forms.scss */
table.ui-datepicker-calendar tr td {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
/* line 485, ../../sass/src/_forms.scss */
table.ui-datepicker-calendar tr td:nth-child(odd):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: transparent;
  width: 0px;
  height: 0px;
}
/* line 496, ../../sass/src/_forms.scss */
table.ui-datepicker-calendar tr td:nth-child(even):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: transparent;
  width: 0px;
  height: 0px;
}

/* 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: #D4145A;
  -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: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  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 {
  font-size: 0;
  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 0 0 0;
  font-weight: 700;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
/* line 24, ../../sass/src/_paging.scss */
.paginator .pagination li a, .paginator .pagination li a:visited, .paginator .pagination li a:link {
  display: block;
  color: #404040;
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 0 0 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  padding: 0px 10px;
  height: 30px;
  line-height: 30px;
}
/* line 39, ../../sass/src/_paging.scss */
.paginator .pagination li a i, .paginator .pagination li a:visited i, .paginator .pagination li a:link i {
  font-size: 12px;
  position: relative;
  top: -1px;
}
/* line 46, ../../sass/src/_paging.scss */
.paginator .pagination li a:hover, .paginator .pagination li a:active {
  box-shadow: 0 0 0 0 rgba(255, 48, 178, 0) !important;
}
/* line 48, ../../sass/src/_paging.scss */
.paginator .pagination li a:hover i, .paginator .pagination li a:active i {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0) !important;
}
/* line 54, ../../sass/src/_paging.scss */
.paginator .pagination li.prev a, .paginator .pagination li.prev a:visited, .paginator .pagination li.prev a:link {
  width: 65px;
  border-left: 1px solid #dddddd;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  color: white;
  background-color: #404040;
  border-color: #404040;
}
/* line 66, ../../sass/src/_paging.scss */
.paginator .pagination li.next a, .paginator .pagination li.next a:visited, .paginator .pagination li.next a:link {
  width: 65px;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  color: white;
  background-color: #404040;
  border-color: #404040;
}
/* line 77, ../../sass/src/_paging.scss */
.paginator .pagination li.active a, .paginator .pagination li.active a:visited, .paginator .pagination li.active a:link {
  color: #D4145A;
}
/* line 83, ../../sass/src/_paging.scss */
.paginator .pagination li.disabled a, .paginator .pagination li.disabled a:visited, .paginator .pagination li.disabled a:link {
  color: #ddd;
  background-color: white;
  border-color: #ddd;
}

/* line 5, ../../sass/src/_posts.scss */
#page.static .poster img.poster, #page.article .poster img.poster {
  display: block;
  width: 100%;
  position: relative;
}
/* line 10, ../../sass/src/_posts.scss */
#page.static .poster img.poster.cover, #page.article .poster img.poster.cover {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}
/* line 15, ../../sass/src/_posts.scss */
#page.static .poster img.poster.full, #page.article .poster img.poster.full {
  padding: 15px 0 0 0;
  margin: 0 0 30px 0;
}
/* line 20, ../../sass/src/_posts.scss */
#page.static .poster img.poster.over, #page.article .poster img.poster.over {
  width: 133.3333333%;
  left: -16.666666666%;
  padding: 15px 0 0 0;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 1000px) {
  /* line 20, ../../sass/src/_posts.scss */
  #page.static .poster img.poster.over, #page.article .poster img.poster.over {
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: 1500px) {
  /* line 20, ../../sass/src/_posts.scss */
  #page.static .poster img.poster.over, #page.article .poster img.poster.over {
    width: 180%;
    left: -40%;
  }
}
/* line 35, ../../sass/src/_posts.scss */
#page.static .poster img.poster.center, #page.article .poster img.poster.center {
  padding-top: 15px;
  margin: 0 auto 30px;
  width: auto;
  max-width: 100%;
}
/* line 43, ../../sass/src/_posts.scss */
#page.static .poster .photoCredit, #page.article .poster .photoCredit {
  display: block;
  width: 98%;
  padding: 0 1%;
}
/* line 48, ../../sass/src/_posts.scss */
#page.static .poster .photoCredit p, #page.static .poster .photoCredit a, #page.static .poster .photoCredit a:link, #page.static .poster .photoCredit a:visited, #page.article .poster .photoCredit p, #page.article .poster .photoCredit a, #page.article .poster .photoCredit a:link, #page.article .poster .photoCredit a:visited {
  width: 100%;
  text-align: right;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  margin: 0 0 0 0;
  color: #aaa;
}
/* line 61, ../../sass/src/_posts.scss */
#page.static .block.title, #page.article .block.title {
  border-bottom: 1px solid #d3d3d3;
  padding: 60px 5% 70px 5%;
}
/* line 67, ../../sass/src/_posts.scss */
#page.static .block.title .meta p, #page.article .block.title .meta p {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.3rem;
}
/* line 78, ../../sass/src/_posts.scss */
#page.static .block.title p.byline, #page.article .block.title p.byline {
  margin: 0 0 0 0;
}
@media screen and (max-width: 1000px) {
  /* line 86, ../../sass/src/_posts.scss */
  #page.static .block.title .meta p, #page.article .block.title .meta p {
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
  }
}
/* line 93, ../../sass/src/_posts.scss */
#page.static .block.title h1, #page.article .block.title h1 {
  margin: 0 0 0 0;
}
/* line 99, ../../sass/src/_posts.scss */
#page.static .block.post, #page.article .block.post {
  max-width: 720px;
}
/* line 102, ../../sass/src/_posts.scss */
#page.static .block.post .postBody, #page.article .block.post .postBody {
  display: block;
  width: 100%;
}
/* line 106, ../../sass/src/_posts.scss */
#page.static .block.post .postBody img, #page.article .block.post .postBody img {
  display: block;
  width: 100%;
  position: relative;
  padding: 30px 0;
  margin: 0 0 1.2rem 0;
}
/* line 117, ../../sass/src/_posts.scss */
#page.static .block.post .postBody img.over, #page.article .block.post .postBody 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 117, ../../sass/src/_posts.scss */
  #page.static .block.post .postBody img.over, #page.article .block.post .postBody img.over {
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: 1500px) {
  /* line 117, ../../sass/src/_posts.scss */
  #page.static .block.post .postBody img.over, #page.article .block.post .postBody img.over {
    width: 180%;
    left: -40%;
  }
}
/* line 133, ../../sass/src/_posts.scss */
#page.static .block.post .postBody img.center, #page.article .block.post .postBody 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 141, ../../sass/src/_posts.scss */
#page.static .block.post .postBody img.left, #page.article .block.post .postBody img.left {
  display: block;
  float: left;
  padding: 0 0 0 0;
  margin: 7px 20px 15px 0;
  width: 35%;
}
/* line 148, ../../sass/src/_posts.scss */
#page.static .block.post .postBody img.right, #page.article .block.post .postBody img.right {
  display: block;
  float: right;
  padding: 0 0 0 0;
  margin: 7px 0 15px 20px;
  width: 35%;
}
/* line 161, ../../sass/src/_posts.scss */
#page.static #fullEditor .postBody, #page.article #fullEditor .postBody {
  margin: 40px 0 40px 0;
  padding: 0 0 0 0;
  border-bottom: 0;
  border-left: 0;
}
/* line 167, ../../sass/src/_posts.scss */
#page.static #fullEditor .postBody.mce-edit-focus, #page.article #fullEditor .postBody.mce-edit-focus {
  outline: 0;
}
/* line 172, ../../sass/src/_posts.scss */
#page.static #fullEditor .postBody.empty p, #page.article #fullEditor .postBody.empty p {
  color: #aaa;
}
/* line 180, ../../sass/src/_posts.scss */
#page.comment, #page.thought {
  max-width: 720px;
}
/* line 184, ../../sass/src/_posts.scss */
#page.comment h1, #page.thought h1 {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
  margin: 0 0 2rem 0;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
/* line 194, ../../sass/src/_posts.scss */
#page.comment .postBody p, #page.thought .postBody p {
  font-size: 1.3em;
  line-height: 1.4em;
  margin-bottom: 1.1em;
}
@media screen and (max-width: 1000px) {
  /* line 202, ../../sass/src/_posts.scss */
  #page.comment .postBody p, #page.thought .postBody p {
    font-size: 1.2em;
    line-height: 1.5em;
    margin-bottom: 1.1em;
  }
}
/* line 210, ../../sass/src/_posts.scss */
#page.comment .postBody img, #page.thought .postBody img {
  display: block;
  width: 100%;
  position: relative;
  padding: 30px 0;
  margin: 0 0 1.2rem 0;
}
/* line 221, ../../sass/src/_posts.scss */
#page.comment .postBody img.over, #page.comment .postBody img.center, #page.thought .postBody img.over, #page.thought .postBody img.center {
  display: block;
  padding: 0 0 0 0;
  margin: 0 auto 15px;
  max-width: 100%;
  width: auto;
}
/* line 229, ../../sass/src/_posts.scss */
#page.comment .postBody img.left, #page.thought .postBody img.left {
  display: block;
  float: left;
  padding: 0 0 0 0;
  margin: 7px 20px 15px 0;
  width: 35%;
}
/* line 236, ../../sass/src/_posts.scss */
#page.comment .postBody img.right, #page.thought .postBody img.right {
  display: block;
  float: right;
  padding: 0 0 0 0;
  margin: 7px 0 15px 20px;
  width: 35%;
}
/* line 258, ../../sass/src/_posts.scss */
#page.food .block.post {
  position: relative;
  max-width: 720px;
  padding: 15px 5% 50px 5%;
}
/* line 263, ../../sass/src/_posts.scss */
#page.food .block.post h1 {
  margin-bottom: 5px;
}
/* line 267, ../../sass/src/_posts.scss */
#page.food .block.post p.meta {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0 0 40px 0;
  line-height: 1.3rem;
}
/* line 279, ../../sass/src/_posts.scss */
#page.food .block.post p.meta span.place {
  margin-right: 10px;
  color: #aaa;
}
/* line 284, ../../sass/src/_posts.scss */
#page.food .block.post p.meta span.date,
#page.food .block.post p.meta span.subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #aaa;
  margin-right: 10px;
}
/* line 293, ../../sass/src/_posts.scss */
#page.food .block.post p.meta span.admin {
  margin-left: 20px;
}
/* line 298, ../../sass/src/_posts.scss */
#page.food .block.post .postBody {
  display: block;
  width: 100%;
}
/* line 302, ../../sass/src/_posts.scss */
#page.food .block.post .postBody img {
  display: block;
  width: 100%;
  position: relative;
  padding: 30px 0;
  margin: 0 0 0 0;
}
/* line 313, ../../sass/src/_posts.scss */
#page.food .block.post .postBody 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 313, ../../sass/src/_posts.scss */
  #page.food .block.post .postBody img.over {
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: 1500px) {
  /* line 313, ../../sass/src/_posts.scss */
  #page.food .block.post .postBody img.over {
    width: 180%;
    left: -40%;
  }
}
/* line 329, ../../sass/src/_posts.scss */
#page.food .block.post .postBody 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 337, ../../sass/src/_posts.scss */
#page.food .block.post .postBody img.left {
  display: block;
  float: left;
  padding: 0 0 0 0;
  margin: 7px 20px 15px 0;
  width: 35%;
}
/* line 344, ../../sass/src/_posts.scss */
#page.food .block.post .postBody img.right {
  display: block;
  float: right;
  padding: 0 0 0 0;
  margin: 7px 0 15px 20px;
  width: 35%;
}
/* line 355, ../../sass/src/_posts.scss */
#page.food .block.post .footer p {
  margin-bottom: 0;
  line-height: 1.1rem;
}
/* line 363, ../../sass/src/_posts.scss */
#page.food .posts {
  display: block;
  width: 100%;
  padding-bottom: 60px;
}
/* line 368, ../../sass/src/_posts.scss */
#page.food .posts .post {
  margin-bottom: 40px;
  position: relative;
}
/* line 373, ../../sass/src/_posts.scss */
#page.food .posts .post h1 a, #page.food .posts .post h1 a:link, #page.food .posts .post h1 a:visited {
  color: #404040;
}
/* line 378, ../../sass/src/_posts.scss */
#page.food .posts .post .postBody {
  height: 200px;
  overflow: hidden;
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
}
/* line 385, ../../sass/src/_posts.scss */
#page.food .posts .post .postBody:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  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 397, ../../sass/src/_posts.scss */
#page.food .posts .post .read {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
/* line 403, ../../sass/src/_posts.scss */
#page.food .posts .post .read a, #page.food .posts .post .read a:link, #page.food .posts .post .read a:visited {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 20px;
  height: 20px;
  text-transform: uppercase;
  color: white;
  background: #404040;
  padding: 5px 20px;
  border-radius: 20px;
}
/* line 416, ../../sass/src/_posts.scss */
#page.food .posts .post .footer {
  display: none;
}
/* line 423, ../../sass/src/_posts.scss */
#page .slick-slideshow {
  padding: 0px 5% 0px 5%;
  position: relative;
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}
/* line 39, ../../sass/src/_mixins.scss */
#page .slick-slideshow:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
@media screen and (max-width: 720px) {
  /* line 423, ../../sass/src/_posts.scss */
  #page .slick-slideshow {
    width: 100%;
    padding: 0px 0 0px 0;
  }
}
/* line 436, ../../sass/src/_posts.scss */
#page .slick-slideshow .slick {
  margin-bottom: 23px;
}
/* line 442, ../../sass/src/_posts.scss */
#page .slick-slideshow .slick .slide {
  display: none;
  width: 100%;
  height: 0;
  padding: 0 0 100% 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  line-height: 0;
}
/* line 456, ../../sass/src/_posts.scss */
#page .footer {
  padding-top: 0;
  max-width: 720px;
}
/* line 460, ../../sass/src/_posts.scss */
#page .footer p {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
  margin: 0 0 0 0;
  color: #aaa;
}
/* line 467, ../../sass/src/_posts.scss */
#page .footer p .linkButton {
  font-size: 0.9rem;
  border-radius: 15px;
  height: 30px;
  color: white;
  line-height: 30px;
  background-color: #404040;
  display: inline-block;
  padding: 0 15px;
  margin: 30px 0 30px 0;
  border-right: 1px solid white;
}
/* line 479, ../../sass/src/_posts.scss */
#page .footer p .linkButton i {
  position: relative;
  font-size: 11px;
  top: -1px;
}
/* line 485, ../../sass/src/_posts.scss */
#page .footer p .linkButton.first {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
/* line 490, ../../sass/src/_posts.scss */
#page .footer p .linkButton.last {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  border-right: none;
}
/* line 496, ../../sass/src/_posts.scss */
#page .footer p .linkButton:hover, #page .footer p .linkButton:active {
  box-shadow: 0 0 0 0 rgba(255, 48, 178, 0);
}
/* line 498, ../../sass/src/_posts.scss */
#page .footer p .linkButton:hover i, #page .footer p .linkButton:active i {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
/* line 503, ../../sass/src/_posts.scss */
#page .footer p .linkButton.disabled {
  background-color: #aaa;
  cursor: not-allowed;
}
/* line 509, ../../sass/src/_posts.scss */
#page .footer p .goHome {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
/* line 511, ../../sass/src/_posts.scss */
#page .footer p .goHome:hover {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
/* line 515, ../../sass/src/_posts.scss */
#page .footer p .goHome i {
  font-size: 2rem;
  margin-right: 10px;
  color: #404040;
}
@media screen and (max-width: 1000px) {
  /* line 523, ../../sass/src/_posts.scss */
  #page .footer p {
    font-size: 0.8rem;
  }
}

/* line 533, ../../sass/src/_posts.scss */
table td .interest {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
  margin: 0 0 0 0;
  color: #aaa;
  line-height: 1.1rem;
}
/* line 540, ../../sass/src/_posts.scss */
table td .interest a, table td .interest a:active, table td .interest a:link, table td .interest a:visited {
  color: #ccc;
}
/* line 544, ../../sass/src/_posts.scss */
table td .interest .setInterest, table td .interest .unsetInterest {
  cursor: pointer;
}
/* line 548, ../../sass/src/_posts.scss */
table td .interest .active {
  color: #333;
}

/* line 556, ../../sass/src/_posts.scss */
.tooltip {
  position: relative;
  /* Show the tooltip text when you mouse over the tooltip container */
}
/* line 559, ../../sass/src/_posts.scss */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 640px;
  background-color: #555;
  color: #fff;
  text-align: left;
  padding: 15px 15px;
  border-radius: 6px;
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -320px;
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.1rem;
  /* Tooltip arrow */
}
/* line 584, ../../sass/src/_posts.scss */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
/* line 598, ../../sass/src/_posts.scss */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* line 605, ../../sass/src/_posts.scss */
#foodTile {
  display: block;
  width: 100;
  overflow: hidden;
}
/* line 610, ../../sass/src/_posts.scss */
#foodTile a, #foodTile a:link, #foodTile a:active, #foodTile a:visited {
  display: block;
  float: left;
  width: 20%;
  height: 0px;
  padding: 0 0 20% 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  line-height: 0;
}
@media screen and (max-width: 430px) {
  /* line 610, ../../sass/src/_posts.scss */
  #foodTile a, #foodTile a:link, #foodTile a:active, #foodTile a:visited {
    width: 25%;
    padding: 0 0 25% 0;
  }
}
@media screen and (max-width: 1000px) and (min-width: 430px) {
  /* line 610, ../../sass/src/_posts.scss */
  #foodTile a, #foodTile a:link, #foodTile a:active, #foodTile a:visited {
    width: 20%;
    padding: 0 0 20% 0;
  }
}
@media screen and (max-width: 1260px) and (min-width: 1000px) {
  /* line 610, ../../sass/src/_posts.scss */
  #foodTile a, #foodTile a:link, #foodTile a:active, #foodTile a:visited {
    width: 12.5%;
    padding: 0 0 12.5% 0;
  }
}
@media screen and (min-width: 1500px) {
  /* line 610, ../../sass/src/_posts.scss */
  #foodTile a, #foodTile a:link, #foodTile a:active, #foodTile a:visited {
    width: 10%;
    padding: 0 0 10% 0;
  }
}
/* line 638, ../../sass/src/_posts.scss */
#foodTile a img, #foodTile a:link img, #foodTile a:active img, #foodTile a:visited img {
  display: block;
  width: 100%;
  float: left;
}

/* line 647, ../../sass/src/_posts.scss */
.embed-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

/* line 4, ../../sass/src/_search.scss */
#page.search .block.posts {
  max-width: 720px;
}
/* line 6, ../../sass/src/_search.scss */
#page.search .block.posts ul.searchResults {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* line 10, ../../sass/src/_search.scss */
#page.search .block.posts ul.searchResults li {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0 0 0 0;
}
/* line 15, ../../sass/src/_search.scss */
#page.search .block.posts ul.searchResults li h2 {
  margin: 0 0 5px 0;
  padding: 0 0 0 0;
}
/* line 18, ../../sass/src/_search.scss */
#page.search .block.posts ul.searchResults li h2 a, #page.search .block.posts ul.searchResults li h2 a:link, #page.search .block.posts ul.searchResults li h2 a:visited {
  color: #404040;
}
/* line 22, ../../sass/src/_search.scss */
#page.search .block.posts ul.searchResults li h2 a:hover {
  color: #FF30B2;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
/* line 28, ../../sass/src/_search.scss */
#page.search .block.posts ul.searchResults li p {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-style: italic;
}

/* line 2, ../../sass/src/_gallery.scss */
#stage.gallery {
  position: absolute;
  -webkit-overflow-scrolling: touch;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #333;
}

/* line 16, ../../sass/src/_gallery.scss */
#gallery h1 {
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin: 20px 0 20px 0;
  text-align: center;
  color: #666;
}
/* line 23, ../../sass/src/_gallery.scss */
#gallery h1 a, #gallery h1 a:link, #gallery h1 a:visited {
  color: #666;
  margin: 0 5px;
}
/* line 29, ../../sass/src/_gallery.scss */
#gallery #slideshow {
  display: block;
  margin: 0px auto;
  width: 90%;
  position: relative;
}
/* line 35, ../../sass/src/_gallery.scss */
#gallery #slideshow .bx-loading {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url("/img/loading.gif");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: 50px 50px;
}
/* line 49, ../../sass/src/_gallery.scss */
#gallery #slideshow .bxslider {
  visibility: hidden;
  width: 100%;
  height: 100%;
}
/* line 54, ../../sass/src/_gallery.scss */
#gallery #slideshow .bxslider .slide {
  width: 100%;
  height: 100%;
}
/* line 58, ../../sass/src/_gallery.scss */
#gallery #slideshow .bxslider .slide .caption {
  width: 100%;
  display: none;
  clear: both;
  position: absolute;
  bottom: 0;
}
/* line 65, ../../sass/src/_gallery.scss */
#gallery #slideshow .bxslider .slide .caption h2 {
  text-align: center;
  font-size: 1rem;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* line 72, ../../sass/src/_gallery.scss */
#gallery #slideshow .bxslider .slide .caption p {
  text-align: center;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* line 79, ../../sass/src/_gallery.scss */
#gallery #slideshow .bxslider .slide img {
  display: block;
  margin: 0 auto;
}
/* line 86, ../../sass/src/_gallery.scss */
#gallery #slideshow .bx-controls {
  text-align: center;
  padding: 20px 0;
}
/* line 91, ../../sass/src/_gallery.scss */
#gallery #slideshow .bx-controls .bx-controls-direction a {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #555;
  margin: 0 10px;
}
/* line 97, ../../sass/src/_gallery.scss */
#gallery #slideshow .bx-controls .bx-controls-direction a i {
  font-size: 30px;
  line-height: 30px;
}
/* line 102, ../../sass/src/_gallery.scss */
#gallery #slideshow .bx-controls .bx-controls-direction a.disabled {
  color: transparent;
}
/* line 104, ../../sass/src/_gallery.scss */
#gallery #slideshow .bx-controls .bx-controls-direction a.disabled i {
  opacity: 0;
}

/* line 121, ../../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 127, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail {
  display: block;
  width: 100px;
  height: 100px;
  float: left;
  background-color: white;
  padding: 15px;
  margin: 1px;
  position: relative;
  border-radius: 4px;
}
/* line 138, ../../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 149, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail a.linkImage {
  display: block;
  width: 100px;
  height: 100px;
  float: left;
  position: relative;
}
/* line 157, ../../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 163, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail .handle {
  cursor: move;
}
/* line 167, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail .delete {
  position: absolute;
  bottom: 0px;
  font-size: 0.8rem;
  text-align: center;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  width: 100px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1rem;
}
/* line 182, ../../sass/src/_gallery.scss */
.thumbnails.selectOne .thumbnail {
  opacity: 0.3;
}
/* line 184, ../../sass/src/_gallery.scss */
.thumbnails.selectOne .thumbnail.selected {
  opacity: 1;
}
/* line 188, ../../sass/src/_gallery.scss */
.thumbnails.selectOne .thumbnail:hover {
  opacity: 1;
}

/* line 2, ../../sass/src/_directory.scss */
.block.users.index h1 {
  margin: 0px 0 60px 0;
}

/* line 7, ../../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 13, ../../sass/src/_directory.scss */
.profiles .profile {
  display: block;
  float: left;
  width: 48%;
  height: 150px;
  margin: 0 0 80px 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #d3d3d3;
  overflow: hidden;
  cursor: pointer;
}
/* line 24, ../../sass/src/_directory.scss */
.profiles .profile:nth-child(odd) {
  float: left;
}
/* line 27, ../../sass/src/_directory.scss */
.profiles .profile:nth-child(even) {
  float: right;
}
/* line 31, ../../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 38, ../../sass/src/_directory.scss */
.profiles .profile p.title {
  color: rgba(64, 64, 64, 0.5);
  font-size: 1.1rem;
  line-height: 1.3rem;
  margin: 0 0 0.7rem 0;
}
/* line 43, ../../sass/src/_directory.scss */
.profiles .profile p.title strong {
  color: rgba(64, 64, 64, 0.7);
}
/* line 48, ../../sass/src/_directory.scss */
.profiles .profile .bio {
  display: block;
}
/* line 51, ../../sass/src/_directory.scss */
.profiles .profile .bio p {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4rem;
}
/* line 59, ../../sass/src/_directory.scss */
.profiles .profile .profilePhoto {
  display: block;
  width: 150px;
  height: 150px;
  float: left;
  overflow: hidden;
  background-image: url("/img/stripe-background-ccc.png");
  background-size: 200px 200px;
  background-repeat: repeat;
  background-position: left top;
  padding: 0;
  margin: 0 4% 0 0;
  position: relative;
}
/* line 75, ../../sass/src/_directory.scss */
.profiles .profile .profilePhoto img {
  display: block;
  height: 150px;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  /* line 86, ../../sass/src/_directory.scss */
  .profiles .profile {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  /* line 94, ../../sass/src/_directory.scss */
  .profiles .profile {
    height: auto;
    max-height: 300px;
    margin-bottom: 14px;
    padding-top: 30px;
  }
  /* line 100, ../../sass/src/_directory.scss */
  .profiles .profile .profilePhoto {
    position: relative;
    top: 5px;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  /* line 107, ../../sass/src/_directory.scss */
  .profiles .profile .profilePhoto img {
    height: 100px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 124, ../../sass/src/_directory.scss */
  .profiles .profile {
    width: 31.33333333%;
    float: left;
    margin-right: 3%;
  }
  /* line 129, ../../sass/src/_directory.scss */
  .profiles .profile:nth-child(odd) {
    float: left;
  }
  /* line 132, ../../sass/src/_directory.scss */
  .profiles .profile:nth-child(even) {
    float: left;
  }
  /* line 135, ../../sass/src/_directory.scss */
  .profiles .profile:nth-child(3n) {
    float: right;
    margin-right: 0;
  }
}
/* line 144, ../../sass/src/_directory.scss */
#profile.block {
  max-width: 970px;
}
/* line 148, ../../sass/src/_directory.scss */
#profile.block h1 {
  margin-bottom: 5px;
}
/* line 152, ../../sass/src/_directory.scss */
#profile.block p.title {
  color: rgba(64, 64, 64, 0.5);
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin: 0 0 60px 0;
}
/* line 158, ../../sass/src/_directory.scss */
#profile.block p.title strong {
  color: rgba(64, 64, 64, 0.7);
}
/* line 39, ../../sass/src/_mixins.scss */
#profile.block .doubles:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 166, ../../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 174, ../../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 183, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .profilePhoto img {
  display: block;
  width: 100%;
  float: left;
}
/* line 191, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .data p, #profile.block .doubles .summary .data li {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.6rem;
}
/* line 201, ../../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 212, ../../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 219, ../../sass/src/_directory.scss */
#profile.block .slick .slick-slide {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  /* Safari */
  transition: opacity 0.5s;
}
/* line 226, ../../sass/src/_directory.scss */
#profile.block .slick .slick-slide.slick-center {
  opacity: 1;
}
/* line 231, ../../sass/src/_directory.scss */
#profile.block .slick img {
  height: 450px;
  margin: 0 0px;
}

@media screen and (max-width: 768px) {
  /* line 245, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary {
    width: 100%;
    float: left;
    padding-bottom: 10px;
  }
  /* line 250, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .profilePhoto {
    width: 30%;
    float: left;
  }
  /* line 255, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data {
    position: relative;
    top: -7px;
    width: 65%;
    float: right;
  }
  /* line 261, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data h3 {
    font-size: 1.5rem;
    line-height: 1.9rem;
    margin-bottom: 15px;
  }
  /* line 267, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data p, #profile.block .doubles .summary .data li {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  /* line 274, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail {
    width: 100%;
    float: left;
  }
}
@media screen and (max-width: 430px) {
  /* line 286, ../../sass/src/_directory.scss */
  #profile.block h1 {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }
  /* line 291, ../../sass/src/_directory.scss */
  #profile.block p.title {
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
  /* line 297, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 18px;
  }
  /* line 302, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .profilePhoto {
    width: 100%;
    float: left;
    margin-bottom: 0;
  }
  /* line 308, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data {
    position: relative;
    top: 0;
    width: 100%;
    float: left;
  }
  /* line 314, ../../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 321, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data h3 {
    text-transform: uppercase;
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin: 25px 0 1rem 0;
    font-weight: 500;
  }
  /* line 332, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail {
    width: 100%;
    float: left;
  }
  /* line 336, ../../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 343, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail h3 {
    text-transform: uppercase;
    color: #aaa;
    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: "freight-display-pro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  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/_socials.scss */
.tintedBox {
  width: 80%;
  padding: 10%;
  background-color: #eff0f4;
}

/* line 7, ../../sass/src/_socials.scss */
.subscribe {
  display: block;
  overflow: hidden;
  margin: 2rem 0 0 0;
}
/* line 12, ../../sass/src/_socials.scss */
.subscribe h2 {
  text-align: center;
  line-height: 2.3rem;
  border-bottom: 1px solid #d3d3d3;
  padding: 0 0 5px 0;
  margin: 0 0 20px 0;
}
/* line 20, ../../sass/src/_socials.scss */
.subscribe input[type=checkbox] {
  display: none;
}
/* line 24, ../../sass/src/_socials.scss */
.subscribe #mce-responses {
  width: 100%;
}
/* line 27, ../../sass/src/_socials.scss */
.subscribe #mce-responses .response {
  margin: 20px 0 0 0;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  color: #404040;
}
/* line 31, ../../sass/src/_socials.scss */
.subscribe #mce-responses .response a, .subscribe #mce-responses .response a:link, .subscribe #mce-responses .response a:visited {
  color: #FF30B2;
  text-decoration: none;
}

/* line 41, ../../sass/src/_socials.scss */
#page .socials {
  display: block;
  overflow: hidden;
  margin: 2rem 0 0 0;
  display: flex;
  justify-content: space-between;
}
/* line 49, ../../sass/src/_socials.scss */
#page .socials .social {
  width: calc(50% - 20px);
}
/* line 52, ../../sass/src/_socials.scss */
#page .socials .social h2 {
  text-align: center;
  border-bottom: 1px solid #d3d3d3;
  padding: 0 0 5px 0;
  margin: 0 0 20px 0;
}
/* line 59, ../../sass/src/_socials.scss */
#page .socials .social ul {
  display: block;
  width: 100%;
  text-align: center;
}
/* line 64, ../../sass/src/_socials.scss */
#page .socials .social ul li {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 25px;
  font-size: 25px;
  text-align: center;
  list-style: none;
  margin: 0 5px;
  padding: 0 0 0 0;
  background-color: #404040;
  position: relative;
}
/* line 78, ../../sass/src/_socials.scss */
#page .socials .social ul li a, #page .socials .social ul li a:link, #page .socials .social ul li a:visited {
  color: #eff0f4;
  text-decoration: none;
  position: relative;
  top: 1px;
}
/* line 85, ../../sass/src/_socials.scss */
#page .socials .social ul li a:hover {
  box-shadow: 0 0 0 0 transparent;
}
/* line 87, ../../sass/src/_socials.scss */
#page .socials .social ul li a:hover i {
  box-shadow: 0 0 0 0 transparent;
}
/* line 107, ../../sass/src/_socials.scss */
#page .socials.min {
  display: block;
  width: 100%;
  margin: 25px 0;
  padding: 5px 0 10px;
  border-top: 1px solid #d3d3d3;
}
/* line 115, ../../sass/src/_socials.scss */
#page .socials.min li.menu-item {
  display: inline-block;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.9rem;
}
/* line 123, ../../sass/src/_socials.scss */
#page .socials.min li.menu-item a, #page .socials.min li.menu-item a:link, #page .socials.min li.menu-item a:visited {
  margin: 0 12px 0 0;
  padding: 0 0 0 0;
}
@media screen and (max-width: 590px) {
  /* line 138, ../../sass/src/_socials.scss */
  #page .socials {
    flex-flow: row wrap;
  }
  /* line 140, ../../sass/src/_socials.scss */
  #page .socials .social {
    width: 100%;
  }
}

/* Slider */
/* line 35, ../../sass/src/_slick-theme.scss */
.slick-loading .slick-list {
  background: #fff url("../js/slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../js/slick/fonts/slick.eot");
  src: url("../js/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../js/slick/fonts/slick.woff") format("woff"), url("../js/slick/fonts/slick.ttf") format("truetype"), url("../js/slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
/* line 53, ../../sass/src/_slick-theme.scss */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
/* line 71, ../../sass/src/_slick-theme.scss */
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
/* line 75, ../../sass/src/_slick-theme.scss */
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
/* line 79, ../../sass/src/_slick-theme.scss */
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
/* line 82, ../../sass/src/_slick-theme.scss */
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 30px;
  line-height: 1;
  color: #ccc;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 93, ../../sass/src/_slick-theme.scss */
.slick-prev {
  left: -40px;
}
/* line 95, ../../sass/src/_slick-theme.scss */
[dir="rtl"] .slick-prev {
  left: auto;
  right: -40px;
}
/* line 99, ../../sass/src/_slick-theme.scss */
.slick-prev:before {
  content: "←";
}
/* line 101, ../../sass/src/_slick-theme.scss */
[dir="rtl"] .slick-prev:before {
  content: "→";
}

/* line 107, ../../sass/src/_slick-theme.scss */
.slick-next {
  right: -40px;
}
/* line 109, ../../sass/src/_slick-theme.scss */
[dir="rtl"] .slick-next {
  left: -40px;
  right: auto;
}
/* line 113, ../../sass/src/_slick-theme.scss */
.slick-next:before {
  content: "→";
}
/* line 115, ../../sass/src/_slick-theme.scss */
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
/* line 123, ../../sass/src/_slick-theme.scss */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

/* line 127, ../../sass/src/_slick-theme.scss */
.slick-dots {
  position: absolute;
  bottom: -21px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
/* line 136, ../../sass/src/_slick-theme.scss */
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 0px;
  padding: 0;
  cursor: pointer;
}
/* line 144, ../../sass/src/_slick-theme.scss */
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
/* line 156, ../../sass/src/_slick-theme.scss */
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
/* line 158, ../../sass/src/_slick-theme.scss */
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
/* line 162, ../../sass/src/_slick-theme.scss */
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 8px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 179, ../../sass/src/_slick-theme.scss */
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
/* line 3, ../../sass/src/_slick.scss */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 17, ../../sass/src/_slick.scss */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
/* line 24, ../../sass/src/_slick.scss */
.slick-list:focus {
  outline: none;
}
/* line 28, ../../sass/src/_slick.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 33, ../../sass/src/_slick.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 42, ../../sass/src/_slick.scss */
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* line 50, ../../sass/src/_slick.scss */
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
/* line 56, ../../sass/src/_slick.scss */
.slick-track:after {
  clear: both;
}
/* line 60, ../../sass/src/_slick.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 64, ../../sass/src/_slick.scss */
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  margin: 0 0 10px 0;
  font-size: 0;
  line-height: 0;
  display: none;
}
/* line 72, ../../sass/src/_slick.scss */
[dir="rtl"] .slick-slide {
  float: right;
}
/* line 75, ../../sass/src/_slick.scss */
.slick-slide img {
  display: block;
}
/* line 78, ../../sass/src/_slick.scss */
.slick-slide.slick-loading img {
  display: none;
}
/* line 84, ../../sass/src/_slick.scss */
.slick-slide.dragging img {
  pointer-events: none;
}
/* line 88, ../../sass/src/_slick.scss */
.slick-initialized .slick-slide {
  display: block;
}
/* line 92, ../../sass/src/_slick.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}
/* line 96, ../../sass/src/_slick.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 102, ../../sass/src/_slick.scss */
.slick-arrow.slick-hidden {
  display: none;
}

/* line 1, ../../sass/src/_shuler.scss */
#shuler {
  padding: 0 0 150px 0;
}
/* line 4, ../../sass/src/_shuler.scss */
#shuler #notice {
  background-color: #404040;
}
/* line 6, ../../sass/src/_shuler.scss */
#shuler #notice .block {
  padding: 20px 0;
}
/* line 8, ../../sass/src/_shuler.scss */
#shuler #notice .block p {
  color: white;
  margin: 0 0 0 0;
  text-align: center;
}
/* line 17, ../../sass/src/_shuler.scss */
#shuler #intro .block {
  padding: 50px 0 0 0;
}
/* line 22, ../../sass/src/_shuler.scss */
#shuler h1,
#shuler p.subtitle {
  text-align: center;
}
/* line 27, ../../sass/src/_shuler.scss */
#shuler h1 {
  margin-bottom: 5px;
}
/* line 31, ../../sass/src/_shuler.scss */
#shuler .input {
  border: 0;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}
/* line 36, ../../sass/src/_shuler.scss */
#shuler .input.select {
  margin: 0 auto 5px;
  max-width: 450px;
  width: 96%;
}
/* line 42, ../../sass/src/_shuler.scss */
#shuler .input.select select {
  border-radius: 5px;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  padding: 0 5px;
  color: #404040;
  background-color: white;
}
/* line 53, ../../sass/src/_shuler.scss */
#shuler .control {
  display: block;
  width: 96%;
  padding: 10px 2%;
  margin: 0 auto 1px;
  background-color: #eff0f4;
  text-align: center;
  font-size: 0;
}
/* line 63, ../../sass/src/_shuler.scss */
#shuler .control li {
  display: inline-block;
  margin: 0px 10px;
  padding: 5px 0;
  vertical-align: middle;
}
/* line 69, ../../sass/src/_shuler.scss */
#shuler .control li button,
#shuler .control li a.button.small {
  float: left;
  margin: 0 0 0 0;
}
/* line 75, ../../sass/src/_shuler.scss */
#shuler .control li label {
  font-size: 1rem;
  float: left;
  margin: 2px 7px 0 0;
}
@media screen and (max-width: 430px) {
  /* line 80, ../../sass/src/_shuler.scss */
  #shuler .control li label.unlock {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
/* line 89, ../../sass/src/_shuler.scss */
#shuler .control li select {
  border-radius: 5px;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  padding: 0 5px;
  color: #404040;
  background-color: white;
}
/* line 98, ../../sass/src/_shuler.scss */
#shuler .control li input {
  float: left;
  border: 1px #ccc solid;
  width: 50px;
  margin: 0 0 0 0;
  padding-left: 5px;
  padding-right: 5px;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
/* line 108, ../../sass/src/_shuler.scss */
#shuler .control li input.date {
  width: 100px;
}
/* line 111, ../../sass/src/_shuler.scss */
#shuler .control li input.date.unlock {
  border-right: 0;
}
@media screen and (max-width: 430px) {
  /* line 111, ../../sass/src/_shuler.scss */
  #shuler .control li input.date.unlock {
    clear: both;
  }
}
/* line 123, ../../sass/src/_shuler.scss */
#shuler #instructions {
  display: block;
}
/* line 127, ../../sass/src/_shuler.scss */
#shuler .infoBlock {
  width: 100%;
  padding: 0 0 0 0;
  margin: 0 auto 1px;
  background-color: #ebf6f7;
}
/* line 133, ../../sass/src/_shuler.scss */
#shuler .infoBlock .post {
  max-width: 720px;
}
/* line 137, ../../sass/src/_shuler.scss */
#shuler .infoBlock .post p:last-child {
  margin-bottom: 0;
}

/* line 147, ../../sass/src/_shuler.scss */
.svg-container g.tick text {
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
}

/* line 154, ../../sass/src/_shuler.scss */
div.tooltip {
  position: absolute;
  text-align: center;
  padding: 5px 7px;
  background: #333;
  color: #fff;
  border: 0px;
  border-radius: 8px;
  pointer-events: none;
  font-size: 0.8rem;
  font-family: "ministry", "Helvetica Neue", Helvetica, sans-serif;
}

@media screen and (max-width: 1000px) {
  /* line 169, ../../sass/src/_shuler.scss */
  p, li, td, th, dt, dd {
    font-size: 1.2rem;
    margin: 0 0 1.3rem 0;
    line-height: 1.7rem;
  }

  /* line 176, ../../sass/src/_shuler.scss */
  p.dropcap {
    position: relative;
  }
  /* line 179, ../../sass/src/_shuler.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 193, ../../sass/src/_shuler.scss */
  li {
    margin: 0 0 0.5rem 28px;
  }

  /* line 197, ../../sass/src/_shuler.scss */
  h1 {
    font-size: 2.2rem;
    line-height: 2.4rem;
    margin: 0px 0 30px 0;
  }

  /* line 203, ../../sass/src/_shuler.scss */
  h2 {
    font-size: 1.9rem;
    line-height: 1.9rem;
    margin: 40px 0 25px 0;
  }

  /* line 209, ../../sass/src/_shuler.scss */
  h3 {
    font-size: 1.6rem;
    line-height: 1.6rem;
    margin: 40px 0 25px 0;
    font-weight: 500;
  }

  /* line 218, ../../sass/src/_shuler.scss */
  table thead {
    display: table-header-group;
  }
  /* line 222, ../../sass/src/_shuler.scss */
  table th {
    display: table-cell;
  }
  /* line 226, ../../sass/src/_shuler.scss */
  table tbody {
    display: table-row-group;
    width: inherit;
    padding: inherit;
    border-top: inherit;
  }
  /* line 232, ../../sass/src/_shuler.scss */
  table tbody tr {
    display: table-row;
    position: inherit;
    border-bottom: inherit;
    margin: inherit;
    padding: inherit;
  }
  /* line 240, ../../sass/src/_shuler.scss */
  table tbody td {
    display: table-cell;
    position: inherit;
    width: inherit;
    margin: inherit;
    padding: inherit;
    border: inherit;
    text-align: inherit;
    overflow: inherit;
  }
}
