@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.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);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(10%, 0, 0) skewX(-30deg);
    transform: translate3d(10%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(10%, 0, 0) skewX(-30deg);
    transform: translate3d(10%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(10%, 0, 0) skewX(30deg);
    transform: translate3d(10%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(10%, 0, 0) skewX(30deg);
    transform: translate3d(10%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@charset "utf-8";

/* http://meyerweb.com/eric/tools/css/reset/ */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  /* by bruno */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* padronizar o width contando pelas bordas */
  -webkit-font-smoothing: subpixel-antialiased !important;
  /* renderizar melhor as fontes no chrome */
  /* fim */
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* by bruno */

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

input,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

select {
  cursor: pointer;
  /*esconde setinha chrome e firefox by bruno*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

/*esconde setinha IE by bruno*/

select::-ms-expand {
  display: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

/* micro clearfix */

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* fim clearfix */

.transition {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.left {
  float: left;
}

.right {
  float: right;
}

.opacity {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
}

img,
a {
  display: block;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: 'icomoon';
  src: url("../../../assets/site/../../assets/site/fonts/icomoon.eot?p7lokn");
  src: url("../../../assets/site/../../assets/site/fonts/icomoon.eot?p7lokn#iefix") format('embedded-opentype'),
        url("../../../assets/site/../../assets/site/fonts/icomoon.ttf?p7lokn") format('truetype'),
        url("../../../assets/site/../../assets/site/fonts/icomoon.woff?p7lokn") format('woff'),
        url("../../../assets/site/../../assets/site/fonts/icomoon.svg?p7lokn#icomoon") format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-meusite:before {
  content: "\e900";
}

/* fim */

/********** fim css reset **********/

iframe[src*=youtube] {
  max-width: 100%;
  max-height: 100%;
}

body {
  position: relative;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
}

.aux-hidden-wow {
  visibility: hidden;
}

.tranca {
  overflow-y: hidden;
}

button {
  font-family: 'Roboto', sans-serif;
}

input {
  font-family: 'Roboto', sans-serif;
}

textarea {
  font-family: 'Roboto', sans-serif;
}

.corpo {
  position: relative;
  width: 940px;
  margin: 0 auto;
}

.uppercase {
  text-transform: uppercase;
}

/*Home*/

.cabecalho {
  position: relative;
  z-index: 200;
}

.cab-pt01 {
  height: 52px;
}

.engloba-fones-cab a,
.engloba-fones-cab p {
  text-decoration: none;
  font-size: 15px;
  line-height: 50px;
  font-weight: 700;
  margin-left: 20px;
}

.engloba-fones-cab a:first-child,
.engloba-fones-cab p:first-child {
  margin-left: 0;
}

.engloba-fones-cab a span {
  margin-right: 3px;
}

.form-search {
  position: relative;
  margin: 12px 0;
}

.form-search input {
  width: 230px;
  height: 25px;
  border-radius: 5px;
  font-size: 14px;
  padding: 0 30px 0 10px;
}

.lupa {
  position: absolute;
  z-index: 10;
  top: 5px;
  right: 8px;
  font-size: 14px;
}

.form-search button {
  position: absolute;
  z-index: 10;
  top: 0px;
  right: 0px;
  height: 25px;
  width: 30px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
}

.redes-cab a,
.carrinho a {
  width: 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 50px;
  margin-left: 10px;
}

.redes-cab a:first-child {
  margin-left: 0;
}

.carrinho a {
  padding-left: 5px;
}

.carrinho {
  position: relative;
}

.carrinho-qtd {
  position: absolute;
  z-index: 10;
  bottom: 12px;
  right: -10px;
  width: 16px;
  height: 10px;
  text-align: center;
  line-height: 10px;
  font-size: 8px;
  border-radius: 5px;
}

.logo {
  margin: 10px 0;
}

.menu {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -12px;
}

.menu li {
  margin-left: 30px;
}

.menu li:first-child {
  margin-left: 0;
}

.menu a {
  text-decoration: none;
  font-size: 15px;
  line-height: 24px;
}

.banner-sem-link {
  width: 100%;
  height: 310px;
}

.banner-sem-link-01 {
  background: url("../../../assets/site/../../assets/site/../site/img/banner.jpg") center no-repeat;
}

.section-carousel {
  width: 100%;
  height: 430px;
}

.section-carousel .corpo {
  height: 100%;
}

.section-carousel02 .corpo {
  height: 100%;
}

.section-carousel03 {
  position: relative;
  width: 100%;
  height: 430px;
}

.arrow {
  position: absolute;
  z-index: 20;
  top: 50%;
  width: 40px;
  font-size: 40px;
  margin-top: -20px;
}

.arrow-left {
  left: -40px;
}

.arrow-right {
  right: -40px;
}

.carrossel {
  position: relative;
  width: 860px;
  height: 100%;
  margin: 0 auto;
}

.carrossel02 {
  position: relative;
  width: 940px;
  height: 100%;
  margin: 0 auto;
}

.bolinhas {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.bolinhas-imoveis {
  bottom: 115px;
}

.bolinhas-acomodacoes {
  bottom: 135px;
}

.bolinha {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 10px;
}

.cada-item-carrossel {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0;
  width: 860px;
  height: auto;
  margin-top: -150px;
  display: none;
}

.cada-img-carrossel {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
}

.cada-img-full-carrossel {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 430px;
}

.item-ativo {
  display: block;
}

.produto-carrossel {
  position: relative;
  width: 400px;
  height: 300px;
}

.produto-carrossel img {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.over-produto-carrossel {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.engloba-info-carrossel {
  position: relative;
  width: 430px;
  height: 300px;
  margin-left: 30px;
}

.engloba-info-carrossel h3 {
  margin-bottom: 20px;
}

.link-produto-carrossel {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  max-height: 60px;
  overflow: hidden;
}

.info-carrossel {
  height: 140px;
  overflow: hidden;
  font-size: 17px;
  line-height: 20px;
}

.preco-add {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
}

.preco {
  width: 175px;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 10px;
  margin-right: 5px;
}

.preco span {
  font-size: 27px;
}

.add {
  width: 250px;
  text-align: center;
  height: 60px;
  line-height: 54px;
  font-size: 19px;
  border-radius: 10px;
}

.add span {
  margin-right: 5px;
}

.section-destaque,
.section-parceiros {
  padding: 49px 0;
}

.titulo-destaque {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.pai-cada-produto-destaque-centralizado {
  display: table;
  margin: 0 auto;
}

.cada-produto-destaque {
  text-decoration: none;
  margin: 0 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid transparent;
  padding-bottom: 10px;
}

.cada-produto-destaque-3 {
  border-bottom: 2px solid transparent;
  margin-bottom: 40px !important;
}

.produto-destaque {
  position: relative;
  width: 214px;
  height: 214px;
}

.produto-destaque img {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 215px;
  max-height: 215px;
}

.cada-produto-destaque h4 {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  margin: 15px 0 5px 0;
  width: 215px;
  height: 51px;
  overflow: hidden;
}

.cada-produto-destaque p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 3px;
  width: 215px;
}

.link-mais {
  margin: 0 auto;
  margin-top: 30px;
  width: 200px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
}

.over-produto-destaque {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.info-over-produto {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.info-over-produto .plus-over-produto .fa-plus {
  line-height: 54px;
}

.plus,
.mais {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  line-height: 50px;
}

.plus-over-produto {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  line-height: 50px;
  margin: 0 auto;
  margin-bottom: 8px;
}

.saiba-over-produto {
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.section-cat-destaques {
  height: 570px;
  padding-top: 50px;
}

.titulo-receitas {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.cada-receita {
  text-decoration: none;
  width: 288px;
  margin: 0 12px;
}

.imagem-receita {
  position: relative;
}

.cada-receita h4 {
  text-align: center;
  font-size: 18px;
  margin: 20px 0 15px 0;
  max-height: 36px;
  overflow: hidden;
}

.cada-receita p {
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  max-height: 68px;
  overflow: hidden;
}

.fonte-receita-link {
  text-decoration: none;
  font-size: 14px;
  color: #717171;
}

/* Notícias */

.section-noticias {
  padding: 58px 0;
}

.cada-noticia {
  width: 280px;
  margin: 0 16px;
  margin-bottom: 40px;
}

.data-noticia {
  padding: 10px 13px;
  border-radius: 8px;
}

.data-noticia p {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.data-noticia span {
  display: block;
  font-size: 24px;
}

.section-noticias {
  padding: 58px 0;
}

.info-noticia {
  width: 198px;
  margin-left: 10px;
}

.info-noticia h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  height: 18px;
  overflow: hidden;
}

.info-noticia p {
  font-size: 14px;
  line-height: 17px;
  height: 51px;
  overflow: hidden;
}

/* Artigos */

.section-artigos {
  padding: 60px 0;
}

.cada-artigo-section {
  width: 280px;
  margin: 0 16px;
  margin-bottom: 35px;
}

.data-artigo {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  padding: 6px 0;
}

.data-artigo p {
  font-size: 31px;
  text-align: center;
}

.data-artigo span {
  display: block;
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  margin-top: 7px;
}

.info-artigo {
  width: 198px;
  margin-left: 10px;
}

.info-artigo h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  height: 18px;
  overflow: hidden;
}

.info-artigo p {
  font-size: 14px;
  line-height: 17px;
  height: 67px;
  overflow: hidden;
  text-align: justify;
}

/*
.pai-infos-rodape {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0%);
       -moz-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
}
*/

.rodape-phone {
  display: inline !important;
  font-size: 14px;
}

.rodape {
  padding-top: 30px;
}

.rodape-pt01 {
  position: relative;
  padding-bottom: 25px;
}

.coluna-rodape {
  width: 33.33%;
  float: left;
}

.coluna-rodape img {
  width: auto;
  max-width: 90%;
}

.address,
.address a {
  font-size: 14px;
  line-height: 20px;
}

.address a {
  display: table;
}

.address {
  text-align: center;
}

.horario {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  /*margin-left: 65px;*/
}

.horario span {
  font-weight: 700;
}

/*.redes-rodape {
	margin-left: 66px;
}*/

.redes-rodape a {
  font-size: 24px;
  margin-right: 30px;
}

.redes-rodape a:first-child {
  margin-right: 0px;
}

.redes-rodape-sem-endereco {
  float: right;
  padding-top: 15px;
}

.rodape-pt02 {
  padding: 12px 0 18px 0;
}

.rodape-pt02 p {
  font-size: 12px;
  line-height: 20px;
}

.meusite {
  position: absolute;
  right: 0;
  bottom: 0;
  /*background: url("../img/meusite.png") left center no-repeat;*/
  width: 22px;
  height: 20px;
  line-height: 20px;
  color: #ffffff;
  font-size: 12px;
  overflow: hidden;
  font-weight: 500;
}

.meusite span {
  margin-right: 5px;
  font-size: 13px;
}

.meusite:hover {
  width: 82px;
}

.sobe {
  position: absolute;
  z-index: 10;
  bottom: -25px;
  right: -25px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  border-radius: 5px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
}

.sobe:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

/* Home imóveis */

.section-busca {
  position: absolute;
  z-index: 20;
  top: 460px;
  left: 0;
  width: 100%;
}

.section-busca-sem-tabs {
  top: 510px;
}

.engloba-tudo-busca-sem-banner {
  padding: 60px 0;
}

.aba-busca {
  width: 309px;
  height: 50px;
  font-size: 17px;
  color: #4c4c4c;
  font-weight: 700;
  background-color: #e1e1e1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-left: 6.5px;
}

.aba-busca-full {
  width: 100%;
  height: 50px;
  font-size: 17px;
  color: #4c4c4c;
  font-weight: 700;
  background-color: #e1e1e1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-left: 6.5px;
  cursor: default;
}

.aba-busca:first-child,
.aba-busca-full:first-child {
  margin-left: 0;
}

.aba-busca:hover,
.aba-busca-ativa {
  color: #fff;
  background-color: #0098da;
}

.forms-busca {
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.cada-form-busca {
  display: none;
  padding: 30px 25px 25px 25px;
  border: 1px solid #e1e1e1;
  border-top: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.cada-form-busca-sem-tabs {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  /*margin-top: 50px;*/
}

.cada-form-busca-ativo {
  display: block;
}

.cada-linha-form-busca {
  margin-top: 15px;
}

.cada-linha-form-busca:first-child {
  margin-top: 0px;
}

.cada-pt-linha {
  width: 180px;
  margin-left: 56px;
}

.cada-pt-linha:first-child {
  margin-left: 0;
}

.cada-pt-linha-plus {
  width: 110px;
  margin-left: 45px;
}

.cada-pt-linha-plus:first-child {
  margin-left: 0;
}

.engloba-msg-banner {
  margin-top: 30px;
}

.label-busca {
  display: block;
  font-size: 14px;
  color: #0098da;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.input-busca {
  width: 180px;
  height: 30px;
  border-radius: 5px;
  padding: 0 15px;
  background-color: #ebebeb;
  border: 1px solid #ebebeb;
}

.big-input-busca {
  width: 80%;
  height: 40px;
  border-radius: 5px;
  padding: 0 15px;
  background-color: #ebebeb;
  border: 1px solid #ebebeb;
}

.big-input-busca-full {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  padding: 0 15px;
  background-color: #ebebeb;
  border: 1px solid #ebebeb;
}

.input-sem-label {
  margin-top: 17px;
}

.envia-busca {
  width: 100%;
  height: 50px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  background-color: #0098da;
  border-radius: 5px;
  margin-top: 30px;
}

.mini-envia-busca {
  width: 18%;
  height: 40px;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  background-color: #0098da;
}

.envia-busca:hover,
.mini-envia-busca:hover {
  background-color: #404040;
}

.pai-check-busca {
  position: relative;
  width: 40px;
  height: 35px;
  margin-left: 6px;
}

.pai-check-busca:first-child {
  margin-left: 0;
}

.check-busca {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 40px;
  height: 35px;
  cursor: pointer;
  opacity: 0;
}

.pai-check-busca label {
  display: block;
  width: 40px;
  height: 35px;
  font-size: 14px;
  color: #5a5a5a;
  font-weight: 700;
  text-align: center;
  line-height: 35px;
  background-color: #e1e1e1;
  border-radius: 10px;
  border: 2px solid #e1e1e1;
}

.check-ativo {
  border: 2px solid #0098da !important;
}

.engloba-radio {
  margin-left: 20px;
}

.engloba-radio:first-child {
  margin-left: 0;
}

.radio {
  display: block;
  height: 30px;
  line-height: 30px;
}

.label-radio {
  display: block;
  height: 30px;
  font-size: 14px;
  line-height: 30px;
  margin-left: 5px;
}

.espaco {
  height: 200px;
}

.espaco-plus {
  height: 50px;
}

.section-imoveis-home {
  padding-top: 60px;
}

.pai-titulo-imovel-home {
  margin-bottom: 40px;
}

.titulo-imovel-home {
  font-size: 30px;
  font-weight: 700;
  color: #0098da;
}

.mais-imoveis {
  font-size: 17px;
  color: #757677;
  font-weight: 700;
  height: 25px;
  line-height: 25px;
}

.mais-imoveis span {
  display: inline-block;
  font-size: 17px;
  color: #fff;
  width: 25px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background-color: #0098da;
  margin-right: 5px;
}

.mais-imoveis:hover {
  color: #0098da;
}

.cada-imovel-home {
  width: 215px;
  margin: 0 10px;
}

.plus-imovel {
  margin: 0 8px;
  margin-bottom: 30px;
}

.engloba-img {
  position: relative;
}

.codigo-imovel-home {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  font-size: 11px;
  color: #fff;
  padding: 0 25px;
  height: 15px;
  line-height: 15px;
  background-color: #1b80f2;
  border-top-right-radius: 8px;
  text-align: center;
}

.info-imovel-home {
  text-align: center;
  padding: 20px 0;
  background-color: #fff;
}

.info-imovel-home h4 {
  font-size: 18px;
  color: #404040;
  font-weight: 700;
  height: 60px;
  overflow-y: hidden;
}

.info-imovel-home p {
  font-size: 12px;
  color: #404040;
  height: 14px;
  overflow-y: hidden;
}

.link-imovel-home:hover h4 {
  color: #1b80f2;
}

.pai-caracteristicas {
  height: 27px;
  background-color: #b2b4b7;
  padding: 0 10px;
}

.icon-carac01 {
  width: 25px;
  height: 27px;
  background: url("../../../assets/site/../../assets/site/img/carac01.png") center no-repeat;
}

.icon-carac02 {
  width: 30px;
  height: 27px;
  background: url("../../../assets/site/../../assets/site/img/carac02.png") center no-repeat;
}

.icon-carac03 {
  width: 15px;
  height: 27px;
  background: url("../../../assets/site/../../assets/site/img/carac03.png") center no-repeat;
}

.cada-carac p {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  height: 27px;
  line-height: 27px;
  margin-left: 5px;
}

.pipe {
  font-size: 17px;
  color: #cbccce;
  font-weight: 700;
  height: 27px;
  line-height: 27px;
  margin: 0 10px;
}

.preco-imovel-home {
  height: 40px;
  background-color: #757677;
  text-align: center;
}

.preco-imovel-home p {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
}

.link-final-imovel-home {
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  background-color: #1b80f2;
}

.link-final-imovel-home:hover {
  background-color: #404040;
}

.section-siga {
  padding: 30px 0;
}

.titulo-siga {
  font-size: 30px;
  font-weight: 700;
  color: #0098da;
  text-align: center;
  margin-bottom: 30px;
}

.pai-form-home {
  width: 324px;
  padding: 15px 10px;
  background-color: #e6e6e6;
  margin-left: 28px;
}

.pai-form-home-sem-mapa {
  width: 442px;
}

.txt-form-home {
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  color: #565758;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 35px;
  background: url("../../../assets/site/../../assets/site/img/caderno.png") left center no-repeat;
  margin-bottom: 20px;
}

.form-home {
  width: 100%;
}

.pai-map-home {
  position: relative;
  width: 280px;
  margin-left: 28px;
}

.pai-map-home #map_canvas {
  height: 470px;
}

.map-home {
  width: 280px !important;
  height: 352px !important;
}

.over-map-home {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 50px;
  background-color: rgba(64, 134, 212, 0.9);
  padding: 0 10px;
}

.over-map-home p {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  line-height: 50px;
  padding-left: 25px;
  background: url("../../../assets/site/../../assets/site/img/pingo-sessao.png") left center no-repeat;
  text-transform: uppercase;
}

.fb-page {
  display: block !important;
  width: 280px;
  height: 470px;
}

.fb-page-sem-mapa {
  width: 442px;
}

/*Sobre*/

.arrow-sobre-cursor {
  cursor: pointer;
}

.section-titulo {
  height: 200px;
}

.section-titulo-sobre {
  background: url("../../../assets/site/../../assets/site/img/fundo-sobre.jpg") center top no-repeat;
  background-attachment: fixed;
}

.section-titulo h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 150px;
}

.section-bread {
  margin-bottom: 45px;
}

.pai-breadcrumb {
  padding: 20px 0;
}

.home {
  font-size: 14px;
}

.link-bread {
  font-size: 14px;
  line-height: 15px;
  margin-left: 5px;
}

.seta-bread {
  font-size: 8px;
  line-height: 17px;
  margin-left: 5px;
}

.pg-bread {
  font-size: 14px;
  line-height: 15px;
  margin-left: 5px;
}

.pai-imgs-sobre {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.arrow-sobre {
  position: absolute;
  z-index: 20;
  top: 50%;
  width: 40px;
  height: 40px;
  font-size: 25px;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  border-radius: 4px;
}

.arrow-sobre-left {
  left: 25px;
}

.arrow-sobre-right {
  right: 25px;
}

.img-sobre {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
}

.img-sobre-ativo {
  opacity: 1;
}

.cada-sobre {
  margin-bottom: 25px;
}

.cada-sobre:last-child {
  border-bottom: none;
  padding-bottom: 5px;
  margin-bottom: 40px;
}

.cada-sobre h3,
.titulo-sobre {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cada-sobre-texto {
  font-size: 16px;
  line-height: 19px;
}

.cada-sobre-texto p {
  margin-bottom: 20px;
}

.info-sobre-lateral {
  width: 400px;
  font-size: 16px;
  line-height: 19px;
  color: #717171;
}

.info-sobre-lateral-sem-imagem {
  width: 100%;
}

.info-sobre-lateral p {
  margin-top: 20px;
}

.info-sobre-lateral p:first-child {
  margin-top: 0;
}

.fotos-sobre {
  width: 490px;
}

.foto-sobre {
  display: none;
  width: 100%;
  height: auto;
}

.foto-sobre-ativo {
  display: block;
}

.pai-fotos-sobre {
  margin-bottom: 10px;
}

.pai-thumbs-sobre {
  position: relative;
  width: 100%;
}

.seta-thumb-sobre {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  font-size: 35px;
  color: #060606;
}

.seta-thumb-sobre-right-mob {
  display: none;
  right: 0;
}

.seta-thumb-sobre-left {
  left: 0;
}

.seta-thumb-sobre-right {
  right: 0;
}

.carousel-thumbs-sobre {
  width: 455px;
  margin: 0 auto;
  overflow-x: hidden;
}

.slider-thumbs-sobre {
  position: relative;
  left: 0;
}

.cada-thumb-sobre {
  width: 105px;
  height: 75px;
  margin-left: 11px;
}

.cada-thumb-sobre:first-child {
  margin-left: 0;
}

.thumb01 {
  background: url("../../../assets/site/../../assets/site/../site/img/thumb.jpg") center no-repeat;
}

.thumb02 {
  background: url("../../../assets/site/../../assets/site/../site/img/thumb.jpg") center no-repeat;
}

.thumb03 {
  background: url("../../../assets/site/../../assets/site/../site/img/thumb.jpg") center no-repeat;
}

.thumb04 {
  background: url("../../../assets/site/../../assets/site/../site/img/thumb.jpg") center no-repeat;
}

.thumb05 {
  background: url("../../../assets/site/../../assets/site/../site/img/thumb.jpg") center no-repeat;
}

.sobre-pt01 {
  margin-bottom: 50px;
}

.sobre-pt02 {
  margin-bottom: 40px;
}

.info-profissionais {
  font-size: 16px;
  line-height: 19px;
  color: #717171;
  margin-bottom: 30px;
}

.cada-funcionario {
  position: relative;
  margin: 5px 8px;
  cursor: pointer;
  height: 219px;
  overflow: hidden;
}

.over-funcionario {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(0, 59, 103, 0.8);
  padding: 10px 0;
}

.nome-funcionario {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  font-style: italic;
  text-align: center;
}

.nr-funcionario {
  font-size: 12px;
  color: #fff;
  line-height: 15px;
  font-weight: 700;
  text-align: center;
}

.sobre-tour {
  display: block;
  padding: 20px 0;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
}

/*Produtos*/

.lista-produtos {
  width: 695px;
}

.pai-filtro-pag {
  margin-bottom: 30px;
}

.filtro-lateral {
  width: 230px;
  padding: 25px 20px 15px 20px;
  margin-bottom: 30px;
  margin-right: 15px;
  margin-top: 60px;
}

.form-search-prod {
  margin-bottom: 30px;
}

.form-search-prod label {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-search-prod input {
  width: 100%;
  height: 30px;
  padding-left: 10px;
  padding-right: 35px;
  border-radius: 5px;
}

.form-search-prod button {
  position: absolute;
  z-index: 20;
  top: 0px;
  right: 0px;
  height: 30px;
  width: 30px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
}

.relative {
  position: relative;
}

.lupa-produto {
  position: absolute;
  z-index: 10;
  top: 0px;
  right: 0px;
  font-size: 16px;
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.titulo-filtro,
.titulo-filtro-link {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  color: #d42b3c !important;
}

.titulo-filtro span {
  position: relative;
  display: inline-block;
  float: right;
  font-size: 14px;
  top: 4px;
}

.subtitulo-filtro {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 5px 0;
}

.filtro {
  font-size: 12px;
  line-height: 15px;
}

.lista-filtro {
  margin-bottom: 20px;
  display: none;
}

.select-filtro {
  width: 180px;
  height: 30px;
  border-radius: 5px;
  padding-left: 10px;
  background: url("../../../assets/site/../../assets/site/img/seta-select.png") right center no-repeat;
}

.btn-filtro {
  width: 90px;
  height: 30px;
  border-radius: 5px;
  margin-left: 15px;
}

.pag-arrow {
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  font-size: 17px;
}

.nr {
  width: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 30px;
  margin: 0 5px;
}

.plus02 {
  margin: 0 8px;
  margin-bottom: 30px;
}

.pai-pg-final {
  margin-bottom: 50px;
}

/*Produto interna*/

.face-tweet {
  width: 192px;
  margin-bottom: 20px;
}

.face-tweet-plus {
  width: 205px;
}

.twitter-share-button {
  margin-left: 15px;
}

.engloba-prod-img {
  width: 465px;
}

.produto-imagem {
  position: relative;
  width: 465px;
  height: 350px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.fig-prod {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 465px;
  height: 350px;
  display: none;
  overflow: hidden;
}

.shown-img {
  display: block;
}

.hidden-img {
  display: none;
}

.prod-img-ativo {
  display: block;
}

.pai-carrossel-thumbs {
  position: relative;
  width: 278px;
  overflow-x: hidden;
  margin: 0 auto;
}

.pai-carrossel-thumbs1 {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 94px;
}

.pai-carrossel-thumbs2 {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 186px;
}

.slider-carrossel-thumbs {
  position: relative;
  left: 0;
}

.btn-carrossel-thumbs {
  position: absolute;
  z-index: 10;
  top: 50%;
  margin-top: -10px;
  font-size: 20px;
  color: #00724d;
}

.btn-thumbs-left {
  left: 40px;
}

.btn-thumbs-right {
  right: 40px;
}

.produto-imagem img,
.troca-img img {
  max-width: 100%;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.troca-img {
  overflow: hidden;
  position: relative;
  width: 85px;
  height: 75px;
  margin: 0 4px 0 4px;
}

.engloba-info-produto {
  width: 400px;
}

.engloba-info-produto h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-produto {
  font-size: 14px;
  line-height: 17px;
}

.engloba-links-prod {
  margin: 30px 0 20px 0;
}

.links-produto {
  font-size: 14px;
  padding: 8px 17px;
  border-radius: 5px;
  margin-left: 25px;
}

.links-produto:first-child {
  margin-left: 0;
}

.promo {
  font-size: 18px;
}

.promo span {
  font-weight: 700;
  text-decoration: line-through;
}

.prod-qtd {
  font-size: 12px;
  line-height: 22px;
}

.prod-qtd span {
  padding: 10px;
}

.engloba-preco {
  margin: 10px 0 30px 0;
}

.preco-prod {
  font-size: 48px;
  font-style: italic;
}

.parcela {
  font-size: 19px;
  line-height: 30px;
}

.parcela span {
  font-weight: 700;
}

.comprar {
  width: 140px;
  text-align: center;
  height: 60px;
  line-height: 60px;
  border-radius: 10px;
  font-size: 18px;
  margin-right: 10px;
}

.produto-detalhe {
  margin-bottom: 30px;
}

.pai-produto {
  padding-bottom: 50px;
}

.titulo-produto {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.produto-info,
.produto-tec {
  margin-bottom: 60px;
}

.produto-info p {
  font-size: 14px;
  line-height: 17px;
}

.produto-info-texto {
  font-size: 14px;
  line-height: 17px;
}

.produto-info-texto a {
  display: inline;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  color: blue !important;
}

.plus-prod-info {
  font-weight: 700;
  margin: 20px 0;
}

.table-tec {
  width: 100%;
}

.table-tec th,
.table-tec td {
  text-align: left;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 17px;
}

.table-tec th {
  width: 40%;
}

.table-tec td {
  width: 60%;
}

/*Contato*/

.section-titulo-contato {
  background: url("../../../assets/site/../../assets/site/img/fundo-tratamentos.jpg") center top no-repeat;
  background-attachment: fixed;
}

.mostrar {
  display: block;
}

.esconder {
  display: none;
}

.info-contato {
  width: 285px;
}

.contato-time {
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  margin-bottom: 12px;
}

.end-contato p,
.end-contato a {
  font-size: 14px;
  line-height: 17px;
}

.end-contato a {
  display: table;
  margin: 20px 0;
}

.contato-redes a {
  font-size: 24px;
  margin-left: 12px;
}

.contato-redes a:first-child {
  margin-left: 0;
}

.form-contato {
  width: 515px;
}

.label {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.input {
  width: 100%;
  height: 30px;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 0 10px;
}

.plus-input {
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

.half {
  width: 48%;
}

.textarea {
  height: 145px;
  resize: none;
  padding-top: 5px;
}

.submit {
  width: 100%;
  height: 30px;
  margin-top: 10px;
  border-radius: 5px;
  text-transform: uppercase;
}

.section-contato {
  margin-bottom: 45px;
}

.warning {
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 10px;
  line-height: 17px;
  font-size: 14px;
  border-radius: 5px;
  display: none;
}

.section-mapa {
  position: relative;
}

.como-chegar {
  width: 100%;
  height: 50px;
}

.txt-chegar {
  font-size: 18px;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
}

.form-chegar {
  padding-top: 12.5px;
}

.input-chegar {
  width: 652px;
  height: 25px;
  padding: 0 15px;
  font-size: 11px;
  border-radius: 5px;
  margin-left: 20px;
}

.submit-chegar {
  width: 140px;
  height: 25px;
  border-radius: 5px;
  margin-left: 20px;
  font-size: 14px;
  font-weight: 700;
}

.form-chegar-novo {
  padding-top: 12.5px;
  width: calc(100% - 120px);
}

.form-chegar-novo div {
  width: calc(100% - 150px);
}

.input-chegar-novo,
.select-chegar-novo {
  width: 46%;
  margin: 0 2%;
  height: 25px;
  padding: 0 15px;
  font-size: 11px;
  border-radius: 5px;
}

.select-chegar-novo {
  background: #fff url("../../../assets/site/../../assets/site/img/seta-select.png") right center no-repeat;
}

.submit-chegar-novo {
  width: 140px;
  height: 25px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
}

#map_canvas {
  position: relative;
  width: 100%;
  height: 400px;
}

/*Notícias*/

.lista-noticias {
  width: 695px;
}

.lista-noticias-full {
  width: 100%;
}

.lista-cat {
  display: block;
}

.filtro-lateral-plus {
  margin-top: 0;
}

.cada-lista-noticia {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dcdcdc;
}

.data {
  display: table;
  font-size: 12px;
  padding-bottom: 4px;
  margin-bottom: 20px;
}

.cada-lista-noticia a {
  display: table;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 10px;
}

.resumo-not {
  font-size: 14px;
  line-height: 17px;
  max-height: 51px;
  overflow: hidden;
}

/*Notícia interna*/

.img-noticia {
  margin: 0 30px 10px 0;
}

.txt-noticia {
  font-size: 16px;
  line-height: 20px;
}

.txt-noticia a {
  display: inline;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  color: blue !important;
}

.txt-noticia a:hover {
  text-decoration: underline;
  color: blue !important;
}

.titulo-noticia {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 10px;
}

.plus-face-tweet {
  margin-bottom: 40px;
}

/*Receitas*/

.cada-receita-lista {
  text-decoration: none;
  width: 288px;
  margin: 0 12px;
  margin-bottom: 30px;
}

.nome-receita {
  text-align: center;
  font-size: 18px;
  margin: 20px 0 15px 0;
  max-height: 36px;
  overflow: hidden;
  font-weight: 700;
}

.cada-receita-lista p {
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  max-height: 68px;
  overflow: hidden;
}

/*Receita Interna*/

.titulo-receita {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 10px;
}

.lista-ing li,
.lista-passos li {
  font-size: 14px;
  line-height: 17px;
}

.como-fazer {
  margin-top: 10px;
}

.como-fazer h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lista-passos {
  margin-bottom: 15px;
}

/*Carrinho*/

.infos-prod {
  height: 50px;
  margin-bottom: 7px;
}

.infos-prod p {
  font-size: 14px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
}

.info01 {
  width: 130px;
}

.info02 {
  width: 400px;
}

.info02-sem-valor {
  width: 580px;
}

.info03 {
  width: 160px;
}

.info04 {
  width: 180px;
}

.cada-prod-carrinho {
  padding: 20px 0;
  margin-bottom: 12px;
}

.img-prod-carrinho {
  position: relative;
  width: 85px;
  height: 80px;
  margin: 0 auto;
}

.img-prod-carrinho img {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nome-prod-car {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  padding-top: 23px;
  height: 57px;
  overflow: hidden;
}

.pai-muda {
  display: table;
  margin: 0 auto;
  padding-top: 25px;
}

.muda-qtd {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.qtd-prod {
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  margin: 0 5px;
  border-radius: 5px;
}

.pai-valor {
  display: table;
  margin: 0 auto;
  padding-top: 26px;
}

.pai-valor-plus {
  padding-top: 35px;
}

.valor {
  font-size: 14px;
}

.valor span {
  font-weight: 700;
}

.excluir {
  display: block;
  font-size: 16px;
  width: 45px;
  line-height: 45px;
  padding-top: 18px;
}

.carrinho-sem-valor-plus {
  margin-bottom: 30px;
}

.total {
  height: 50px;
  margin-bottom: 30px;
  padding: 0 40px;
}

.total p {
  font-size: 14px;
  line-height: 46px;
  text-align: right;
}

.total span {
  font-size: 24px;
  font-weight: 700;
}

.aviso {
  width: 385px;
}

.aviso h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.aviso p {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 40px;
}

.form-carrinho {
  width: 510px;
  margin-bottom: 40px;
}

.select {
  background: url("../../../assets/site/../../assets/site/img/seta-select.png") right center no-repeat;
}

.engloba-aviso {
  width: 750px;
  padding: 20px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.engloba-aviso h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.engloba-aviso span {
  font-size: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
}

.engloba-aviso p {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}

.titulo-info-prod {
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  margin: 20px 0 10px 0;
  display: none;
}

/*Erro*/

.section-erro h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-erro p {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  margin-bottom: 30px;
}

.pai-links-erro {
  width: 425px;
  margin: 0 auto 50px auto;
}

.link-mais-erro {
  width: 200px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
}

/*Equipe*/

.cada-equipe {
  width: 219px;
  margin-left: 21px;
  margin-bottom: 30px;
}

.cada-equipe:first-child {
  margin-left: 0;
}

.nome-equipe {
  font-size: 18px;
  color: #404040;
  font-weight: 700;
  text-align: center;
  margin: 15px 0;
}

.info-equipe {
  font-size: 14px;
  color: #404040;
  text-align: center;
}

/*Downloads*/

.cada-download {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dcdcdc;
}

.cada-download-plus {
  padding-bottom: 15px;
  border-bottom: 1px solid #dcdcdc;
}

.cada-artigo-plus {
  padding-top: 15px;
}

.titulo-download {
  font-size: 18px;
  color: #717171;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 10px;
}

.descricao-download {
  font-size: 14px;
  line-height: 17px;
  color: #717171;
}

.botao-baixar {
  font-size: 12px;
  text-transform: uppercase;
  width: 135px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  margin-top: 10px;
  margin-right: 10px;
}

/*Parceiros*/

.cada-parceiro {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 7px;
  margin-bottom: 30px;
}

.img-parceiro {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*Serviços*/

.cada-plus-servico p {
  height: 42px;
  overflow: hidden;
}

.section-servico {
  padding-bottom: 50px;
}

.titulo-servico {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-servico {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 40px;
}

.form-servico {
  width: 450px;
}

/* Imóveis - lista */

.cada-check-filtro {
  padding-top: 3px;
}

.label-filtro {
  font-size: 12px;
  color: #404040;
  margin-left: 5px;
}

.plus-input-filtro {
  display: block;
  margin-top: 3px;
}

.btn-filtrar-valor {
  width: 180px;
  height: 30px;
  border-radius: 5px;
  color: #fff;
  background-color: #1b80f2;
  margin-top: 15px;
}

.btn-filtrar-valor:hover {
  background-color: #404040;
}

/* Imóveis - interna */

.engloba-info-imovel {
  width: 400px;
}

.nome-imovel {
  font-size: 30px;
  font-weight: 700;
  color: #404040;
}

.cod {
  font-size: 12px;
  color: #404040;
  margin-top: 5px;
  margin-bottom: 30px;
}

.dados-imovel {
  width: 190px;
}

.dados-imovel h4 {
  font-size: 18px;
  font-weight: 700;
  color: #404040;
  margin-bottom: 20px;
}

.nome-dado {
  font-size: 14px;
  color: #404040;
  line-height: 17px;
}

.nome-dado span {
  font-weight: 700;
}

.qtd-dado {
  font-size: 14px;
  color: #404040;
  font-weight: 700;
  line-height: 17px;
}

.li-espaco {
  margin-top: 25px;
}

.valor-imovel {
  margin-top: 40px;
  margin-right: 13px;
}

.valor-imovel h5 {
  font-size: 18px;
  color: #404040;
  font-weight: 700;
}

.valor-imovel p {
  font-size: 30px;
  color: #404040;
  font-weight: 700;
}

.imovel-info {
  margin-bottom: 30px;
}

.pai-desc-imovel {
  padding-bottom: 50px;
  border-bottom: 1px solid #dcdcdc;
}

.descricao-imovel {
  width: 455px;
}

.localizacao-imovel {
  width: 365px;
}

.lista-descricoes p {
  font-size: 14px;
  color: #404040;
  line-height: 17px;
  margin: 5px 0;
}

.descricao-imovel {
  font-size: 14px;
  color: #404040;
  line-height: 17px;
}

.descricao-imovel b,
.descricao-imovel strong {
  font-size: 14px;
  color: #404040;
  font-weight: 700;
  margin-top: 20px;
}

#mapa_canvas {
  position: relative;
  width: 100%;
  height: 330px;
}

/*Tratamentos*/

.section-titulo-tratamentos {
  background: url("../../../assets/site/../../assets/site/img/fundo-tratamentos.jpg") center top no-repeat;
  background-attachment: fixed;
}

.engloba-tratamentos {
  width: 100%;
}

.engloba-btns-servicos {
  margin-bottom: 30px;
}

.btn-filtro-servico {
  width: auto;
  height: 40px;
  font-size: 14px;
  color: #797979;
  text-transform: uppercase;
  border: 1px solid #d2d2d2;
  padding: 0 10px;
  margin-right: 10px;
}

.btn-filtro-servico:first-child {
  margin-left: 0;
}

/*Tratamento interna*/

.tratamento-main {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dcdcdc;
}

.descricao-servico {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dcdcdc;
}

.descricao-servico-texto {
  font-size: 16px;
  line-height: 19px;
  color: #717171;
}

.contato-interna {
  margin-bottom: 30px;
}

/*Artigos*/

.section-titulo-artigos {
  background: url("../../../assets/site/../../assets/site/img/fundo-tratamentos.jpg") center top no-repeat;
  background-attachment: fixed;
}

.section-tratamento {
  padding-bottom: 40px;
}

.pag-artigos {
  margin-bottom: 30px;
}

.submit-filtro {
  width: 90px;
  height: 30px;
  background-color: #003b67;
  color: #fff;
  border-radius: 5px;
  margin-left: 15px;
}

.submit-filtro:hover {
  background-color: #009ca8;
}

.cada-artigo {
  margin-bottom: 30px;
}

.cada-artigo h4 {
  font-size: 18px;
  color: #717171;
  font-weight: 700;
  line-height: 21px;
  margin-bottom: 15px;
}

.cada-artigo p {
  font-size: 14px;
  color: #717171;
  line-height: 17px;
  margin-bottom: 20px;
}

.cada-artigo a {
  display: table;
  font-size: 14px;
  color: #717171;
  line-height: 17px;
  border-bottom: 1px solid #a5a5a5;
}

.cada-artigo a:hover {
  color: #003b67;
  border-bottom: 1px solid #003b67;
}

.img-artigo {
  width: 235px;
  height: 160px;
  margin-right: 15px;
}

.plus-cada-artigo {
  width: calc(100% - 250px);
}

/*Mobile*/

.engloba-menu-mobile {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding-top: 60px;
  width: 100%;
  height: 100%;
  display: none;
}

.scroll-y-mobile {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.menu-mobile {
  margin-top: 30px;
}

.menu-mobile li {
  margin: 15px 0;
}

.menu-mobile a {
  text-align: center;
  font-size: 18px;
  line-height: 30px;
}

.engloba-btn-menu-mob {
  display: none;
}

.btn-menu-mob {
  font-size: 24px;
  padding: 18px 0;
}

.inativo {
  display: none;
}

.redes-carrinho-mob {
  display: table;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
}

.plus01 a {
  width: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  margin-left: 0;
}

.plus01 .carrinho-qtd {
  bottom: -4px;
}

.overlay-desc-equipe {
  z-index: 300;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}

.pano-desc-equipe {
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  z-index: 1;
}

.corpo-desc-equipe {
  position: absolute;
  width: 680px;
  height: 480px;
  top: 50%;
  left: 50%;
  padding: 25px;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.corpo-desc-equipe ul {
  width: 100%;
  height: 100%;
  padding: 25px;
  background: #fff;
  padding-right: 0;
}

.fecha-desc-equipe {
  background: url("../../../assets/site/../../assets/site/img/fecha-desc-equipe.png");
  position: absolute;
  width: 54px;
  height: 54px;
  top: 0px;
  right: 0px;
  z-index: 4;
  display: block;
  cursor: pointer;
}

.cada-desc-equipe {
  display: none;
  position: relative;
  padding-left: 240px;
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 25px;
}

.aparece-equipe {
  display: block;
}

.cada-desc-equipe .cada-funcionario {
  margin: 0;
  position: fixed;
  left: 50px;
  top: 50px;
  cursor: default;
}

.texto-desc-equipe h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.texto-desc-equipe p {
  font-size: 14px;
  line-height: 18px;
  color: #717171;
  margin-bottom: 15px;
}

.esconde-body-scroll {
  overflow: hidden !important;
  padding-right: 17px;
}

.menu-arvore {
  width: 260px;
  min-height: 500px;
  padding-right: 40px;
}

.estilo-clica-menu-arvore {
  margin-top: 5px;
}

.estilo-clica-menu-arvore p,
.estilo-clica-menu-arvore a {
  padding: 10px 25px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
}

.estilo-aparece-menu-arvore {
  padding: 5px 0;
  display: none;
}

.estilo-aparece-submenu-arvore {
  display: none;
}

.estilo-aparece-menu-arvore p,
.estilo-aparece-menu-arvore a {
  padding: 7px 25px;
  line-height: 15px;
  cursor: pointer;
  display: block;
}

.estilo-aparece-menu-arvore p span,
.estilo-aparece-menu-arvore a span {
  font-size: 15px;
  line-height: 15px;
  padding-left: 5px;
}

.estilo-aparece-menu-arvore p i,
.estilo-aparece-menu-arvore a i {
  font-size: 10px;
  line-height: 15px;
}

.estilo-clica-submenu-arvore p,
.estilo-clica-submenu-arvore a {
  padding-bottom: 7px !important;
}

.estilo-aparece-submenu-arvore li p,
.estilo-aparece-submenu-arvore li a {
  padding-left: 40px;
}

.conteudo-pagina-generica {
  width: calc(100% - 260px);
}

.conteudo-pagina-generica p,
.conteudo-pagina-generica-plus {
  font-size: 16px;
  line-height: 19px;
  color: #717171;
  margin-top: 20px;
}

.conteudo-pagina-generica-plus h3 {
  font-size: 18px;
  font-weight: 700;
  /*text-transform: uppercase;*/
  margin-bottom: 20px;
  margin-top: 20px;
}

.conteudo-pagina-generica-plus a {
  display: inline;
}

/************************** Área Restrita ***************************/

.lista-dash {
  margin: 0 auto 50px auto;
  width: 95%;
  max-width: 955px;
  min-height: 300px;
}

.lista-dash li {
  float: left;
  padding: 15px 7.5px;
  width: 25%;
}

.lista-dash li a {
  display: block;
  text-decoration: none;
  padding: 25px 10px;
}

.lista-dash li a i {
  margin: 0 auto;
  display: block;
  font-size: 28px;
  text-align: center;
}

.lista-dash li a span {
  width: 100%;
  display: block;
  font-size: 15px;
  height: 15px;
  overflow: hidden;
  text-align: center;
  margin-top: 10px;
}

.nome-area-restrita {
  font-size: 14px;
  cursor: pointer;
}

.nome-area-restrita span {
  margin-right: 5px;
}

.nome-area-restrita:hover i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.lista-area-restrita {
  width: 180px;
  position: absolute;
  right: 0;
  top: 58px;
  z-index: 1000;
  display: none;
}

.lista-area-restrita li a {
  width: 100%;
  padding: 10px 20px;
  text-align: right;
  font-size: 12px;
}

.form-area-restrita {
  margin: 0 auto;
  max-width: 370px;
  width: 100%;
  padding: 60px;
}

.form-area-restrita a {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  text-decoration: underline;
}

.lista-cabecalho-bread {
  float: left;
  margin-right: 30px;
}

.lista-cabecalho-bread a {
  font-size: 15px;
  line-height: 25px;
}

.botao-acesso-restrito {
  display: block;
  border-radius: 8px;
  padding: 0 30px;
  line-height: 24px !important;
  text-align: center;
  font-size: 10px !important;
  text-transform: uppercase;
  width: auto !important;
  font-weight: 700;
  margin: 13px 0;
}

/*************** CARDAPIO ****************/

.section-titulo-cardapio {
  background: url("../../../assets/site/../../assets/site/img/fundo-cardapio.jpg") center top no-repeat;
  background-attachment: fixed;
}

.filtro-lateral-cardapio {
  margin-top: 0;
  /*border: 1px solid #ebebeb !important;*/
}

.titulo-filtro-lateral {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.filtro-lateral-cardapio .lista-filtro {
  display: block;
}

.input-cardapio {
  width: 65%;
  padding-right: 15px;
  margin-bottom: 15px;
}

.input-cardapio-sem-filtros {
  width: 100%;
  padding-right: 0px;
}

.input-cardapio input,
.select-cardapio select {
  width: 100%;
  color: #b9b9b9;
  font-size: 14px;
  line-height: 14px;
  height: 40px;
  padding: 12px 45px 12px 20px;
  border: 1px solid #ebebeb;
}

.input-cardapio button {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  font-size: 22px;
  line-height: 22px;
  right: 35px;
  color: #959595;
  display: block;
}

.input-cardapio-sem-filtros button {
  right: 20px;
}

.select-cardapio {
  width: 35%;
  margin-bottom: 15px;
}

.input-cardapio-cadastro .input-msg {
  width: calc(100% - 123px);
}

.input-msg {
  font-size: 12px;
  line-height: 15px;
  margin-top: 5px;
  color: #eb2326;
  font-weight: bold;
}

.input-msg a {
  display: inline;
}

.select-cardapio select {
  background: url("../../../assets/site/../../assets/site/img/seta-select-cardapio.png") right 20px center no-repeat;
}

.cardapio {
  position: relative;
  min-height: 200px;
  margin-bottom: 30px;
}

.cada-cardapio,
.cada-passo {
  margin-bottom: 15px;
}

.cada-cardapio h4,
.cada-passo h4,
.cada-cardapio-modal h4 {
  width: 100%;
  color: #6b6b6b;
  font-size: 18px;
  line-height: 24px;
  padding: 12px 20px;
  background-color: #ececec;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.cada-cardapio i,
.cada-passo i,
.cada-cardapio-modal i {
  float: right;
  font-size: 24px;
}

.item-indisponivel {
  color: #eb2326 !important;
}

.cada-sabor {
  padding: 15px 20px;
  border-top: 1px solid #ebebeb;
}

.cada-sabor-com-valor {
  position: relative;
  padding-right: 90px;
}

.cada-sabor:first-child {
  border-top: none;
}

.cada-sabor h5,
.cada-sabor p {
  width: 100%;
  color: #242424;
  line-height: 17px;
}

.cada-sabor h5 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}

.cada-sabor p {
  font-weight: 400;
  font-size: 14px;
}

/*************** CARDAPIO COMPLETO ****************/

.geral-pedido {
  margin-bottom: 15px;
}

.geral-pedido p {
  font-size: 18px;
  color: #717171;
  line-height: 18px;
  font-weight: 300;
  margin-bottom: 5px;
}

.cada-passo .form-cardapio {
  padding-top: 15px;
}

.cada-passo-titulo {
  padding-left: 75px !important;
  position: relative !important;
  font-weight: 300 !important;
}

.cada-passo-titulo p {
  float: left;
  line-height: 24px;
  height: 24px;
}

.cada-passo-titulo p span {
  font-size: 14px;
  font-style: italic;
}

.numero-passo {
  position: absolute;
  height: 48px;
  line-height: 48px;
  width: 70px;
  top: 0;
  left: 0;
  z-index: 3;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-right: 5px;
  background: url("../../../assets/site/../../assets/site/img/seta-cardapio.png") right center no-repeat;
}

.engloba-radio-sabor {
  padding: 15px 20px;
}

.cada-radio-sabor {
  position: relative;
  float: left;
  width: 25%;
  margin-top: 15px;
}

.cada-radio-sabor-disabled {
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
}

.cada-radio-sabor p {
  background: url("../../../assets/site/../../assets/site/img/radio-sabores.png") left top no-repeat;
  font-weight: 600;
  font-size: 15px;
  line-height: 15px;
  color: #242424;
  padding-left: 15px;
}

.ativa-cada-radio-sabor p {
  background-position: left bottom;
}

.radio-sabor,
.check-sabor {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  cursor: pointer;
}

.cada-passo .cardapio {
  padding: 0 20px;
  border: #ebebeb solid 1px;
}

.cada-passo .cada-sabor,
.cada-cardapio-modal .cada-sabor {
  position: relative;
  padding-left: 60px;
}

.check-cada-sabor {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  left: 15px;
  background: url("../../../assets/site/../../assets/site/img/check-sabores.png") left top no-repeat;
}

.ativa-check-cada-sabor .check-cada-sabor {
  background-position: left bottom;
}

.pano-cardapio {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.75);
}

.pano-cardapio p {
  padding-top: 20px;
  text-align: center;
  line-height: 17px;
  font-size: 14px;
  color: #242424;
  font-weight: 700;
}

.carrinho-cardapio {
  width: 245px;
  max-width: 100%;
  position: fixed;
  bottom: 0;
  right: 50%;
  margin-right: -750px;
  z-index: 20;
  background-color: #fff;
}

.titulo-carrinho-cardapio {
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  background: url("../../../assets/site/../../assets/site/img/minimiza-carrinho.png") right 10px center no-repeat;
  cursor: pointer;
}

.carrinho-cardapio-min {
  -webkit-transform: translateY(calc(100% - 42px));
  -moz-transform: translateY(calc(100% - 42px));
  -ms-transform: translateY(calc(100% - 42px));
  transform: translateY(calc(100% - 42px));
}

.titulo-carrinho-cardapio i {
  margin-right: 7px;
  font-size: 22px;
}

.corpo-carrinho-cardapio {
  width: 100%;
  height: 150px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #ebebeb;
}

.cada-lista-carrinho-cardapio {
  padding-top: 10px;
  border-top: 1px solid #ebebeb;
  margin-top: 10px;
}

.cada-lista-carrinho-cardapio:first-child {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}

.tamanho-carrinho-cardapio {
  position: relative;
  font-size: 15px;
  color: #646464;
  line-height: 15px;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  padding-left: 14px;
}

.tamanho-carrinho-cardapio button {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 15px;
  font-size: 15px;
  color: #646464;
  line-height: 15px;
}

.cada-lista-carrinho-cardapio p,
.cada-lista-carrinho-cardapio h6,
.corpo-carrinho-entrega p {
  font-size: 12px;
  color: #797979;
  line-height: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.cada-lista-carrinho-cardapio p span,
.corpo-carrinho-entrega p {
  font-weight: 700;
}

.content-carrinho-cardapio {
  padding-left: 13px;
}

.cada-lista-carrinho-cardapio h6 {
  font-weight: 700;
  padding-top: 7px;
}

.adicionais-carrinho-cardapio p {
  max-width: 160px;
}

.corpo-carrinho-entrega {
  padding: 10px;
  width: 100%;
  background-color: #ececec;
  border-top: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
}

.input-carrinho-cardapio label {
  display: block;
  font-size: 12px;
  color: #646464;
  line-height: 15px;
  margin-bottom: 5px;
}

.input-carrinho-cardapio select {
  width: 158px;
  display: block;
  font-size: 12px;
  color: #646464;
  line-height: 15px;
  padding: 8px;
  border: 1px solid #bebebe;
  background: #fff url("../../../assets/site/../../assets/site/img/seta-select.png") right center no-repeat;
}

.corpo-carrinho-entrega p {
  padding-top: 28px;
  color: #646464;
}

.corpo-carrinho-total {
  padding: 10px;
  border-right: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
}

.corpo-carrinho-total p {
  font-size: 11px;
  color: #646464;
  line-height: 16px;
}

.corpo-carrinho-total p span {
  font-weight: 600;
  font-size: 14px;
}

.verde {
  color: #35b144 !important;
}

.corpo-carrinho-total .right {
  text-align: right;
}

.botao-finalizar-carrinho {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #35b144;
}

.botao-finalizar-carrinho:hover {
  background-color: #258631;
}

.lista-produtos-height {
  min-height: 300px;
}

.modal {
  background-color: rgba(0,0,0,0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 700;
  display: none;
  padding: 25px 0;
  overflow-y: scroll;
}

.modal-corpo {
  width: 720px;
  max-width: 95%;
  margin: 0 auto;
  background: #fff;
  padding: 15px 20px;
}

.tags-cardapio {
  width: calc(100% - 115px);
}

.cada-tags-cardapio {
  background-color: #ebebeb;
  width: auto;
  height: 22px;
  line-height: 22px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #646464;
  font-size: 12px;
  cursor: pointer;
  overflow: hidden;
}

.cada-tags-cardapio span {
  padding: 0 7px;
}

.cada-tags-cardapio i {
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  color: #646464;
  background-color: #d7d7d7;
}

.cada-tags-cardapio:hover i {
  color: #fff;
  background-color: #bf4646;
}

.subtotal-modal {
  width: 115px;
  text-align: right;
  border: none;
  padding: 0;
}

.subtotal-modal p {
  font-size: 14px;
  margin-bottom: 7px;
}

.subtotal-modal p span {
  font-size: 18px;
}

.engloba-cardapio-modal {
  padding: 20px 0;
}

.cada-cardapio-modal h4 {
  cursor: default;
  color: #fff !important;
}

.cada-cardapio-modal i {
  display: none;
}

.cada-cardapio-modal .cada-sabor {
  padding-right: 70px;
}

.preco-cada-sabor {
  position: absolute;
  right: 15px;
  height: 20px;
  line-height: 20px;
  top: 50%;
  margin-top: -10px;
  color: #646464;
  font-size: 16px;
  font-weight: 600;
}

.comentario-cardapio {
  width: 100%;
  height: 100px;
  padding: 15px 20px;
  border: 1px solid #ebebeb;
  resize: none;
  color: #646464;
}

.finaliza-modal button {
  width: 240px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #fff !important;
  margin-left: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.finaliza-modal .verde {
  background-color: #35b144;
}

.finaliza-modal .verde:hover {
  background-color: #258631;
}

.finaliza-modal .vermelho {
  background-color: #bf4646;
}

.finaliza-modal .vermelho:hover {
  background-color: #a01919;
}

.feedback {
  z-index: 2000;
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 600px;
  max-width: 100%;
  border: 1px solid #f0c36d;
  background-color: #f9edbe;
  padding: 8px 15px;
  font-size: 14px;
  line-height: 17px;
  color: #242424;
  font-weight: 600;
  display: none;
}

.feedback p {
  text-align: center;
}

.mini-link-banner {
  display: block;
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: -470px;
  z-index: 10;
}

.mini-link-banner a,
.mini-link-banner img {
  display: block;
  width: 100%;
}

.corpo-cardapio-login {
  margin-bottom: 80px;
}

.float-cardapio-login {
  float: left;
  width: 50%;
  padding: 50px 0 30px 0;
}

.float-cardapio-login:last-child {
  border-left: 1px solid #505050;
}

.centraliza-cardapio-login {
  width: 280px;
  max-width: 100%;
  margin: 0 auto;
}

.login-facebook {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background-color: #00599f;
  border-radius: 7px;
  padding: 0 15px;
  margin-bottom: 15px;
}

.login-laranja {
  background-color: #f27019;
}

.login-facebook-icon,
.login-facebook-label {
  color: #fff;
  float: left;
  line-height: 40px;
  padding: 5px 0;
  text-align: center;
  font-size: 16px;
}

.login-facebook-icon {
  width: 40px;
  font-size: 20px;
}

.login-facebook-label {
  width: calc(100% - 40px);
}

.titulo-cardapio-login {
  color: #383838;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
}

.input-cardapio-login {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}

.input-cardapio-login label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
}

.input-cardapio-login div {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #d1d1d1;
  overflow: hidden;
}

.input-cardapio-login div i {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  line-height: 35px;
  width: 42px;
  border-right: 1px solid #d1d1d1;
  background-color: #e8e8e8;
  color: #777;
  text-align: center;
  font-size: 16px;
}

.input-cardapio-login div select,
.input-cardapio-login div input {
  width: calc(100% - 42px);
  margin-left: 42px;
  padding-right: 25px;
  padding-left: 12px;
  height: 35px;
  line-height: 35px;
  color: #777;
  background: url("../../../assets/site/../../assets/site/img/arrow-select.png") no-repeat right 12px center;
}

.input-cardapio-login ::-webkit-input-placeholder {
  color: #777;
}

.input-cardapio-login      :-ms-input-placeholder {
  color: #777;
}

.input-cardapio-login          ::-moz-placeholder {
  color: #777;
}

.input-cardapio-login           :-moz-placeholder {
  color: #777;
}

.botao-form-cardapio {
  background-color: #629054;
  width: 100%;
  height: 50px;
  border-radius: 7px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
}

.botao-form-cardapio:hover {
  background-color: #3fa91f;
}

.esqueceu-cardapio-login {
  display: table;
  text-align: center;
  margin: 10px auto 0 auto;
  line-height: 16px;
  color: #5a5a5a;
  font-size: 14px;
  font-weight: 700;
  border-bottom: solid 1px #999;
}

.caixa-cardapio-login {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}

.caixa-cardapio-login .titulo-cardapio-login {
  margin-bottom: 30px;
}

.input-cardapio-cadastro {
  margin-bottom: 15px;
}

.input-cardapio-cadastro label {
  display: inline-block;
  width: 120px;
  padding-right: 10px;
  text-align: right;
  vertical-align: middle;
  line-height: 16px;
  font-size: 14px;
  color: #373737;
  font-weight: 600;
}

.input-cardapio-cadastro input {
  display: inline-block;
  width: calc(100% - 123px);
  padding: 10px 15px;
  line-height: 16px;
  font-size: 14px;
  border: solid 1px #aaa;
  border-radius: 4px;
}

.input-cardapio-cadastro select {
  width: calc(100% - 123px);
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 15px;
  border: solid 1px #aaa;
  border-radius: 4px;
  background: #fff url("../../../assets/site/../../assets/site/img/seta-select.png") right center no-repeat;
}

.float-cardapio-finalizando {
  width: 33.33%;
  padding: 0 10px;
  border-right: 1px solid #999;
  min-height: 400px;
}

.float-cardapio-finalizando:last-child {
  border-right: none;
}

.titulo-finalizando {
  width: 100%;
  padding: 8px 15px;
  background-color: #d2d2d2;
  color: #383838;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.titulo-finalizando span {
  display: block;
}

.float-cardapio-finalizando ul {
  margin-bottom: 15px;
}

.cada-end-finalizando {
  margin-bottom: 20px;
  position: relative;
}

.cada-end-finalizando input {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.cada-end-finalizando div {
  width: 100%;
  padding-left: 30px;
}

.cada-end-finalizando div p {
  color: #373737;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 5px;
}

.cada-end-finalizando div p span {
  font-weight: 700;
}

.cada-end-finalizando .end-nao-entrega {
  color: #eb2326 !important;
}

.botao-novo-finalizando {
  background-color: #b6270f;
  width: 100%;
  height: 50px;
  border-radius: 7px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.botao-novo-finalizando:hover {
  background-color: #821e0d;
}

.botao-cinza-finalizando {
  background-color: #3c3c3c;
}

.botao-cinza-finalizando:hover {
  background-color: #111;
}

.form-finalizando {
  display: none;
}

.cada-end-finalizando .input-cardapio-cadastro {
  padding-left: 0 !important;
}

.cada-end-finalizando .input-cardapio-cadastro input {
  position: relative;
  width: calc(100% - 123px);
  height: auto;
}

.cada-pedido-finalizando div {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 5px;
}

.cada-pedido-finalizando div p {
  color: #373737;
  font-size: 14px;
  line-height: 17px;
}

.cada-pedido-finalizando div p:first-child {
  width: 200px;
}

.cada-pedido-finalizando div p span {
  font-weight: 700;
}

.overlay-geral {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: scroll;
  background-color: rgba(0,0,0,0.8);
}

.back-overlay-geral {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.corpo-overlay-geral {
  position: relative;
  z-index: 3;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  margin: 40px auto;
  width: 500px;
  max-width: 95%;
  height: auto;
}

.fechar-overlay-geral {
  cursor: pointer;
  position: absolute;
  top: -30px;
  right: 0;
  line-height: 30px;
  width: auto;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.fechar-overlay-geral i {
  margin-left: 8px;
}

.titulo-overlay-geral {
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 700;
  padding: 15px;
  background-color: #eee;
}

.lista-descricao-geral {
  padding: 15px;
}

.lista-descricao-geral li {
  border-top: 1px solid #ccc;
  padding-top: 15px;
  margin-top: 15px;
}

.lista-descricao-geral li:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.descricao-geral {
  width: calc(100% - 150px);
}

.descricao-geral p {
  font-size: 14px;
  line-height: 18px;
  color: #444;
}

.descricao-geral p span {
  font-weight: 700;
}

.botao-descricao-geral {
  width: 150px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #707070;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
}

.botao-descricao-geral:hover {
  background-color: #111;
}

.margin-descricao-geral {
  margin-top: 7px;
}

.margin-descricao-geral:first-child {
  margin-top: 0;
}

.botao-rodape-enderecos {
  margin-top: 15px;
}

.info-contato .botao-rodape-enderecos {
  margin: 15px 0 0 0;
}

/********* ALTERAÇÕES 22/02 ***********/

.content-sabor-novo {
  position: relative;
  padding-right: 0;
}

.content-sabor-novo div {
  width: calc(100% - 160px);
  padding-right: 20px;
}

.content-sabor-novo button,
.preco-cada-sabor-novo {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
  display: block;
  width: 70px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
}

.content-sabor-novo button:disabled {
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  cursor: default;
}

.preco-cada-sabor-novo {
  right: 80px;
  width: 80px;
  display: block;
  color: #646464;
  font-size: 16px;
  font-weight: 600;
}

/********* ALTERAÇÕES 13/03 - Galeria-interna ***********/

.titulo-galeria-interna {
  font-size: 22px;
  margin-bottom: 5px;
  color: #636363;
  font-weight: 600;
}

.texto-galeria-interna {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 30px;
  color: #636363;
}

/********* CARDAPIO STATUS ***********/

.section-pedido-status {
  padding-bottom: 100px;
}

.titulo-pedido-status {
  font-size: 24px;
  color: #242424;
  font-weight: 700;
  margin-bottom: 15px;
}

.titulo-pedido-status span {
  color: #a91b12;
}

.desc-pedido-status p {
  font-size: 16px;
  line-height: 20px;
  color: #242424;
  font-weight: 400;
  margin-top: 5px;
}

.desc-pedido-status p span {
  font-weight: 700;
}

.desc-pedido-status p:first-child {
  margin-top: 0;
}

.quadros-status {
  width: 103%;
  margin: 20px -1.5%;
}

.cada-quadros-status {
  position: relative;
  width: 30.33%;
  height: 130px;
  margin: 0 1.5%;
  border: solid 1px #d2d2d2;
}

.content-quadros-status {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.content-quadros-status h4 {
  font-size: 20px;
  color: #646464;
  margin-bottom: 5px;
}

.content-quadros-status p {
  font-size: 30px;
  color: #a91b12;
  font-weight: 700;
}

.content-quadros-status p i {
  margin-right: 5px;
}

.float-pedido-status i {
  display: block;
}

.float-pedido-status {
  width: 65.66%;
}

.float-pedido-status .cada-sabor {
  padding-left: 15px;
  padding-right: 85px;
}

.total-pedido-status span {
  display: block;
}

.aside-pedido-status {
  width: 31.33%;
}

.cancelar-pedido-status p {
  color: #242424;
  font-size: 13px;
  font-weight: 700;
}

.cancelar-pedido-status h4 {
  color: #242424;
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0;
}

.atual-pedido-status {
  position: relative;
  background-color: #d42b3c;
  padding: 50px 5%;
  margin-bottom: 20px;
}

.atual-pedido-status p {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.icon-time-pedidos {
  position: absolute;
  top: 15px;
  left: 50%;
  margin-left: -10px;
  width: 15px;
}

.icon-time-pedidos img {
  width: 100%;
  -webkit-animation: ampulheta 3s infinite;
  -moz-animation: ampulheta 3s infinite;
  -o-animation: ampulheta 3s infinite;
  animation: ampulheta 3s infinite;
}

@-webkit-keyframes ampulheta {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes ampulheta {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-o-keyframes ampulheta {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@keyframes ampulheta {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

/********* CARDAPIO HISTÓRICO ***********/

.scroll-table-historico-novo {
  margin-bottom: 100px;
}

.titulo-historico-novo {
  color: #242424;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.table-historico-novo {
  width: 100%;
}

.table-historico-novo th {
  padding: 15px 0;
  background-color: #ececec;
  text-align: center;
  font-size: 15px;
  color: #6b6b6b;
  font-weight: 700;
}

.table-historico-novo tr td {
  padding: 15px 0;
  text-align: center;
  font-size: 15px;
  color: #111;
  font-weight: 700;
}

.table-historico-novo tr:nth-child(odd) td {
  background-color: #f7f7f7;
}

.table-historico-novo tr td a {
  color: #111;
  text-decoration: underline;
}

.warning-pedidos-offline {
  margin-bottom: 20px;
}

/************ ENQUETE ************/

.enquete-flutuante {
  z-index: 990;
  position: fixed;
  background-color: #868686;
  right: 0;
  top: 173px;
  width: 320px;
  padding: 15px;
  max-width: calc(100% - 20px);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.esconde-enquete-flutuante {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.clica-aparece-enquete {
  cursor: pointer;
  position: absolute;
  left: -20px;
  top: 0px;
  width: 20px;
  height: 40px;
  background-color: #ff7702;
  color: #fff;
  font-size: 20px;
}

.clica-aparece-enquete i {
  vertical-align: top;
  line-height: 24px;
}

.clica-aparece-enquete:hover {
  background-color: #363636;
}

.titulo-enquete {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.content-enquete {
  width: 100%;
  background-color: #e8e8e8;
  border: 5px solid #fff;
  padding: 10px 15px;
}

.content-enquete p {
  color: #423e38;
  font-size: 14px;
  line-height: 18px;
}

.lista-enquete {
  padding: 20px 0;
}

.cada-enquete {
  position: relative;
  margin-top: 10px;
}

.cada-enquete:first-child {
  margin-top: 0;
}

.cada-enquete input {
  cursor: pointer;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
}

.cada-enquete p {
  position: relative;
  padding-left: 20px;
  font-weight: 600;
  max-width: calc(100% - 60px);
}

.cada-enquete p i {
  color: #423e38;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  line-height: 18px;
  width: 20px;
  font-size: 15px;
}

.submit-enquete-flutuante {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #ff7702;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-weight: 600;
  font-size: 16px;
  border-radius: 20px;
}

.submit-enquete-flutuante:hover {
  background-color: #363636;
}

.results-enquete {
  width: 60px;
  display: none;
}

.results-enquete p {
  max-width: 60px;
  padding-left: 0;
  color: #ff7702;
  text-align: right;
}

.voto-enquete-confirmado .cada-enquete p {
  padding-left: 0;
}

.voto-enquete-confirmado .cada-enquete p i,
.voto-enquete-confirmado .cada-enquete input {
  display: none;
}

.voto-enquete-confirmado .results-enquete {
  display: block;
}

.whats {
  position: fixed;
  z-index: 99;
  bottom: 2%;
  right: 2%;
}

.whats p {
  padding: 5px 10px 5px 10px;
  width: 150px;
  font-size: 12px;
  line-height: 15px;
  margin: 4px 10px 4px 0;
  background-color: #fff;
  box-shadow: 2px 2px 13px rgba(0,0,0,0.1);
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  position: relative;
}

.whats p:after {
  content: '';
  position: absolute;
  background: white;
  border-top: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  right: -5px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  z-index: 1;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.whats a {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.whats div {
  width: 50px;
  height: 50px;
  background-color: #4dc247;
  color: #fff;
  border-radius: 50%;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  font-size: 30px;
  text-align: center;
  line-height: 46px;
}

.whats div:hover {
  box-shadow: 2px 2px 11px rgba(0,0,0,0.7);
}

@media (max-width: 1560px) {
  .carrinho-cardapio {
    right: 2.5%;
    margin: 0;
  }
}

@media (min-width: 960px) {
  /*ajustes para se esticar a tela com menu mobile aberto*/

  .engloba-menu-mobile {
    display: none !important;
  }

  body {
    overflow-y: scroll !important;
  }
}

@media (max-width: 960px) {
  .trava-body-enquete {
    overflow-x: hidden;
  }

  .enquete-flutuante {
    position: absolute;
    top: 60px;
  }

  .corpo-mobile {
    width: 95%;
  }

  .hidden-960 {
    display: none;
  }

  .show-960 {
    display: block;
  }

  .float-none-960 {
    float: none;
    margin: 0 auto;
  }

  .cab-pt02 {
    height: 60px;
  }

  .logo img {
    width: auto;
    height: 50px;
    margin: 5px 0;
  }

  .logo {
    margin: 0;
  }

  .engloba-btn-menu-mob {
    display: block;
  }

  .section-carousel {
    height: 630px;
    background-size: cover !important;
  }

  /*.arrow {
		top: 150px;
	}*/

  .arrow-left {
    left: 20px;
  }

  .arrow-right {
    right: 20px;
  }

  .cada-item-carrossel {
    height: auto;
    margin-top: -265px;
  }

  .produto-carrossel {
    width: 280px;
    height: 210px;
  }

  .produto-carrossel img {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    -moz-transform: translate(-50%, -50%) scale(0.7);
    -ms-transform: translate(-50%, -50%) scale(0.7);
    transform: translate(-50%, -50%) scale(0.7);
  }

  .engloba-info-carrossel {
    width: 280px;
  }

  .engloba-info-carrossel h3 {
    margin: 20px 0 10px 0;
    text-align: center;
  }

  .link-produto-carrossel {
    font-size: 24px;
  }

  .info-carrossel {
    font-size: 14px;
    text-align: center;
  }

  .preco {
    width: 150px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }

  .preco span {
    font-size: 24px;
  }

  .add {
    margin-top: 5px;
  }

  .carrossel,
  .cada-item-carrossel {
    width: 280px;
  }

  .section-destaque,
  .section-noticias {
    padding: 30px 0;
  }

  .titulo-destaque,
  .titulo-receitas {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .pai-cada-produto-destaque {
    margin: 0 auto;
    width: 470px;
  }

  .section-cat-destaques {
    height: auto;
    background-size: cover !important;
    padding: 30px 0;
  }

  .cada-receita {
    margin-bottom: 20px;
  }

  .link-mais {
    width: 180px;
    margin-top: 10px;
  }

  .pai-cada-noticia,
  .pai-cada-artigo {
    width: 624px;
    margin: 0 auto;
  }

  .rodape {
    padding-top: 30px;
  }

  .horario {
    text-align: center;
    margin-bottom: 15px;
  }

  .coluna-rodape {
    width: 100%;
  }

  .redes-rodape {
    display: table;
    width: auto;
  }

  .rodape-pt01 {
    padding-bottom: 30px;
  }

  .logo-rodape {
    margin-bottom: 15px;
  }

  .pai-infos-rodape {
    float: none;
    display: table;
    margin: 0 auto;
    position: relative;
    left: 0;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

  .carrinho {
    margin-left: 5px;
  }

  .carrinho-sem-redes {
    margin-left: 0;
  }

  .carrinho-sem-redes a {
    border-left: none !important;
  }

  .pai-imgs-sobre {
    max-width: 490px;
  }

  .cada-sobre h3 {
    font-size: 16px;
  }

  .cada-sobre p {
    font-size: 14px;
    line-height: 17px;
  }

  .section-titulo {
    height: 188px;
  }

  .section-titulo-sobre {
    background: url("../../../assets/site/../../assets/site/img/fundo-sobre-mob.jpg") center no-repeat;
  }

  .section-titulo-contato {
    background: url("../../../assets/site/../../assets/site/img/fundo-tratamentos-mob.jpg") center no-repeat;
  }

  .section-titulo h2 {
    padding-top: 100px;
  }

  .filtro-lateral {
    width: 100%;
    margin-bottom: 30px;
  }

  .lista-produtos {
    width: 100%;
  }

  .form-select-filtro {
    width: 285px;
    margin-bottom: 20px;
  }

  .paginador {
    display: table;
  }

  .pai-lista-produtos {
    width: 462px;
    margin: 0 auto;
  }

  .engloba-prod-img {
    width: 280px;
    margin-bottom: 30px;
  }

  .links-produto:first-child {
    margin: 0 auto;
    margin-bottom: 5px;
  }

  .face-tweet {
    margin-bottom: 20px;
  }

  .engloba-info-produto {
    width: auto;
  }

  .engloba-info-produto h3,
  .info-produto {
    text-align: center;
  }

  .pai-produto {
    padding-bottom: 30px;
  }

  .produto-info,
  .produto-tec {
    margin-bottom: 30px;
  }

  .titulo-produto,
  .produto-info p,
  .produto-info-texto {
    text-align: center;
  }

  .info-contato {
    margin-bottom: 30px;
  }

  .form-contato {
    float: none;
    width: 100%;
  }

  .contato-time,
  .end-contato p {
    text-align: center;
  }

  .contato-redes {
    display: table;
    margin: 0 auto;
  }

  .end-contato a {
    margin: 20px auto;
  }

  .como-chegar {
    height: auto;
  }

  .txt-chegar,
  .form-chegar {
    float: none;
  }

  .txt-chegar {
    text-align: center;
  }

  .form-chegar {
    padding-top: 0;
    margin-bottom: 20px;
  }

  .input-chegar {
    width: 77%;
    margin-left: 0;
  }

  .submit-chegar {
    float: right;
    width: 20%;
    margin-left: 0;
  }

  #map_canvas {
    height: 300px;
  }

  .data {
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .cada-lista-noticia a,
  .resumo-not {
    text-align: center;
  }

  .cada-lista-noticia a {
    margin: 0 auto 10px auto;
  }

  .lista-noticias {
    width: 100%;
  }

  .img-noticia {
    float: none;
    max-width: 500px;
    height: auto;
    margin: 0 auto 30px auto;
  }

  .titulo-noticia,
  .txt-noticia {
    text-align: center;
  }

  .cada-receita-lista {
    margin-bottom: 30px;
  }

  .ingredientes {
    float: none;
  }

  .titulo-receita,
  .lista-ing,
  .como-fazer h5 {
    text-align: center;
  }

  .lista-ing {
    margin-bottom: 20px;
  }

  .lista-passos {
    margin-bottom: 30px;
  }

  .cada-prod-carrinho {
    padding: 0;
    margin-bottom: 50px;
  }

  .cada-prod-carrinho:last-child {
    margin-bottom: 15px;
  }

  .nome-prod-car {
    padding: 0;
    height: auto;
    overflow: visible;
  }

  .pai-muda,
  .pai-valor,
  .excluir {
    padding: 0;
  }

  .valor {
    text-align: center;
  }

  .total {
    padding: 0;
  }

  .total p {
    text-align: center;
  }

  .aviso {
    width: 100%;
  }

  .aviso h3,
  .aviso p {
    text-align: center;
  }

  .form-carrinho {
    width: 100%;
    margin-bottom: 40px;
  }

  .engloba-aviso {
    width: 100%;
  }

  .warning {
    text-align: center;
    padding: 5px;
  }

  .pai-links-erro {
    width: auto;
    margin: 0 auto 30px auto;
  }

  .section-erro h3,
  .section-erro p {
    text-align: center;
  }

  .link-mais-erro {
    margin-bottom: 15px;
  }

  .address {
    text-align: center;
    margin-bottom: 15px;
  }

  .address a {
    margin: 0 auto;
    margin-bottom: 15px;
  }

  .carrossel02 {
    width: 100%;
  }

  .cada-img-carrossel img {
    width: 100%;
    height: auto;
  }

  .arrow {
    display: none;
  }

  .section-carousel03 {
    height: 215px;
  }

  .section-carousel03-sem-paginas {
    height: 150px !important;
  }

  .cada-img-full-carrossel {
    height: 150px;
  }

  .pai-promo {
    width: 290px;
    margin: 0 auto;
  }

  .engloba-preco {
    text-align: center;
  }

  .produto-imagem,
  .fig-prod {
    width: 280px;
    height: 212px;
  }

  .btn-carrossel-thumbs {
    font-size: 16px;
  }

  .btn-thumbs-left {
    left: -11px;
  }

  .btn-thumbs-right {
    right: -11px;
  }

  .shown-img {
    display: none;
  }

  .hidden-img {
    display: block;
  }

  .cada-equipe,
  .cada-equipe:first-child {
    float: none;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .cada-download {
    text-align: center;
  }

  .engloba-parceiros {
    width: 468px;
    margin: 0 auto;
  }

  .engloba-servicos {
    width: 470px;
    margin: 0 auto;
  }

  .form-servico {
    width: 100%;
  }

  .engloba-tudo-busca {
    width: 287px;
    padding-top: 50px;
  }

  .engloba-tudo-busca-sem-banner {
    width: 287px;
    top: 0;
    padding-top: 30px;
  }

  .aba-busca {
    width: 140px;
    height: 35px;
    font-size: 16px;
  }

  .cada-form-busca {
    padding: 30px 52px 25px 52px;
  }

  .cada-linha-form-busca {
    margin-top: 0;
  }

  .cada-pt-linha {
    float: none;
    margin-left: 0;
    margin-top: 10px;
  }

  .cada-pt-linha:first-child {
    margin-top: 0;
  }

  .envia-busca {
    margin-top: 20px;
  }

  .big-input-busca,
  .mini-envia-busca {
    float: none;
  }

  .big-input-busca {
    width: 180px;
    height: 30px;
  }

  .mini-envia-busca {
    width: 100%;
    height: 50px;
    font-size: 18px;
    margin-top: 20px;
  }

  .pai-todos-imoveis-home {
    width: 470px;
    margin: 0 auto;
  }

  .cada-imovel-home {
    margin-top: 15px;
  }

  .btn-filtrar-valor,
  .plus-input-filtro {
    width: 100%;
  }

  .nome-imovel,
  .cod {
    text-align: center;
  }

  .descricao-imovel,
  .localizacao-imovel {
    float: none;
    width: 100%;
  }

  .localizacao-imovel {
    margin-top: 25px;
  }

  .descricao-imovel p {
    text-align: center;
  }

  .fb-page,
  .pai-form-home,
  .pai-map-home {
    margin-bottom: 15px;
  }

  .fa-page-sem-mapa {
    width: 280px;
  }

  .pai-form-home-sem-mapa {
    width: 324px;
  }

  .section-busca {
    position: relative;
    top: 0;
  }

  .banner-sem-link {
    width: 100%;
    height: 155px;
  }

  .banner-sem-link-01 {
    background: url("../../../assets/site/../../assets/site/../site/img/banner-mob.jpg") center no-repeat;
  }

  .logo-footer {
    margin: 0 auto 20px auto;
  }

  .info-sobre-lateral {
    float: none;
    width: 100%;
  }

  .fotos-sobre {
    float: none;
    margin: 0 auto;
    margin-top: 30px;
  }

  .fotos-inverso {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .pai-funcionarios {
    width: 468px;
    margin: 0 auto;
  }

  .titulo-sobre {
    text-align: center;
  }

  .info-sobre-lateral p,
  .info-profissionais {
    text-align: justify;
  }

  .section-titulo-tratamentos {
    background: url("../../../assets/site/../../assets/site/img/fundo-tratamentos-mob.jpg") center no-repeat;
  }

  .section-titulo-artigos {
    background: url("../../../assets/site/../../assets/site/img/fundo-tratamentos-mob.jpg") center no-repeat;
  }

  .engloba-tratamentos {
    width: 470px;
    margin: 0 auto;
  }

  .engloba-btns-servicos {
    display: block;
  }

  .btn-filtro-servico {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 5px;
  }

  .descricao-servico p {
    text-align: justify;
  }

  .conteudo-pagina-generica .titulo-sobre {
    text-align: left;
  }

  .conteudo-pagina-generica {
    float: none;
    margin-top: 30px;
    width: 100% !important;
  }

  .menu-arvore {
    float: none;
    width: 100%;
    min-height: auto;
    padding-right: 0;
  }

  .engloba-menu-mobile {
    overflow-y: scroll;
  }

  .mini-link-banner {
    right: 0;
    margin: 0;
  }

  .mini-link-banner img {
    width: 100px;
    height: 50px;
  }

  .float-cardapio-finalizando {
    float: none;
    margin: 0 auto;
    width: 400px;
    max-width: 100%;
    padding: 0 10px;
    border-right: none;
    min-height: auto;
  }

  .form-chegar-novo {
    width: 100%;
    padding: 12.5px 0;
  }
}

@media (max-width: 768px) {
  .img-artigo {
    float: none;
    margin: 0 auto;
    margin-bottom: 15px;
  }

  .plus-cada-artigo {
    float: none;
    width: 100%;
  }

  .cada-artigo h4,
  .cada-artigo p {
    text-align: justify;
  }

  .lista-dash li {
    width: 50%;
  }

  .float-cardapio-login {
    float: none;
    width: 100%;
    padding: 50px 0;
  }

  .float-cardapio-login:last-child {
    border-left: none;
    border-top: 1px solid #505050;
  }

  .scroll-table-historico-novo {
    overflow-x: scroll;
  }

  .table-historico-novo {
    width: 713px;
  }

  .txt-noticia {
    font-size: 14px;
    line-height: 18px;
  }

  .txt-noticia a {
    font-size: 14px;
  }
}

@media (max-width: 660px) {
  .hidden-660 {
    display: none;
  }

  .show-660 {
    display: block;
  }

  .float-none-660 {
    float: none;
    margin: 0 auto;
  }

  .form-artigo {
    display: table;
    float: none;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .pai-cada-noticia,
  .pai-cada-artigo {
    width: 280px;
  }

  .pai-funcionarios {
    width: 234px;
  }

  .fotos-sobre {
    width: 300px;
  }

  .carousel-thumbs-sobre {
    width: 221px;
  }

  .engloba-tratamentos {
    width: 235px;
  }

  .corpo-desc-equipe {
    width: 100%;
    height: 100%;
  }

  .cada-desc-equipe {
    padding-left: 0;
  }

  .cada-desc-equipe .cada-funcionario {
    float: none;
    margin: 0 auto 15px auto;
    left: 0;
    top: 0;
    position: relative;
    width: 218px;
    height: 278px;
  }

  .finaliza-modal button {
    width: 100%;
    margin-top: 15px;
  }

  .engloba-cardapio-modal {
    padding-bottom: 0;
  }

  .form-chegar-novo {
    width: 450px;
    max-width: 100%;
    float: none;
    margin: 0 auto;
  }

  .form-chegar-novo div {
    width: 100%;
  }

  .input-chegar-novo,
  .select-chegar-novo {
    width: 100%;
    margin: 0 auto 15px auto;
  }

  .submit-chegar-novo {
    width: 100%;
  }

  .quadros-status {
    width: 100%;
    margin: 0 auto;
  }

  .cada-quadros-status {
    width: 600px;
    max-width: 100%;
    margin: 15px auto;
  }

  .float-pedido-status,
  .aside-pedido-status {
    width: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 520px) {
  .hidden-520 {
    display: none;
  }

  .show-520 {
    display: block;
  }

  .pai-cada-produto-destaque {
    width: 235px;
  }

  .pai-imgs-sobre {
    max-width: 280px;
  }

  .pai-lista-produtos {
    width: 232px;
  }

  .input-chegar {
    width: 60%;
  }

  .submit-chegar {
    float: right;
    width: 35%;
  }

  .img-noticia {
    max-width: 280px;
    height: auto;
  }

  .info02 {
    width: 280px;
  }

  .info02-sem-valor {
    width: auto;
  }

  .arrow-sobre {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .arrow-sobre-left {
    left: 15px;
  }

  .arrow-sobre-right {
    right: 15px;
  }

  .baixar {
    float: none;
    width: 100%;
  }

  .engloba-parceiros {
    width: 234px;
  }

  .engloba-servicos {
    width: 235px;
  }

  .pai-todos-imoveis-home {
    width: 235px;
  }

  .titulo-imovel-home {
    float: none;
    text-align: center;
  }

  .mais-imoveis {
    float: none;
    text-align: center;
    margin-top: 15px;
  }

  .engloba-info-imovel {
    width: 100%;
  }

  .nome-imovel {
    font-size: 24px;
  }

  .dados-imovel {
    float: none;
    width: 100%;
    margin-top: 25px;
  }

  .dados-imovel:first-child {
    margin-top: 0;
  }

  .lista-dash li {
    width: 100%;
  }

  .form-area-restrita {
    padding: 30px;
  }

  .input-cardapio,
  .select-cardapio {
    width: 100%;
    padding: 0;
  }

  .input-cardapio button {
    right: 20px;
  }

  .cada-radio-sabor {
    float: left;
    width: 100%;
  }

  .tags-cardapio,
  .subtotal-modal {
    width: 100%;
    float: none;
  }

  .subtotal-modal {
    text-align: left;
    padding-top: 15px;
  }

  .cada-cardapio h4,
  .cada-passo h4,
  .cada-cardapio-modal h4 {
    font-size: 15px;
  }

  .cada-passo-titulo p span {
    font-size: 12px;
  }

  .cada-cardapio-modal .cada-sabor {
    padding-right: 0;
  }

  .preco-cada-sabor {
    margin-top: 10px;
    position: relative;
    top: 0;
    right: 0;
  }

  .modal-corpo {
    padding: 15px 3%;
  }

  .cada-pedido-finalizando div p:first-child {
    width: 130px;
  }

  .descricao-geral {
    float: none;
    width: 100%;
  }

  .botao-descricao-geral {
    float: none;
    margin-top: 10px;
  }
}

.img-pequena {
  display: inline;
  margin-right: 10px;
  margin-bottom: 5px;
}

.img-grande {
  display: inline;
  width: auto;
  max-width: 100%;
}

.engloba-img-pequena {
  display: inline;
}

/*Home*/

body {
  background-color: #fff;
  color: #000;
}

.cab-pt01 {
  background-color: #fff;
  border-bottom: 2px solid #02af96;
}

.engloba-fones-cab a,
.form-search input,
.redes-cab a,
.carrinho a {
  color: #003b67;
}

.engloba-fones-cab a:hover,
.redes-cab a:hover,
.carrinho a:hover {
  color: #009ca8;
}

.lupa {
  color: #424242;
}

.carrinho a {
  border-left: 1px solid rgba(145, 142, 142, 0.3);
}

.carrinho-qtd {
  color: #fff;
  background-color: #f32402;
}

.carrinho-ativo {
  color: #fff !important;
}

.carrinho-mob-ativo {
  color: #d32c2c !important;
}

.cab-pt02 {
  background-color: #003b67;
}

.menu a {
  color: #fff;
  border-bottom: 3px solid #003b67;
}

.menu a:hover,
.menu-ativo {
  /*color: #009ca8 !important;*/
  border-bottom: 3px solid #009ca8 !important;
}

.section-carousel {
  /* background: url("../img/fundo-carrossel-home.jpg") center no-repeat; */
}

.section-carousel02 {
  /* background: url("../img/fundo-carrossel-home.jpg") center no-repeat; */
}

.cada-img-full01 {
  background: url("../../../assets/site/../../assets/site/img/fundo-carrossel-home.jpg") center no-repeat;
}

.cada-img-full02 {
  background: url("../../../assets/site/../../assets/site/img/fundo-carrossel-home2.jpg") center no-repeat;
}

.cada-img-full03 {
  background: url("../../../assets/site/../../assets/site/img/fundo-carrossel-home3.jpg") center no-repeat;
}

.arrow {
  color: #a39e8d;
}

.produto-carrossel {
  background-color: #fff;
}

.link-produto-carrossel,
.info-carrossel {
  color: #fff;
}

.link-produto-carrossel:hover {
  color: #009363;
}

.preco {
  color: #fff;
  background-color: #00724d;
}

.add {
  color: #fff;
  border: 3px solid #00724d;
}

.add:hover {
  background-color: #00724d;
}

.plus-add {
  color: #00724d;
  border: 3px solid #00724d;
}

.plus-add:hover {
  color: #fff;
  background-color: #00724d;
}

.bolinha {
  background-color: #fff;
}

.bolinha-ativa {
  background-color: #00724d;
}

.titulo-destaque {
  color: #717171;
}

.color-aux {
  color: #fff !important;
}

.produto-destaque {
  background-color: #fff;
}

.cada-produto-destaque h4,
.cada-produto-destaque p {
  color: #404040;
}

.cada-produto-destaque:hover {
  border-bottom: 2px solid #009ca8;
}

.link-mais {
  color: #fff;
  background-color: #009ca8;
}

.link-mais:hover {
  background-color: #003b67;
}

.over-produto-destaque,
.over-produto-carrossel {
  background-color: rgba(49, 49, 49, 0.8);
}

.plus,
.plus-over-produto {
  background-color: rgba(0, 156, 168, 0.5);
  color: rgba(255, 255, 255, 0.5);
}

.mais {
  background-color: #00724d;
  color: #fff;
}

.section-receitas {
  background: url("../../../assets/site/../../assets/site/../site/img/fundo-receitas.jpg") center no-repeat;
}

.titulo-receitas {
  color: #fff;
}

.cada-receita h4,
.cada-receita p {
  color: #fff;
}

.data-noticia {
  background-color: #d42b3c;
}

.data-noticia p {
  color: #fff;
}

.info-noticia h4,
.info-noticia p {
  color: #717171;
}

.cada-noticia:hover h4 {
  color: #d42b3c;
}

.cada-artigo:hover .data-artigo {
  background-color: #003b67;
}

.rodape {
  background-color: #003b67;
}

.address,
.address a,
.horario,
.redes-rodape a,
.rodape-pt02 p {
  color: #fff;
}

.address a:hover,
.redes-rodape a:hover {
  color: #009ca8;
}

.rodape-pt01 {
  border-bottom: 1px solid #fff;
}

.sobe {
  color: #fff;
  background-color: #d42b3c;
}

/*Sobre*/

.section-titulo h2 {
  color: #fff;
}

.pai-breadcrumb {
  border-bottom: 1px solid #dcdcdc;
}

.home {
  color: #003b67;
}

.seta-bread {
  color: #000;
}

.pg-bread,
.link-bread {
  color: #636363;
}

.link-bread:hover {
  text-decoration: underline;
}

.cada-sobre {
  border-bottom: 1px solid #ebebeb;
}

.cada-sobre h3,
.titulo-sobre {
  color: #003b67;
}

.cada-sobre p {
  color: #717171;
}

.arrow-sobre {
  color: #fff;
  background-color: rgba(0, 114, 77, 0.7);
}

.texto-desc-equipe h3 {
  color: #003b67;
}

/*Produtos*/

.filtro-lateral {
  border: 2px solid #ebebeb;
}

.form-search-prod label,
.titulo-filtro,
.titulo-filtro span,
.lista-filtro a:hover .filtro,
.filtro-ativo,
.titulo-filtro-lateral {
  color: #d42b3c !important;
}

.form-search-prod input {
  color: #918e8e;
  background-color: #ebebeb;
}

.lupa-produto {
  background-color: #d42b3c;
  color: #fff;
}

.change-color-setinha {
  color: #636363 !important;
}

.filtro {
  color: #404040;
}

.filtro-qtd {
  color: #969696;
}

.select-filtro {
  color: #404040;
  background-color: #ebebeb;
}

.btn-filtro {
  color: #fff;
  background-color: #00724d;
}

.btn-filtro:hover {
  background-color: #404040;
}

.pag-arrow {
  background-color: #003b67;
  color: #fff;
}

.pag-arrow:hover {
  background-color: #009ca8;
}

.pag-arrow-inativo {
  background-color: #c2c2c2;
}

.pag-arrow-inativo:hover {
  background-color: #c2c2c2;
  color: #fff;
}

.nr {
  color: #999999;
}

.nr-ativo,
.nr:hover {
  color: #282828;
}

/*Produto interna*/

.fig-prod {
  background-color: #fff;
}

.plus-color {
  background-color: #00724d;
}

.troca-img {
  background-color: #fff;
  border: 4px solid #fff;
}

.troca-img-ativo,
.troca-img:hover {
  border: 4px solid #00724d;
}

.engloba-info-produto h3,
.info-produto,
.parcela,
.titulo-servico {
  color: #404040;
}

.links-produto {
  color: #404040;
  border: 2px solid #404040;
}

.links-produto:hover {
  border: 2px solid #00724d;
}

.prod-qtd span {
  background-color: #ebebeb;
  border-radius: 5px;
}

.preco-prod,
.parcela span {
  color: #00724d;
}

.comprar {
  background-color: #00724d;
  color: #fff;
}

.comprar:hover {
  background-color: #404040;
}

.pai-produto {
  border-bottom: 1px solid #dcdcdc;
}

.titulo-produto {
  color: #d42b3c;
}

.produto-info p {
  color: #404040;
}

.table-tec th {
  background-color: #e1e1e1;
}

.table-tec td {
  background-color: #eee;
}

.table-tec th,
.table-tec td {
  border-top: 2px solid #f5f5f5;
  color: #404040;
}

/*Contato*/

.contato-time,
.end-contato p,
.end-contato a {
  color: #717171;
}

.end-contato a:hover,
.contato-redes a:hover {
  color: #009ca8;
}

.contato-redes a {
  color: #878787;
}

.label {
  color: #404040;
}

.input {
  background-color: #ebebeb;
  border: 1px solid #ebebeb;
}

.submit {
  background-color: #003b67;
  color: #fff;
}

.submit:hover {
  background-color: #009ca8;
}

.plus-input {
  background-color: #fff;
  border: 1px solid #fff;
}

.marca-erro {
  border: 1px solid #eb2326;
}

.warning {
  color: #fff;
}

.erro {
  background-color: #eb2326;
}

.ok {
  background-color: #00724d;
}

.como-chegar {
  background-color: #003b67;
}

.txt-chegar {
  color: #fff;
}

.input-chegar {
  background-color: #fff;
  color: #404040;
}

.submit-chegar {
  color: #fff;
}

.submit-chegar:hover {
  color: #003b67;
}

/*Notícias*/

.data {
  color: #717171;
  border-bottom: 2px solid #d42b3c;
}

.cada-lista-noticia a,
.resumo-not {
  color: #717171;
}

.cada-lista-noticia a:hover {
  color: #d42b3c;
}

/*Notícia interna*/

.txt-noticia,
.titulo-noticia {
  color: #717171;
}

/*Receitas*/

.nome-receita,
.cada-receita-lista p {
  color: #636363;
}

.cada-receita-lista:hover h4 {
  color: #d42b3c;
}

/*Receita Interna*/

.titulo-receita,
.lista-ing li,
.lista-passos li,
.como-fazer h5 {
  color: #717171;
}

/*Carrinho*/

.infos-prod {
  background-color: #d42b3c;
}

.infos-prod p {
  color: #fff;
}

.cada-prod-carrinho {
  border: 1px solid #dcdcdc;
}

.img-prod-carrinho {
  background-color: #fff;
}

.nome-prod-car {
  color: #717171;
}

.muda-qtd {
  background-color: #00724d;
  color: #fff;
}

.qtd-prod {
  background-color: #dcdcdc;
  color: #717171;
}

.muda-qtd:hover {
  background-color: #404040;
}

.valor,
.total p {
  color: #404040;
}

.valor span,
.total span {
  color: #00724d;
}

.excluir {
  color: #d42b3c;
}

.excluir:hover {
  color: #404040;
}

.total {
  background-color: #dcdcdc;
}

.aviso h3 {
  color: #d42b3c;
}

.aviso p {
  color: #404040;
}

.engloba-aviso {
  border: 1px solid #00724d;
}

.engloba-aviso h3 {
  color: #404040;
}

.engloba-aviso span {
  background-color: #00724d;
  color: #fff;
}

.titulo-info-prod {
  color: #404040;
}

/*Erro*/

.section-erro h3 {
  color: #d42b3c;
}

.section-erro p {
  color: #636363;
}

.link-mais-erro {
  color: #fff;
  background-color: #d42b3c;
}

.link-mais-erro:hover {
  background-color: #404040;
}

/*download*/

.baixar {
  color: #fff;
  background-color: #00724d;
}

.baixar:hover {
  background-color: #404040;
}

/*Mobile*/

.btn-menu-mob {
  color: #009ca8;
}

.engloba-menu-mobile {
  background-color: #fff;
}

.menu-mobile a {
  color: #606060;
}

.menu-mobile-ativo {
  color: #009ca8 !important;
}

/*Parceiros*/

.cada-parceiro-background {
  background-color: #ebebeb;
}

/*Tratamentos*/

.btn-filtro-servico-ativo,
.btn-filtro-servico:hover {
  color: #fff;
  background-color: #009ca8;
  border: 1px solid #009ca8;
}

/************************** Página Genérica ***************************/

.estilo-clica-menu-arvore p,
.estilo-clica-menu-arvore a {
  color: #929292;
  background-color: #f4f4f4;
}

.estilo-aparece-menu-arvore p span,
.estilo-aparece-menu-arvore a span {
  color: #8d8d8d;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.estilo-aparece-menu-arvore p:hover span,
.estilo-aparece-menu-arvore a:hover span,
.estilo-aparece-menu-arvore .ativa-menu-arvore span {
  color: #f7931d;
}

.estilo-aparece-menu-arvore p i,
.estilo-aparece-menu-arvore a i {
  color: #000;
}

/************************** Área Restrita ***************************/

.lista-dash li a {
  color: #000;
  background-color: #f8f8f8;
}

.lista-dash li a:hover {
  color: #fff;
  background-color: #003b67;
}

.lista-area-restrita {
  background-color: #003b67;
}

.lista-area-restrita li {
  border-top: 1px solid #082133;
}

.lista-area-restrita li:first-child {
  border-top: 1px solid transparent;
}

.lista-area-restrita li a {
  color: #fff;
}

.lista-area-restrita li a:hover {
  color: #000;
}

.form-area-restrita {
  background-color: #f8f8f8;
}

.form-area-restrita a {
  color: #111;
}

.lista-cabecalho-bread a {
  color: #111;
}

.lista-cabecalho-bread a:hover,
.ativa-cabecalho-bread {
  color: #003b67;
}

.botao-acesso-restrito {
  background-color: #003b67;
  color: #fff;
}

.botao-acesso-restrito:hover {
  background-color: #009ca8;
}

.numero-passo,
.titulo-carrinho-cardapio,
.cada-cardapio-modal h4 {
  background-color: #d42b3c;
}

.botao-background {
  background-color: #d42b3c;
  color: #fff;
}

@media (max-width: 960px) {
  .cada-img-full01 {
    background: url("../../../assets/site/../../assets/site/img/fundo-carrossel-home-mobile.jpg") center no-repeat;
  }

  .cada-img-full02 {
    background: url("../../../assets/site/../../assets/site/img/fundo-carrossel-home2-mobile.jpg") center no-repeat;
  }

  .cada-img-full03 {
    background: url("../../../assets/site/../../assets/site/img/fundo-carrossel-home3-mobile.jpg") center no-repeat;
  }
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer,
.fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url("../../../assets/site/../../assets/site/fancybox/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../../../assets/site/../../assets/site/fancybox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../../../assets/site/../../assets/site/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../../../assets/site/../../assets/site/fancybox/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading,
  .fancybox-close,
  .fancybox-prev span,
  .fancybox-next span {
    background-image: url("../../../assets/site/../../assets/site/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("../../../assets/site/../../assets/site/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}