@import url("https://fonts.googleapis.com/css?family=Lilita+One");
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.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.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.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(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.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 headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.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.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.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, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.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(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.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(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.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, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.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(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.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(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.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(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

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

/* Paginas especificas en proyecto  */
a {
  color: #670BE8; }

body {
  font-family: "Lilita One", "Helvetica Neue", "Arial", serif;
  color: black; }

.no-gutter {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0 !important;
  padding-left: 0 !important; }

.no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0; }

.centralizador {
  display: flex;
  justify-content: center;
  align-items: center; }

.two-col > * {
  float: left;
  width: 50%;
  text-align: center;
  padding: 20px; }

.three-col > * {
  float: left;
  width: 33.33333%;
  text-align: center;
  padding: 20px; }

.four-col > * {
  float: left;
  width: 25%;
  text-align: center;
  padding: 20px; }

.five-col > * {
  float: left;
  width: 20%;
  text-align: center;
  padding: 20px; }

.six-col > * {
  float: left;
  width: 16.66667%;
  text-align: center;
  padding: 20px; }

.img-center {
  width: 100%;
  text-align: center; }

/* TABS PANEL */
.tabbable-panel {
  padding-top: 0px; }

/* Default mode */
.tabbable-line > .nav-tabs {
  border: none;
  margin: 0px; }

.tabbable-line > .nav-tabs > li {
  margin-right: 2px; }

.tabbable-line > .nav-tabs > li > a {
  border: 0;
  margin-right: 0;
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  background: none; }

.tabbable-line > .nav-tabs > li:hover {
  border-bottom: 4px solid #670000;
  color: #670000; }

.tabbable-line > .nav-tabs > li:hover a {
  color: #670000;
  border: 0;
  background: none !important;
  color: #670000; }

.tabbable-line > .nav-tabs > li.open .dropdown-menu, .tabbable-line > .nav-tabs > li:hover .dropdown-menu {
  margin-top: 0px; }

.tabbable-line > .nav-tabs > li.active {
  border-bottom: 4px solid #670000;
  position: relative; }

.tabbable-line > .nav-tabs > li.active > a {
  border: 0;
  color: #000;
  background: none !important;
  font-weight: 600; }

.tabbable-line > .nav-tabs > li > a > i {
  margin-right: 2px; }

.tabbable-line > .nav-tabs > li.active > a > i {
  color: #000; }

.tabbable-line > .tab-content {
  border: 0;
  border-top: 1px solid #C8C8C8;
  padding: 15px 0; }

.tab-content {
  width: 100%;
  float: left;
  clear: both; }

.tab-content h3 {
  color: #474268;
  font-family: 'Open Sans';
  font-size: 30px; }

.tab-content p {
  font-size: 18px;
  color: #444; }

.tab-pane hr {
  border-color: #C8C8C8; }

.portlet .tabbable-line > .tab-content {
  padding-bottom: 0; }

header.small {
  background: rgba(0, 0, 0, 0.7);
  padding-top: 0px; }
  header.small .brand a img {
    height: 40px;
    margin-top: 10px;
    margin-bottom: 10px; }

nav.primary-nav {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #fc5f48 0%, #fe1f46 100%);
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  display: none;
  padding-top: 0px;
  transition: all 0.8s ease;
  z-index: 50; }
  nav.primary-nav ul {
    list-style: none; }
    nav.primary-nav ul li {
      list-style: none;
      width: 100%;
      text-align: center;
      margin-bottom: 24px; }
      nav.primary-nav ul li a {
        font-size: 36px;
        font-weight: lighter;
        color: #fff;
        transition: all 0.3s ease-out; }
        nav.primary-nav ul li a:hover {
          color: #E6FE9D;
          text-decoration: none;
          font-size: 40px; }

nav.primary-nav.open {
  display: block; }

header {
  width: 100%;
  padding-top: 10vh;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 51; }
  header .brand {
    float: left; }
  header .main-menu {
    padding-top: 20px; }
  header nav.language {
    color: white;
    float: left; }
    header nav.language ul {
      list-style: none; }
      header nav.language ul li {
        float: left;
        list-style: none;
        margin-right: 20px; }
        header nav.language ul li a {
          color: white; }
          header nav.language ul li a:hover {
            text-decoration: none; }
        header nav.language ul li.active a {
          border-bottom: solid 1px white; }
  header .menu-right {
    float: right; }
    header .menu-right #hamburger-menu {
      width: 34px;
      height: 20px;
      position: relative;
      margin: 0px auto;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      -o-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
      cursor: pointer; }
    header .menu-right #hamburger-menu span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: #fff;
      border-radius: 3px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
    header .menu-right #hamburger-menu span:nth-child(1) {
      top: 0px; }
    header .menu-right #hamburger-menu span:nth-child(2), header .menu-right #hamburger-menu span:nth-child(3) {
      top: 9px; }
    header .menu-right #hamburger-menu span:nth-child(4) {
      top: 18px; }
    header .menu-right #hamburger-menu.open span:nth-child(1) {
      top: 18px;
      width: 0%;
      left: 50%; }
    header .menu-right #hamburger-menu.open span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
    header .menu-right #hamburger-menu.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    header .menu-right #hamburger-menu.open span:nth-child(4) {
      top: 18px;
      width: 0%;
      left: 50%; }

header.small {
  background: rgba(252, 158, 50, 0.7);
  padding-top: 10px; }
  header.small .brand a img {
    height: 40px;
    margin-top: 0px;
    margin-bottom: 10px; }
  header.small .menu-right {
    padding-top: 12px; }

nav.primary-nav {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #FE712D 0%, #FF1713 100%);
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  display: none;
  padding-top: 0px;
  transition: all 0.8s ease;
  z-index: 50; }
  nav.primary-nav ul {
    list-style: none; }
    nav.primary-nav ul li {
      list-style: none;
      width: 100%;
      text-align: center;
      margin-bottom: 24px; }
      nav.primary-nav ul li a {
        font-size: 36px;
        font-weight: lighter;
        color: #fff;
        transition: all 0.3s ease-out; }
        nav.primary-nav ul li a:hover {
          color: #E6FE9D;
          text-decoration: none;
          font-size: 40px; }

nav.primary-nav.open {
  display: block; }

header {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 51;
  background-color: #FE712D; }
  header .brand {
    float: left;
    margin-left: 40px;
    padding-top: 0px; }
  header .main-menu {
    padding-top: 20px;
    padding-right: 20px; }
  header nav.language {
    color: white;
    float: left; }
    header nav.language ul {
      list-style: none; }
      header nav.language ul li {
        float: left;
        list-style: none;
        margin-right: 20px; }
        header nav.language ul li a {
          color: white; }
          header nav.language ul li a:hover {
            text-decoration: none; }
        header nav.language ul li.active a {
          border-bottom: solid 1px white; }
  header .menu-right {
    float: right; }
    header .menu-right #hamburger-menu {
      width: 34px;
      height: 20px;
      position: relative;
      margin: 0px auto;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      -o-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
      cursor: pointer; }
    header .menu-right #hamburger-menu span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: #fff;
      border-radius: 3px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
    header .menu-right #hamburger-menu span:nth-child(1) {
      top: 0px; }
    header .menu-right #hamburger-menu span:nth-child(2), header .menu-right #hamburger-menu span:nth-child(3) {
      top: 9px; }
    header .menu-right #hamburger-menu span:nth-child(4) {
      top: 18px; }
    header .menu-right #hamburger-menu.open span:nth-child(1) {
      top: 18px;
      width: 0%;
      left: 50%; }
    header .menu-right #hamburger-menu.open span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
    header .menu-right #hamburger-menu.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    header .menu-right #hamburger-menu.open span:nth-child(4) {
      top: 18px;
      width: 0%;
      left: 50%; }

header.home {
  background-color: transparent; }

header.home.small {
  background: rgba(252, 158, 50, 0.7); }

section.navigation-home {
  position: fixed;
  z-index: 7;
  margin: 0 auto;
  width: 100%;
  top: 20px; }
  section.navigation-home nav.navbar-default {
    background-color: transparent;
    border-radius: 0;
    border: none;
    margin-bottom: 0px; }
  section.navigation-home .navbar-nav {
    width: 100%;
    text-align: left; }
    section.navigation-home .navbar-nav > li {
      float: left;
      height: auto; }
      section.navigation-home .navbar-nav > li a {
        padding-top: 22px;
        padding-bottom: 18px;
        color: white;
        font-size: 18px;
        font-family: "Lilita One", serif;
        border: solid 4px transparent; }
        section.navigation-home .navbar-nav > li a:hover {
          border: solid 4px #fff;
          color: white; }
    section.navigation-home .navbar-nav > li.active a {
      border-bottom: solid 4px #670000;
      color: white;
      background-color: transparent !important; }
      section.navigation-home .navbar-nav > li.active a:hover {
        color: white; }

section.navigation-internal {
  /*position: fixed;*/
  z-index: 7;
  margin: 0 auto;
  width: 100%;
  top: 20px;
  background-color: #FE712D;
  padding-top: 10px;
  padding-bottom: 10px; }
  section.navigation-internal nav.navbar-default {
    background-color: transparent;
    border-radius: 0;
    border: none;
    margin-bottom: 0px; }
  section.navigation-internal .navbar-nav {
    width: 100%;
    text-align: left; }
    section.navigation-internal .navbar-nav > li {
      float: left;
      height: auto; }
      section.navigation-internal .navbar-nav > li a {
        padding-top: 22px;
        padding-bottom: 18px;
        color: white;
        font-size: 18px;
        font-family: "Lilita One", serif;
        border: solid 4px transparent; }
        section.navigation-internal .navbar-nav > li a:hover {
          border: solid 4px #fff;
          color: white; }
    section.navigation-internal .navbar-nav > li.active a {
      border-bottom: solid 4px #670000;
      color: white;
      background-color: transparent !important; }
      section.navigation-internal .navbar-nav > li.active a:hover {
        color: white; }

section.navigation-interna {
  position: fixed;
  z-index: 7;
  margin: 0 auto;
  width: 100%;
  bottom: 5vh; }
  section.navigation-interna nav.navbar-default {
    background-color: #003768;
    border-radius: 0;
    border: none;
    margin-bottom: 0px; }
  section.navigation-interna .navbar-nav {
    width: 100%;
    text-align: center; }
    section.navigation-interna .navbar-nav > li.logo-internas {
      position: absolute;
      left: -28px;
      top: -85px; }
      section.navigation-interna .navbar-nav > li.logo-internas a {
        padding: 0px; }
        section.navigation-interna .navbar-nav > li.logo-internas a:hover {
          border-bottom: none; }
    section.navigation-interna .navbar-nav li:nth-child(2) {
      margin-left: 140px; }
    section.navigation-interna .navbar-nav > li {
      float: none;
      display: inline-block;
      height: auto; }
      section.navigation-interna .navbar-nav > li a {
        padding-top: 22px;
        padding-bottom: 18px;
        color: white;
        font-size: 16px;
        font-family: "Lilita One", serif;
        border-bottom: solid 4px transparent; }
        section.navigation-interna .navbar-nav > li a:hover {
          border-bottom: solid 4px #670000;
          color: white; }
    section.navigation-interna .navbar-nav > li.active a {
      border-bottom: solid 4px #670000;
      color: white;
      background-color: transparent !important; }
      section.navigation-interna .navbar-nav > li.active a:hover {
        color: white; }

/*!
 * Start Bootstrap - Full Slider HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */
html,
body {
  height: 100%; }

#carousel-custom .carousel,
#carousel-custom .item,
#carousel-custom .active {
  height: 65vh; }

#carousel-custom .carousel-inner {
  height: 65vh;
  position: fixed; }

#carousel-custom {
  height: 65vh;
  background: url("../images/slide_1.jpg"); }

#carousel-interna .carousel,
#carousel-interna .item,
#carousel-interna .active {
  height: 650px; }

#carousel-interna .carousel-inner {
  height: 650px;
  position: fixed; }

#carousel-interna {
  height: 650px; }

.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity; }

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0; }

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1; }

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.carousel-fade .carousel-control {
  z-index: 2; }

/* Background images are set within the HTML using inline CSS, not here */
.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover; }

#carousel-custom .carousel-indicators {
  margin: 0px 0 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  bottom: 0px;
  left: 0px; }

#carousel-custom .carousel-indicators li {
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  display: inline-block;
  height: 120px;
  width: 19%;
  border: none;
  margin: 0px 5px; }

#carousel-custom .carousel-indicators li img {
  display: block;
  opacity: 1;
  width: 100%;
  border-bottom: solid 6px transparent;
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */
  -webkit-transition: all .6s ease;
  /* Fade to color for Chrome and Safari */
  -webkit-backface-visibility: hidden;
  /* Fix for transition flickering */ }

#carousel-custom .carousel-indicators li.active img {
  opacity: 1;
  border-bottom: solid 6px white;
  -webkit-filter: grayscale(0%); }

#carousel-custom .carousel-indicators li:hover img {
  -webkit-filter: grayscale(0%); }

#carousel-custom .carousel-outer {
  position: relative; }

.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x; }

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.2) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.2) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x; }

.banner-content {
  width: 100%;
  height: auto;
  position: absolute;
  overflow: hidden;
  top: 0; }
  .banner-content .fondo {
    /*background: url("../images/banner1-fondo.jpg");*/
    background-size: cover !important;
    background-position: center bottom !important;
    width: 100%;
    height: 70vh;
    animation: animationFrames ease-out 2s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    position: relative; }
    .banner-content .fondo img {
      width: 100%; }
  .banner-content .ochenta {
    background-size: contain;
    width: 15%;
    height: auto;
    animation: animationFrames ease-out 2s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    top: 0px;
    opacity: 0;
    animation: zoomingin ease-out 0.3s forwards;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-delay: 2s;
    position: absolute;
    top: 9%;
    left: 26%; }
    .banner-content .ochenta img {
      width: 100%; }
  .banner-content .desde {
    background-size: contain;
    width: 15%;
    height: auto;
    animation: animationFrames ease-out 2s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    top: 0px;
    opacity: 0;
    animation: zoomingin ease-out 0.3s forwards;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-delay: 2.3s;
    position: absolute;
    top: 30%;
    left: 26%; }
    .banner-content .desde img {
      width: 100%; }
  .banner-content .vermas {
    background-size: contain;
    width: 22%;
    height: auto;
    animation: animationFrames ease-out 2s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    top: 0px;
    opacity: 0;
    animation: zoomingin ease-out 0.3s forwards;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-delay: 2.6s;
    position: absolute;
    top: 40%;
    left: 17%;
    text-align: center; }
    .banner-content .vermas p {
      font-size: 36px;
      color: white;
      width: 100%;
      font-family: 'Lilita One', cursive;
      text-transform: uppercase;
      line-height: 1em; }
    .banner-content .vermas a {
      display: block;
      color: white;
      text-align: center;
      padding: 20px;
      border: solid 1px white;
      width: auto;
      display: inline-block;
      font-family: 'Lilita One', cursive;
      line-height: 12px; }
      .banner-content .vermas a:hover {
        border: solid 2px;
        text-decoration: none; }
    .banner-content .vermas img {
      width: 100%; }
  .banner-content .naranjas {
    background-size: contain;
    width: 23%;
    height: auto;
    animation: animationFrames ease-out 2s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    top: 0px;
    opacity: 0;
    animation: fromdowntotop ease-out 2s forwards;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    position: absolute;
    top: 34%;
    left: 0%; }
    .banner-content .naranjas img {
      width: 100%; }

section.formstyle {
  margin-top: 10vh; }

/* TABS PANEL */
.tabbable-panel {
  float: left;
  padding-bottom: 0px; }

/* Default mode */
.tabbable-line > .nav-tabs {
  border: none;
  margin: 0px; }

.tabbable-line > .nav-tabs > li {
  margin-left: 30px; }

.tabbable-line > .nav-tabs > li:first-child {
  margin-left: 0px; }

.tabbable-line > .nav-tabs > li > a {
  border: 0;
  margin-right: 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  text-transform: uppercase;
  padding: 5px 0px;
  border-radius: 8px 8px 0 0; }

.tabbable-line > .nav-tabs > li > a:focus {
  outline: none; }

.tabbable-line > .nav-tabs > li:hover > a {
  border: 0;
  color: #fff; }

/*.tabbable-line > .nav-tabs > li.open > a > i, .tabbable-line > .nav-tabs > li:hover > a > i {
  color: #a6a6a6; }*/
.tabbable-line > .nav-tabs > li.open .dropdown-menu, .tabbable-line > .nav-tabs > li:hover .dropdown-menu {
  margin-top: 0px; }

.tabbable-line > .nav-tabs > li:hover {
  border: 0; }

.tabbable-line > .nav-tabs > li.active {
  border-bottom: 2px solid #5ee5e5; }

.tabbable-line > .nav-tabs > li.active > a {
  border: 0;
  color: #fff; }

/*.tabbable-line > .nav-tabs > li.active > a > i {
  color: #404040; }*/
.tabbable-line > .tab-content {
  margin-top: 0px;
  background-color: #fff;
  border: 0;
  border-top: 1px solid #eee;
  padding: 15px 0; }

.tab-content h3 {
  color: #ed431e;
  font-size: 30px; }

.tab-content p {
  font-size: 18px;
  color: #444; }

.portlet .tabbable-line > .tab-content {
  padding-bottom: 0; }

.tab-pages {
  float: left;
  margin-top: 7vh;
  clear: both;
  width: 100%; }

form.paperpost-form-style {
  /* end form group */ }
  form.paperpost-form-style a.forgot {
    color: rgba(255, 255, 255, 0.4);
    width: 100%;
    text-align: center;
    margin-top: 20px;
    float: left;
    font-size: 12px; }
  form.paperpost-form-style .cta {
    width: 100%;
    text-align: center;
    border-radius: 24px;
    background: #5ee5e5;
    border: 0;
    color: black;
    margin-top: 20px;
    padding: 6px 0px; }
  form.paperpost-form-style .cta-black {
    width: 100%;
    text-align: center;
    border-radius: 24px;
    background: none;
    border: solid 3px white;
    color: white;
    margin-top: 20px;
    padding: 6px 0px;
    font-weight: bold; }
  form.paperpost-form-style .form-group {
    /* .styled-check */
    /* end .styled-check */ }
    form.paperpost-form-style .form-group label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4); }
    form.paperpost-form-style .form-group input {
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.1);
      border: 0; }
    form.paperpost-form-style .form-group input:focus {
      border: solid 2px rgba(255, 255, 255, 0.5);
      background: none;
      color: white;
      outline-color: transparent;
      outline-style: none; }
    form.paperpost-form-style .form-group .styled-check {
      width: 20px;
      position: relative;
      margin: 20px auto; }
      form.paperpost-form-style .form-group .styled-check label {
        width: 20px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        font-size: 14px;
        top: 0;
        left: 0;
        background: linear-gradient(top, #222 0%, #45484d 100%);
        border-radius: 4px;
        box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4); }
        form.paperpost-form-style .form-group .styled-check label:after {
          content: '';
          width: 9px;
          height: 5px;
          position: absolute;
          top: 4px;
          left: 4px;
          border: 3px solid #fcfff4;
          border-top: none;
          border-right: none;
          background: transparent;
          opacity: 0;
          transform: rotate(-45deg); }
        form.paperpost-form-style .form-group .styled-check label:hover::after {
          opacity: 0.3; }
      form.paperpost-form-style .form-group .styled-check input[type=checkbox] {
        visibility: hidden; }
        form.paperpost-form-style .form-group .styled-check input[type=checkbox]:checked + label:after {
          opacity: 1; }

@keyframes animationFrames {
  0% {
    opacity: 0;
    transform: translate(50px, 0px); }
  100% {
    opacity: 1;
    transform: translate(0px, 0px); } }

@keyframes fromdowntotop {
  0% {
    opacity: 0;
    transform: translate(0px, 100px); }
  100% {
    opacity: 1;
    transform: translate(0px, 0px); } }

@keyframes zoomingin {
  0% {
    opacity: 0;
    transform: scaleX(2) scaleY(2); }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1); } }

.logo-home {
  position: fixed;
  z-index: 6;
  width: 20%;
  left: 40%;
  top: 25vh; }
  .logo-home img {
    width: 100%; }

.full-width {
  width: 100%;
  height: 120px;
  clear: both;
  position: fixed;
  bottom: 60px;
  z-index: 2; }
  .full-width .container {
    height: 120px; }

.capa-negra {
  width: 100%;
  height: 90vh;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 1; }

.capa-negra-interna {
  width: 100%;
  height: 95vh;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 1; }

.gray {
  background-size: contain;
  overflow: hidden; }

.purple {
  background-size: contain;
  overflow: hidden; }

.blue {
  background-size: contain;
  overflow: hidden; }

.yellow {
  background-size: contain;
  overflow: hidden; }

.box-aspect {
  position: relative;
  height: auto; }
  .box-aspect:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%; }

.box-aspect > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s; }
  .box-aspect > .content .capa {
    background: rgba(255, 255, 255, 0.99);
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    transform: translateY(100%);
    opacity: 1; }
  .box-aspect > .content:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); }
    .box-aspect > .content:hover .capa {
      background: rgba(255, 136, 49, 0);
      transform: translateY(0); }

.rectangle-aspect-50 {
  position: relative;
  height: auto; }
  .rectangle-aspect-50:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 50%; }

.rectangle-aspect-50 > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s; }
  .rectangle-aspect-50 > .content .capa {
    background: rgba(255, 255, 255, 0.99);
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    transform: translateY(100%);
    opacity: 1; }
  .rectangle-aspect-50 > .content:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); }
    .rectangle-aspect-50 > .content:hover .capa {
      background: rgba(255, 136, 49, 0.1);
      transform: translateY(0); }

.rectangle-aspect-full-width {
  position: relative;
  height: auto; }
  .rectangle-aspect-full-width:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 34%; }

.rectangle-aspect-full-width > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto; }

.rectangle-aspect-banner {
  position: relative;
  height: auto; }
  .rectangle-aspect-banner:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 32%; }

.rectangle-aspect-banner > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto; }

section.bannerhome {
  width: 100%;
  height: auto;
  background-color: #FE722D; }
  section.bannerhome .banner-content {
    width: 100%;
    height: auto;
    position: absolute;
    overflow: hidden;
    top: 0; }
    section.bannerhome .banner-content .fondo {
      /*background: url("../images/banner1-fondo.jpg");*/
      background-size: contain;
      width: 100%;
      height: auto;
      animation: animationFrames ease-out 2s;
      animation-iteration-count: 1;
      transform-origin: 50% 50%;
      position: relative; }
      section.bannerhome .banner-content .fondo img {
        width: 100%; }
    section.bannerhome .banner-content .ochenta {
      background-size: contain;
      width: 15%;
      height: auto;
      animation: animationFrames ease-out 2s;
      animation-iteration-count: 1;
      transform-origin: 50% 50%;
      top: 0px;
      opacity: 0;
      animation: zoomingin ease-out 0.3s forwards;
      animation-iteration-count: 1;
      transform-origin: 50% 50%;
      animation-delay: 2s;
      position: absolute;
      top: 9%;
      left: 26%; }
      section.bannerhome .banner-content .ochenta img {
        width: 100%; }
    section.bannerhome .banner-content .desde {
      background-size: contain;
      width: 15%;
      height: auto;
      animation: animationFrames ease-out 2s;
      animation-iteration-count: 1;
      transform-origin: 50% 50%;
      top: 0px;
      opacity: 0;
      animation: zoomingin ease-out 0.3s forwards;
      animation-iteration-count: 1;
      transform-origin: 50% 50%;
      animation-delay: 2.3s;
      position: absolute;
      top: 30%;
      left: 26%; }
      section.bannerhome .banner-content .desde img {
        width: 100%; }
    section.bannerhome .banner-content .vermas {
      background-size: contain;
      width: 22%;
      height: auto;
      animation: animationFrames ease-out 2s;
      animation-iteration-count: 1;
      transform-origin: 50% 50%;
      top: 0px;
      opacity: 0;
      animation: zoomingin ease-out 0.3s forwards;
      animation-iteration-count: 1;
      transform-origin: 50% 50%;
      animation-delay: 2.6s;
      position: absolute;
      top: 40%;
      left: 17%;
      text-align: center; }
      section.bannerhome .banner-content .vermas p {
        font-size: 36px;
        color: white;
        width: 100%;
        font-family: 'Lilita One', cursive;
        text-transform: uppercase;
        line-height: 1em; }
      section.bannerhome .banner-content .vermas a {
        display: block;
        color: white;
        text-align: center;
        padding: 20px;
        border: solid 1px white;
        width: auto;
        display: inline-block;
        font-family: 'Lilita One', cursive;
        line-height: 12px; }
        section.bannerhome .banner-content .vermas a:hover {
          border: solid 2px;
          text-decoration: none; }
      section.bannerhome .banner-content .vermas img {
        width: 100%; }
    section.bannerhome .banner-content .naranjas {
      background-size: contain;
      width: 23%;
      height: auto;
      animation: animationFrames ease-out 2s;
      animation-iteration-count: 1;
      transform-origin: 50% 50%;
      top: 0px;
      opacity: 0;
      animation: fromdowntotop ease-out 2s forwards;
      animation-iteration-count: 1;
      transform-origin: 50% 50%;
      position: absolute;
      top: 34%;
      left: 0%; }
      section.bannerhome .banner-content .naranjas img {
        width: 100%; }

section.grilla-principal {
  width: 100%;
  background-color: #CFD645; }
  section.grilla-principal .grid-productos {
    /*background: url("../images/box1.jpg");*/
    background-size: contain;
    height: auto;
    overflow: hidden; }
  section.grilla-principal .grid-foto {
    background: url("../images/box2.jpg");
    background-size: contain;
    overflow: hidden; }
  section.grilla-principal .grid-historia {
    background: url("../images/box3.jpg");
    background-size: contain;
    overflow: hidden; }

section.grilla-secundaria {
  width: 100%;
    /* background-color: #ffc300; */
    background: url(../images/productos.jpg) no-repeat #ffc300;
    background-size: contain;
    background-position: right center;}

.bannerproducto {
  background: url("../images/pbanner.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 70px; }

.bannercampanas {
  background: url("../images/campanhasbanner.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 70px; }

  .c01 {
    background: url("../images/limonada-small.jpg");
    background-size: contain; }

  .c0 {
  background: url("../images/menosfiltro.jpg");
  background-size: contain; }

.c1 {
  background: url("../images/campana1.jpg");
  background-size: contain; }

.c2 {
  background: url("../images/campana2.jpg");
  background-size: contain; }

.c3 {
  background: url("../images/campana3.jpg");
  background-size: contain; }

.c4 {
  background: url("../images/campana4.jpg");
  background-size: contain; }

.p1 {
  background: url("../images/p1.jpg");
  background-size: contain; }

.p2 {
  background: url("../images/p2.jpg");
  background-size: contain; }

.p3 {
  background: url("../images/p3.jpg");
  background-size: contain; }

.p4 {
  background: url("../images/p4.jpg");
  background-size: contain; }

.p5 {
  background: url("../images/p5.jpg");
  background-size: contain; }

.p6 {
  background: url("../images/p6.jpg");
  background-size: contain; }

.p7 {
  background: url("../images/p7.jpg");
  background-size: contain; }

.p8 {
  background: url("../images/p8.jpg");
  background-size: contain; }

.p9 {
  background: url("../images/p8.jpg");
  background-size: contain; }

.content {
  background-size: contain !important; }

section.historiabigjpg {
  width: 100%;
  height: 3737px;
  background: url("../images/historia3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
.spacer {
  width: 100%;
  height:80px;
}
section.bannerhistoria {
  width: 100%;
  height:356px;
  background:url("../images/historiabanner.jpg") top center no-repeat;
}

section.historiatimeline {
  width:100%;
  background: #fabf37;
  height:auto;
  padding-bottom: 40px;
}

section.historiatimeline h1{
  font-size: 56px;
  color:white;
}

.itemright {
   border-left: solid 3px #fe7c31;
   float: right;
   padding-left: 40px;
   position: relative;
    right: 3px;
}

.itemright .pelotita {
  position: relative;
  left: -61px;
  top: 238px;
}

.itemleft .pelotita {
  position: relative;
  right: -61px;
  top: 238px;
}

.itemright .pelotita2 {
  position: relative;
  left: -61px;
  top: 40px;
}

.itemleft .pelotita2 {
  position: relative;
  right: -61px;
  top: 40px;
}

section.historiatimeline .item:first-child .pelotita {
  top:0px;
}

.img-circle {
  border:solid 6px #fe7c31;
}

.itemleft {

  float: left;
  padding-right: 40px;
  text-align: right;
  border-right: solid 3px #fe7c31;
}

.itemright > * {
  text-align: left;
   color: white;
}
.itemleft > *{
  text-align: right;
  color: white;
  float: right;
}

section.historiatimeline .item {
  width:50%;
  clear: both;

}

section.historiatimeline .item .foto, section.historiatimeline .item .anho, section.historiatimeline .item .header, section.historiatimeline .item .parrafo{
  width:50%;
  clear: both;
}

section.historiatimeline .item .anho {
  font-size: 26px;
}
section.historiatimeline .item .header {
  font-size: 56px;
  margin-top: 0px;
  line-height: 1em;
  text-transform: uppercase;
}
section.historiatimeline .item .parrafo p {
  font-size: 22px;
  font-weight: 200;
  margin-top: 10px;
  }

  @media (max-width: 1120px) {

    section.historiatimeline .item {
      width:100%;
    }

    section.historiatimeline .item .anho, section.historiatimeline .item .header, section.historiatimeline .item .parrafo{
      width:100%;
      clear: both;
    }

    .itemleft {
       border-left: solid 3px #fe7c31;
       border-right: none;
       float: right;
       padding-left: 40px;
       position: relative;
        right: 3px;
    }

    .itemleft .pelotita {
      position: relative;
      left: -61px;
      top: 238px;
    }

    .itemleft .pelotita2 {
      position: relative;
      left: -61px;
      top: 40px;
    }

    .itemleft > * {
      text-align: left;
       color: white;
       float: left;
    }

  }


section.naranjabigjpg {
  width: 100%;
  height: 1147px;
  background: url("../images/naranja-productobig.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

section.pomelobigjpg {
  width: 100%;
  height: 1147px;
  background: url("../images/pomelo-productobig.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

section.guaranabigjpg {
  width: 100%;
  height: 1147px;
  background: url("../images/guarana-productobig.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

.megusta {
  position: relative;
  top: -32%;
  z-index: 999;
  width: 100%;
  left: 0;
  margin-right: 12px;
  text-align: center; }

.instagram {
  position: relative;
  top: -32%;
  z-index: 999;
  width: 100%;
  left: 0;
  margin-right: 12px;
  text-align: center; }
  .instagram a {
    font-size: 24px;
    font-weight: bold;
    color: white; }

section.contenido-internas {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 160px; }
  section.contenido-internas .contenedor-stats {
    width: 100%;
    float: left;
    clear: both;
    margin-top: 100px; }
    section.contenido-internas .contenedor-stats h1 {
      color: white;
      font-size: 36px; }
    section.contenido-internas .contenedor-stats .item-porcentaje {
      float: left;
      clear: both;
      width: 100%;
      margin-bottom: 20px; }
      section.contenido-internas .contenedor-stats .item-porcentaje h3 {
        font-weight: normal;
        font-size: 18px;
        color: white;
        margin-bottom: 0px; }
      section.contenido-internas .contenedor-stats .item-porcentaje span {
        margin-left: 20px;
        color: white;
        font-size: 22px;
        line-height: 0; }
      section.contenido-internas .contenedor-stats .item-porcentaje .chart-horiz {
        float: left;
        width: 80%;
        height: 16px;
        border: black solid 3px;
        border-radius: 12px; }
  section.contenido-internas .panel-cortelli {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    transition: all 0.5s ease;
    overflow-y: auto; }
    section.contenido-internas .panel-cortelli .novedad-item {
      float: left;
      width: 100%;
      margin-bottom: 40px; }
      section.contenido-internas .panel-cortelli .novedad-item h3 {
        color: #4f8e42;
        font-size: 30px; }
      section.contenido-internas .panel-cortelli .novedad-item .novedad-container {
        width: 100%;
        min-height: 220px;
        background: #e8e8e8; }
      section.contenido-internas .panel-cortelli .novedad-item .fecha-novedad {
        float: left;
        width: 20%;
        margin-top: 20px; }
        section.contenido-internas .panel-cortelli .novedad-item .fecha-novedad span.dia-novedad {
          width: 100%;
          text-align: center;
          font-size: 40px;
          line-height: 40px;
          float: left;
          clear: both; }
        section.contenido-internas .panel-cortelli .novedad-item .fecha-novedad span.mes-novedad {
          width: 100%;
          text-align: center;
          font-size: 20px;
          line-height: 20px;
          float: left; }
      section.contenido-internas .panel-cortelli .novedad-item .info-novedad {
        float: left;
        width: 80%;
        padding-right: 4.3333%; }
        section.contenido-internas .panel-cortelli .novedad-item .info-novedad img {
          margin: 0; }
        section.contenido-internas .panel-cortelli .novedad-item .info-novedad p {
          padding: 0; }
    section.contenido-internas .panel-cortelli .spacer {
      padding: 0px 4.3333%; }
    section.contenido-internas .panel-cortelli h1 {
      font-weight: lighter;
      color: #670000;
      font-size: 40px;
      text-align: center; }
    section.contenido-internas .panel-cortelli a.cerrar {
      opacity: 1;
      position: absolute;
      right: 15px;
      top: 0vh;
      background-color: transparent;
      border: none;
      border-radius: 0;
      color: #d2d2d2;
      vertical-align: middle;
      display: inline-table;
      padding: 10px;
      font-size: 3vh;
      transition: all 0.5s ease; }
      section.contenido-internas .panel-cortelli a.cerrar:hover {
        color: red; }
    section.contenido-internas .panel-cortelli a.leermas {
      /*display: none;*/
      opacity: 0;
      position: absolute;
      right: 15px;
      top: -10vh;
      background-color: #003768;
      border: none;
      border-radius: 0;
      color: white;
      vertical-align: middle;
      padding: 2vh 30px;
      font-size: 2vh;
      transition: all 0.5s ease; }
    section.contenido-internas .panel-cortelli .contenido {
      width: 100%;
      height: 100%;
      float: left; }
      section.contenido-internas .panel-cortelli .contenido img {
        margin: 20px 4.3333%; }
      section.contenido-internas .panel-cortelli .contenido h2, section.contenido-internas .panel-cortelli .contenido h3 {
        color: #008F39;
        text-align: center; }
      section.contenido-internas .panel-cortelli .contenido p {
        padding: 0 4.3333%;
        font-weight: normal;
        font-size: 20px;
        line-height: 30px;
        text-align: justify; }
        section.contenido-internas .panel-cortelli .contenido p:first-child {
          margin-top: 20px; }
    section.contenido-internas .panel-cortelli .contenido-avances {
      width: 100%;
      overflow-y: auto;
      height: 62vh; }
      section.contenido-internas .panel-cortelli .contenido-avances img {
        margin: 20px 0; }
      section.contenido-internas .panel-cortelli .contenido-avances p {
        padding: 0 4.3333%;
        font-weight: normal;
        font-size: 20px;
        line-height: 30px;
        text-align: justify; }
        section.contenido-internas .panel-cortelli .contenido-avances p:first-child {
          margin-top: 20px; }
    section.contenido-internas .panel-cortelli .fecha-selector {
      width: 100%;
      margin-top: 20px;
      margin-bottom: 20px;
      background-color: #e2e8ea; }
      section.contenido-internas .panel-cortelli .fecha-selector .year {
        width: 100%;
        text-align: center; }
        section.contenido-internas .panel-cortelli .fecha-selector .year ul {
          list-style: none;
          display: inline-block;
          text-align: center;
          padding: 0px 13.5%;
          border-bottom: solid 1px rgba(0, 0, 0, 0.3); }
          section.contenido-internas .panel-cortelli .fecha-selector .year ul li {
            float: left;
            font-size: 24px;
            font-weight: normal;
            margin: 10px;
            line-height: 1.3;
            margin-bottom: 0px; }
            section.contenido-internas .panel-cortelli .fecha-selector .year ul li a {
              color: black;
              border-bottom: solid 3px transparent; }
              section.contenido-internas .panel-cortelli .fecha-selector .year ul li a:hover {
                text-decoration: none;
                color: #b40000; }
          section.contenido-internas .panel-cortelli .fecha-selector .year ul li.selected a {
            border-color: #b40000;
            color: #670000;
            font-weight: bold; }
      section.contenido-internas .panel-cortelli .fecha-selector .month {
        width: 100%;
        text-align: center; }
        section.contenido-internas .panel-cortelli .fecha-selector .month ul {
          list-style: none;
          display: inline-block;
          text-align: center;
          padding-left: 0; }
          section.contenido-internas .panel-cortelli .fecha-selector .month ul li {
            float: left;
            font-size: 18px;
            font-weight: normal;
            margin: 5px;
            line-height: 1.3;
            margin-bottom: 0px; }
            section.contenido-internas .panel-cortelli .fecha-selector .month ul li a {
              color: black;
              border-bottom: solid 3px transparent; }
              section.contenido-internas .panel-cortelli .fecha-selector .month ul li a:hover {
                text-decoration: none;
                color: #b40000; }
          section.contenido-internas .panel-cortelli .fecha-selector .month ul li.selected a {
            border-color: #b40000;
            color: #670000;
            font-weight: bold; }
    section.contenido-internas .panel-cortelli .noticia-item {
      padding: 0px 8.3333%;
      margin-bottom: 40px; }
      section.contenido-internas .panel-cortelli .noticia-item a.galeria {
        width: 100%;
        position: relative;
        min-height: 152px;
        display: block; }
        section.contenido-internas .panel-cortelli .noticia-item a.galeria img {
          float: left;
          margin: 0px; }
          section.contenido-internas .panel-cortelli .noticia-item a.galeria img:first-child {
            width: 66%; }
          section.contenido-internas .panel-cortelli .noticia-item a.galeria img:nth-child(2) {
            width: 33.1%; }
          section.contenido-internas .panel-cortelli .noticia-item a.galeria img:nth-child(3) {
            width: 33.1%; }
        section.contenido-internas .panel-cortelli .noticia-item a.galeria .contador {
          width: 33.1%;
          background: rgba(0, 0, 0, 0.8);
          height: auto;
          position: relative;
          color: white;
          right: 0.9%;
          position: absolute;
          padding-left: 10%;
          padding-right: 10%;
          bottom: 4px;
          text-align: right;
          font-size: 18px;
          padding-top: 4%; }
          section.contenido-internas .panel-cortelli .noticia-item a.galeria .contador span {
            font-size: 300%;
            text-align: center;
            width: 100%;
            line-height: 40%; }
  section.contenido-internas .panel-derecho {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    height: 75vh;
    padding-top: 40px;
    transition: all 0.5s ease;
    overflow-y: auto; }
    section.contenido-internas .panel-derecho .novedad-item {
      float: left;
      width: 100%;
      margin-bottom: 40px; }
      section.contenido-internas .panel-derecho .novedad-item h3 {
        color: #4f8e42;
        font-size: 30px; }
      section.contenido-internas .panel-derecho .novedad-item .novedad-container {
        width: 100%;
        min-height: 220px;
        background: #e8e8e8; }
      section.contenido-internas .panel-derecho .novedad-item .fecha-novedad {
        float: left;
        width: 20%;
        margin-top: 20px; }
        section.contenido-internas .panel-derecho .novedad-item .fecha-novedad span.dia-novedad {
          width: 100%;
          text-align: center;
          font-size: 40px;
          line-height: 40px;
          float: left;
          clear: both; }
        section.contenido-internas .panel-derecho .novedad-item .fecha-novedad span.mes-novedad {
          width: 100%;
          text-align: center;
          font-size: 20px;
          line-height: 20px;
          float: left; }
      section.contenido-internas .panel-derecho .novedad-item .info-novedad {
        float: left;
        width: 80%;
        padding-right: 4.3333%; }
        section.contenido-internas .panel-derecho .novedad-item .info-novedad img {
          margin: 0; }
        section.contenido-internas .panel-derecho .novedad-item .info-novedad p {
          padding: 0; }
    section.contenido-internas .panel-derecho .spacer {
      padding: 0px 4.3333%; }
    section.contenido-internas .panel-derecho h1 {
      font-weight: lighter;
      color: #670000;
      font-size: 40px;
      text-align: center; }
    section.contenido-internas .panel-derecho a.cerrar {
      opacity: 1;
      position: absolute;
      right: 15px;
      top: 0vh;
      background-color: transparent;
      border: none;
      border-radius: 0;
      color: #d2d2d2;
      vertical-align: middle;
      display: inline-table;
      padding: 10px;
      font-size: 3vh;
      transition: all 0.5s ease; }
      section.contenido-internas .panel-derecho a.cerrar:hover {
        color: red; }
    section.contenido-internas .panel-derecho a.leermas {
      /*display: none;*/
      opacity: 0;
      position: absolute;
      right: 15px;
      top: -10vh;
      background-color: #003768;
      border: none;
      border-radius: 0;
      color: white;
      vertical-align: middle;
      padding: 2vh 30px;
      font-size: 2vh;
      transition: all 0.5s ease; }
    section.contenido-internas .panel-derecho .contenido {
      width: 100%;
      height: 100%;
      float: left; }
      section.contenido-internas .panel-derecho .contenido img {
        margin: 20px 4.3333%; }
      section.contenido-internas .panel-derecho .contenido h2, section.contenido-internas .panel-derecho .contenido h3 {
        color: #008F39;
        text-align: center; }
      section.contenido-internas .panel-derecho .contenido p {
        padding: 0 4.3333%;
        font-weight: normal;
        font-size: 20px;
        line-height: 30px;
        text-align: justify; }
        section.contenido-internas .panel-derecho .contenido p:first-child {
          margin-top: 20px; }
    section.contenido-internas .panel-derecho .contenido-avances {
      width: 100%;
      overflow-y: auto;
      height: 62vh; }
      section.contenido-internas .panel-derecho .contenido-avances img {
        margin: 20px 0; }
      section.contenido-internas .panel-derecho .contenido-avances p {
        padding: 0 4.3333%;
        font-weight: normal;
        font-size: 20px;
        line-height: 30px;
        text-align: justify; }
        section.contenido-internas .panel-derecho .contenido-avances p:first-child {
          margin-top: 20px; }
    section.contenido-internas .panel-derecho .fecha-selector {
      width: 100%;
      margin-top: 20px;
      margin-bottom: 20px;
      background-color: #e2e8ea; }
      section.contenido-internas .panel-derecho .fecha-selector .year {
        width: 100%;
        text-align: center; }
        section.contenido-internas .panel-derecho .fecha-selector .year ul {
          list-style: none;
          display: inline-block;
          text-align: center;
          padding: 0px 13.5%;
          border-bottom: solid 1px rgba(0, 0, 0, 0.3); }
          section.contenido-internas .panel-derecho .fecha-selector .year ul li {
            float: left;
            font-size: 24px;
            font-weight: normal;
            margin: 10px;
            line-height: 1.3;
            margin-bottom: 0px; }
            section.contenido-internas .panel-derecho .fecha-selector .year ul li a {
              color: black;
              border-bottom: solid 3px transparent; }
              section.contenido-internas .panel-derecho .fecha-selector .year ul li a:hover {
                text-decoration: none;
                color: #b40000; }
          section.contenido-internas .panel-derecho .fecha-selector .year ul li.selected a {
            border-color: #b40000;
            color: #670000;
            font-weight: bold; }
      section.contenido-internas .panel-derecho .fecha-selector .month {
        width: 100%;
        text-align: center; }
        section.contenido-internas .panel-derecho .fecha-selector .month ul {
          list-style: none;
          display: inline-block;
          text-align: center;
          padding-left: 0; }
          section.contenido-internas .panel-derecho .fecha-selector .month ul li {
            float: left;
            font-size: 18px;
            font-weight: normal;
            margin: 5px;
            line-height: 1.3;
            margin-bottom: 0px; }
            section.contenido-internas .panel-derecho .fecha-selector .month ul li a {
              color: black;
              border-bottom: solid 3px transparent; }
              section.contenido-internas .panel-derecho .fecha-selector .month ul li a:hover {
                text-decoration: none;
                color: #b40000; }
          section.contenido-internas .panel-derecho .fecha-selector .month ul li.selected a {
            border-color: #b40000;
            color: #670000;
            font-weight: bold; }
    section.contenido-internas .panel-derecho .noticia-item {
      padding: 0px 8.3333%;
      margin-bottom: 40px; }
      section.contenido-internas .panel-derecho .noticia-item a.galeria {
        width: 100%;
        position: relative;
        min-height: 152px;
        display: block; }
        section.contenido-internas .panel-derecho .noticia-item a.galeria img {
          float: left;
          margin: 0px; }
          section.contenido-internas .panel-derecho .noticia-item a.galeria img:first-child {
            width: 66%; }
          section.contenido-internas .panel-derecho .noticia-item a.galeria img:nth-child(2) {
            width: 33.1%; }
          section.contenido-internas .panel-derecho .noticia-item a.galeria img:nth-child(3) {
            width: 33.1%; }
        section.contenido-internas .panel-derecho .noticia-item a.galeria .contador {
          width: 33.1%;
          background: rgba(0, 0, 0, 0.8);
          height: auto;
          position: relative;
          color: white;
          right: 0.9%;
          position: absolute;
          padding-left: 10%;
          padding-right: 10%;
          bottom: 4px;
          text-align: right;
          font-size: 18px;
          padding-top: 4%; }
          section.contenido-internas .panel-derecho .noticia-item a.galeria .contador span {
            font-size: 300%;
            text-align: center;
            width: 100%;
            line-height: 40%; }
  section.contenido-internas .panel-derecho.colapsado {
    height: 30vh;
    margin-top: 50vh; }
    section.contenido-internas .panel-derecho.colapsado .contenido {
      overflow-y: hidden;
      height: 10vh; }
    section.contenido-internas .panel-derecho.colapsado a.cerrar {
      opacity: 0;
      position: absolute;
      right: 15px;
      top: 110vh;
      background-color: transparent;
      border: none;
      border-radius: 0;
      color: #d2d2d2;
      vertical-align: middle;
      /*display: none;*/
      padding: 10px;
      font-size: 3vh;
      transition: all 0.5s ease; }
    section.contenido-internas .panel-derecho.colapsado a.leermas {
      opacity: 1;
      position: absolute;
      right: 15px;
      top: 73.5vh;
      background-color: #0058a6;
      border: none;
      border-radius: 0;
      font-weight: normal;
      color: white;
      vertical-align: middle;
      display: inline-table;
      padding: 2vh 30px;
      font-size: 2vh; }
      section.contenido-internas .panel-derecho.colapsado a.leermas:hover {
        background-color: #006ed0; }

.p10 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 5%, #00274a 15%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 5%, #00274a 15%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 5%, #00274a 15%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p15 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 10%, #00274a 20%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 10%, #00274a 20%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 10%, #00274a 20%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p20 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 15%, #00274a 25%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 15%, #00274a 25%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 15%, #00274a 25%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p25 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 20%, #00274a 30%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 20%, #00274a 30%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 20%, #00274a 30%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p30 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 25%, #00274a 35%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 25%, #00274a 35%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 25%, #00274a 35%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p35 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 30%, #00274a 40%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 30%, #00274a 40%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 30%, #00274a 40%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p40 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 35%, #00274a 45%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 35%, #00274a 45%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 35%, #00274a 45%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p45 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 40%, #00274a 50%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 40%, #00274a 50%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 40%, #00274a 50%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p50 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 45%, #00274a 55%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 45%, #00274a 55%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 45%, #00274a 55%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p55 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 50%, #00274a 60%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 50%, #00274a 60%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 50%, #00274a 60%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p60 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 55%, #00274a 65%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 55%, #00274a 65%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 55%, #00274a 65%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p65 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 60%, #00274a 70%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 60%, #00274a 70%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 60%, #00274a 70%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p70 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 65%, #00274a 75%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 65%, #00274a 75%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 65%, #00274a 75%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p75 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 70%, #00274a 80%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 70%, #00274a 80%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 70%, #00274a 80%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p80 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 75%, #00274a 85%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 75%, #00274a 85%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 75%, #00274a 85%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p85 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 80%, #00274a 90%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 80%, #00274a 90%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 80%, #00274a 90%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p90 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 85%, #00274a 95%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 85%, #00274a 95%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 85%, #00274a 95%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p95 {
  background: -moz-linear-gradient(left, #a2d213 0%, #a2d213 90%, #00274a 100%, #00274a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #a2d213 0%, #a2d213 90%, #00274a 100%, #00274a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #a2d213 0%, #a2d213 90%, #00274a 100%, #00274a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.p100 {
  background: #a2d213; }

body.promo {
  background: url("../images/fondopromo2.jpg");
  background-position: center top;
  background-attachment: fixed; }

  body.promo80 {
    background: url(../images/fondo802.jpg) #FF7827;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 62%;
  /*  background-attachment: fixed; */}

   body.masnatural {
    background: url(../images/masnatural.jpg) #ff5e01;
    background-position: center -150px;
    background-repeat: no-repeat;
    background-size: 80%;
  /*  background-attachment: fixed; */}

  body.limonada {
    background: url(../images/limonada.jpg) #8aef0d;
    background-position: right 0px;
    background-repeat: no-repeat;
    background-size:cover;
  /*  background-attachment: fixed; */}


body.promonada {
    background: url(../images/nadaseparece.jpg) #ff8e00;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 73%;
  /*  background-attachment: fixed; */}

body.ponele {
    background: url(../images/ponele.jpg) #ff8e00;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
  /*  background-attachment: fixed; */}

section.grafica-promo {
  width: 100%;
  height: auto;
  text-align: center; }
  section.grafica-promo img {
    width: 20%;
    margin-top: 30px; }

section.grafica-promo80 {
  width: 100%;
  height: auto;
  text-align: center; }
  section.grafica-promo80 img {
    width: 42%;
    margin-top: 0px; }

section.video-promo {
  width: 100%;
  height: auto;

  clear: both;
  text-align: center; }
  section.video-promo iframe {
    margin-top: 30px;
    width: 800px;
    height: 400px; }

section.video-promo80 {
  width: 100%;
  height: auto;
  padding-top: 645px;
  clear: both;
  text-align: center; }
  section.video-promo80 iframe {
    width: 800px;
    height: 400px;
    margin-bottom:40px;
   }


section.video-masnatural {
      width: 100%;
    height: auto;
    padding-top: 390px;
    clear: both;
    text-align: center;
    padding-bottom: 0px;}
  section.video-masnatural iframe {
    width: 800px;
    height: 400px;
    margin-bottom:40px;
   }

   section.video-limonada {
    width: 100%;
    height: auto;
    padding-top: 250px;
    clear: both;
    position:relative;
    text-align: center;}
section.video-limonada iframe {
  width: 50%;
    height: 400px;
    margin-bottom: 40px;
    position: relative;
 }

 section.video-limonada img {
  position: absolute;
  top: 16vh;
  left: 9vw;
  width: 12%;
 }

   section.video-masnatural2 {
      width: 100%;
    height: auto;
    padding-top:40px;
    clear: both;
    text-align: center;
    padding-bottom: 200px;}
  section.video-masnatural2 iframe {
    width: 800px;
    height: 400px;
    margin-bottom:40px;
   }

.mt700 {
  padding-top: 700px !important; 
}

section.video-ponele {
  width: 100%;
  height: auto;
  padding-top: 560px;
  clear: both;
  text-align: center; }
  section.video-ponele iframe {
    width: 800px;
    height: 400px;
    margin-bottom:40px;
   }

section.mecanica {
  width: 100%;
  height: auto;
  clear: both;
  text-align: center; }
  section.mecanica img {
    width: 40%;
    margin-top: -20px; }

section.promo-camionetas {
  width: 100%;
  height: auto;
  clear: both;
  text-align: center; }
  section.promo-camionetas img {
    width: 60%;
    margin-top: 30px; }

section.promo-premios {
  width: 100%;
  height: auto;
  clear: both;
  text-align: center; }
  section.promo-premios img {
    width: 60%;
    margin-top: 30px; }

section.tapablanca {
  width: 100%;
  height: auto;
  clear: both;
  text-align: center; }
  section.tapablanca img {
    width: 10%;
    margin-top: 30px; }

section.byc {
  width: 100%;
  height: auto;
  clear: both;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px; }
  section.byc .btn-primary {
    background-color: #f08811;
    font-size: 24px;
    border-color: transparent;
    margin-right: 20px;
    font-family: 'Lilita One', cursive; }
    section.byc .btn-primary:hover {
      background-color: #ffc700;
      border-color: transparent; }
    section.byc .btn-primary:active {
      background-color: #ffc700;
      border-color: transparent; }
    section.byc .btn-primary:focus {
      background-color: #ffc700;
      border-color: transparent; }

.btn-primary {
  background-color: #f08811;
  font-family: 'Lilita One', cursive;
  font-size: 24px;
  border-color: transparent;
  margin-right: 20px; }

.btn-primary:hover {
  background-color: #ffc700;
  border-color: transparent; }

.btn-primary:active {
  background-color: #ffc700;
  border-color: transparent; }

.btn-primary:focus {
  background-color: #ffc700;
  border-color: transparent; }

footer {
  width: 100%;
  height: 240px;
  background: url("../images/footer.jpg");
  background-position: center;
  float: left;
  clear: both; }


  @media (max-width: 1800px) {
      body.promo80 {
        background-size: 70% !important;
        /*background:red;*/
      }
  }

  @media (max-width: 1500px) {
      body.promo80 {
        background-size: 80% !important;
        /*background:red;*/
      }


    body.promonada {
      background-size: 94% !important;
    }

  }

@media (max-width: 1200px) {
    body.promo80 {
      background-size: 100% !important;
      /*background:red;*/
    }

    .mt700 {
      padding-top: unset; 
    }

    body.masnatural {
      background-position: center 0px;
      background-size: 110%;
    }
}

  /* footer {
        position: fixed;
        bottom: 0px;
        z-index: 10;
        width: 100%;
        height: 50px;
    }

    footer .navbar-nav {
        margin: 0;
    }*/
  body, html {
    height: auto;
    overflow: auto; }
  section.contenido-internas .panel-derecho .fecha-selector .year ul li {
    font-size: 18px; }
  section.contenido-internas .panel-derecho .fecha-selector .month ul {
    padding-left: 16.66%; }
  section.contenido-internas .panel-derecho .fecha-selector .month ul li {
    min-width: 25%;
    height: 44px;
    text-align: center;
    font-size: 24px; }
  section.contenido-internas .panel-derecho .contenido img {
    margin: 20px auto; }
  section.contenido-internas .panel-derecho {
    clear: both;
    height: auto;
    padding-bottom: 100px; }
  section.contenido-internas .panel-derecho h1 {
    margin-top: 40px; }
  section.contenido-internas .panel-derecho .contenido-avances {
    height: auto; }
  section.contenido-internas .panel-derecho .noticia-item a.galeria .contador {
    width: 30%;
    background: rgba(0, 0, 0, 0.8);
    height: auto;
    position: relative;
    color: white;
    right: 1%;
    position: absolute;
    padding-left: 10%;
    padding-right: 10%;
    bottom: 0;
    text-align: right;
    font-size: 18px;
    padding-top: 4%;
    height: 60px; }
  section.contenido-internas .panel-derecho .noticia-item a.galeria .contador span {
    font-size: 200%;
    text-align: center;
    width: 100%;
    line-height: 40%; }
  section.contenido-internas .panel-derecho .noticia-item a.galeria {
    width: 100%;
    position: relative;
    min-height: 80px;
    display: block; }
  section.contenido-internas .contenedor-stats .item-porcentaje .chart-horiz {
    width: 70%; }
  section.contenido-internas .panel-derecho.colapsado {
    height: auto;
    margin-top: 0;
    padding-bottom: 80px; }
  section.contenido-internas .panel-derecho.colapsado .contenido {
    overflow-y: auto;
    height: auto; }
  section.contenido-internas .panel-derecho.colapsado a.leermas {
    display: none; }
  section.navigation-interna .navbar-nav li:nth-child(2) {
    margin-left: 0px; }
  section.navigation-interna .navbar-nav > li.logo-internas {
    display: none; }
  section.navigation-interna {
    top: 0;
    width: 100%;
    height: 60px; }
    section.navigation-interna .container {
      padding: 0;
      width: 100%; }
    section.navigation-interna .navbar-toggle {
      border: 0; }
      section.navigation-interna .navbar-toggle:hover {
        background-color: #00213e; }
    section.navigation-interna ul.navbar-nav {
      margin: 0; }
      section.navigation-interna ul.navbar-nav li {
        width: 100%; }
    section.navigation-interna .navbar-default .navbar-toggle .icon-bar {
      background-color: white; }
    section.navigation-interna .navbar-header {
      float: none;
      background: url("../images/logo-mobile.png") no-repeat center center;
      background-size: initial; }
    section.navigation-interna .navbar-left, section.navigation-interna .navbar-right {
      float: none !important; }
    section.navigation-interna .navbar-toggle {
      display: block; }
    section.navigation-interna .navbar-collapse {
      border-top: 1px solid transparent;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    section.navigation-interna .navbar-fixed-top {
      top: 0;
      border-width: 0 0 1px; }
    section.navigation-interna .navbar-collapse.collapse {
      display: none !important; }
    section.navigation-interna .navbar-nav {
      float: none !important;
      margin-top: 7.5px; }
    section.navigation-interna .navbar-nav > li {
      float: none; }
    section.navigation-interna .navbar-nav > li > a {
      padding-top: 10px;
      padding-bottom: 10px; }
    section.navigation-interna .collapse.in {
      display: block !important; } }


@media (max-width: 1200px) {
  section.navigation-home .navbar-nav > li a {
    font-size: 15px; }

  }

@media (max-width: 1100px) {
  section.video-promo80 {
    padding-top:70%;
  }



  section.video-promo80 iframe {
    width:100%;
  }

  section.video-ponele iframe {
    width:100%;
  }

}

@media (max-width: 992px) {
  .logo-home {
    width: 33%;
    left: 33%; }

    footer {
      background-size: 260%;
      background-repeat: no-repeat;
      background-position: bottom;
     }

  }

@media (max-width: 768px) {
  section.video-limonada iframe {
    width: 80%;
    height: 400px;
    margin-bottom: 40px;
    margin-top: 11vh;
}
  body.promonada {
      background-size: 150% !important;
    }
   .banner-content .vermas {
    background-size: contain;
    width: 50%;
    height: auto;
    animation: animationFrames ease-out 2s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    opacity: 0;
    animation: zoomingin ease-out 0.3s forwards;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-delay: 2.6s;
    position: absolute;
    top: 40%;
    left: 7%;
    text-align: center;
    }
    section.navigation-home {
    top: 0; }
    section.navigation-home .container {
      padding: 0; }
    section.navigation-home .navbar-toggle {
      border: 0; }
      section.navigation-home .navbar-toggle:hover {
        background-color: #00213e; }
    section.navigation-home ul.navbar-nav {
      margin: 0; }
      section.navigation-home ul.navbar-nav li {
        width: 100%; }
    section.navigation-home .navbar-default .navbar-toggle .icon-bar {
      background-color: white; }
  .logo-home {
    width: 50%;
    left: 25%; }
  footer.home .navbar-nav {
    margin-top: 0px; } }
