@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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-duration: 0.75s;
  animation-duration: 0.75s;
  -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

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

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

.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-duration: 0.75s;
  animation-duration: 0.75s;
  -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -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-duration: 0.75s;
  animation-duration: 0.75s;
  -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-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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);
  }

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

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

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

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

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

/* 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

.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.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

.font-general,.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-title .title-sub,.section-ubicacion #location-details,.section-ubicacion #contact-form,.section-contacto #location-details,.section-contacto #contact-form,main article,.map-hotspot-title,.form small a,.form .form-group :-moz-placeholder,.form .form-group :-ms-input-placeholder,.form .form-group ::-moz-placeholder,.form .form-group ::-webkit-input-placeholder{color:red !important;font-family:"telegrafregular",sans-serif}.font-styled,.interactive-quick-view-toolbar .items-list h3,.interactive .step.step-2 .notations,.section-ubicacion #location-details a,.section-ubicacion #contact-form a,.section-contacto #location-details a,.section-contacto #contact-form a,.section-ubicacion #location-details .meeting input,.section-ubicacion #contact-form .meeting input,.section-contacto #location-details .meeting input,.section-contacto #contact-form .meeting input,.section-intro .btn-open-intro,main article.single-article h1,header .btn-manifiesto,.section-submenu,.btn-brochure-sticky a,.btn-brochure-sticky a:visited,.btn-brochure-sticky a:active,.article-card .article-data .article-title{font-family:"Times New Roman",serif;font-style:italic}.font-titles,.modal.modal-contacto .modal-content h2,.modal.modal-showroom .modal-content p,.modal.modal-showroom .modal-content h2,.modal.modal-brochure .modal-content h2,.section-ubicacion .directory p,.section-tour .video-cover .btn-play-video,main article h1{font-family:"Times New Roman",serif}.font-titles-label,.interactive-quick-view-toolbar .items-list li,.interactive-quick-view-toolbar .item-wp .show-item .item-data .btn-appointment,.interactive .step.step-3 .show-item .btn,.interactive .step.step-2 .building-selector button,.modal.modal-showroom .modal-content .title-label,.modal .btn-close-modal,.modal .btn-close-prototype,.section-ubicacion .directory .title-label,.section-amenities .slider-caption,.section-amenities .slider-counter,.section-amenities .tabs-nav li,nav ul li a,.btn-contact-mobile,.btn-contact{font-family:"telegrafregular",sans-serif}/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on August 31, 2020 */@font-face{font-family:"telegrafregular";src:url("../fonts/telegraf/telegraf_regular_400-webfont.woff2") format("woff2"),url("../fonts/telegraf/telegraf_regular_400-webfont.woff") format("woff");font-weight:normal;font-style:normal}@font-face{font-family:"telegrafultrabold";src:url("../fonts/telegraf/telegraf_ultrabold_800-webfont.woff2") format("woff2"),url("../fonts/telegraf/telegraf_ultrabold_800-webfont.woff") format("woff");font-weight:normal;font-style:normal}@font-face{font-family:"telegrafultralight";src:url("../fonts/telegraf/telegraf_ultralight_200-webfont.woff2") format("woff2"),url("../fonts/telegraf/telegraf_ultralight_200-webfont.woff") format("woff");font-weight:normal;font-style:normal}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body{font-family:"telegrafregular",sans-serif;color:#918975;padding:15px 35px;background:#fff}button,button:focus,input,input:focus{outline:none}#site-container{overflow:hidden}.article-card{width:100%;height:100%;position:absolute;left:0;top:0;display:flex}.article-card.inverse{flex-direction:row-reverse}.article-card .article-thumb{width:50%;position:relative;background:no-repeat center center;background-size:cover}.article-card .article-thumb a{width:100%;height:100%;position:absolute;left:0;top:0}.article-card .article-data{width:50%;padding:50px;color:#000}.article-card .article-data .article-title{font-size:1.75em;font-weight:300}.article-card .article-data .article-title a,.article-card .article-data .article-title a:visited,.article-card .article-data .article-title a:hover,.article-card .article-data .article-title a:active{color:#000;text-decoration:none}.article-card .article-data .article-title a:hover{color:#928769}.article-card .article-data .article-date{font-size:.75em;margin:1em 0}.article-card .article-data .article-extract{height:8em;margin-bottom:1em;font-size:.75em;line-height:125%}.article-card .article-data .btn-read-more{font-size:.75em;color:#000;border:1px solid;padding:.5em 1em;background:none;text-decoration:none;transition:.3s all linear}.article-card .article-data .btn-read-more:hover{color:#928769}@media(max-width: 1023px){.article-card{display:block;position:relative;margin-bottom:30px}.article-card:before{display:none}.article-card .article-thumb{width:100%;padding-bottom:75%}.article-card .article-data{width:100%}}.brochure-form{display:none;width:20%;min-width:300px;position:fixed;left:10%;bottom:0%;background:#948867;color:#fff;padding:20px;z-index:100}.brochure-form .lg-company{width:50%;margin-left:25%}.brochure-form .form-control{border-radius:0;border:none}.brochure-form a{color:inherit;text-decoration:none}.brochure-form a:hover{text-decoration:underline}.brochure-form .btn-primary{margin:1em auto;color:#2f1f13;background:#fdd773 !important;border:none}@media(max-width: 1023px){.brochure-form{width:70%;min-width:auto;bottom:0%;left:15%}}.brochure-form .btn-close-modal{position:absolute;right:5%;top:5%;background:none;border:none}.brochure-form .btn-close-modal i{width:20px;height:20px;display:block;margin-bottom:-8px;margin-left:15px}.brochure-form .btn-close-modal i svg,.brochure-form .btn-close-modal i svg path,.brochure-form .btn-close-modal i svg rect,.brochure-form .btn-close-modal i svg circle{fill:#fff}.btn-contact{margin:0 auto 10vh;padding:1em 3em;color:#928769;border:1px solid;background:none;transition:.3s all linear}.btn-contact:hover{color:#04463b}@media(max-width: 1023px){.btn-contact{display:block;width:100%;background:#fff;border:none}}.btn-contact-mobile{display:none;width:90%;margin:10vh auto 5vh;padding:1em;color:#928769;border:1px solid;background:#fff}@media(max-width: 1023px){.btn-contact-mobile{display:block}}.btn-menu{width:48px;height:48px;position:absolute;left:45px;top:50%;margin-top:-24px;padding:0;background:rgba(0,0,0,0);border:none}.btn-menu .btn-menu-lines{width:85%;margin-left:15%;position:relative;padding:9px 0;color:#fff;border-top:2px solid;border-bottom:2px solid}.btn-menu .btn-menu-lines:after{width:100%;height:2px;content:"";display:block;position:absolute;left:0;top:50%;margin-top:-2px;background:#fff;transition:.3s all linear}.btn-menu.active{background:url("../images/ico-close.svg") no-repeat center center;background-size:40%}.btn-menu.active .btn-menu-lines{opacity:0}@media(max-width: 1023px){.btn-menu{display:block;left:50px}}.btn-float{position:fixed;left:1vw;top:40vh;color:#d4d1c9;letter-spacing:.1em;transform:rotate(-90deg);border:none;background:none;z-index:1}.btn-float:hover{color:inherit}@media(max-width: 1023px){.btn-float{display:none}}.btn-float.btn-open-disponibilidad{top:64vh;left:0vw;margin-left:-2px;text-decoration:none}.btn-float.btn-open-disponibilidad:hover{color:#948867}.btn-brochure-sticky{display:inline-block;position:fixed;left:35px;bottom:-7px;padding:3px 10px;z-index:1;background:#cbc0a3;transform:rotate(-90deg);transform-origin:left top}.btn-brochure-sticky a,.btn-brochure-sticky a:visited,.btn-brochure-sticky a:active{color:#fff;font-size:110%;text-decoration:none}.btn-brochure-sticky a:hover{color:#928769}@media(max-width: 1023px){.btn-brochure-sticky{top:auto;bottom:-4vh;left:30px}}.btn-open-whatsapp{display:inline-block;position:fixed;right:30px;top:9px;z-index:3;cursor:pointer}.btn-open-whatsapp .icon{width:48px;height:48px;padding:5px;transition:.1s all linear}.btn-open-whatsapp .icon svg,.btn-open-whatsapp .icon svg path,.btn-open-whatsapp .icon svg rect,.btn-open-whatsapp .icon svg circle{fill:#948867}.btn-open-whatsapp:hover i{transform:scale(1.1, 1.1)}.form{width:100%}.form .col,.form .col-5{padding-left:0;padding-right:0}.form .form-group{width:100%;position:relative;margin:0 0 .75em;border-bottom:1px solid #6c6159}.form .form-group label{position:absolute;left:0;top:11px;font-size:.7em}.form .form-group .form-control{border:none;border-radius:0;background:none;padding-left:70px}.form .form-group.message .form-control{padding-left:0 !important}.form .form-group ::-webkit-input-placeholder{color:#6c6159;font-size:.7em;opacity:1}.form .form-group ::-moz-placeholder{color:#6c6159;font-size:.7em;opacity:1}.form .form-group :-ms-input-placeholder{color:#6c6159;font-size:.7em;opacity:1}.form .form-group :-moz-placeholder{color:#6c6159;font-size:.7em;opacity:1}.form .btn-submit{padding:.1em 1em;font-size:85%;font-weight:300;color:#3b3b3c;border:1px solid #6c6159;border-radius:0;background:none}.form .btn-submit:hover{color:#000;border-color:#000}.form small{font-size:55%;color:#3b3b3c}.form small a{color:inherit;font-style:normal !important}.form .form-actions{width:100%}.form .form-response{display:none}.form .form-response>div{padding-top:1vh;padding-bottom:1vh}.form .col-8{padding-left:0;padding-right:0}.extended{letter-spacing:.2em}.lg-company,.lg-company-inverse{width:100%;height:0;padding-bottom:27%;display:inline-block;background:url("../images/lg-lusanta-white.svg") no-repeat center left;background-size:contain}.lg-company-inverse{background-image:url("../images/lg-lusanta.svg")}.lg-company-iso{width:100%;height:0;padding-bottom:135%;display:inline-block;background:url("../images/lg-iso-lusanta.svg") no-repeat center center;background-size:contain}.lg-author{width:100%;height:0;padding-bottom:20%;display:inline-block;background:url("../images/lg-reti.svg") no-repeat center left;background-size:contain}.flex-row,.row{width:85%;margin-left:auto;margin-right:auto}.flex-row.row-extended,.flex-row .flex-row,.flex-row .row,.row.row-extended,.row .flex-row,.row .row{width:100%}@media(max-width: 1023px){.flex-row,.row{width:95%}}.icon{width:18px;height:18px;display:inline-block}.icon svg,.icon svg path,.icon svg rect,.icon svg circle{max-height:100%;fill:#000}img{max-width:100%}.infinite{-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;animation-iteration-count:infinite}#loader-wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1000}#loader{display:block;position:relative;width:auto;height:50vh;margin:25vh auto;background:url("../images/lg-iso-lusanta-tagline.svg") no-repeat center center;-webkit-animation:pulse 2s linear infinite;animation:pulse 2s linear infinite;z-index:1001}#loader-wrapper .loader-section{position:fixed;top:0;width:51%;height:100%;background:#96a0b0;z-index:1000;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}#loader-wrapper .loader-section.section-left{left:0}#loader-wrapper .loader-section.section-right{right:0}#loader-wrapper.bg-loader-1 .loader-section{background:#96a0b0}#loader-wrapper.bg-loader-2 .loader-section{background:#cfc4ba}#loader-wrapper.bg-loader-3 .loader-section{background:#b0d4d9}.loaded #loader-wrapper .loader-section.section-left{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%);-webkit-transition:all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1);transition:all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1)}.loaded #loader-wrapper .loader-section.section-right{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);-webkit-transition:all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1);transition:all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1)}.loaded #loader{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.loaded #loader-wrapper{visibility:hidden;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:all .3s 1s ease-out;transition:all .3s 1s ease-out}.no-js #loader-wrapper{display:none}.no-js h1{color:#222}.map-hotspot-title{color:#000;font-size:1.5em;font-weight:300;margin:0;padding:0}.gm-style .gm-style-iw-c{border-radius:2px}.mosaic{width:100%;display:flex;flex-direction:column;flex-wrap:wrap;overflow:hidden;flex-flow:row wrap}.mosaic .mosaic-item,.mosaic .mosaic-item-double,.mosaic .mosaic-item-quad{flex:auto;position:relative;min-width:150px;width:25%;border-right:4px solid #fff;border-bottom:4px solid #fff;overflow:hidden}.mosaic .mosaic-item::before,.mosaic .mosaic-item-double::before,.mosaic .mosaic-item-quad::before{content:"";width:0px;padding-bottom:100%;display:inline-block}.mosaic .mosaic-item.hidden,.mosaic .mosaic-item-double.hidden,.mosaic .mosaic-item-quad.hidden{display:none}.mosaic .mosaic-item-double{width:100%}.mosaic .mosaic-item-double::before{padding-bottom:50%}.mosaic .mosaic-item-quad{width:100%}.mosaic .mosaic-item-quad::before{padding-bottom:42.5%}@media(max-width: 1023px){.mosaic .mosaic-item{width:50%}.mosaic .mosaic-item-double{width:100%;height:0;padding-bottom:50%}.mosaic .mosaic-item-double::before{padding-bottom:0}}.mosaic .item{width:100%;height:100%;position:absolute;left:0;top:0;background:no-repeat center center #fefdf6;background-size:cover;transition:1s all linear}.mosaic .item a{width:100%;height:100%;display:block;position:absolute;left:0;top:0;background:rgba(0,0,0,.2);transition:.3s all linear;opacity:0}.mosaic .item:hover a{opacity:1}.mosaic .item.item-card{display:flex;align-items:center;justify-content:center;text-align:center;color:#000}.mosaic .item.item-card h3{font-size:2.5em}.mosaic .item.item-card p{padding-left:15%;padding-right:15%;font-size:75%}.mosaic .item.item-card p span{margin:0 5px;display:inline-block}.section-title,.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-title,.interactive .step.step-3 .show-item .item-title{display:block;text-align:center;font-size:1.35rem;color:#000;margin:0 auto 30px}.section-title a,.section-title a:hover,.section-title a:visited,.section-title a:active,.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-title a,.interactive .step.step-3 .show-item .item-title a{color:#000}.section-submenu{display:block;margin-bottom:50px}.section-submenu a{color:#666;font-weight:300;display:inline-bloxk;margin:0 50px;font-size:1.5em}.slow{-webkit-animation-iteration-duration:8s;-moz-animation-iteration-duration:8s;-o-animation-iteration-duration:8s;-ms-animation-iteration-duration:8s}.social-bar a{display:inline-block;margin-right:15px;font-size:18px}.text-card{width:50vw;display:flex;align-items:center;justify-content:center}.text-card .text-card-content{padding:0 15%;text-align:center}.text-card .text-card-content p{padding:0 20%;font-size:80%;line-height:200%}@media(max-width: 1023px){.text-card .text-card-content p{padding:0 5%}}@media(max-width: 1023px){.text-card{width:100%}}.text-black{color:#000}.text-gray{color:#666}.text-large{font-size:1.5em}header{width:100%;position:fixed;left:0;top:0;padding:30px 35px;text-align:center;z-index:4}header.active{padding-top:10px;padding-bottom:10px;background:#fff;box-shadow:0 2px 4px rgba(0,0,0,.2)}header.active .logo{width:150px}header.active .logo .lg-company{background-image:url("../images/lg-lusanta.svg")}header.active .btn-menu .btn-menu-lines{color:#000}header.active .btn-menu .btn-menu-lines::after{background:#000}header.active .btn-manifiesto{color:#000;top:20px}@media(max-width: 1023px){header.active{text-align:left}header.active .logo{width:115px;margin:10px 0 0 52px}header.active .btn-menu{left:28px}}header .logo{width:200px;display:inline-block;position:relative;z-index:1}@media(max-width: 1023px){header .logo{width:150px}}header .lang-selector{position:absolute;right:13em;top:1.3em}header .lang-selector .btn-lang{color:#000}@media(max-width: 1023px){header .lang-selector{right:9.5em;top:1.9em;font-size:.85em}}header.mobile-opened .logo .lg-company{background-image:url("../images/lg-lusanta.svg")}header .btn-manifiesto{position:absolute;right:14em;top:40%;font-size:110%;color:#fff}header .btn-manifiesto:hover{color:#c1b39a}@media(max-width: 1023px){header .btn-manifiesto{display:none;right:9vw;top:36%}}header .btn-primary{margin-top:5px;position:absolute;right:0;margin-right:35px;border-radius:0;background:#cbc0a3;border:none;color:#fff}header .btn-primary:hover,header .btn-primary:focus{background:#918975}@media(max-width: 1023px){header .btn-primary{font-size:75%;margin-top:9px;margin-right:5px;padding-left:.5em;padding-right:.5em}}nav{display:none;width:100vw;max-width:290px;height:100vh;position:fixed;left:0;top:0;padding-top:18vh;padding-left:55px;z-index:3;background:#fff}nav .logo-menu{width:30%;margin-bottom:5vh}nav ul{overflow:hidden;position:relative;margin:0;padding:0;display:block;list-style:none}nav ul li a{position:relative;color:#000;display:inline-block;padding:.5em 0;text-decoration:none !important}nav ul li a:active,nav ul li a:hover{color:#928769}nav ul li a:visited{color:#000}nav ul li a:after{width:100%;height:1px;position:absolute;left:0;bottom:0;content:"";display:block;background:#948867;transform:scale(0, 0);transition:.3s all linear}nav ul li a:hover:after{transform:scale(1, 1)}nav ul li ul{width:100%;height:100%;position:absolute;left:100%;top:0;background:#fff;transition:.3s all linear}nav ul li ul li{list-style-type:circle}nav ul li ul li .btn-close-submenu{width:0;height:0;display:inline-block;margin-left:-10px;border:10px solid rgba(0,0,0,0);border-right-color:#000;cursor:pointer}nav ul li ul li a{padding:0;font-size:90%}nav ul li ul.active{left:0;z-index:1}nav ul hr{width:50%;margin:7px auto 7px 0}@media(max-width: 1023px){nav{max-width:100%;padding-top:6em}nav .logo-menu{width:50px;margin-bottom:3vh}}nav .nav-footer{width:100%;position:absolute;left:0;bottom:15px;padding-left:55px;color:#000}nav .nav-footer .social-bar{margin:3px 0}nav .nav-footer a{color:#000}nav .nav-footer small{margin:10px 0;display:block;line-height:125%;font-size:60%}@media(max-width: 1023px){nav .nav-footer{bottom:40px}}main{padding:68px 0 11vh;background:#fefdf6}main.cover-page{padding-top:53px}@media(max-width: 1023px){main{padding-bottom:0}}main article h1{color:#000;margin-bottom:2em}main article ul{list-style:none}main article a,main article a:hover,main article a:active,main article a:visited{color:inherit}main article.single-article{width:50%;margin:0 auto 25vh;font-size:.8em;text-align:justify;color:#000}main article.single-article h1{text-align:center}@media(max-width: 1023px){main article.single-article{width:100%;margin-bottom:5vh}}footer{font-size:70%;padding:2.5em 0 1.5em;color:#000}footer .logo-author-wp{width:55%;margin-top:1em;display:inline-block}footer .logo-company-wp{width:30%;display:inline-block;margin-bottom:15px}footer .social-bar{margin-top:1.5em}footer p{margin-bottom:.35rem}footer small{font-size:72%;line-height:1em;display:block}footer a,footer a:visited{color:#000}footer a:active,footer a:hover{color:#948867}footer .col:last-child{text-align:right}@media(max-width: 1023px){footer>.row{padding:2vh 0;display:flex;flex-direction:column-reverse}footer>.row .col,footer>.row .col-6{width:100%;max-width:100%;text-align:center;margin:2vh auto}footer>.row .col .lg-author,footer>.row .col-6 .lg-author{width:65%}footer>.row .col .social-bar a:last-child,footer>.row .col-6 .social-bar a:last-child{margin-right:0}footer .logo-author-wp{width:60%}footer .logo-company-wp{width:60%}}.section-intro{width:100%;height:calc(95vh - 53px);position:relative;display:flex;align-content:flex-start;background-color:#c1b39a;margin-bottom:70px;padding-left:0;padding-right:0}.section-intro .bg-section{width:100%;height:100%;left:0;top:0;position:absolute;left:0;top:0;overflow:hidden;background:url("../images/bg-intro-2.jpeg") no-repeat center center;background-size:cover}.section-intro .bg-section video{width:100%;height:100%;position:absolute;left:0;top:0;object-fit:cover}@media(max-width: 1023px){.section-intro .bg-section{background-size:auto 100%}.section-intro .bg-section video{height:100%;object-fit:contain}}@media(max-width: 1023px)and (orientation: landscape){.section-intro .bg-section{background-size:cover}}.section-intro .bg-section.video:after{width:100%;height:100%;content:"";display:block;position:absolute;left:0;top:0;background:url("../images/bg-intro-2.jpeg") no-repeat center center;background-size:cover;transition:.3s all linear}.section-intro .bg-section.active{z-index:2}.section-intro .bg-section.active video{z-index:1}.section-intro .bg-section.active:after{opacity:0}.section-intro .carousel{width:100%;height:100%;position:relative;left:0;top:0}.section-intro .carousel .carousel-item{height:calc(95vh - 53px)}@media(max-width: 1023px){.section-intro .carousel .carousel-item:nth-child(4) .bg-section{background-position:17%}.section-intro .carousel .carousel-item:nth-child(5) .bg-section{background-position:25%}.section-intro .carousel .carousel-item:nth-child(6) .bg-section{background-position:40%}}.section-intro .carousel .carousel-indicators{z-index:1}.section-intro .btn-open-intro{width:80px;height:80px;position:absolute;left:50%;top:50%;text-align:center;margin-top:-40px;margin-left:-40px;font-size:1.75em;color:#fff;background:none;border:none;transition:.3s all ease-in-out;text-shadow:0 0 7px rgba(0,0,0,.7)}.section-intro .btn-open-intro:hover{color:#c1b39a;text-shadow:0 0 7px rgba(255,255,255,.7)}.section-intro .btn-open-intro:hover .icon{background:#c1b39a;box-shadow:0 0 7px rgba(255,255,255,.7)}.section-intro .btn-open-intro .icon{width:80px;height:80px;background:#fff;-webkit-mask:url(../images/ico-play.svg) no-repeat center center;-webkit-mask-size:contain;mask:url(../images/ico-play.svg) no-repeat center center;mask-size:contain;transition:.3s all ease-in-out;border-radius:50%;box-shadow:0 0 7px rgba(0,0,0,.7)}.section-intro .social-bar{width:3em;display:block;position:absolute;right:1vw;bottom:20vh;z-index:1}.section-intro .social-bar a{width:2.5em;height:2.5em;display:inline-block;line-height:2.5em;text-align:center;border-radius:50%;margin-bottom:1.5em;background:#fff}.section-intro .social-bar a svg,.section-intro .social-bar a svg path,.section-intro .social-bar a svg rect,.section-intro .social-bar a svg circle{fill:#918975}.section-intro .social-bar a:first-child{display:none}@media(max-width: 1023px){.section-intro .social-bar a:first-child{display:block}}.section-ubicacion,.section-contacto{position:relative;display:flex}.section-ubicacion h2,.section-contacto h2{margin-top:5vh;margin-bottom:5vh}.section-ubicacion #location-details,.section-ubicacion #contact-form,.section-contacto #location-details,.section-contacto #contact-form{width:50%;background:#c1b39a;color:#3b3b3c;border-right:2px solid #fff}.section-ubicacion #location-details>.row:first-child,.section-ubicacion #contact-form>.row:first-child,.section-contacto #location-details>.row:first-child,.section-contacto #contact-form>.row:first-child{padding:5vh 15%}@media(max-width: 1023px){.section-ubicacion #location-details>.row:first-child,.section-ubicacion #contact-form>.row:first-child,.section-contacto #location-details>.row:first-child,.section-contacto #contact-form>.row:first-child{padding-left:0;padding-right:0}}.section-ubicacion #location-details .text-black,.section-ubicacion #contact-form .text-black,.section-contacto #location-details .text-black,.section-contacto #contact-form .text-black{padding:0}.section-ubicacion #location-details .map-links a,.section-ubicacion #contact-form .map-links a,.section-contacto #location-details .map-links a,.section-contacto #contact-form .map-links a{display:inline-block;margin-right:10px;margin-bottom:5px;color:#555;background:#b9d2d7;padding:.2em 1em;text-decoration:none}.section-ubicacion #location-details .map-links a i,.section-ubicacion #contact-form .map-links a i,.section-contacto #location-details .map-links a i,.section-contacto #contact-form .map-links a i{vertical-align:middle;margin-top:-0.65em;margin-right:.2em}.section-ubicacion #location-details .map-links a i img,.section-ubicacion #contact-form .map-links a i img,.section-contacto #location-details .map-links a i img,.section-contacto #contact-form .map-links a i img{max-height:1em}.section-ubicacion #location-details .map-links a i svg,.section-ubicacion #location-details .map-links a i svg path,.section-ubicacion #location-details .map-links a i svg rect,.section-ubicacion #location-details .map-links a i svg circle,.section-ubicacion #contact-form .map-links a i svg,.section-ubicacion #contact-form .map-links a i svg path,.section-ubicacion #contact-form .map-links a i svg rect,.section-ubicacion #contact-form .map-links a i svg circle,.section-contacto #location-details .map-links a i svg,.section-contacto #location-details .map-links a i svg path,.section-contacto #location-details .map-links a i svg rect,.section-contacto #location-details .map-links a i svg circle,.section-contacto #contact-form .map-links a i svg,.section-contacto #contact-form .map-links a i svg path,.section-contacto #contact-form .map-links a i svg rect,.section-contacto #contact-form .map-links a i svg circle{fill:#555}.section-ubicacion #location-details .map-links a:first-child i,.section-ubicacion #contact-form .map-links a:first-child i,.section-contacto #location-details .map-links a:first-child i,.section-contacto #contact-form .map-links a:first-child i{margin-right:0}.section-ubicacion #location-details .direct,.section-ubicacion #contact-form .direct,.section-contacto #location-details .direct,.section-contacto #contact-form .direct{margin:1em 0 1.2em}.section-ubicacion #location-details .direct .social-bar,.section-ubicacion #contact-form .direct .social-bar,.section-contacto #location-details .direct .social-bar,.section-contacto #contact-form .direct .social-bar{margin-top:.75em}.section-ubicacion #location-details .meeting .col-md-5,.section-ubicacion #contact-form .meeting .col-md-5,.section-contacto #location-details .meeting .col-md-5,.section-contacto #contact-form .meeting .col-md-5{padding-left:0;padding-right:0}.section-ubicacion #location-details .meeting input,.section-ubicacion #contact-form .meeting input,.section-contacto #location-details .meeting input,.section-contacto #contact-form .meeting input{background:none;border:none !important;color:#000;font-style:normal;font-size:14px}.section-ubicacion #location-details .meeting ::-webkit-input-placeholder,.section-ubicacion #contact-form .meeting ::-webkit-input-placeholder,.section-contacto #location-details .meeting ::-webkit-input-placeholder,.section-contacto #contact-form .meeting ::-webkit-input-placeholder{color:#000;font-size:14px;opacity:1}.section-ubicacion #location-details .meeting ::-moz-placeholder,.section-ubicacion #contact-form .meeting ::-moz-placeholder,.section-contacto #location-details .meeting ::-moz-placeholder,.section-contacto #contact-form .meeting ::-moz-placeholder{color:#000;font-size:14px;opacity:1}.section-ubicacion #location-details .meeting :-ms-input-placeholder,.section-ubicacion #contact-form .meeting :-ms-input-placeholder,.section-contacto #location-details .meeting :-ms-input-placeholder,.section-contacto #contact-form .meeting :-ms-input-placeholder{color:#000;font-size:14px;opacity:1}.section-ubicacion #location-details .meeting :-moz-placeholder,.section-ubicacion #contact-form .meeting :-moz-placeholder,.section-contacto #location-details .meeting :-moz-placeholder,.section-contacto #contact-form .meeting :-moz-placeholder{color:#000;font-size:14px;opacity:1}.section-ubicacion #location-details .meeting button,.section-ubicacion #contact-form .meeting button,.section-contacto #location-details .meeting button,.section-contacto #contact-form .meeting button{border:none !important}.section-ubicacion #location-details .meeting button:hover,.section-ubicacion #contact-form .meeting button:hover,.section-contacto #location-details .meeting button:hover,.section-contacto #contact-form .meeting button:hover{background:none}.section-ubicacion #location-details .meeting button i,.section-ubicacion #contact-form .meeting button i,.section-contacto #location-details .meeting button i,.section-contacto #contact-form .meeting button i{width:0;height:0;content:"";font-size:0;margin-top:5px;border:5px solid rgba(0,0,0,0);border-top-color:#000}.section-ubicacion #location-details .meeting .selectize-input,.section-ubicacion #contact-form .meeting .selectize-input,.section-contacto #location-details .meeting .selectize-input,.section-contacto #contact-form .meeting .selectize-input{padding-top:9px;padding-left:12px}.section-ubicacion #location-details .meeting .selectize-input:before,.section-ubicacion #contact-form .meeting .selectize-input:before,.section-contacto #location-details .meeting .selectize-input:before,.section-contacto #contact-form .meeting .selectize-input:before{display:none}.section-ubicacion #location-details .meeting .selectize-input:after,.section-ubicacion #contact-form .meeting .selectize-input:after,.section-contacto #location-details .meeting .selectize-input:after,.section-contacto #contact-form .meeting .selectize-input:after{top:8px !important}.section-ubicacion #location-details .meeting .col,.section-ubicacion #contact-form .meeting .col,.section-contacto #location-details .meeting .col,.section-contacto #contact-form .meeting .col{padding-left:0}.section-ubicacion #location-details .meeting p,.section-ubicacion #contact-form .meeting p,.section-contacto #location-details .meeting p,.section-contacto #contact-form .meeting p{margin-bottom:10px}.section-ubicacion #location-details a,.section-ubicacion #contact-form a,.section-contacto #location-details a,.section-contacto #contact-form a{color:#666}@media(max-width: 1023px){.section-ubicacion #location-details,.section-ubicacion #contact-form,.section-contacto #location-details,.section-contacto #contact-form{width:100%}}@media(max-width: 480px){.section-ubicacion #location-details,.section-ubicacion #contact-form,.section-contacto #location-details,.section-contacto #contact-form{padding-left:0 !important;padding-right:0 !important}.section-ubicacion #location-details>.row,.section-ubicacion #contact-form>.row,.section-contacto #location-details>.row,.section-contacto #contact-form>.row{padding-left:0 !important;padding-right:0 !important}.section-ubicacion #location-details>.row .col-md-9,.section-ubicacion #contact-form>.row .col-md-9,.section-contacto #location-details>.row .col-md-9,.section-contacto #contact-form>.row .col-md-9{padding-left:0 !important;padding-right:0 !important}.section-ubicacion #location-details>.row .col-md-9 .calendly-inline-widget,.section-ubicacion #contact-form>.row .col-md-9 .calendly-inline-widget,.section-contacto #location-details>.row .col-md-9 .calendly-inline-widget,.section-contacto #contact-form>.row .col-md-9 .calendly-inline-widget{width:100% !important;min-width:100% !important}}.section-ubicacion #location-details,.section-contacto #location-details{position:relative;background:#fff;padding-bottom:10vh}.section-ubicacion #location-details ul,.section-contacto #location-details ul{display:block;list-style:none;margin:0;padding:0}.section-ubicacion #location-details ul li,.section-contacto #location-details ul li{padding:.5rem 1rem;cursor:pointer}.section-ubicacion #location-details ul .list-number,.section-contacto #location-details ul .list-number{width:1.5rem;height:1.5rem;color:#fff;line-height:1.5rem;text-align:center;background:#3b3b3c;border-radius:50%;display:inline-block}.section-ubicacion .route-info,.section-contacto .route-info{min-width:10rem;min-height:1rem;padding:1rem 2rem;position:absolute;left:50%;top:0;background:#c1b39a;color:#fff;z-index:2}@media(max-width: 1023px){.section-ubicacion .route-info,.section-contacto .route-info{min-width:180px;top:auto;bottom:0;left:0}}.section-ubicacion #map,.section-contacto #map{width:50%;background:url("../images/map.jpg") no-repeat center center #eaeaea;background-size:cover;overflow:hidden}@media(max-width: 1023px){.section-ubicacion #map,.section-contacto #map{height:75vh}}@media(max-width: 1023px){.section-ubicacion,.section-contacto{display:block}.section-ubicacion #contact-form,.section-ubicacion #map,.section-contacto #contact-form,.section-contacto #map{width:100%;max-width:100%}.section-ubicacion #contact-form>.row,.section-contacto #contact-form>.row{padding-left:3%;padding-right:3%}.section-ubicacion #contact-form>.row .col,.section-contacto #contact-form>.row .col{flex:0 1 auto}}.section-amenities{min-height:90vh;padding-top:5vh;padding-bottom:5vh;text-align:center;background:#d4d0c8}@media(max-width: 1023px){.section-amenities{min-height:auto;padding:10vh 8vw}}.section-amenities .section-title h2{color:#44513c}.section-amenities .tabs-nav{display:block;margin:0 auto 5vh;text-align:center;list-style:none}.section-amenities .tabs-nav li{cursor:pointer;padding:.5em 0;margin:0 2em;display:inline-block}.section-amenities .tabs-nav li.active{border-bottom:1px solid #948867}@media(max-width: 1023px){.section-amenities .tabs-nav{width:100%;min-height:auto;margin:0 0 5vh;padding:0;text-align:center}.section-amenities .tabs-nav li{width:46%;margin:0 1vw;font-size:90%;display:inline-block}.section-amenities .tabs-nav li:last-child{text-align:right}}.section-amenities .slider{overflow:hidden;margin-bottom:5vh}@media(max-width: 1023px){.section-amenities .slider{margin-bottom:0}}.section-amenities .slider img{width:65vw}@media(max-width: 1023px){.section-amenities .slider img{max-width:75vw;max-height:auto}}.section-amenities .slider .owl-dots{display:none}@media(max-width: 1023px){.section-amenities .slider-data{display:flex;flex-direction:column-reverse;text-align:center}}.section-amenities .slider-control{text-align:left}.section-amenities .slider-control a{margin-right:2em;display:inline-block}@media(max-width: 1023px){.section-amenities .slider-control a{margin:0 1em}}@media(max-width: 1023px){.section-amenities .slider-control{width:100%;max-width:100%;text-align:center}}@media(max-width: 1023px){.section-amenities .slider-caption{width:100%;max-width:100%;text-align:center;padding-bottom:5vh}}@media(max-width: 1023px){.section-amenities .slider-counter{display:none}}.section-disponibilidad{min-height:90vh;position:relative;padding:0 0 50% 0;text-align:center;background:#fff no-repeat center center;background-size:100% auto}@media(max-width: 1023px){.section-disponibilidad{padding-bottom:10vh;background-position:center top}}.section-disponibilidad .btn-fullaction{width:100%;height:70%;position:absolute;left:0;bottom:0;display:block}.section-disponibilidad .section-title h2{color:#000}.section-disponibilidad .section-title .btn{padding:1em 4em;display:inline-block;color:#948867;border:1px solid;border-radius:0;transition:.3s all linear}@media(max-width: 1023px){.section-disponibilidad .section-title .btn{margin-top:35vh}}.section-disponibilidad .section-title .btn:hover{color:#fff;background:#948867;border-color:#948867}.section-disponibilidad.single-section{min-height:70vh;padding-bottom:0;background:#fff}.section-disponibilidad.single-section .interactive-quick-view-toolbar{position:fixed}.section-disponibilidad.hover .btn{color:#fff;background:#948867;border-color:#948867}.section-tour{min-height:90vh;padding-top:10vh;padding-bottom:10vh;text-align:center;background:#928769}.section-tour .video-wp{width:100%;height:70vh;position:relative}.section-tour .video-wp .video-cover,.section-tour .video-wp iframe{width:100%;height:100%;position:absolute;left:0;top:0}@media(max-width: 1023px){.section-tour .video-wp{height:50vh}}.section-tour .video-cover{width:100%;height:75vh;position:relative;display:flex;align-items:center;justify-content:center;background:url("../images/img-cover-recorrido.png") no-repeat center center;background-size:cover;z-index:1;cursor:pointer}.section-tour .video-cover .btn-play-video{letter-spacing:.5em;color:#fff;border:none;background:rgba(0,0,0,0);cursor:pointer}.section-tour .video-cover .btn-play-video .icon{width:64px;height:64px;margin-bottom:1em}.section-tour .video-cover:hover .btn-play-video .icon{background-image:url("../images/ico-play-hover.svg")}.section-tour .video-cover:active .btn-play-video .icon{background-image:url("../images/ico-play-active.svg")}.section-ubicacion .map{height:0;padding-left:10%;padding-top:5%;padding-bottom:82vh;text-align:center;color:#fff;background:#04463b url("../images/img-map.png") no-repeat center 17%;background-size:cover}@media(max-width: 1023px){.section-ubicacion .map{padding-bottom:90vh;background-image:url("../images/img-map-mobile.png")}.section-ubicacion .map .section-title{display:none}}.section-ubicacion .map .btn-show-map{color:#fff;margin-top:25vh;padding:1em 4em;font-size:90%;letter-spacing:.1em;background:none;border:1px solid;background:#053d2f;transition:.3s all linear}.section-ubicacion .map .btn-show-map:hover{border-color:#948867}.section-ubicacion .directory{padding:20vh 0;text-align:center}.section-ubicacion .directory .title-label{color:#999}.section-ubicacion .directory p{color:#928769;font-size:3.25em;margin-bottom:1.5em}.section-ubicacion .directory p.address{position:relative;margin-bottom:3.5em}.section-ubicacion .directory p.address:after{width:2px;height:2em;position:absolute;left:50%;top:120%;content:"";display:block;background:#b2ab9b}@media(max-width: 1023px){.section-ubicacion .directory p{font-size:2em;margin-bottom:1em}.section-ubicacion .directory p.text-email{font-size:1.5em}}.section-ubicacion .directory .follow-us{padding-top:3em;position:relative}.section-ubicacion .directory .follow-us:before{width:7em;height:2px;position:absolute;left:50%;top:0;margin-left:-3.5em;content:"";display:block;background:#b2ab9b}.section-ubicacion .directory .follow-us span{display:block;margin-bottom:3em}.section-ubicacion .directory .follow-us a{width:32px;height:32px;margin:0 1em;display:inline-block}@media(max-width: 1023px){.section-ubicacion .directory{padding:10vh 10vw;height:100vh}}.section-virtual-tours{color:#000;padding:0 0 5vh}.section-virtual-tours .virtual-tour-cover{height:25em;display:flex;align-items:center;background:no-repeat center center;background-size:cover}.section-virtual-tours .virtual-tour-cover .cover-link{display:block;margin:0 auto}.section-virtual-tours .virtual-tour-cover .cover-link .btn{margin-top:1em;background:gray;border:none;border-radius:0}.section-virtual-tours .virtual-tour-cover .cover-link .btn:hover{background:#cbc0a3}.section-virtual-tours h2{color:#000;margin-bottom:1em}.section-virtual-tours ul{list-style:none;padding:0;margin:0}.section-virtual-tours ul li{margin-bottom:2em}.section-virtual-tours ul li h3{position:relative;font-size:1em;padding:.1em .5em;display:inline-block;background:#bacc69}.section-virtual-tours ul li h3:before{display:inline-block;content:"-";color:#bacc69;position:absolute;right:100%;margin-right:5px}.section-virtual-tours ul li p{font-size:85%}.section-amenities-intro{padding-bottom:5vh;color:#000}.section-amenities-intro .amenities-title{margin-top:7.5vh;margin-bottom:7.5vh}.section-amenities-intro h2{color:#000;margin:1.5vh auto 0}.section-amenities-intro .item{font-size:.6em;text-align:center}.section-amenities-intro .item p{padding-left:15%;padding-right:15%;font-size:.8rem}.section-amenities-intro .item p .no-break-hypen{display:inline-block}.section-amenities-intro .col-md-6:first-child{padding-left:0vw;padding-right:5vw}.section-amenities-intro .col-md-6:last-child{padding-left:5vw;padding-right:0vw}.section-amenities-intro .mosaic-item{flex-basis:50%}@media screen and (max-width: 1023px){.section-amenities-intro .amenities-mosaic>div{padding-left:0 !important;padding-right:0 !important}}.section-quotes{padding:10vh 0;font-size:1.2em;color:#000;background:url(../images/bg-quotes.jpg) #fcfcfc;transition:.3s all ease-in-out}.section-quotes blockquote{padding:0 20%;display:block}.section-quotes blockquote:before{width:2rem;height:2rem;content:"";display:block;margin:0 auto 1rem;font-size:4em;background-color:#948867;-webkit-mask:url(../images/ico-quote.svg) no-repeat center center;mask:url(../images/ico-quote.svg) no-repeat center center;-webkit-mask-size:contain;mask-size:contain}@media(max-width: 1023px){.section-quotes blockquote{height:50vh;padding:0 10%;overflow:auto}}.section-quotes .author{display:inline-block;position:relative}.section-quotes .author:before{width:80px;height:1px;display:block;content:"";background:#948867;position:absolute;right:100%;top:.75em;margin-right:1em}.section-home-panorama h2{color:#000;margin-bottom:1em}@media(max-width: 1023px){.section-home-panorama{margin-top:10vh}.section-home-panorama .mosaic-item-quad::before{padding-bottom:150%}}.section-prototypes-compare{overflow:hidden;padding:10vh 0;background:url(../images/bg-product-compare.png) #fefdf6}.section-prototypes-compare h2{text-align:center;color:#000}.section-prototypes-compare small{display:block;margin-bottom:2.5vh}.section-prototypes-compare .row{column-gap:20px}.section-prototypes-compare .prototype-compare{width:100%;display:block;padding-bottom:1em;text-align:center;background:#fff;box-shadow:0 5px 10px rgba(100,100,100,.2)}.section-prototypes-compare .prototype-compare .prototype-thumb{width:100%;height:0;padding-bottom:100%;display:block;background:no-repeat center center;background-size:contain}.section-prototypes-compare .prototype-compare .prototype-thumb--large{padding-bottom:85%;margin-top:6%;margin-bottom:20%}.section-prototypes-compare .prototype-compare h3{color:#000;font-size:1.25em;font-weight:600;margin:5vh auto 2vh}.section-prototypes-compare .prototype-compare ul{min-height:13em;list-style:none;padding:0;padding:0}.section-prototypes-compare .prototype-compare ul li{font-size:85%;color:gray}.section-prototypes-compare .prototype-compare .btn{border-radius:0;color:#555;background:#b9d2d7;border:none}@media(max-width: 1023px){.section-prototypes-compare{padding-bottom:0}}.modal{padding:70px 35px;background:rgba(0,0,0,.7);z-index:3}.modal.modal-white{background:rgba(255,255,255,.7)}.modal.modal-white .btn-close-modal i svg,.modal.modal-white .btn-close-modal i svg path,.modal.modal-white .btn-close-modal i svg rect,.modal.modal-white .btn-close-modal i svg circle,.modal.modal-white .btn-close-prototype i svg,.modal.modal-white .btn-close-prototype i svg path,.modal.modal-white .btn-close-prototype i svg rect,.modal.modal-white .btn-close-prototype i svg circle{fill:#000}@media(max-width: 1023px){.modal{padding-top:9vh;padding-bottom:9vh}.modal .modal-content{min-height:91vh}}.modal .btn-close-modal,.modal .btn-close-prototype{width:41px;height:40px;position:absolute;right:2vw;top:4vh;border:none;background:none;color:inherit;font-size:85%;z-index:1}.modal .btn-close-modal i,.modal .btn-close-prototype i{width:20px;height:20px;display:block;margin-bottom:-8px;margin-left:15px}.modal .btn-close-modal i svg,.modal .btn-close-modal i svg path,.modal .btn-close-modal i svg rect,.modal .btn-close-modal i svg circle,.modal .btn-close-prototype i svg,.modal .btn-close-prototype i svg path,.modal .btn-close-prototype i svg rect,.modal .btn-close-prototype i svg circle{width:20px;height:20px;fill:#fff}.modal .btn-close-prototype{z-index:2}.modal .modal-content{width:100%;min-height:92vh;padding:35px;background:#fff;border:none;border-radius:0}.modal .modal-content .row{width:100%}.modal .modal-content .form-response{display:none;font-size:85%;padding:.5em 1em}@media(max-width: 1023px){.modal .modal-content{padding-left:0;padding-right:0}}.modal.modal-brochure .modal-content .lg-company-wp{width:20%;margin-bottom:5vh}.modal.modal-brochure .modal-content .lg-company-wp .lg-company{padding-bottom:100%}.modal.modal-brochure .modal-content h2{color:#44513c;font-size:2.5em}.modal.modal-brochure .modal-content p{font-size:90%}@media(max-width: 1023px){.modal.modal-brochure .modal-content{width:100vw}.modal.modal-brochure .modal-content .lg-company-wp{display:none}.modal.modal-brochure .modal-content p{margin-bottom:5vh}.modal.modal-brochure .modal-content .col-6,.modal.modal-brochure .modal-content .col-8,.modal.modal-brochure .modal-content .col-4{max-width:100%;flex:0 1 auto;padding-left:0;padding-right:0}.modal.modal-brochure .modal-content small{font-size:60%;text-align:center;margin:0 20%}}.modal.modal-showroom .modal-content{padding-left:6vw;padding-right:6vw;left:0;right:auto;text-align:center;background:#d4d1c9}.modal.modal-showroom .modal-content h2{color:#fff;margin:1em 0}.modal.modal-showroom .modal-content .title-label{color:#fff}.modal.modal-showroom .modal-content p{font-size:2em;margin-bottom:1.5vh}@media(max-width: 1023px){.modal.modal-showroom .modal-content{width:100vw}}.modal.modal-contacto .modal-content{width:100%;height:auto;min-height:80vh;padding:0;background:#fff}.modal.modal-contacto .modal-content #contact-form>.row{padding-top:4vh;padding-bottom:4vh}@media(max-width: 1023px){.modal.modal-contacto .modal-content{height:auto;background:#f8f4de}.modal.modal-contacto .modal-content .col-6,.modal.modal-contacto .modal-content .col-8,.modal.modal-contacto .modal-content .col-4{max-width:100%;flex:0 1 auto;padding-left:0;padding-right:0}.modal.modal-contacto .modal-content small{font-size:60%;text-align:center;margin:0 20%}.modal.modal-contacto .modal-content .btn-submit{margin-right:0}.modal.modal-contacto .modal-content .follow-us{display:none}}.modal.modal-video .modal-content{width:80vw;height:90vh;margin:0 auto;padding:0 0 0;background:none}.modal.modal-video .modal-content .btn-close-modal{color:#fff;right:auto;left:104%;top:2vh}@media(max-width: 1023px){.modal.modal-video .modal-content{width:100%;height:auto;top:30vh;margin-right:0}.modal.modal-video .modal-content iframe{width:100%;min-height:27vh}.modal.modal-video .modal-content .btn-close-modal{left:auto;right:0;top:-6vh}}@media(max-width: 1023px)and (orientation: landscape){.modal.modal-video .modal-content{top:12vh}.modal.modal-video .modal-content iframe{min-height:76vh}}.modal.modal-map .btn-close-modal{color:#fff}.modal.modal-map .modal-content{width:95vh;height:95vh;top:2.5vh;right:50%;margin-right:-47.5vh;padding:0 0 0;background:#053d2f url("../images/img-map.png") no-repeat center center;background-size:cover}@media(max-width: 1023px){.modal.modal-map .modal-content{width:95vw;margin-right:-47.5vw;background-image:url("../images/img-map-mobile.png")}}.modal.modal-media .media-image{width:100%;height:100%;min-height:81vh;display:block;position:relative;background:no-repeat center 80%;background-size:cover}.modal.modal-media .media-image .link-prev,.modal.modal-media .media-image .link-next{width:50%;height:100%;position:absolute;top:0;left:0;cursor:pointer}.modal.modal-media .media-image .link-prev:before,.modal.modal-media .media-image .link-next:before{width:3em;height:3em;display:block;content:"";border-left:2px solid #fff;border-bottom:2px solid #fff;position:absolute;top:50%;left:5%;margin-top:-1.5em;transform:rotate(45deg);opacity:.3;transition:.3s all ease-in-out}.modal.modal-media .media-image .link-prev:hover:before,.modal.modal-media .media-image .link-next:hover:before{opacity:.9}@media(max-width: 1023px){.modal.modal-media .media-image .link-prev:before,.modal.modal-media .media-image .link-next:before{width:1.5em;height:1.5em;margin-top:7%;left:10%;opacity:.9}.modal.modal-media .media-image .link-prev.link-next:before,.modal.modal-media .media-image .link-next.link-next:before{right:10%}}.modal.modal-media .media-image .link-next{left:50%}.modal.modal-media .media-image .link-next:before{left:auto;right:5%;transform:rotate(-135deg)}.modal.modal-media .col-2{padding-left:30px}.modal.modal-media .logo-modal{width:75%;margin-top:16vh;margin-bottom:10vh}.modal.modal-media .media-caption{font-size:1.9em;color:#000}.modal.modal-media .media-button{margin-top:15vh;border:1px solid;border-radius:0;font-size:80%}.modal.modal-media .media-button:hover{color:#948867}@media(max-width: 1023px){.modal.modal-media .col-10,.modal.modal-media .col-2{width:100%;max-width:100%;flex:0 1 auto;padding-left:0;padding-right:0;text-align:center}.modal.modal-media .media-image{min-height:0;height:0;margin:5vh auto;padding-bottom:75%;background-size:contain}.modal.modal-media .logo-modal{width:65px;margin:0 5vw 0 0;display:inline-block;vertical-align:middle}.modal.modal-media .media-caption{display:inline-block;vertical-align:middle;margin-top:0;font-size:1.5em}.modal.modal-media .media-button{margin-top:10vh}}.modal.modal-apartment{padding-top:68px;padding-bottom:68px;z-index:2}.modal.modal-apartment .btn-close-modal{z-index:2}.modal.modal-apartment .modal-content{min-height:90vh}@media(max-width: 1023px){.modal.modal-apartment .modal-content{min-height:91vh}}.modal.modal-appointment #contact-form{background:#fff}.modal.modal-appointment #contact-form .form-title{width:100%;text-align:center;margin-bottom:5vh}.modal.modal-appointment #contact-form .form-title p{margin-bottom:0;font-size:75%}.modal.modal-appointment #contact-form .form-actions{margin:0}.modal.modal-appointment #contact-form .btn{min-width:150px;display:inline-block;margin:10px 5px;font-size:.8em;padding:.1em 1em;border:1px solid;background:none;color:#000}.modal.modal-appointment #contact-form .btn.btn-transparent{border:none}.modal.modal-leave{z-index:10}.modal.modal-leave .modal-content{max-width:50em;min-height:auto;padding-top:10vh;padding-bottom:10vh;margin:0 auto;background:#928769;color:#fff;z-index:1}.modal.modal-leave .modal-content .logo{max-width:15em;margin:5em auto 5em;display:block}.modal.modal-leave .modal-content h2{padding-bottom:0;margin-bottom:2em}.modal.modal-leave .modal-content p{width:50%;margin:0 auto}.modal.modal-leave .modal-content .link-phone{display:block;margin-top:2em;font-size:1.5em;color:#fff}.modal.modal-leave .modal-content .link-phone .icon{width:32px;height:32px;margin-right:.5em}.modal.modal-leave .modal-content .link-phone .icon svg path{fill:#fff}@media(max-width: 1023px){.modal.modal-leave .modal-content .logo{margin-top:2em;margin-bottom:2em}.modal.modal-leave .modal-content h2{margin-bottom:1em}.modal.modal-leave .modal-content p{width:90%}}.page-disponibilidad header{box-shadow:none}.page-disponibilidad footer .logo-company-wp{display:none}.page-amenidades .mosaic .mosaic-item{flex-basis:50%}.page-amenidades .mosaic .mosaic-item-double:first-child:before{padding-bottom:25%}.page-amenidades .col-md-6{padding-top:0vh;padding-bottom:0vh}.page-amenidades .col-md-6:first-child{padding-right:5vw}.page-amenidades .col-md-6:last-child{padding-left:5vw}.page-blog .mosaic .mosaic-item-double{width:50%}@media(max-width: 1023px){.page-blog .mosaic .mosaic-item-double{width:100%;height:auto;padding-bottom:0}}.blog-article{padding-top:5vh;color:#000}.blog-article .article-cover{height:45vh;background:no-repeat center center;background-size:cover}.blog-article .article-head{text-align:center;margin:10vh 0}.blog-article .article-head h1{margin:0;color:#000}.blog-article .article-head .article-date{font-size:.75em}.blog-article .article-head .social-bar{margin-top:5vh}.blog-article .article-content{width:50%;margin:0 auto 25vh;font-size:.8em;text-align:justify}@media(max-width: 1023px){.blog-article .article-content{width:100%}}.nicescroll-rails-hr{display:none !important}.swiper-container{padding-bottom:5vh;position:relative;z-index:0}@media(max-width: 1023px){.swiper-container{padding:0 5px 0}}.swiper-slide{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.swiper-pagination{bottom:0 !important}.swiper-pagination-bullet-active{background:#948867}.swiper-pagination-bullets{display:none}.swiper-button-next,.swiper-button-prev{color:#cbc0a3;opacity:.85;transform:scale(0.8)}.swiper-button-prev{left:5px}.swiper-button-next{right:5px}.interactive{position:absolute;left:0;bottom:0;color:#000}@media(max-width: 1023px){.interactive{position:relative;padding:0}}.interactive .step{display:none;width:100vw;height:100vh;position:fixed;left:0;top:0;z-index:1;opacity:0;transition:.3s all linear}@media(max-width: 1023px){.interactive .step{width:100%;height:auto;position:relative;display:none}}.interactive .step.active{opacity:1;display:flex !important}.interactive .step.active+.step.active{top:0}@media(max-width: 1023px){.interactive .step.active{display:block !important}}.interactive .step .left-panel{min-height:90vh;background-color:#fff;display:flex;align-items:center;justify-content:center}@media(max-width: 1023px){.interactive .step .left-panel{max-width:100vw !important;min-height:auto;flex:0 1 auto;flex-shrink:0}}.interactive .step .main-area{position:relative;padding:10vh 5vw;background-color:#fff;display:flex;align-items:center;justify-content:center}@media(max-width: 1023px){.interactive .step .main-area{max-width:100vw !important;min-height:auto;flex:0 1 auto;flex-shrink:0;display:block}}.interactive .step.step-1{width:100%;height:auto;position:relative;padding-top:18vh}.interactive .step.step-1 .buildings-wp{position:relative;display:inline-block;margin:0 auto}.interactive .step.step-1 .buildings-wp img{max-height:50vh;margin:0 auto}.interactive .step.step-1 .stats{position:absolute;font-weight:bold;z-index:9999;font-size:12px}@media(max-width: 1023px){.interactive .step.step-1 .stats{width:95px}}.interactive .step.step-1 .stats.stats-1{right:70%;top:70%}@media(max-width: 1023px){.interactive .step.step-1 .stats.stats-1{right:72%;top:85%}}.interactive .step.step-1 .stats.stats-2{left:70%;bottom:92%}.interactive .step.step-1 .stats.stats-3{right:80%;bottom:94%}.interactive .step.step-1 .stats.stats-4{right:63%;bottom:98%}.interactive .step.step-1 .stats h5{text-transform:uppercase;margin-bottom:1px;font-size:1em}.interactive .step.step-1 .stats label{display:block;font-size:1em}.interactive .step.step-1 .stats .g{color:inherit}.interactive .step.step-1 .stats .y{color:#c18c3d}.interactive .step.step-1 .stats .pointer-line{width:4px;height:4px;border-radius:50%;background:#000;position:absolute}.interactive .step.step-1 .stats .pointer-line:before,.interactive .step.step-1 .stats .pointer-line:after{width:20px;height:1px;display:block;content:"";left:0;bottom:0;position:absolute;background:#000;border-radius:1px}.interactive .step.step-1 .stats .pointer-line:before{left:-8px;bottom:14px;transform:rotate(90deg)}.interactive .step.step-1 .stats .pointer-line:after{left:-3px;bottom:32px;transform:rotate(-60deg)}.interactive .step.step-1 .stats .pointer-line.pointer-1{bottom:270%;left:200%}.interactive .step.step-1 .stats .pointer-line.pointer-1:before{width:115px;left:-111px;bottom:-19px;transform:rotate(-20deg)}.interactive .step.step-1 .stats .pointer-line.pointer-1:after{width:30px;left:-130px;bottom:-51px;transform:rotate(-60deg)}.interactive .step.step-1 .stats .pointer-line.pointer-2{top:175%;left:0}.interactive .step.step-1 .stats .pointer-line.pointer-3{top:175%;left:75%;transform:scaleX(-1)}.interactive .step.step-1 .stats .pointer-line.pointer-4{top:130%;left:100%;transform:scaleX(-1)}.interactive .step.step-1 .stats .pointer-line.pointer-4:before{width:10px;left:-2px;bottom:9px}.interactive .step.step-1 .stats .pointer-line.pointer-4:after{width:10px;left:0px;bottom:18px}.interactive .step.step-2{padding-top:70px}.interactive .step.step-2 .level-select{max-width:200px;margin:0 1vh}.interactive .step.step-2 .level-selector{margin:0 auto}.interactive .step.step-2 .level-selector img{width:auto !important;height:50vh !important}@media(max-width: 1023px){.interactive .step.step-2 .level-selector img{width:100% !important;height:auto !important}}.interactive .step.step-2 .building-selector{margin:1vh 0 0}.interactive .step.step-2 .building-selector button{position:relative;padding:.1em .1em;margin:1vh 1vw;color:#000;border:none;background:rgba(0,0,0,0)}.interactive .step.step-2 .building-selector button.active{border-bottom:1px solid;border-color:#000}.interactive .step.step-2 .building-selector button[disabled]{border-color:rgba(0,0,0,.75);color:rgba(0,0,0,.75)}.interactive .step.step-2 .building-selector button[disabled] span{width:8em;position:absolute;left:30%;bottom:90%;display:inline-block;padding:2px 4px;font-size:.6em;color:#fff;background:#000}@media(max-width: 1023px){.interactive .step.step-2 .building-selector{margin:5vh 0}}.interactive .step.step-2 .step-caption{width:100%;position:absolute;top:0;left:-50%;font-size:1em}@media(max-width: 1023px){.interactive .step.step-2 .step-caption{position:relative;top:auto;left:auto}}.interactive .step.step-2 .level-details{text-align:left;margin-bottom:1vh}.interactive .step.step-2 .level-details h3{font-size:14px;margin:0 0 .5em}.interactive .step.step-2 .apartment-selector{margin:0;position:relative}.interactive .step.step-2 .apartment-selector .legend-orientation{width:100%;display:block;position:absolute;right:0;top:-12px;font-size:80%;color:#ccc}.interactive .step.step-2 .apartment-selector .legend-orientation:before{width:0;height:0;content:"";display:inline-block;vertical-align:middle;margin-right:10px;margin-bottom:2px;border:6px solid rgba(0,0,0,0);border-bottom-color:#ccc}.interactive .step.step-2 .apartment-selector .legend-orientation.orientation-lake{top:auto;bottom:-16px}.interactive .step.step-2 .apartment-selector .legend-orientation.orientation-lake:before{border-bottom-color:rgba(0,0,0,0);border-top-color:#ccc;margin-bottom:-5px}.interactive .step.step-2 .apartment-selector img{width:auto !important;height:50vh !important}.interactive .step.step-2 .apartment-selector #areasMapster{display:block !important;opacity:0 !important}@media(max-width: 1023px){.interactive .step.step-2 .apartment-selector img{width:100% !important;height:auto !important}}.interactive .step.step-2 .notations{margin:1vh 0;margin-top:3vh;padding:0;list-style:none;text-align:center;color:#666}.interactive .step.step-2 .notations li{margin:0 1em;display:inline-block}.interactive .step.step-2 .notations li span{width:1em;height:1em;margin-bottom:-2px;display:inline-block;vertical-align:baseline}.interactive .step.step-2 .notations li:nth-child(1) span{background:#fff;border:1px solid #948867}.interactive .step.step-2 .notations li:nth-child(2) span{background:#948867}.interactive .step.step-2 .notations li:nth-child(3) span{background:#000}@media(max-width: 1023px){.interactive .step.step-2 .notations{margin-left:0;margin-right:0}}.interactive .step.step-2 .filters{width:100%;margin-top:7.5vh;padding:0}.interactive .step.step-2 .filters label{display:inline-block;margin:0 1em}@media(max-width: 1023px){.interactive .step.step-2 .filters{padding:0;font-size:90%}.interactive .step.step-2 .filters label{margin:0 .5em}}.interactive .step.step-2 .btn-home-simulator{position:absolute;left:50%;bottom:5vh;margin-left:-7em;color:#000;font-size:.75em;border:none;background:none;padding:1em 2em}.interactive .step.step-3{top:100vh}.interactive .step.step-3 .left-panel{padding:0 4%;background:#fff}.interactive .step.step-3 .left-panel .step-content{width:100%}.interactive .step.step-3 .main-area{position:relative;background:#fff}.interactive .step.step-3 .main-area .item-image{height:55vh;background:no-repeat center center;background-size:contain}@media(max-width: 1023px){.interactive .step.step-3 .main-area .item-image{width:80vw;height:auto}}@media(max-width: 1023px){.interactive .step.step-3 .main-area{padding-top:5vh;padding-bottom:5vh}}.interactive .step.step-3 .btn-close-modal{color:#fff;position:absolute;right:9vw;top:15vh;vertical-align:middle;border:none;background:none}.interactive .step.step-3 .btn-close-modal i{height:.75em;display:inline-block}@media(max-width: 1023px){.interactive .step.step-3 .btn-close-modal{display:none}}.interactive .step.step-3 .show-item{transition:.3s all linear;position:relative;z-index:1}.interactive .step.step-3 .show-item .item-title{text-align:left;padding-bottom:1em}.interactive .step.step-3 .show-item .item-title .logo-apartment{width:70px;float:left;margin-right:30px}.interactive .step.step-3 .show-item .item-title h3{margin-bottom:.3em}.interactive .step.step-3 .show-item .item-title .title-sub{margin-top:0;font-size:75%}.interactive .step.step-3 .show-item .item-details{height:14em;margin:0;padding:5vh 0 11vh;list-style:none;display:flex;flex-wrap:wrap;align-content:flex-start}.interactive .step.step-3 .show-item .item-details li{width:33.33%;text-align:left;font-size:75%;margin:.3em 0}@media(max-width: 1023px){.interactive .step.step-3 .show-item .item-details{height:11em;padding:3vh 0}}.interactive .step.step-3 .show-item .item-actions{text-align:center}.interactive .step.step-3 .show-item .btn{min-width:150px;display:inline-block;padding:.5em 2em;border:none;background:none;border:1px solid;color:#000;border-radius:0;font-size:80%}@media(max-width: 1023px){.interactive .step.step-3 .show-item{margin-bottom:10vh}.interactive .step.step-3 .show-item .btn{min-width:120px}}.interactive .checkbox{display:block;position:relative;padding-left:1.5em;margin-bottom:12px;text-align:left;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.interactive .checkbox input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.interactive .checkmark{position:absolute;top:50%;left:0;margin-top:-0.5em;height:1em;width:1em;background-color:#fff;border:1px solid #948867}.interactive .checkbox:hover input~.checkmark{background-color:#eee}.interactive .checkbox input:checked~.checkmark{background-color:#948867;border-color:#948867}.interactive .checkmark:after{content:"";position:absolute;display:none}.interactive .checkbox input:checked~.checkmark:after{display:block}.interactive .checkbox .checkmark:after{left:50%;top:50%;width:.4em;height:.8em;margin-top:-0.45em;margin-left:-0.15em;border:solid #fff;border-width:0 .2em .2em 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.areas-tooltip{padding:0 5px;color:#fff !important;background:#948867;font-weight:500}.interactive-quick-view-toolbar{width:100%;position:absolute;left:0;bottom:0;text-align:center;background:rgba(255,255,255,.7);transition:.3s all linear;z-index:1}.interactive-quick-view-toolbar .item-wp{display:none;width:100%;height:80vh;left:0;top:0;background:#fff;transition:.3s all linear;align-self:flex-end;overflow-y:auto}.interactive-quick-view-toolbar .item-wp .show-item{position:relative;padding:15vh 9vw 25vh;display:flex}.interactive-quick-view-toolbar .item-wp .show-item .btn-close-modal{color:#fff;position:absolute;right:0;top:-3.5vh;vertical-align:middle;border:none;background:none}.interactive-quick-view-toolbar .item-wp .show-item .btn-close-modal i{height:.75em;display:inline-block}.interactive-quick-view-toolbar .item-wp .show-item .item-data{width:0;left:30%;padding-left:5vw;background:#fff;transition:.3s all linear;position:relative;z-index:1}.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-title{width:100%;text-align:left;padding-bottom:1em}.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-title .logo-apartment{width:70px;float:left;margin-right:30px}.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-title h3{font-size:2em;margin-bottom:.3em}.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-title .title-sub{margin-top:0}@media(max-width: 1023px){.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-title{padding-bottom:0}.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-title .title-sub{font-size:75%}}.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-details{height:14em;margin:0;padding:5vh 0 11vh;list-style:none;display:flex;flex-wrap:wrap;align-content:flex-start;color:#000}.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-details li{width:33.33%;text-align:left;font-size:75%;margin:.3em 0}.interactive-quick-view-toolbar .item-wp .show-item .item-data .btn-appointment{display:block;padding:.1em 3em;border:none;border:1px solid;color:#000;font-size:80%}.interactive-quick-view-toolbar .item-wp .show-item .item-data .btn{border:1px solid;color:#000;font-size:80%;border-radius:0}.interactive-quick-view-toolbar .item-wp .show-item .item-data .btn.btn-gray{background:#919191;color:#fff}@media(max-width: 1023px){.interactive-quick-view-toolbar .item-wp .show-item .item-data{max-width:100% !important;width:100% !important;flex:0 1 auto !important}.interactive-quick-view-toolbar .item-wp .show-item .item-data .item-details{height:11em;padding-top:3vh;padding-bottom:3vh}.interactive-quick-view-toolbar .item-wp .show-item .item-data .btn{font-size:73%}}.interactive-quick-view-toolbar .item-wp .show-item .item-image{transition:.3s all linear;background:url("../images/prototypes/img-paz.webp") no-repeat -100% center;background-size:contain}@media(max-width: 1023px){.interactive-quick-view-toolbar .item-wp .show-item .item-image{max-width:100% !important;width:100% !important;flex:0 1 auto !important;padding-bottom:50%;margin-bottom:5vh}}.interactive-quick-view-toolbar .item-wp .show-item.reveal .item-data{width:41.666667%;left:0}.interactive-quick-view-toolbar .item-wp .show-item.reveal .item-image{background-position:center center}@media(max-width: 1023px){.interactive-quick-view-toolbar .item-wp .show-item{padding:5vh 0;display:block}.interactive-quick-view-toolbar .item-wp .show-item .btn-close-modal{top:-30.5vh}}.interactive-quick-view-toolbar .items-list{display:none;height:90vh;text-align:center;padding:15vh 10% 0;margin:0;list-style:none}.interactive-quick-view-toolbar .items-list h3{font-size:3em;margin-bottom:10vh}.interactive-quick-view-toolbar .items-list .font-styled{font-size:120%;color:#666}.interactive-quick-view-toolbar .items-list ul{margin-left:0;padding-left:0}.interactive-quick-view-toolbar .items-list li{display:inline-block;padding:.6em .1em .4em;margin:.5em;color:#000;font-size:110%;vertical-align:middle;cursor:pointer}.interactive-quick-view-toolbar .items-list li small{display:block;color:#948867}.interactive-quick-view-toolbar .items-list li.double{line-height:110%;padding-top:.25em;padding-bottom:.1em}.interactive-quick-view-toolbar .items-list li.active{background:#88c02a;border-color:#88c02a}@media(max-width: 1023px){.interactive-quick-view-toolbar .items-list{padding:10vh 0}.interactive-quick-view-toolbar .items-list h3{font-size:1.6em;margin-bottom:3vh}.interactive-quick-view-toolbar .items-list .font-styled{font-size:90%;margin-bottom:0}.interactive-quick-view-toolbar .items-list li{margin:.25em;padding:.2em .1em}.interactive-quick-view-toolbar .items-list li small{font-size:60%}}.interactive-quick-view-toolbar .btn-open-toolbar{width:160px;position:absolute;left:50%;bottom:0;margin-left:-80px;display:inline-block;padding:1em 0;font-size:70%;color:#000;border:none;background:none;cursor:pointer}.interactive-quick-view-toolbar .btn-open-toolbar i{width:0;height:0;border:15px solid rgba(0,0,0,0);border-top-color:#000;transition:.3s all linear}@media(max-width: 1023px){.interactive-quick-view-toolbar .btn-open-toolbar{width:100%;left:auto;margin:0 auto;display:block}}.interactive-quick-view-toolbar.opened{height:100%}.interactive-quick-view-toolbar.opened .btn-open-toolbar i{transform:rotate(180deg)}
