/* Standard syntax */
@keyframes slideInLeft {
  from {
    left: 110%;
  }
  to {
    left: 0;
  }
}
@keyframes slideOutLeft {
  from {
    left: 0;
  }
  to {
    left: -110%;
  }
}
@-webkit-keyframes animcategory {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes animatecategory {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes animatecategory-enter {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/****************************
Recyclables
****************************/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
/* line 9, ../sass/recyclables/_animations.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 16, ../sass/recyclables/_animations.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 21, ../sass/recyclables/_animations.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* line 82, ../sass/recyclables/_animations.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* line 110, ../sass/recyclables/_animations.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 151, ../sass/recyclables/_animations.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 230, ../sass/recyclables/_animations.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* line 269, ../sass/recyclables/_animations.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/* line 328, ../sass/recyclables/_animations.scss */
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 390, ../sass/recyclables/_animations.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 471, ../sass/recyclables/_animations.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 556, ../sass/recyclables/_animations.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 631, ../sass/recyclables/_animations.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 704, ../sass/recyclables/_animations.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 777, ../sass/recyclables/_animations.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 850, ../sass/recyclables/_animations.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
/* line 893, ../sass/recyclables/_animations.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 938, ../sass/recyclables/_animations.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 971, ../sass/recyclables/_animations.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1004, ../sass/recyclables/_animations.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1047, ../sass/recyclables/_animations.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* line 1062, ../sass/recyclables/_animations.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1095, ../sass/recyclables/_animations.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1128, ../sass/recyclables/_animations.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1161, ../sass/recyclables/_animations.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1194, ../sass/recyclables/_animations.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1227, ../sass/recyclables/_animations.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1260, ../sass/recyclables/_animations.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1293, ../sass/recyclables/_animations.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1326, ../sass/recyclables/_animations.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 1341, ../sass/recyclables/_animations.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 1370, ../sass/recyclables/_animations.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 1399, ../sass/recyclables/_animations.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 1428, ../sass/recyclables/_animations.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 1457, ../sass/recyclables/_animations.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 1486, ../sass/recyclables/_animations.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1515, ../sass/recyclables/_animations.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 1544, ../sass/recyclables/_animations.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1573, ../sass/recyclables/_animations.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
/* line 1652, ../sass/recyclables/_animations.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1725, ../sass/recyclables/_animations.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1798, ../sass/recyclables/_animations.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
/* line 1843, ../sass/recyclables/_animations.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
/* line 1890, ../sass/recyclables/_animations.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 1951, ../sass/recyclables/_animations.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
/* line 1982, ../sass/recyclables/_animations.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2025, ../sass/recyclables/_animations.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2066, ../sass/recyclables/_animations.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2107, ../sass/recyclables/_animations.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2148, ../sass/recyclables/_animations.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2189, ../sass/recyclables/_animations.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
/* line 2226, ../sass/recyclables/_animations.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
/* line 2263, ../sass/recyclables/_animations.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2300, ../sass/recyclables/_animations.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2337, ../sass/recyclables/_animations.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
/* line 2374, ../sass/recyclables/_animations.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
/* line 2447, ../sass/recyclables/_animations.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2482, ../sass/recyclables/_animations.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
/* line 2513, ../sass/recyclables/_animations.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/* line 2542, ../sass/recyclables/_animations.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2583, ../sass/recyclables/_animations.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2624, ../sass/recyclables/_animations.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2665, ../sass/recyclables/_animations.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2706, ../sass/recyclables/_animations.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
/* line 2743, ../sass/recyclables/_animations.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2788, ../sass/recyclables/_animations.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
/* line 2825, ../sass/recyclables/_animations.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
/* line 2862, ../sass/recyclables/_animations.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2907, ../sass/recyclables/_animations.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* line 2938, ../sass/recyclables/_animations.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 2969, ../sass/recyclables/_animations.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 3000, ../sass/recyclables/_animations.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* line 3031, ../sass/recyclables/_animations.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* line 3062, ../sass/recyclables/_animations.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* line 3093, ../sass/recyclables/_animations.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
/* line 3124, ../sass/recyclables/_animations.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
/* line 3155, ../sass/recyclables/_animations.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/**********************************
Different Perspective Logo/Login
***********************************/
/* line 9, ../sass/recyclables/_dp.scss */
#dp {
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: all 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415);
  -o-transition: all 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415);
  -webkit-transition: all 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415);
  transition: all 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415);
  text-align: center;
  width: 230px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: .75em;
  background: url(../img/powered.png) no-repeat;
  background: url(../img/powered.svg) no-repeat;
  background-position: center top;
  background-size: 100% 200%;
  display: block;
  position: relative;
  top: 2.5em;
}
/* line 26, ../sass/recyclables/_dp.scss */
#dp a {
  color: #ffffff;
  text-decoration: none;
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -moz-transition: -moz-transform 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415), background-position 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415);
  -o-transition: -o-transform 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415), background-position 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415);
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415), background-position 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415);
  transition: transform 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415), background-position 250ms cubic-bezier(0.52, -0.03, 0.51, 1.415);
  position: relative;
  top: 25%;
  text-align: center;
  width: 19%;
  padding: 0 15%;
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/* line 46, ../sass/recyclables/_dp.scss */
#dp #dp-powered {
  float: left;
  text-align: right;
  padding-right: 32px;
  width: 25%;
  padding-left: 10%;
}
/* line 54, ../sass/recyclables/_dp.scss */
#dp #dp-login {
  float: right;
  text-align: left;
  padding-left: 32px;
}
/* line 61, ../sass/recyclables/_dp.scss */
#dp a:hover {
  color: #bc6c50;
}

/* line 66, ../sass/recyclables/_dp.scss */
#dp:hover {
  background-position: center bottom;
}
/* line 68, ../sass/recyclables/_dp.scss */
#dp:hover a {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* line 4, ../sass/recyclables/_nav-custom-slider.scss */
.container-info-buttons {
  display: block;
  width: 100%;
  text-align: center;
  margin: 1em auto;
}
/* line 11, ../sass/recyclables/_nav-custom-slider.scss */
.container-info-buttons .button {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: 11em;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #5e5a4c;
  background-color: #e2ddc5;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
  font-family: "raleway", sans-serif;
  margin: 0.5em;
}
/* line 33, ../sass/helpers/_mixins.scss */
.container-info-buttons .button:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 16, ../sass/recyclables/_nav-custom-slider.scss */
.container-info-buttons .button:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 21, ../sass/recyclables/_nav-custom-slider.scss */
.container-info-buttons .button.active {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: 11em;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #e2ddc5;
  background-color: #5e5a4c;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
}
/* line 33, ../sass/helpers/_mixins.scss */
.container-info-buttons .button.active:hover {
  color: #5e5a4c;
  background-color: #fff;
}

/*
Open Table
*/
@-moz-keyframes fadeInDown {
  0% {
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* line 10, ../sass/recyclables/_open-table.scss */
#opentable {
  position: absolute;
  right: 5.5em;
  top: -200em;
  visibility: hidden;
  will-change: top, visiblity, z-index;
  z-index: -1;
}
/* line 18, ../sass/recyclables/_open-table.scss */
#opentable.visible {
  -moz-animation: fadeInDown 0.4s;
  -webkit-animation: fadeInDown 0.4s;
  animation: fadeInDown 0.4s;
  top: 2em;
  visibility: visible;
  z-index: 5;
}

/* line 26, ../sass/recyclables/_open-table.scss */
.wrap-opentable {
  left: 0;
  max-width: 960px;
  margin: 0 auto;
  position: fixed;
  right: 0;
  z-index: 5;
}

/* line 5, ../sass/recyclables/_slider.scss */
.slider-home {
  border: 0;
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  overflow: hidden;
}
/* line 14, ../sass/recyclables/_slider.scss */
.slider-home .slider-home-img {
  width: 100%;
  height: 30em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* line 1, ../sass/recyclables/_maps.scss */
.google-map-infowindow {
  text-align: center;
  min-width: 10em;
}
/* line 4, ../sass/recyclables/_maps.scss */
.google-map-infowindow p {
  font-weight: bold;
  display: block;
}
/* line 9, ../sass/recyclables/_maps.scss */
.google-map-infowindow a {
  font-size: 10px;
  text-decoration: none;
  display: block;
  width: 100%;
}

/*
Base styles
*/
/* line 7, ../sass/base/_base.scss */
body {
  font-size: 16px;
  background-color: #f5f1e5;
  padding-top: 2em;
  font-family: "Contra", serif;
}
@media (max-width: 421px) {
  /* line 7, ../sass/base/_base.scss */
  body {
    font-size: 12px;
  }
}

/* line 29, ../sass/base/_base.scss */
.centered-wrapper {
  max-width: 1280px;
  display: block;
  margin: 0 auto;
}

/*
Footer
*/
/* line 8, ../sass/base/_footer.scss */
.container-section-pattern {
  background: url("../img/green-pattern-footer.png");
  display: block;
  height: 8.5em;
}

/* line 14, ../sass/base/_footer.scss */
footer {
  padding: 0.5em 5%;
  background-color: #c3c495;
  overflow: hidden;
}
@media screen and (max-width: 1030px) {
  /* line 14, ../sass/base/_footer.scss */
  footer {
    text-align: center;
    padding: 2.5em 5%;
  }
}
/* line 24, ../sass/base/_footer.scss */
footer .container-copyright {
  display: inline-block;
  vertical-align: super;
  color: #5e5a4c;
  text-transform: uppercase;
}
/* line 32, ../sass/base/_footer.scss */
footer .social-links {
  display: inline-block;
  padding: 0 1em;
}
/* line 36, ../sass/base/_footer.scss */
footer .social-links a {
  display: inline-block;
  margin: 1em;
  color: #5e5a4c;
}
/* line 41, ../sass/base/_footer.scss */
footer .social-links img {
  height: 1.5em;
  width: 1.5em;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}

/* line 49, ../sass/base/_footer.scss */
div#dp {
  position: absolute;
  top: 2.5em;
  right: 0;
  display: inline-block;
}
@media screen and (max-width: 1030px) {
  /* line 49, ../sass/base/_footer.scss */
  div#dp {
    position: relative;
    right: 0;
  }
}

/* line 60, ../sass/base/_footer.scss */
.container-footer-content {
  max-width: 960px;
  display: block;
  margin: 0 auto;
  position: relative;
}

/*
Header
*/
/* line 8, ../sass/base/_header.scss */
header {
  background-color: #c3c495;
  min-height: 3.25em;
  overflow: hidden;
  padding: 0 2%;
  position: fixed;
  width: 96%;
  z-index: 20;
  top: 0;
  -moz-transition: padding 0.4s cubic-bezier(0.5, 0, 0.5, 1.2);
  -o-transition: padding 0.4s cubic-bezier(0.5, 0, 0.5, 1.2);
  -webkit-transition: padding 0.4s cubic-bezier(0.5, 0, 0.5, 1.2);
  transition: padding 0.4s cubic-bezier(0.5, 0, 0.5, 1.2);
  -moz-box-shadow: 0 0 9px 0px #000;
  -webkit-box-shadow: 0 0 9px 0px #000;
  box-shadow: 0 0 9px 0px #000;
}
/* line 22, ../sass/base/_header.scss */
header .header-link-home {
  display: inline-block;
  float: left;
  height: 3em;
  width: 6em;
  background: url("../img/header-logo-small.svg") center no-repeat;
  background-size: 100%;
  visibility: hidden;
  -moz-transition: visibility 1s linear;
  -o-transition: visibility 1s linear;
  -webkit-transition: visibility 1s linear;
  transition: visibility 1s linear;
  -moz-animation: fadeOutUp 1s;
  -webkit-animation: fadeOutUp 1s;
  animation: fadeOutUp 1s;
}
/* line 33, ../sass/base/_header.scss */
header .header-link-home.visible {
  visibility: visible;
  -moz-animation: fadeInDownBig 1s;
  -webkit-animation: fadeInDownBig 1s;
  animation: fadeInDownBig 1s;
}
@media (max-width: 950px) {
  /* line 22, ../sass/base/_header.scss */
  header .header-link-home {
    display: none;
  }
}
/* line 45, ../sass/base/_header.scss */
header a {
  color: #5e5a4c;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "raleway", sans-serif;
}
/* line 52, ../sass/base/_header.scss */
header .button-reservation {
  float: right;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: 20em;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #fff;
  background-color: #5e5a4c;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
  position: relative;
  z-index: 1;
  margin-top: 0.4em;
}
/* line 33, ../sass/helpers/_mixins.scss */
header .button-reservation:hover {
  color: #5e5a4c;
  background-color: #fff;
}

/* line 61, ../sass/base/_header.scss */
.menu-header {
  display: block;
  clear: none;
  float: left;
  margin: 0 0 0 1em;
  min-width: 28.75em;
  vertical-align: top;
}
/* line 71, ../sass/base/_header.scss */
.menu-header ul {
  margin: 0;
  padding: 0;
}
/* line 77, ../sass/base/_header.scss */
.menu-header li {
  display: inline-block;
}
/* line 83, ../sass/base/_header.scss */
.menu-header li.current-menu-item a, .menu-header li.current-menu-ancestor a {
  font-weight: bold;
}
/* line 88, ../sass/base/_header.scss */
.menu-header li.phone-link, .menu-header li.home-link {
  display: none;
}
/* line 95, ../sass/base/_header.scss */
.menu-header li.home-link a:hover {
  background: none;
}
/* line 100, ../sass/base/_header.scss */
.menu-header li a {
  -moz-transition: color 0.4s ease, background-color 0.4s ease;
  -o-transition: color 0.4s ease, background-color 0.4s ease;
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
  display: inline-block;
  padding: 1em 1.5em;
}
/* line 109, ../sass/base/_header.scss */
.menu-header li a:hover {
  color: #000;
  background-color: #bdbf8b;
}

/* line 119, ../sass/base/_header.scss */
.header-content {
  display: block;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}

/* line 126, ../sass/base/_header.scss */
.header-logo-img {
  width: 100%;
  display: inline-block;
  max-height: 16.2em;
  margin: 0 auto;
}
@media (max-width: 480px) {
  /* line 126, ../sass/base/_header.scss */
  .header-logo-img {
    width: auto;
  }
}

/* line 137, ../sass/base/_header.scss */
.sub-header {
  overflow: hidden;
  text-align: center;
  padding: 1em;
  background-color: #f5f1e5;
}
/* line 144, ../sass/base/_header.scss */
.sub-header .container-sub-header-content {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
  max-width: 960px;
  padding: 2em 0;
  position: relative;
}
/* line 154, ../sass/base/_header.scss */
html.no-flexbox .sub-header .container-sub-header-content {
  word-spacing: -5px;
}
@media (max-width: 480px) {
  /* line 144, ../sass/base/_header.scss */
  .sub-header .container-sub-header-content {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 1em 0;
  }
}
/* line 233, ../sass/base/_header.scss */
.sub-header .container-sub-header-mid {
  -webkit-order: 2;
  order: 2;
  display: inline-block;
  position: relative;
  -moz-transition: top 0.4s ease;
  -o-transition: top 0.4s ease;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  text-align: center;
  vertical-align: middle;
}
/* line 181, ../sass/base/_header.scss */
html.no-flexbox .sub-header .container-sub-header-mid {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: 33%;
  word-spacing: normal;
}
@media (max-width: 480px) {
  /* line 189, ../sass/base/_header.scss */
  html.no-flexbox .sub-header .container-sub-header-mid, .sub-header .container-sub-header-mid {
    position: static;
    width: 100%;
  }
}
/* line 241, ../sass/base/_header.scss */
.sub-header .container-sub-header-mid a {
  display: block;
  margin: 0 auto;
  width: 80%;
}
/* line 246, ../sass/base/_header.scss */
.sub-header .container-sub-header-mid a img {
  width: 100%;
}
@media (max-width: 480px) {
  /* line 233, ../sass/base/_header.scss */
  .sub-header .container-sub-header-mid {
    -webkit-order: 0;
    order: 0;
  }
}
/* line 255, ../sass/base/_header.scss */
.sub-header .container-sub-header-mid:before, .sub-header .container-sub-header-mid:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  background: url("../img/header-accent-divider-vertical.svg") center no-repeat;
  background-size: 100% auto;
}
@media (max-width: 480px) {
  /* line 255, ../sass/base/_header.scss */
  .sub-header .container-sub-header-mid:before, .sub-header .container-sub-header-mid:after {
    display: none;
  }
}
/* line 274, ../sass/base/_header.scss */
.sub-header .container-sub-header-mid:before {
  left: 0;
}
/* line 285, ../sass/base/_header.scss */
.sub-header .container-sub-header-mid:after {
  right: 0;
}
/* line 298, ../sass/base/_header.scss */
.sub-header .container-sub-header-left {
  -moz-transition: top 0.4s ease;
  -o-transition: top 0.4s ease;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  text-align: center;
  -webkit-order: 1;
  order: 1;
}
/* line 181, ../sass/base/_header.scss */
html.no-flexbox .sub-header .container-sub-header-left {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: 33%;
  word-spacing: normal;
}
@media (max-width: 480px) {
  /* line 189, ../sass/base/_header.scss */
  html.no-flexbox .sub-header .container-sub-header-left, .sub-header .container-sub-header-left {
    position: static;
    width: 100%;
  }
}
/* line 215, ../sass/base/_header.scss */
.sub-header .container-sub-header-left > div {
  font-family: "Contra", serif;
  display: inline-block;
  font-size: 1.125em;
  width: 95%;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  /* line 298, ../sass/base/_header.scss */
  .sub-header .container-sub-header-left {
    -webkit-order: 0;
    order: 0;
  }
  /* line 226, ../sass/base/_header.scss */
  .sub-header .container-sub-header-left > div {
    width: 100%;
  }
}
@media (min-width: 480px) {
  /* line 306, ../sass/base/_header.scss */
  html.no-flexbox .sub-header .container-sub-header-left {
    float: left;
  }
}
/* line 315, ../sass/base/_header.scss */
.sub-header .container-address a {
  text-decoration: none;
  color: #000;
}
/* line 319, ../sass/base/_header.scss */
.sub-header .container-address a:before {
  content: "";
  background: url("../img/header-accent-divider-horizontal.svg") center no-repeat;
  background-size: 100%;
  height: 2em;
  display: block;
  width: 100%;
  max-width: 10em;
  margin: 1em auto;
  cursor: default;
}
@media (min-width: 950px) {
  /* line 334, ../sass/base/_header.scss */
  .sub-header .container-address a[href^="tel"] {
    cursor: default;
  }
}
/* line 340, ../sass/base/_header.scss */
.sub-header .container-sub-header-right {
  -moz-transition: top 0.4s ease;
  -o-transition: top 0.4s ease;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  text-align: center;
  -webkit-order: 3;
  order: 3;
}
/* line 181, ../sass/base/_header.scss */
html.no-flexbox .sub-header .container-sub-header-right {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: 33%;
  word-spacing: normal;
}
@media (max-width: 480px) {
  /* line 189, ../sass/base/_header.scss */
  html.no-flexbox .sub-header .container-sub-header-right, .sub-header .container-sub-header-right {
    position: static;
    width: 100%;
  }
}
/* line 215, ../sass/base/_header.scss */
.sub-header .container-sub-header-right > div {
  font-family: "Contra", serif;
  display: inline-block;
  font-size: 1.125em;
  width: 95%;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  /* line 340, ../sass/base/_header.scss */
  .sub-header .container-sub-header-right {
    -webkit-order: 0;
    order: 0;
  }
  /* line 226, ../sass/base/_header.scss */
  .sub-header .container-sub-header-right > div {
    width: 100%;
  }
}
@media (min-width: 480px) {
  /* line 347, ../sass/base/_header.scss */
  html.no-flexbox .sub-header .container-sub-header-right {
    float: right;
  }
}
/* line 353, ../sass/base/_header.scss */
.sub-header .container-sub-header-right .container-hours {
  font-size: 1em;
}
/* line 356, ../sass/base/_header.scss */
.sub-header .container-sub-header-right .container-hours .hours-title {
  font-family: "Allura", serif;
  display: block;
  font-size: 3em;
}
/* line 362, ../sass/base/_header.scss */
.sub-header .container-sub-header-right .container-hours .hours-section {
  margin-bottom: 1em;
}
/* line 365, ../sass/base/_header.scss */
.sub-header .container-sub-header-right .container-hours .hours-section:last-child {
  margin-bottom: 0;
}
/* line 370, ../sass/base/_header.scss */
.sub-header .container-sub-header-right .container-hours .hours {
  display: block;
  font-size: 1em;
}
/* line 374, ../sass/base/_header.scss */
.sub-header .container-sub-header-right .container-hours .hours.super {
  font-weight: bold;
}
/* line 378, ../sass/base/_header.scss */
.sub-header .container-sub-header-right .container-hours .hours.sub {
  font-size: .8em;
}

@media screen and (max-width: 950px) {
  /* line 396, ../sass/base/_header.scss */
  header .button-reservation {
    clear: both;
    width: 80%;
  }
  /* line 401, ../sass/base/_header.scss */
  header .header-content {
    position: relative;
  }

  /* line 408, ../sass/base/_header.scss */
  .menu-header {
    display: block;
    float: none;
    margin: 0 auto;
    min-width: 0;
    position: relative;
  }
  /* line 44, ../sass/helpers/_mixins.scss */
  .menu-header:before {
    content: "";
    position: absolute;
    cursor: pointer;
    top: 0.5em;
    left: 1em;
    width: 2em;
    height: 0.4em;
    border-top: 1.2em double #5e5a4c;
    border-bottom: 0.4em solid #5e5a4c;
  }
}
@media screen and (max-width: 950px) and (max-width: 421px) {
  /* line 44, ../sass/helpers/_mixins.scss */
  .menu-header:before {
    top: 0.65em;
  }
}
@media screen and (max-width: 950px) {
  /* line 424, ../sass/base/_header.scss */
  .menu-header ul {
    display: block;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
    -moz-transition: max-height 0.4s cubic-bezier(0.5, 0, 0.5, 1.2);
    -o-transition: max-height 0.4s cubic-bezier(0.5, 0, 0.5, 1.2);
    -webkit-transition: max-height 0.4s cubic-bezier(0.5, 0, 0.5, 1.2);
    transition: max-height 0.4s cubic-bezier(0.5, 0, 0.5, 1.2);
  }
  /* line 435, ../sass/base/_header.scss */
  .menu-header ul.visible {
    max-height: 28em;
  }
  /* line 440, ../sass/base/_header.scss */
  .menu-header li {
    display: block;
    margin: 1em auto;
  }
  /* line 444, ../sass/base/_header.scss */
  .menu-header li.home-link {
    content: "";
    display: block;
    margin: 1em auto 0;
    height: 3em;
    width: 6em;
    background: url("../img/header-logo-small.svg") center no-repeat;
    background-size: 100%;
  }
  /* line 455, ../sass/base/_header.scss */
  .menu-header li.phone-link {
    display: block;
    font-weight: bold;
  }
  /* line 459, ../sass/base/_header.scss */
  .menu-header li.phone-link:before {
    content: "";
    display: block;
    width: 75%;
    margin: 0 auto;
    height: 0.5em;
    padding: 0 0 0.5em 0;
    background: url("../img/accent-mobile-header-nav.png") center no-repeat;
    background-size: 100%;
  }
  /* line 470, ../sass/base/_header.scss */
  .menu-header li.phone-link > a {
    display: inline-block;
  }

  /* line 477, ../sass/base/_header.scss */
  .sub-header {
    padding: 2em 1em;
  }
  /* line 484, ../sass/base/_header.scss */
  .sub-header .container-sub-header-right .container-hours .hours {
    font-size: 1.125em;
  }
}
/*
Base Page
*/
/* line 7, ../sass/base/_page.scss */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: table;
  min-height: 33em;
  width: 100%;
}

/* line 17, ../sass/base/_page.scss */
.section-sub-hero {
  background-position: left top;
  background-size: 40%;
  background-repeat: no-repeat;
  background-image: url("../img/bg-our-restaurant.png");
  font-family: "Contra", serif;
}
/* line 24, ../sass/base/_page.scss */
.section-sub-hero .page-title {
  background-position: center;
  background-size: auto 3em;
  background-repeat: no-repeat;
  color: transparent;
  height: 5em;
}

/* line 29, ../sass/base/_page.scss */
a {
  color: inherit;
}

/* line 3, ../sass/base/_section-subscribe.scss */
.section-subscribe {
  display: block;
  background-color: #fff;
  color: #5e5a4c;
  padding: 5em 5%;
}
/* line 9, ../sass/base/_section-subscribe.scss */
.section-subscribe .container-content {
  background: url("../img/bg-subscribe-left-v2.png") left center no-repeat, url("../img/bg-subscribe-right-v2.png") right center no-repeat;
  -moz-background-size: auto 100%;
  -o-background-size: auto 100%;
  -webkit-background-size: auto 100%;
  background-size: auto 100%;
  display: block;
  max-width: 45em;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2.5em 0;
  position: relative;
}
@media (max-width: 500px) {
  /* line 9, ../sass/base/_section-subscribe.scss */
  .section-subscribe .container-content {
    -moz-background-size: 25% 100%;
    -o-background-size: 25% 100%;
    -webkit-background-size: 25% 100%;
    background-size: 25% 100%;
  }
}
/* line 26, ../sass/base/_section-subscribe.scss */
.section-subscribe .container-content h1 {
  position: absolute;
  top: -0.5em;
  left: 0;
  right: 0;
  margin: 0 auto;
  vertical-align: top;
  width: 50%;
  line-height: 1em;
}
@media (max-width: 773px) {
  /* line 26, ../sass/base/_section-subscribe.scss */
  .section-subscribe .container-content h1 {
    top: -1em;
  }
}
@media (max-width: 325px) {
  /* line 26, ../sass/base/_section-subscribe.scss */
  .section-subscribe .container-content h1 {
    top: -1em;
    font-size: 1.9em;
  }
}
/* line 47, ../sass/base/_section-subscribe.scss */
.section-subscribe .container-content .wrapper-form input {
  display: block;
  font-family: "raleway", sans-serif;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  width: 75%;
  margin: 0.5em auto;
}
/* line 55, ../sass/base/_section-subscribe.scss */
.section-subscribe .container-content .wrapper-form input[type='text'], .section-subscribe .container-content .wrapper-form input[type='email'] {
  display: block;
  padding: 0.75em 0;
  max-width: 20em;
  text-align: center;
  border: 1px solid #5e5a4c;
}
/* line 61, ../../../../../../../../var/lib/gems/1.9.1/gems/compass-core-1.1.0.alpha.3/stylesheets/compass/css3/_user-interface.scss */
.section-subscribe .container-content .wrapper-form input[type='text']:-moz-placeholder, .section-subscribe .container-content .wrapper-form input[type='email']:-moz-placeholder {
  text-transform: uppercase;
}
/* line 64, ../../../../../../../../var/lib/gems/1.9.1/gems/compass-core-1.1.0.alpha.3/stylesheets/compass/css3/_user-interface.scss */
.section-subscribe .container-content .wrapper-form input[type='text']::-moz-placeholder, .section-subscribe .container-content .wrapper-form input[type='email']::-moz-placeholder {
  text-transform: uppercase;
}
/* line 67, ../../../../../../../../var/lib/gems/1.9.1/gems/compass-core-1.1.0.alpha.3/stylesheets/compass/css3/_user-interface.scss */
.section-subscribe .container-content .wrapper-form input[type='text']:-ms-input-placeholder, .section-subscribe .container-content .wrapper-form input[type='email']:-ms-input-placeholder {
  text-transform: uppercase;
}
/* line 56, ../../../../../../../../var/lib/gems/1.9.1/gems/compass-core-1.1.0.alpha.3/stylesheets/compass/css3/_user-interface.scss */
.section-subscribe .container-content .wrapper-form input[type='text']::-webkit-input-placeholder, .section-subscribe .container-content .wrapper-form input[type='email']::-webkit-input-placeholder {
  text-transform: uppercase;
}
/* line 68, ../sass/base/_section-subscribe.scss */
.section-subscribe .container-content .wrapper-form input[type='submit'] {
  background-color: #5e5a4c;
  text-transform: uppercase;
  padding: 0.5em 0;
  max-width: 10em;
  color: #fff;
  position: absolute;
  bottom: -1.5em;
  left: 0;
  right: 0;
  border: #5e5a4c solid 1px;
  -moz-transition: background-color 0.4s ease, color 0.4s ease;
  -o-transition: background-color 0.4s ease, color 0.4s ease;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease;
}
/* line 81, ../sass/base/_section-subscribe.scss */
.section-subscribe .container-content .wrapper-form input[type='submit']:hover {
  background-color: #fff;
  color: #5e5a4c;
}

@font-face {
  font-family: 'Contra';
  src: url("../fonts/contra-webfont.eot");
  src: url("../fonts/contra-webfont.eot#iefix") format("embedded-opentype"), url("../fonts/contra-webfont.woff") format("woff"), url("../fonts/contra-webfont.ttf") format("truetype"), url("../fonts/contra-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Contra';
  src: url("../fonts/contra-italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'raleway';
  src: url("../fonts/Raleway-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'raleway';
  src: url("../fonts/Raleway-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Allura';
  src: url("../fonts/Allura-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/*
404
*/
/* line 8, ../sass/pages/_404.scss */
.container-404 {
  display: table;
  min-height: 40em;
  text-align: center;
  width: 100%;
}
/* line 14, ../sass/pages/_404.scss */
.container-404 .wrap-404 {
  display: table-cell;
  vertical-align: middle;
}

/*
About Us
*/
/* line 12, ../sass/pages/_about.scss */
body.page-about-us .page-title {
  background-image: url("../img/titles/About-Us-Title.png");
}
/* line 16, ../sass/pages/_about.scss */
body.page-about-us .section-sub-hero {
  padding-top: 5em;
  padding-bottom: 3em;
}
/* line 20, ../sass/pages/_about.scss */
body.page-about-us .section-sub-hero .container-content {
  padding: 3em 2em 0 2em;
  display: block;
  margin: 0 auto;
  max-width: 58.125em;
}
/* line 27, ../sass/pages/_about.scss */
body.page-about-us .section-sub-hero .container-content h1, body.page-about-us .section-sub-hero .container-content h2, body.page-about-us .section-sub-hero .container-content h3 {
  font-family: "Contra", serif;
  text-align: center;
  margin: 0;
}
/* line 33, ../sass/pages/_about.scss */
body.page-about-us .section-sub-hero .container-content h1:first-child, body.page-about-us .section-sub-hero .container-content h2:first-child, body.page-about-us .section-sub-hero .container-content h3:first-child {
  margin-bottom: 1em;
  font-style: italic;
}
/* line 39, ../sass/pages/_about.scss */
body.page-about-us .section-sub-hero .container-content p {
  font-size: 1.125em;
  font-family: "Contra", serif;
  text-align: center;
  color: #5e5a4c;
}
/* line 48, ../sass/pages/_about.scss */
body.page-about-us .container-mid-section {
  display: block;
  width: 100%;
  height: 30em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 480px) {
  /* line 48, ../sass/pages/_about.scss */
  body.page-about-us .container-mid-section {
    background-attachment: local;
  }
}
/* line 62, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs {
  display: block;
  color: #5e5a4c;
}
/* line 66, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .section-title {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 3em;
  display: block;
  height: 5em;
  margin: 3em auto;
  background-image: url("../img/titles/our-team-title.png");
}
/* line 72, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef {
  overflow: hidden;
  width: 100%;
  display: block;
  padding: 2em 0;
}
/* line 86, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef.align-left {
  background-color: #e4dfc7;
}
/* line 89, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef.align-left .container-photo {
  float: left;
  margin-right: 4em;
}
@media (max-width: 900px) {
  /* line 89, ../sass/pages/_about.scss */
  body.page-about-us .container-about-us-chefs .container-single-chef.align-left .container-photo {
    float: none;
    margin: 0 auto  1em auto;
  }
}
/* line 99, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef.align-right .container-photo {
  float: right;
  margin-left: 4em;
}
@media (max-width: 900px) {
  /* line 99, ../sass/pages/_about.scss */
  body.page-about-us .container-about-us-chefs .container-single-chef.align-right .container-photo {
    float: none;
    margin: 0 auto  1em auto;
  }
}
/* line 107, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef p {
  line-height: 1.5em;
}
/* line 111, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef .centered-wrapper {
  max-width: 1060px;
  padding: 0 2em;
}
/* line 118, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef .container-photo {
  -moz-transition: border-radius, width;
  -o-transition: border-radius, width;
  -webkit-transition: border-radius, width;
  transition: border-radius, width;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -moz-transition-timing-function: cubic-bezier(0.5, 0, 0.5, 1.2), ease;
  -o-transition-timing-function: cubic-bezier(0.5, 0, 0.5, 1.2), ease;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.5, 1.2), ease;
  transition-timing-function: cubic-bezier(0.5, 0, 0.5, 1.2), ease;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 25em;
  height: 25em;
  overflow: hidden;
  display: block;
}
/* line 129, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef .container-photo .photo {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
/* line 143, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef .container-content {
  display: table-cell;
  vertical-align: middle;
  height: 25em;
}
/* line 148, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef .container-content h1, body.page-about-us .container-about-us-chefs .container-single-chef .container-content h3 {
  display: inline;
  font-weight: normal;
}
/* line 153, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef .container-content h3 {
  font-style: italic;
}
/* line 157, ../sass/pages/_about.scss */
body.page-about-us .container-about-us-chefs .container-single-chef .container-content p {
  vertical-align: middle;
}
@media (max-width: 900px) {
  /* line 72, ../sass/pages/_about.scss */
  body.page-about-us .container-about-us-chefs .container-single-chef {
    padding-top: 0;
  }
  /* line 166, ../sass/pages/_about.scss */
  body.page-about-us .container-about-us-chefs .container-single-chef .centered-wrapper {
    padding: 0;
  }
  /* line 170, ../sass/pages/_about.scss */
  body.page-about-us .container-about-us-chefs .container-single-chef .container-photo {
    margin: 0 auto;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    width: 100%;
  }
  /* line 181, ../sass/pages/_about.scss */
  body.page-about-us .container-about-us-chefs .container-single-chef .container-content {
    display: block;
    height: auto;
    padding: 0 2em;
  }
}

/*
Blog
*/
/* line 15, ../sass/pages/_blog.scss */
.page-blog .page-title, .page-template-page-blog-php .page-title, body.category .page-title, body.search .page-title, body.archive .page-title {
  padding: 7em 0;
  background-size: auto 4em;
}
/* line 20, ../sass/pages/_blog.scss */
.page-blog .container-blog-top-bar, .page-template-page-blog-php .container-blog-top-bar, body.category .container-blog-top-bar, body.search .container-blog-top-bar, body.archive .container-blog-top-bar {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1em;
  overflow: hidden;
  font-family: "raleway", sans-serif;
}
/* line 26, ../sass/pages/_blog.scss */
.page-blog .container-blog-top-bar .container-blog-top-bar-content, .page-template-page-blog-php .container-blog-top-bar .container-blog-top-bar-content, body.category .container-blog-top-bar .container-blog-top-bar-content, body.search .container-blog-top-bar .container-blog-top-bar-content, body.archive .container-blog-top-bar .container-blog-top-bar-content {
  max-width: 65em;
  margin: 0 auto;
}
@media (max-width: 580px) {
  /* line 31, ../sass/pages/_blog.scss */
  .page-blog .container-blog-top-bar .container-blog-top-bar-content .container-blog-search, .page-blog .container-blog-top-bar .container-blog-top-bar-content #link-show-categories, .page-template-page-blog-php .container-blog-top-bar .container-blog-top-bar-content .container-blog-search, .page-template-page-blog-php .container-blog-top-bar .container-blog-top-bar-content #link-show-categories, body.category .container-blog-top-bar .container-blog-top-bar-content .container-blog-search, body.category .container-blog-top-bar .container-blog-top-bar-content #link-show-categories, body.search .container-blog-top-bar .container-blog-top-bar-content .container-blog-search, body.search .container-blog-top-bar .container-blog-top-bar-content #link-show-categories, body.archive .container-blog-top-bar .container-blog-top-bar-content .container-blog-search, body.archive .container-blog-top-bar .container-blog-top-bar-content #link-show-categories {
    width: 100%;
  }
  /* line 35, ../sass/pages/_blog.scss */
  .page-blog .container-blog-top-bar .container-blog-top-bar-content #link-show-categories, .page-template-page-blog-php .container-blog-top-bar .container-blog-top-bar-content #link-show-categories, body.category .container-blog-top-bar .container-blog-top-bar-content #link-show-categories, body.search .container-blog-top-bar .container-blog-top-bar-content #link-show-categories, body.archive .container-blog-top-bar .container-blog-top-bar-content #link-show-categories {
    width: 92%;
    padding: 1em 0 0 8%;
  }
  /* line 39, ../sass/pages/_blog.scss */
  .page-blog .container-blog-top-bar .container-blog-top-bar-content #link-show-categories:before, .page-template-page-blog-php .container-blog-top-bar .container-blog-top-bar-content #link-show-categories:before, body.category .container-blog-top-bar .container-blog-top-bar-content #link-show-categories:before, body.search .container-blog-top-bar .container-blog-top-bar-content #link-show-categories:before, body.archive .container-blog-top-bar .container-blog-top-bar-content #link-show-categories:before {
    left: 0;
    top: 1em;
  }
}
/* line 47, ../sass/pages/_blog.scss */
.page-blog .container-blog-search, .page-template-page-blog-php .container-blog-search, body.category .container-blog-search, body.search .container-blog-search, body.archive .container-blog-search {
  display: inline-block;
  min-width: 25em;
  max-width: 35em;
  width: 50%;
}
/* line 53, ../sass/pages/_blog.scss */
.page-blog .container-blog-search input[type='text'], .page-template-page-blog-php .container-blog-search input[type='text'], body.category .container-blog-search input[type='text'], body.search .container-blog-search input[type='text'], body.archive .container-blog-search input[type='text'] {
  padding: 0.5em;
  border: none;
}
/* line 58, ../sass/pages/_blog.scss */
.page-blog .container-blog-search input[type='submit'], .page-template-page-blog-php .container-blog-search input[type='submit'], body.category .container-blog-search input[type='submit'], body.search .container-blog-search input[type='submit'], body.archive .container-blog-search input[type='submit'] {
  border: none;
  color: #f5f1e5;
  background-color: #5e5a4c;
  text-transform: uppercase;
  max-width: 7em;
  width: 100%;
  padding: 0.5em 0;
}
/* line 69, ../sass/pages/_blog.scss */
.page-blog #link-show-categories, .page-template-page-blog-php #link-show-categories, body.category #link-show-categories, body.search #link-show-categories, body.archive #link-show-categories {
  position: relative;
  color: #5e5a4c;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0.5em;
  float: right;
  cursor: pointer;
  font-family: "raleway", sans-serif;
  position: relative;
}
/* line 44, ../sass/helpers/_mixins.scss */
.page-blog #link-show-categories:before, .page-template-page-blog-php #link-show-categories:before, body.category #link-show-categories:before, body.search #link-show-categories:before, body.archive #link-show-categories:before {
  content: "";
  position: absolute;
  cursor: pointer;
  left: -3em;
  top: 0;
  width: 1.5em;
  height: 0.2em;
  border-top: 0.6em double #5e5a4c;
  border-bottom: 0.2em solid #5e5a4c;
}
/* line 85, ../sass/pages/_blog.scss */
.page-blog .container-blog-categories, .page-template-page-blog-php .container-blog-categories, body.category .container-blog-categories, body.search .container-blog-categories, body.archive .container-blog-categories {
  max-height: 0;
  display: block;
  width: 100%;
  text-align: center;
  overflow: hidden;
  -moz-transition: max-height, 0.4s, cubic-bezier(0.5, 0, 0.5, 1.2);
  -o-transition: max-height, 0.4s, cubic-bezier(0.5, 0, 0.5, 1.2);
  -webkit-transition: max-height, 0.4s, cubic-bezier(0.5, 0, 0.5, 1.2);
  transition: max-height, 0.4s, cubic-bezier(0.5, 0, 0.5, 1.2);
}
/* line 93, ../sass/pages/_blog.scss */
.page-blog .container-blog-categories.toggled, .page-template-page-blog-php .container-blog-categories.toggled, body.category .container-blog-categories.toggled, body.search .container-blog-categories.toggled, body.archive .container-blog-categories.toggled {
  max-height: 3em;
  padding: 1em 0;
}
/* line 98, ../sass/pages/_blog.scss */
.page-blog .container-blog-categories ul, .page-template-page-blog-php .container-blog-categories ul, body.category .container-blog-categories ul, body.search .container-blog-categories ul, body.archive .container-blog-categories ul {
  margin: 0;
  padding: 0.5em 0 0 0;
}
/* line 103, ../sass/pages/_blog.scss */
.page-blog .container-blog-categories li, .page-template-page-blog-php .container-blog-categories li, body.category .container-blog-categories li, body.search .container-blog-categories li, body.archive .container-blog-categories li {
  display: inline-block;
}
/* line 109, ../sass/pages/_blog.scss */
.page-blog .container-blog-categories li.current-category a, .page-template-page-blog-php .container-blog-categories li.current-category a, body.category .container-blog-categories li.current-category a, body.search .container-blog-categories li.current-category a, body.archive .container-blog-categories li.current-category a {
  font-weight: bold;
}
/* line 114, ../sass/pages/_blog.scss */
.page-blog .container-blog-categories li a, .page-template-page-blog-php .container-blog-categories li a, body.category .container-blog-categories li a, body.search .container-blog-categories li a, body.archive .container-blog-categories li a {
  text-decoration: none;
  color: #5e5a4c;
  -moz-transition: color 0.4s ease, background-color 0.4s ease;
  -o-transition: color 0.4s ease, background-color 0.4s ease;
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
  padding: 1em 1.5em;
}
/* line 123, ../sass/pages/_blog.scss */
.page-blog .container-blog-categories li a:hover, .page-template-page-blog-php .container-blog-categories li a:hover, body.category .container-blog-categories li a:hover, body.search .container-blog-categories li a:hover, body.archive .container-blog-categories li a:hover {
  color: #000;
  background-color: #bdbf8b;
  margin: 0;
}
/* line 133, ../sass/pages/_blog.scss */
.page-blog .container-blog-post-section, .page-template-page-blog-php .container-blog-post-section, body.category .container-blog-post-section, body.search .container-blog-post-section, body.archive .container-blog-post-section {
  padding: 0 2em;
  margin: 2em auto;
}
/* line 138, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content, .page-template-page-blog-php .container-post-preview-content, body.category .container-post-preview-content, body.search .container-post-preview-content, body.archive .container-post-preview-content {
  overflow: hidden;
}
/* line 143, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content.orientation-rtl .container-image, .page-template-page-blog-php .container-post-preview-content.orientation-rtl .container-image, body.category .container-post-preview-content.orientation-rtl .container-image, body.search .container-post-preview-content.orientation-rtl .container-image, body.archive .container-post-preview-content.orientation-rtl .container-image {
  float: right;
}
/* line 147, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content.orientation-rtl .container-content, .page-template-page-blog-php .container-post-preview-content.orientation-rtl .container-content, body.category .container-post-preview-content.orientation-rtl .container-content, body.search .container-post-preview-content.orientation-rtl .container-content, body.archive .container-post-preview-content.orientation-rtl .container-content {
  float: left;
}
/* line 154, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content.orientation-ltr .container-image, .page-template-page-blog-php .container-post-preview-content.orientation-ltr .container-image, body.category .container-post-preview-content.orientation-ltr .container-image, body.search .container-post-preview-content.orientation-ltr .container-image, body.archive .container-post-preview-content.orientation-ltr .container-image {
  float: left;
}
/* line 158, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content.orientation-ltr .container-content, .page-template-page-blog-php .container-post-preview-content.orientation-ltr .container-content, body.category .container-post-preview-content.orientation-ltr .container-content, body.search .container-post-preview-content.orientation-ltr .container-content, body.archive .container-post-preview-content.orientation-ltr .container-content {
  float: right;
}
/* line 165, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content, .page-template-page-blog-php .container-post-preview-content, body.category .container-post-preview-content, body.search .container-post-preview-content, body.archive .container-post-preview-content {
  max-width: 65em;
  margin: 2em auto;
  text-align: center;
}
/* line 170, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content > *, .page-template-page-blog-php .container-post-preview-content > *, body.category .container-post-preview-content > *, body.search .container-post-preview-content > *, body.archive .container-post-preview-content > * {
  vertical-align: middle;
}
/* line 174, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .container-image, .page-template-page-blog-php .container-post-preview-content .container-image, body.category .container-post-preview-content .container-image, body.search .container-post-preview-content .container-image, body.archive .container-post-preview-content .container-image {
  display: inline-block;
  position: relative;
  max-width: 25em;
  width: 40%;
  height: 25em;
  margin: 2.5em 2.5%;
}
/* line 184, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .container-image .image-placeholder, .page-template-page-blog-php .container-post-preview-content .container-image .image-placeholder, body.category .container-post-preview-content .container-image .image-placeholder, body.search .container-post-preview-content .container-image .image-placeholder, body.archive .container-post-preview-content .container-image .image-placeholder {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  display: inline-block;
  -moz-box-shadow: 0 0 10px -1px #000 inset;
  -webkit-box-shadow: 0 0 10px -1px #000 inset;
  box-shadow: 0 0 10px -1px #000 inset;
}
@media (max-width: 950px) {
  /* line 184, ../sass/pages/_blog.scss */
  .page-blog .container-post-preview-content .container-image .image-placeholder, .page-template-page-blog-php .container-post-preview-content .container-image .image-placeholder, body.category .container-post-preview-content .container-image .image-placeholder, body.search .container-post-preview-content .container-image .image-placeholder, body.archive .container-post-preview-content .container-image .image-placeholder {
    margin: 15% auto;
    height: 70%;
  }
}
/* line 198, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .container-image .image-frame, .page-template-page-blog-php .container-post-preview-content .container-image .image-frame, body.category .container-post-preview-content .container-image .image-frame, body.search .container-post-preview-content .container-image .image-frame, body.archive .container-post-preview-content .container-image .image-frame {
  background: url("../img/bg-blog-image.png") center no-repeat;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* line 207, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .container-image img, .page-template-page-blog-php .container-post-preview-content .container-image img, body.category .container-post-preview-content .container-image img, body.search .container-post-preview-content .container-image img, body.archive .container-post-preview-content .container-image img {
  height: 58%;
  display: inline-block;
  position: relative;
  z-index: 2;
  margin: 21% 0;
  -moz-box-shadow: 0 0 6px -1px #000 inset;
  -webkit-box-shadow: 0 0 6px -1px #000 inset;
  box-shadow: 0 0 6px -1px #000 inset;
}
/* line 217, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .container-content, .page-template-page-blog-php .container-post-preview-content .container-content, body.category .container-post-preview-content .container-content, body.search .container-post-preview-content .container-content, body.archive .container-post-preview-content .container-content {
  display: inline-block;
  text-align: left;
  width: 55%;
}
/* line 222, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .container-content a, .page-template-page-blog-php .container-post-preview-content .container-content a, body.category .container-post-preview-content .container-content a, body.search .container-post-preview-content .container-content a, body.archive .container-post-preview-content .container-content a {
  text-decoration: none;
}
/* line 226, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .container-content .title, .page-template-page-blog-php .container-post-preview-content .container-content .title, body.category .container-post-preview-content .container-content .title, body.search .container-post-preview-content .container-content .title, body.archive .container-post-preview-content .container-content .title {
  font-size: 2.1875em;
  color: #5e5a4c;
}
/* line 231, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .container-content .subtitle, .page-template-page-blog-php .container-post-preview-content .container-content .subtitle, body.category .container-post-preview-content .container-content .subtitle, body.search .container-post-preview-content .container-content .subtitle, body.archive .container-post-preview-content .container-content .subtitle {
  font-style: italic;
  font-size: 1.25em;
  color: #5e5a4c;
}
/* line 237, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .container-content .post-preview-text, .page-template-page-blog-php .container-post-preview-content .container-content .post-preview-text, body.category .container-post-preview-content .container-content .post-preview-text, body.search .container-post-preview-content .container-content .post-preview-text, body.archive .container-post-preview-content .container-content .post-preview-text {
  font-size: 1.5em;
  color: #5e5a4c;
}
/* line 243, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .link-read-more, .page-template-page-blog-php .container-post-preview-content .link-read-more, body.category .container-post-preview-content .link-read-more, body.search .container-post-preview-content .link-read-more, body.archive .container-post-preview-content .link-read-more {
  font-family: "raleway", sans-serif;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: 9em;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #5e5a4c;
  background-color: #f5f1e5;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
}
/* line 33, ../sass/helpers/_mixins.scss */
.page-blog .container-post-preview-content .link-read-more:hover, .page-template-page-blog-php .container-post-preview-content .link-read-more:hover, body.category .container-post-preview-content .link-read-more:hover, body.search .container-post-preview-content .link-read-more:hover, body.archive .container-post-preview-content .link-read-more:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 261, ../sass/pages/_blog.scss */
.page-blog .container-post-preview-content .link-read-more:hover, .page-template-page-blog-php .container-post-preview-content .link-read-more:hover, body.category .container-post-preview-content .link-read-more:hover, body.search .container-post-preview-content .link-read-more:hover, body.archive .container-post-preview-content .link-read-more:hover {
  color: #fff;
  background-color: #5e5a4c;
}
@media (max-width: 950px) {
  /* line 165, ../sass/pages/_blog.scss */
  .page-blog .container-post-preview-content, .page-template-page-blog-php .container-post-preview-content, body.category .container-post-preview-content, body.search .container-post-preview-content, body.archive .container-post-preview-content {
    text-align: center;
  }
  /* line 271, ../sass/pages/_blog.scss */
  .page-blog .container-post-preview-content.orientation-ltr .container-image, .page-blog .container-post-preview-content.orientation-rtl .container-image, .page-template-page-blog-php .container-post-preview-content.orientation-ltr .container-image, .page-template-page-blog-php .container-post-preview-content.orientation-rtl .container-image, body.category .container-post-preview-content.orientation-ltr .container-image, body.category .container-post-preview-content.orientation-rtl .container-image, body.search .container-post-preview-content.orientation-ltr .container-image, body.search .container-post-preview-content.orientation-rtl .container-image, body.archive .container-post-preview-content.orientation-ltr .container-image, body.archive .container-post-preview-content.orientation-rtl .container-image {
    float: none;
    width: 100%;
  }
  /* line 277, ../sass/pages/_blog.scss */
  .page-blog .container-post-preview-content .container-content, .page-template-page-blog-php .container-post-preview-content .container-content, body.category .container-post-preview-content .container-content, body.search .container-post-preview-content .container-content, body.archive .container-post-preview-content .container-content {
    float: none;
    width: 94%;
    padding: 0 3%;
  }
}
/* line 284, ../sass/pages/_blog.scss */
.page-blog .container-blog-load-more, .page-template-page-blog-php .container-blog-load-more, body.category .container-blog-load-more, body.search .container-blog-load-more, body.archive .container-blog-load-more {
  display: block;
  text-align: center;
  padding: 2em 0;
  -moz-transition: margin 0.4s ease;
  -o-transition: margin 0.4s ease;
  -webkit-transition: margin 0.4s ease;
  transition: margin 0.4s ease;
}
/* line 290, ../sass/pages/_blog.scss */
.page-blog .container-blog-load-more a, .page-template-page-blog-php .container-blog-load-more a, body.category .container-blog-load-more a, body.search .container-blog-load-more a, body.archive .container-blog-load-more a {
  font-family: "raleway", sans-serif;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: 9em;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #5e5a4c;
  background-color: #f5f1e5;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
  position: relative;
}
/* line 33, ../sass/helpers/_mixins.scss */
.page-blog .container-blog-load-more a:hover, .page-template-page-blog-php .container-blog-load-more a:hover, body.category .container-blog-load-more a:hover, body.search .container-blog-load-more a:hover, body.archive .container-blog-load-more a:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 294, ../sass/pages/_blog.scss */
.page-blog .container-blog-load-more a:hover, .page-template-page-blog-php .container-blog-load-more a:hover, body.category .container-blog-load-more a:hover, body.search .container-blog-load-more a:hover, body.archive .container-blog-load-more a:hover {
  color: #fff;
  background-color: #5e5a4c;
}
/* line 299, ../sass/pages/_blog.scss */
.page-blog .container-blog-load-more a.inactive, .page-template-page-blog-php .container-blog-load-more a.inactive, body.category .container-blog-load-more a.inactive, body.search .container-blog-load-more a.inactive, body.archive .container-blog-load-more a.inactive {
  background-color: #aeaeae;
  cursor: default;
}
/* line 302, ../sass/pages/_blog.scss */
.page-blog .container-blog-load-more a.inactive:hover, .page-template-page-blog-php .container-blog-load-more a.inactive:hover, body.category .container-blog-load-more a.inactive:hover, body.search .container-blog-load-more a.inactive:hover, body.archive .container-blog-load-more a.inactive:hover {
  color: #5e5a4c;
  background-color: #aeaeae;
}
/* line 308, ../sass/pages/_blog.scss */
.page-blog .container-blog-load-more a.loading, .page-template-page-blog-php .container-blog-load-more a.loading, body.category .container-blog-load-more a.loading, body.search .container-blog-load-more a.loading, body.archive .container-blog-load-more a.loading {
  margin-bottom: 2em;
}
/* line 311, ../sass/pages/_blog.scss */
.page-blog .container-blog-load-more a.loading:before, .page-template-page-blog-php .container-blog-load-more a.loading:before, body.category .container-blog-load-more a.loading:before, body.search .container-blog-load-more a.loading:before, body.archive .container-blog-load-more a.loading:before {
  content: url("../img/ajax-loader.gif");
  position: absolute;
  bottom: -3em;
  left: 0;
  right: 0;
}

/*
Contact Us
*/
/* line 9, ../sass/pages/_contactus.scss */
.ie8-disclaimer {
  display: none;
}

/* line 15, ../sass/pages/_contactus.scss */
.container-contactus .container-hero-contact-us {
  display: block;
  height: 33em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* line 23, ../sass/pages/_contactus.scss */
.container-contactus .container-section-main {
  text-align: center;
  padding: 5em 5% 3em 5%;
  background: url("../img/bg-our-restaurant.png") #f5f1e5 top left no-repeat;
  background-size: 40%;
}
/* line 29, ../sass/pages/_contactus.scss */
.container-contactus .container-section-main .section-main-header {
  background-position: center;
  background-size: auto 3em;
  background-repeat: no-repeat;
  color: transparent;
  height: 5em;
  display: block;
  width: 100%;
  margin-bottom: 3em;
}
/* line 36, ../sass/pages/_contactus.scss */
.container-contactus .container-section-main p {
  display: block;
  margin: 0 auto;
  max-width: 58.125em;
  line-height: 2em;
  color: #5e5a4c;
  font-family: "Contra", serif;
}
/* line 46, ../sass/pages/_contactus.scss */
.container-contactus .container-form {
  background-color: #e2ddc5;
  padding: 3em 1em;
  display: block;
  text-align: center;
}
/* line 53, ../sass/pages/_contactus.scss */
.container-contactus .wpcf7-form-control-wrap {
  display: block;
  margin: 1em 0;
}
/* line 57, ../sass/pages/_contactus.scss */
.container-contactus .wpcf7-form-control-wrap input, .container-contactus .wpcf7-form-control-wrap textarea {
  border: none;
  padding: 0.5em;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-family: "raleway", sans-serif;
  font-size: 1.1875em;
  width: 100%;
}
/* line 61, ../../../../../../../../var/lib/gems/1.9.1/gems/compass-core-1.1.0.alpha.3/stylesheets/compass/css3/_user-interface.scss */
.container-contactus .wpcf7-form-control-wrap input:-moz-placeholder, .container-contactus .wpcf7-form-control-wrap textarea:-moz-placeholder {
  text-transform: uppercase;
}
/* line 64, ../../../../../../../../var/lib/gems/1.9.1/gems/compass-core-1.1.0.alpha.3/stylesheets/compass/css3/_user-interface.scss */
.container-contactus .wpcf7-form-control-wrap input::-moz-placeholder, .container-contactus .wpcf7-form-control-wrap textarea::-moz-placeholder {
  text-transform: uppercase;
}
/* line 67, ../../../../../../../../var/lib/gems/1.9.1/gems/compass-core-1.1.0.alpha.3/stylesheets/compass/css3/_user-interface.scss */
.container-contactus .wpcf7-form-control-wrap input:-ms-input-placeholder, .container-contactus .wpcf7-form-control-wrap textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
/* line 56, ../../../../../../../../var/lib/gems/1.9.1/gems/compass-core-1.1.0.alpha.3/stylesheets/compass/css3/_user-interface.scss */
.container-contactus .wpcf7-form-control-wrap input::-webkit-input-placeholder, .container-contactus .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
/* line 71, ../sass/pages/_contactus.scss */
.container-contactus .wpcf7-form-control-wrap input, .container-contactus .wpcf7-form-control-wrap textarea {
  max-width: 25em;
}
/* line 75, ../sass/pages/_contactus.scss */
.container-contactus .wpcf7-form-control-wrap textarea {
  height: 8.5em;
}
/* line 81, ../sass/pages/_contactus.scss */
.container-contactus input[type="submit"] {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: auto;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #fff;
  background-color: #5e5a4c;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
  font-family: "raleway", sans-serif;
  text-align: center;
  max-width: 20em;
  width: 90%;
  display: block;
  font-size: 1.125em;
  font-weight: normal;
  margin: 2em auto 0;
}
/* line 33, ../sass/helpers/_mixins.scss */
.container-contactus input[type="submit"]:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 94, ../sass/pages/_contactus.scss */
.container-contactus .container-map, .container-contactus #container-map {
  display: block;
  height: 33em;
  width: 100%;
}
@media screen and (max-width: 640px) {
  /* line 104, ../sass/pages/_contactus.scss */
  .container-contactus .wpcf7-form-control-wrap {
    width: 100%;
  }
  /* line 107, ../sass/pages/_contactus.scss */
  .container-contactus .wpcf7-form-control-wrap input, .container-contactus .wpcf7-form-control-wrap textarea {
    margin: 0 auto;
    max-width: 90%;
    display: block;
  }
  /* line 116, ../sass/pages/_contactus.scss */
  .container-contactus input[type="submit"] {
    margin: 2em auto 0 auto;
  }
}

/*
Home
*/
/* line 11, ../sass/pages/_home.scss */
.container-home .container-section-hero {
  display: block;
  height: 30em;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
@media (max-width: 480px) {
  /* line 11, ../sass/pages/_home.scss */
  .container-home .container-section-hero {
    background-attachment: local;
  }
}

/* line 29, ../sass/pages/_home.scss */
.flexslider .flex-next,
.flexslider .flex-prev {
  width: auto;
  height: auto;
}
/* line 34, ../sass/pages/_home.scss */
.flexslider .flex-next:before,
.flexslider .flex-prev:before {
  content: '' !important;
  display: inline-block;
  font-size: 1em;
  height: 2em;
  width: 5.625em;
}
/* line 43, ../sass/pages/_home.scss */
.flexslider .flex-prev {
  opacity: 0.7;
  left: 2em;
}
/* line 47, ../sass/pages/_home.scss */
.flexslider .flex-prev:before {
  background: url("../img/left-arrow.png") center no-repeat;
  background-size: auto 100%;
}
/* line 53, ../sass/pages/_home.scss */
.flexslider .flex-next {
  opacity: 0.7;
  right: 2em;
}
/* line 57, ../sass/pages/_home.scss */
.flexslider .flex-next:before {
  background: url("../img/right-arrow.png") center no-repeat;
  background-size: auto 100%;
}

/* line 64, ../sass/pages/_home.scss */
.container-section-our-restaurant {
  text-align: center;
  padding: 5em 0;
}
/* line 68, ../sass/pages/_home.scss */
.container-section-our-restaurant p {
  max-width: 48.94737em;
  line-height: 1.5em;
  font-size: 1.1875em;
  font-family: "Contra", serif;
  margin: 2em auto;
  padding: 0 1em;
  color: #5e5a4c;
}
/* line 78, ../sass/pages/_home.scss */
.container-section-our-restaurant .button {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: 15em;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #000;
  background-color: #f5f1e5;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
  font-family: "raleway", sans-serif;
  text-transform: uppercase;
}
/* line 33, ../sass/helpers/_mixins.scss */
.container-section-our-restaurant .button:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 82, ../sass/pages/_home.scss */
.container-section-our-restaurant .button:hover {
  color: #5e5a4c;
  background-color: #fff;
}

/* line 88, ../sass/pages/_home.scss */
#container-section-experience {
  padding: 2em 0 0;
  overflow: hidden;
}
/* line 97, ../sass/pages/_home.scss */
#container-section-experience.visible-chefs-table .container-section-experience-content {
  left: 0;
}
/* line 101, ../sass/pages/_home.scss */
#container-section-experience.visible-chefs-table .button.button-chefs-table {
  background-color: #5e5a4c;
  color: #fff;
}
/* line 108, ../sass/pages/_home.scss */
#container-section-experience.visible-dining .container-section-experience-content {
  left: -100%;
}
/* line 112, ../sass/pages/_home.scss */
#container-section-experience.visible-dining .button.button-dining {
  background-color: #5e5a4c;
  color: #fff;
}
/* line 120, ../sass/pages/_home.scss */
#container-section-experience.visible-bar .container-section-experience-content {
  left: -200%;
}
/* line 124, ../sass/pages/_home.scss */
#container-section-experience.visible-bar .button.button-bar {
  background-color: #5e5a4c;
  color: #fff;
}
/* line 132, ../sass/pages/_home.scss */
#container-section-experience .wrapper-slider {
  background: url("../img/mural-100percent.png") #e2ddc5 left bottom no-repeat;
  background-size: auto 100%;
  padding-bottom: 2em;
  overflow: hidden;
}
@media (max-width: 950px) {
  /* line 132, ../sass/pages/_home.scss */
  #container-section-experience .wrapper-slider {
    background: url("../img/mural-50percent.png") #e2ddc5 left bottom no-repeat;
    background-size: auto 75%;
    margin: 0;
  }
}

/* line 147, ../sass/pages/_home.scss */
.container-section-experience-header {
  overflow: hidden;
}
/* line 150, ../sass/pages/_home.scss */
.container-section-experience-header img {
  width: 90em;
  display: block;
  margin: 0 auto;
}
/* line 156, ../sass/pages/_home.scss */
.container-section-experience-header .container-info-buttons {
  display: block;
  width: 100%;
  text-align: center;
  margin: 1em auto;
}
/* line 163, ../sass/pages/_home.scss */
.container-section-experience-header .container-info-buttons .button {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: 17.5em;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #5e5a4c;
  background-color: #e2ddc5;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
  font-family: "raleway", sans-serif;
  margin: 0.5em;
}
/* line 33, ../sass/helpers/_mixins.scss */
.container-section-experience-header .container-info-buttons .button:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 168, ../sass/pages/_home.scss */
.container-section-experience-header .container-info-buttons .button.active {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: 17.5em;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #e2ddc5;
  background-color: #5e5a4c;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
}
/* line 33, ../sass/helpers/_mixins.scss */
.container-section-experience-header .container-info-buttons .button.active:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 174, ../sass/pages/_home.scss */
.container-section-experience-header .section-experience-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 3em;
  display: block;
  height: 5em;
}

/* line 179, ../sass/pages/_home.scss */
.container-section-experience-content {
  overflow: hidden;
  display: block;
  margin: 0 auto;
  width: 300%;
  position: relative;
  left: 0;
  top: 0;
  -moz-transition: left 0.8s ease;
  -o-transition: left 0.8s ease;
  -webkit-transition: left 0.8s ease;
  transition: left 0.8s ease;
}
/* line 193, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section {
  width: 31.3%;
  float: right;
  padding: 1%;
}
/* line 198, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section .sub-section-content {
  max-width: 1280px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}
/* line 205, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section .sub-section-content .gallery-table {
  border: double 7px #5e5a4c;
  background-color: #f5f1e5;
  position: relative;
  text-align: center;
  width: 50%;
  display: block;
  float: left;
  max-width: 37.5em;
  min-height: 26.125em;
  overflow: hidden;
  padding: 0.25em;
}
/* line 218, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section .sub-section-content .gallery-table .top-left, .container-section-experience-content .sub-section .sub-section-content .gallery-table .top-right, .container-section-experience-content .sub-section .sub-section-content .gallery-table .bottom {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 11em;
  text-decoration: none;
  display: inline-block;
}
/* line 227, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section .sub-section-content .gallery-table .top-left, .container-section-experience-content .sub-section .sub-section-content .gallery-table .top-right {
  width: 47.5%;
}
/* line 231, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section .sub-section-content .gallery-table .top-left {
  float: left;
  clear: left;
}
/* line 236, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section .sub-section-content .gallery-table .top-right {
  float: right;
  clear: right;
}
/* line 242, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section .sub-section-content .gallery-table .full {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 253, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section .sub-section-content .gallery-table .bottom {
  clear: both;
  width: 100%;
  display: block;
  margin: 12.5em auto 0;
}
/* line 261, ../sass/pages/_home.scss */
.container-section-experience-content .sub-section .sub-section-content .wrapper-content {
  width: 42%;
  padding: 0 2.5%;
  display: block;
  float: right;
}
/* line 270, ../sass/pages/_home.scss */
.container-section-experience-content .section-title {
  background-position: center;
  background-size: auto 3em;
  background-repeat: no-repeat;
  color: transparent;
  height: 5em;
  background-size: auto 100%;
  height: 6em;
  display: block;
  width: 100%;
  margin: 2em auto;
}
/* line 279, ../sass/pages/_home.scss */
.container-section-experience-content p {
  font-family: "Contra", serif;
  float: right;
  color: #5e5a4c;
  line-height: 2em;
}

@media (max-width: 950px) {
  /* line 297, ../sass/pages/_home.scss */
  .container-section-experience-content .sub-section .sub-section-content .gallery-table {
    width: 80%;
    clear: both;
    float: none;
    margin: 0 auto;
  }
  /* line 304, ../sass/pages/_home.scss */
  .container-section-experience-content .sub-section .sub-section-content .wrapper-content {
    width: 98%;
    clear: both;
    float: none;
    margin: 0 auto;
  }
}
/*
Landing Page
*/
/* line 8, ../sass/pages/_landing.scss */
body.page-landing-page {
  padding-top: 0;
  background-color: #c3c495;
}
/* line 11, ../sass/pages/_landing.scss */
body.page-landing-page header {
  overflow: hidden;
  text-align: center;
  padding: 1em 0 2em;
  margin: 0;
  background-color: #f5f1e5;
  position: static;
  width: 100%;
  display: block;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 22, ../sass/pages/_landing.scss */
body.page-landing-page header .header-logo-img {
  height: 100%;
}
/* line 27, ../sass/pages/_landing.scss */
body.page-landing-page footer {
  overflow: hidden;
  text-align: center;
  padding: 3em 1em;
  background-color: #c3c495;
}
/* line 33, ../sass/pages/_landing.scss */
body.page-landing-page footer h1 {
  font-family: "Allura", serif;
  font-size: 3.75em;
  margin: 0;
}
/* line 39, ../sass/pages/_landing.scss */
body.page-landing-page footer .wrap-footer-content, body.page-landing-page footer p a {
  text-decoration: none;
  color: #5e5a4c;
  font-size: 1.875em;
  display: inline-block;
  clear: both;
}
/* line 47, ../sass/pages/_landing.scss */
body.page-landing-page footer p {
  padding: 2em 0;
}
/* line 55, ../sass/pages/_landing.scss */
body.page-landing-page footer .container-social-bar {
  display: inline-block;
}
/* line 59, ../sass/pages/_landing.scss */
body.page-landing-page footer .container-social-bar span {
  color: #5e5a4c;
  font-size: 1.875em;
  margin: 0.5em;
  vertical-align: middle;
}
/* line 66, ../sass/pages/_landing.scss */
body.page-landing-page footer .container-social-bar a {
  text-decoration: none;
  display: inline-block;
  width: 3em;
  height: 3em;
  margin: 0.5em;
  vertical-align: middle;
}
/* line 74, ../sass/pages/_landing.scss */
body.page-landing-page footer .container-social-bar a.icon-in {
  background: url("../img/icon-social-instagram.svg") center no-repeat;
  background-size: auto 100%;
}
/* line 79, ../sass/pages/_landing.scss */
body.page-landing-page footer .container-social-bar a.icon-fb {
  background: url("../img/icon-social-facebook.svg") center no-repeat;
  background-size: auto 100%;
}

/*
Menu
*/
/* line 13, ../sass/pages/_menu.scss */
.page-menu .section-sub-hero, .page-react-menu .section-sub-hero {
  padding: 5em 0 0 0;
}
/* line 16, ../sass/pages/_menu.scss */
.page-menu .section-sub-hero #container-menu-nav, .page-react-menu .section-sub-hero #container-menu-nav {
  margin: 5em auto;
}
/* line 21, ../sass/pages/_menu.scss */
.page-menu .hero-mid-section, .page-react-menu .hero-mid-section {
  -moz-transition: height 0.4s ease;
  -o-transition: height 0.4s ease;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
  background: url("../img/menu-mid-section.jpg") center top no-repeat fixed;
  background-size: cover;
  display: block;
  height: 20em;
}
@media (max-width: 480px) {
  /* line 21, ../sass/pages/_menu.scss */
  .page-menu .hero-mid-section, .page-react-menu .hero-mid-section {
    background-attachment: local;
  }
}
@media (max-width: 950px) {
  /* line 21, ../sass/pages/_menu.scss */
  .page-menu .hero-mid-section, .page-react-menu .hero-mid-section {
    height: 10em;
  }
}
/* line 37, ../sass/pages/_menu.scss */
.page-menu .container-viewport, .page-react-menu .container-viewport {
  overflow: hidden;
  width: 100%;
}
/* line 45, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-0 #container-menu-content, .page-react-menu .container-viewport.show-section-0 #container-menu-content {
  margin-left: 0%;
}
/* line 48, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-0 #container-menu-content .section-0, .page-react-menu .container-viewport.show-section-0 #container-menu-content .section-0 {
  height: auto;
}
/* line 55, ../sass/pages/_menu.scss */
.page-menu .container-viewport .section-0, .page-react-menu .container-viewport .section-0 {
  height: 1px;
}
/* line 45, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-1 #container-menu-content, .page-react-menu .container-viewport.show-section-1 #container-menu-content {
  margin-left: -100%;
}
/* line 48, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-1 #container-menu-content .section-1, .page-react-menu .container-viewport.show-section-1 #container-menu-content .section-1 {
  height: auto;
}
/* line 55, ../sass/pages/_menu.scss */
.page-menu .container-viewport .section-1, .page-react-menu .container-viewport .section-1 {
  height: 1px;
}
/* line 45, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-2 #container-menu-content, .page-react-menu .container-viewport.show-section-2 #container-menu-content {
  margin-left: -200%;
}
/* line 48, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-2 #container-menu-content .section-2, .page-react-menu .container-viewport.show-section-2 #container-menu-content .section-2 {
  height: auto;
}
/* line 55, ../sass/pages/_menu.scss */
.page-menu .container-viewport .section-2, .page-react-menu .container-viewport .section-2 {
  height: 1px;
}
/* line 45, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-3 #container-menu-content, .page-react-menu .container-viewport.show-section-3 #container-menu-content {
  margin-left: -300%;
}
/* line 48, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-3 #container-menu-content .section-3, .page-react-menu .container-viewport.show-section-3 #container-menu-content .section-3 {
  height: auto;
}
/* line 55, ../sass/pages/_menu.scss */
.page-menu .container-viewport .section-3, .page-react-menu .container-viewport .section-3 {
  height: 1px;
}
/* line 45, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-4 #container-menu-content, .page-react-menu .container-viewport.show-section-4 #container-menu-content {
  margin-left: -400%;
}
/* line 48, ../sass/pages/_menu.scss */
.page-menu .container-viewport.show-section-4 #container-menu-content .section-4, .page-react-menu .container-viewport.show-section-4 #container-menu-content .section-4 {
  height: auto;
}
/* line 55, ../sass/pages/_menu.scss */
.page-menu .container-viewport .section-4, .page-react-menu .container-viewport .section-4 {
  height: 1px;
}
/* line 61, ../sass/pages/_menu.scss */
.page-menu .container-viewport #container-menu-content, .page-react-menu .container-viewport #container-menu-content {
  will-change: margin, height;
  width: 500%;
  overflow: hidden;
  -moz-transition: margin 0.4s ease;
  -o-transition: margin 0.4s ease;
  -webkit-transition: margin 0.4s ease;
  transition: margin 0.4s ease;
}
/* line 66, ../sass/pages/_menu.scss */
body.hasTouch .page-menu .container-viewport #container-menu-content, body.hasTouch .page-react-menu .container-viewport #container-menu-content {
  transition: none;
}
/* line 78, ../sass/pages/_menu.scss */
.page-menu .container-menu-section, .page-react-menu .container-menu-section {
  width: 20%;
  float: left;
}
/* line 82, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper, .page-react-menu .container-menu-section .menu-category-wrapper {
  position: relative;
  padding: 0 0 5em 0;
}
@media (max-width: 950px) {
  /* line 88, ../sass/pages/_menu.scss */
  .page-menu .container-menu-section .menu-category-wrapper:before, .page-react-menu .container-menu-section .menu-category-wrapper:before {
    margin: 0 auto;
  }
}
/* line 93, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.divider-visible, .page-react-menu .container-menu-section .menu-category-wrapper.divider-visible {
  padding: 2em 0 5em;
}
/* line 97, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.divider-visible:before, .page-react-menu .container-menu-section .menu-category-wrapper.divider-visible:before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  margin: 0 auto;
  height: 2em;
  left: 5%;
  max-width: 21.33333em;
  position: absolute;
  right: 5%;
  top: 0;
  width: 90%;
}
/* line 103, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.divider-visible.position-full:before, .page-react-menu .container-menu-section .menu-category-wrapper.divider-visible.position-full:before {
  background-image: url("../img/menu-divider-full.png");
}
/* line 112, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.divider-visible.position-left:before, .page-menu .container-menu-section .menu-category-wrapper.divider-visible.position-right:before, .page-menu .container-menu-section .menu-category-wrapper.divider-visible.position-default-centered:before, .page-react-menu .container-menu-section .menu-category-wrapper.divider-visible.position-left:before, .page-react-menu .container-menu-section .menu-category-wrapper.divider-visible.position-right:before, .page-react-menu .container-menu-section .menu-category-wrapper.divider-visible.position-default-centered:before {
  background-image: url("../img/menu-divider-half.png");
  top: -1em;
}
/* line 120, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.position-default-centered, .page-react-menu .container-menu-section .menu-category-wrapper.position-default-centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 25em;
  width: 90%;
}
/* line 128, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.position-full, .page-react-menu .container-menu-section .menu-category-wrapper.position-full {
  display: block;
  width: 90%;
  clear: both;
  padding-left: 5%;
  padding-right: 5%;
}
/* line 136, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.position-left, .page-menu .container-menu-section .menu-category-wrapper.position-right, .page-react-menu .container-menu-section .menu-category-wrapper.position-left, .page-react-menu .container-menu-section .menu-category-wrapper.position-right {
  width: 40%;
}
/* line 140, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.position-left, .page-react-menu .container-menu-section .menu-category-wrapper.position-left {
  float: left;
  clear: left;
  padding-left: 5%;
}
/* line 146, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.position-left:before, .page-react-menu .container-menu-section .menu-category-wrapper.position-left:before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  margin: 0 auto;
  height: 2em;
  left: 5%;
  max-width: 21.33333em;
  position: absolute;
  right: 5%;
  top: 0;
  width: 90%;
  left: 11%;
  right: auto;
  width: 95%;
}
@media (max-width: 600px) {
  /* line 146, ../sass/pages/_menu.scss */
  .page-menu .container-menu-section .menu-category-wrapper.position-left:before, .page-react-menu .container-menu-section .menu-category-wrapper.position-left:before {
    left: 5%;
    right: 5%;
    width: 90%;
  }
}
/* line 165, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.position-right, .page-react-menu .container-menu-section .menu-category-wrapper.position-right {
  float: right;
  clear: right;
  padding-right: 5%;
}
/* line 170, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper.position-right:before, .page-react-menu .container-menu-section .menu-category-wrapper.position-right:before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  margin: 0 auto;
  height: 2em;
  left: 5%;
  max-width: 21.33333em;
  position: absolute;
  right: 5%;
  top: 0;
  width: 90%;
  width: 95%;
  left: 0;
}
@media (max-width: 600px) {
  /* line 170, ../sass/pages/_menu.scss */
  .page-menu .container-menu-section .menu-category-wrapper.position-right:before, .page-react-menu .container-menu-section .menu-category-wrapper.position-right:before {
    width: 90%;
    left: 5%;
  }
}
/* line 184, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper .title, .page-react-menu .container-menu-section .menu-category-wrapper .title {
  font-family: "Allura", serif;
  font-size: 3.3125em;
  font-weight: normal;
  margin: 43px auto;
}
/* line 190, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper .title.dynamic, .page-react-menu .container-menu-section .menu-category-wrapper .title.dynamic {
  font-size: inherit;
  font-size: initial;
}
/* line 196, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper .wrap-item-title, .page-react-menu .container-menu-section .menu-category-wrapper .wrap-item-title {
  margin-bottom: .25em;
}
/* line 200, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper .item-name, .page-react-menu .container-menu-section .menu-category-wrapper .item-name {
  display: inline-block;
  vertical-align: baseline;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  font-size: 1.2em;
  font-weight: normal;
  margin: 0 auto;
  text-transform: uppercase;
}
/* line 208, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper .wrap-price, .page-react-menu .container-menu-section .menu-category-wrapper .wrap-price {
  display: inline-block;
  vertical-align: baseline;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding-left: 1em;
}
/* line 213, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper .price, .page-react-menu .container-menu-section .menu-category-wrapper .price {
  font-weight: normal;
  font-size: 0.9em;
}
/* line 218, ../sass/pages/_menu.scss */
.page-menu .container-menu-section .menu-category-wrapper .item-description, .page-react-menu .container-menu-section .menu-category-wrapper .item-description {
  font-size: 1em;
  margin-top: .25em;
  max-width: 100%;
}
@media (max-width: 600px) {
  /* line 233, ../sass/pages/_menu.scss */
  .page-menu .container-menu-section .menu-category-wrapper.position-right, .page-menu .container-menu-section .menu-category-wrapper.position-left, .page-menu .container-menu-section .menu-category-wrapper.position-full, .page-react-menu .container-menu-section .menu-category-wrapper.position-right, .page-react-menu .container-menu-section .menu-category-wrapper.position-left, .page-react-menu .container-menu-section .menu-category-wrapper.position-full {
    width: 90%;
    padding: 2em 5% 5em;
  }
  /* line 237, ../sass/pages/_menu.scss */
  .page-menu .container-menu-section .menu-category-wrapper.position-right:before, .page-menu .container-menu-section .menu-category-wrapper.position-left:before, .page-menu .container-menu-section .menu-category-wrapper.position-full:before, .page-react-menu .container-menu-section .menu-category-wrapper.position-right:before, .page-react-menu .container-menu-section .menu-category-wrapper.position-left:before, .page-react-menu .container-menu-section .menu-category-wrapper.position-full:before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: block;
    margin: 0 auto;
    height: 2em;
    left: 5%;
    max-width: 21.33333em;
    position: absolute;
    right: 5%;
    top: 0;
    width: 90%;
    background-image: url("../img/menu-divider-half.png") !important;
    top: 0;
  }
  /* line 248, ../sass/pages/_menu.scss */
  .page-menu .container-menu-section div:first-child + .menu-category-wrapper, .page-react-menu .container-menu-section div:first-child + .menu-category-wrapper {
    padding-top: 0;
  }
  /* line 250, ../sass/pages/_menu.scss */
  .page-menu .container-menu-section div:first-child + .menu-category-wrapper:before, .page-react-menu .container-menu-section div:first-child + .menu-category-wrapper:before {
    display: none;
  }
}

/*
React Menu
*/
/* line 18, ../sass/pages/_react-menu.scss */
.animatecategory-leave-active {
  -moz-animation: fadeInUp 1s 1s;
  -webkit-animation: fadeInUp 1s 1s;
  animation: fadeInUp 1s 1s;
}

/* line 22, ../sass/pages/_react-menu.scss */
.animatecategory-enter-active {
  -moz-animation: fadeInUp 1s;
  -webkit-animation: fadeInUp 1s;
  animation: fadeInUp 1s;
  opacity: 1;
}

/* line 27, ../sass/pages/_react-menu.scss */
#container-section-restaurant-menu {
  min-height: 10em;
}

/* line 31, ../sass/pages/_react-menu.scss */
#container-section-restaurant-menu.loading {
  padding-bottom: 2em;
  overflow: visible;
  position: relative;
}
/* line 36, ../sass/pages/_react-menu.scss */
#container-section-restaurant-menu.loading:before {
  content: url("../img/ajax-loader.gif");
  position: absolute;
  bottom: 2em;
  left: 0;
  right: 0;
  text-align: center;
}

/*
Single
*/
/* line 9, ../sass/pages/_single.scss */
body.single .page-title {
  padding: 5em 0;
  background-size: auto 3em;
}
/* line 14, ../sass/pages/_single.scss */
body.single iframe, body.single video {
  max-width: 100%;
}
/* line 18, ../sass/pages/_single.scss */
body.single a {
  text-decoration: none;
}
/* line 23, ../sass/pages/_single.scss */
body.single .container-nav-top {
  padding: 2em 5%;
  background-color: rgba(0, 0, 0, 0.1);
  width: 90%;
}
/* line 28, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  width: 100%;
  overflow: hidden;
  font-family: "raleway", sans-serif;
}
/* line 34, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper a, body.single .container-nav-top .nav-wrapper span {
  vertical-align: middle;
}
@media (max-width: 530px) {
  /* line 39, ../sass/pages/_single.scss */
  body.single .container-nav-top .nav-wrapper .wrapper-social-bar {
    margin-top: 1em;
    display: block;
  }
}
/* line 45, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper span.label-menu {
  font-weight: bold;
  font-size: 1.375;
  color: #5e5a4c;
}
/* line 52, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper .link-to-blog {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: 10em;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #5e5a4c;
  background-color: transparent;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
  margin-right: 2em;
}
/* line 33, ../sass/helpers/_mixins.scss */
body.single .container-nav-top .nav-wrapper .link-to-blog:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 56, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper .link-to-blog:hover {
  color: #5e5a4c;
}
/* line 61, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper .link-social {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin: 0 0.5em;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}
/* line 71, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper .link-social.fb {
  background-image: url("../img/icon-social-facebook.svg");
}
/* line 74, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper .link-social.pi {
  background-image: url("../img/icon-social-pintrest.svg");
}
/* line 77, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper .link-social.go {
  background-image: url("../img/icon-social-google.svg");
}
/* line 80, ../sass/pages/_single.scss */
body.single .container-nav-top .nav-wrapper .link-social.tw {
  background-image: url("../img/icon-social-twitter.svg");
}
/* line 87, ../sass/pages/_single.scss */
body.single .container-content {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  width: 100%;
  color: #5e5a4c;
  padding-top: 5em;
}
/* line 92, ../sass/pages/_single.scss */
body.single .container-content > * {
  padding: 0 5%;
}
/* line 96, ../sass/pages/_single.scss */
body.single .container-content img {
  display: block;
  margin: 0 auto;
}
/* line 101, ../sass/pages/_single.scss */
body.single .container-content > h1 {
  font-size: 2.1875em;
}
/* line 106, ../sass/pages/_single.scss */
body.single .container-content > h3 {
  font-size: 1.25em;
}
/* line 110, ../sass/pages/_single.scss */
body.single .container-content > p {
  font-size: 1.5em;
  line-height: 2em;
}
/* line 116, ../sass/pages/_single.scss */
body.single .container-nav-bottom {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
  padding: 1em 5%;
}
/* line 124, ../sass/pages/_single.scss */
body.single .container-nav-bottom a {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  max-width: auto;
  width: 100%;
  display: inline-block;
  border: 1px solid #5e5a4c;
  color: #fff;
  background-color: #5e5a4c;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  -moz-transition: background-color 0.4s, ease;
  -o-transition: background-color 0.4s, ease;
  -webkit-transition: background-color 0.4s, ease;
  transition: background-color 0.4s, ease;
  font-family: "raleway", sans-serif;
  display: block;
  text-align: center;
  background-color: transparent;
  background-color: rgba(255, 255, 255, 0);
  border-color: #5e5a4c;
  color: #5e5a4c;
  max-width: 12em;
  width: 100%;
  margin: 1em auto;
  clear: none;
}
/* line 33, ../sass/helpers/_mixins.scss */
body.single .container-nav-bottom a:hover {
  color: #5e5a4c;
  background-color: #fff;
}
/* line 139, ../sass/pages/_single.scss */
body.single .container-nav-bottom a[rel='next'], body.single .container-nav-bottom a[rel='prev'] {
  position: absolute;
  background-color: #5e5a4c;
  color: #fff;
  top: 1em;
}
/* line 145, ../sass/pages/_single.scss */
body.single .container-nav-bottom a[rel='next']:hover, body.single .container-nav-bottom a[rel='prev']:hover {
  background-color: #fff;
  color: #5e5a4c;
}
/* line 152, ../sass/pages/_single.scss */
body.single .container-nav-bottom a[rel='prev'] {
  left: 1em;
}
/* line 155, ../sass/pages/_single.scss */
body.single .container-nav-bottom a[rel='next'] {
  right: 1em;
}
@media screen and (max-width: 780px) {
  /* line 160, ../sass/pages/_single.scss */
  body.single .container-nav-bottom a[rel='next'], body.single .container-nav-bottom a[rel='prev'] {
    position: static;
  }
}