@charset "UTF-8";
/* line 1, ../../scss/_animate.scss */
[class~=animated][class~=infinite] {
  animation-iteration-count: infinite;
}

/* line 1, ../../scss/_animate.scss */
[class~=animated][class~=hinge] {
  animation-duration: 2s;
}

/* line 1, ../../scss/_animate.scss */
[class~=animated] {
  animation-duration: 1s;
}

/* line 1, ../../scss/_animate.scss */
[class~=animated][class~=bounceIn], .animated.flipOutY, [class~=animated][class~=flipOutX], [class~=animated][class~=bounceOut] {
  animation-duration: .75s;
}

/* line 1, ../../scss/_animate.scss */
[class~=animated] {
  animation-fill-mode: both;
}

@keyframes bounce {
  /* line 1, ../../scss/_animate.scss */
  from, 20%,53%,80%,to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  40%,43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounce] {
  animation-name: bounce;
}

/* line 1, ../../scss/_animate.scss */
[class~=bounce] {
  transform-origin: center bottom;
}

@keyframes flash {
  /* line 1, ../../scss/_animate.scss */
  from, 50%,to {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  25%,75% {
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=flash] {
  animation-name: flash;
}

@keyframes pulse {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: scale3d(1, 1, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=pulse] {
  animation-name: pulse;
}

@keyframes rubberBand {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: scale3d(1, 1, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=rubberBand] {
  animation-name: rubberBand;
}

@keyframes shake {
  /* line 1, ../../scss/_animate.scss */
  from, to {
    transform: translate3d(0, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  10%,30%,50%,70%,90% {
    transform: translate3d(-10px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  20%,40%,60%,80% {
    transform: translate3d(10px, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=shake] {
  animation-name: shake;
}

@keyframes headShake {
  /* line 1, ../../scss/_animate.scss */
  0% {
    transform: translateX(0);
  }

  /* line 1, ../../scss/_animate.scss */
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  /* line 1, ../../scss/_animate.scss */
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  /* line 1, ../../scss/_animate.scss */
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  /* line 1, ../../scss/_animate.scss */
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  /* line 1, ../../scss/_animate.scss */
  50% {
    transform: translateX(0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=headShake] {
  animation-timing-function: ease-in-out;
}

/* line 1, ../../scss/_animate.scss */
[class~=headShake] {
  animation-name: headShake;
}

@keyframes swing {
  /* line 1, ../../scss/_animate.scss */
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  /* line 1, ../../scss/_animate.scss */
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  /* line 1, ../../scss/_animate.scss */
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=swing] {
  transform-origin: top center;
}

/* line 1, ../../scss/_animate.scss */
[class~=swing] {
  animation-name: swing;
}

@keyframes tada {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: scale3d(1, 1, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  10%,20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  /* line 1, ../../scss/_animate.scss */
  30%,50%,70%,90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  /* line 1, ../../scss/_animate.scss */
  40%,60%,80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=tada] {
  animation-name: tada;
}

@keyframes wobble {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: none;
  }

  /* line 1, ../../scss/_animate.scss */
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  /* line 1, ../../scss/_animate.scss */
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  /* line 1, ../../scss/_animate.scss */
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  /* line 1, ../../scss/_animate.scss */
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  /* line 1, ../../scss/_animate.scss */
  from, 11.1%,to {
    transform: none;
  }

  /* line 1, ../../scss/_animate.scss */
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  /* line 1, ../../scss/_animate.scss */
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  /* line 1, ../../scss/_animate.scss */
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  /* line 1, ../../scss/_animate.scss */
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  /* line 1, ../../scss/_animate.scss */
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  /* line 1, ../../scss/_animate.scss */
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  /* line 1, ../../scss/_animate.scss */
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=jello] {
  animation-name: jello;
}

/* line 1, ../../scss/_animate.scss */
[class~=jello] {
  transform-origin: center;
}

@keyframes bounceIn {
  /* line 1, ../../scss/_animate.scss */
  from, 20%,40%,60%,80%,to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  /* line 1, ../../scss/_animate.scss */
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  /* line 1, ../../scss/_animate.scss */
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  /* line 1, ../../scss/_animate.scss */
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounceIn] {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  /* line 1, ../../scss/_animate.scss */
  from, 60%,75%,90%,to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  75% {
    transform: translate3d(0, -10px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  90% {
    transform: translate3d(0, 5px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounceInDown] {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  /* line 1, ../../scss/_animate.scss */
  from, 60%,75%,90%,to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  75% {
    transform: translate3d(-10px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  90% {
    transform: translate3d(5px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  /* line 1, ../../scss/_animate.scss */
  from, 60%,75%,90%,to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  75% {
    transform: translate3d(10px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  90% {
    transform: translate3d(-5px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounceInRight] {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  /* line 1, ../../scss/_animate.scss */
  from, 60%,75%,90%,to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  75% {
    transform: translate3d(0, 10px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  90% {
    transform: translate3d(0, -5px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounceInUp] {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  /* line 1, ../../scss/_animate.scss */
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  /* line 1, ../../scss/_animate.scss */
  50%,55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounceOut] {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  /* line 1, ../../scss/_animate.scss */
  20% {
    transform: translate3d(0, 10px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  40%,45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounceOutDown] {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  /* line 1, ../../scss/_animate.scss */
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounceOutLeft] {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  /* line 1, ../../scss/_animate.scss */
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounceOutRight] {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  /* line 1, ../../scss/_animate.scss */
  20% {
    transform: translate3d(0, -10px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  40%,45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=bounceOutUp] {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeIn] {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeInDownBig] {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeInLeft] {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeInRight] {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeInRightBig] {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeInUp] {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeInUpBig] {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeOutDown] {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeOutDownBig] {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeOutLeft] {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeOutLeftBig] {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeOutRight] {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeOutRightBig] {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeOutUp] {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=fadeOutUpBig] {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  /* line 1, ../../scss/_animate.scss */
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  /* line 1, ../../scss/_animate.scss */
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  /* line 1, ../../scss/_animate.scss */
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=animated][class~=flip] {
  -webkit-backface-visibility: visible;
}

/* line 1, ../../scss/_animate.scss */
[class~=animated][class~=flip] {
  backface-visibility: visible;
}

/* line 1, ../../scss/_animate.scss */
[class~=animated][class~=flip] {
  animation-name: flip;
}

@keyframes flipInX {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  /* line 1, ../../scss/_animate.scss */
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: perspective(400px);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=flipInX] {
  -webkit-backface-visibility: visible !important;
}

/* line 1, ../../scss/_animate.scss */
[class~=flipInX] {
  backface-visibility: visible !important;
}

/* line 1, ../../scss/_animate.scss */
[class~=flipInX] {
  animation-name: flipInX;
}

@keyframes flipInY {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  /* line 1, ../../scss/_animate.scss */
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: perspective(400px);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=flipInY] {
  -webkit-backface-visibility: visible !important;
}

/* line 1, ../../scss/_animate.scss */
[class~=flipInY] {
  backface-visibility: visible !important;
}

/* line 1, ../../scss/_animate.scss */
[class~=flipInY] {
  animation-name: flipInY;
}

@keyframes flipOutX {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: perspective(400px);
  }

  /* line 1, ../../scss/_animate.scss */
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=flipOutX] {
  animation-name: flipOutX;
}

/* line 1, ../../scss/_animate.scss */
[class~=flipOutX] {
  -webkit-backface-visibility: visible !important;
}

/* line 1, ../../scss/_animate.scss */
[class~=flipOutX] {
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: perspective(400px);
  }

  /* line 1, ../../scss/_animate.scss */
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
}

/* line 1, ../../scss/_animate.scss */
.flipOutY {
  backface-visibility: visible !important;
}

/* line 1, ../../scss/_animate.scss */
.flipOutY {
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: none;
    opacity: 1;
  }
}

/* line 1, ../../scss/_animate.scss */
.lightSpeedIn {
  animation-name: lightSpeedIn;
}

/* line 1, ../../scss/_animate.scss */
.lightSpeedIn {
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=lightSpeedOut] {
  animation-name: lightSpeedOut;
}

/* line 1, ../../scss/_animate.scss */
[class~=lightSpeedOut] {
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=rotateIn] {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=rotateInDownLeft] {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=rotateInDownRight] {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

/* line 1, ../../scss/_animate.scss */
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

/* line 1, ../../scss/_animate.scss */
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: center;
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=rotateOutDownLeft] {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=rotateOutDownRight] {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=rotateOutUpLeft] {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=rotateOutUpRight] {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  /* line 1, ../../scss/_animate.scss */
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  /* line 1, ../../scss/_animate.scss */
  20%,60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  /* line 1, ../../scss/_animate.scss */
  40%,80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=hinge] {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  /* line 1, ../../scss/_animate.scss */
  50% {
    transform: rotate(-10deg);
  }

  /* line 1, ../../scss/_animate.scss */
  70% {
    transform: rotate(3deg);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=jackInTheBox] {
  animation-name: jackInTheBox;
}

@keyframes rollIn {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 1, ../../scss/_animate.scss */
.rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=rollOut] {
  animation-name: rollOut;
}

@keyframes zoomIn {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  /* line 1, ../../scss/_animate.scss */
  50% {
    opacity: 1;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=zoomIn] {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=zoomInLeft] {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=zoomInRight] {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  /* line 1, ../../scss/_animate.scss */
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  /* line 1, ../../scss/_animate.scss */
  from {
    opacity: 1;
  }

  /* line 1, ../../scss/_animate.scss */
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=zoomOut] {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  /* line 1, ../../scss/_animate.scss */
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=zoomOutDown] {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  /* line 1, ../../scss/_animate.scss */
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

/* line 1, ../../scss/_animate.scss */
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  /* line 1, ../../scss/_animate.scss */
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

/* line 1, ../../scss/_animate.scss */
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  /* line 1, ../../scss/_animate.scss */
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, ../../scss/_animate.scss */
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=slideInDown] {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=slideInLeft] {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=slideInRight] {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=slideInUp] {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: translate3d(0, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=slideOutDown] {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: translate3d(0, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=slideOutLeft] {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: translate3d(0, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=slideOutRight] {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  /* line 1, ../../scss/_animate.scss */
  from {
    transform: translate3d(0, 0, 0);
  }

  /* line 1, ../../scss/_animate.scss */
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

/* line 1, ../../scss/_animate.scss */
[class~=slideOutUp] {
  animation-name: slideOutUp;
}

/*
	HTML5 Reset
	
	Eric Meyer					:: http://ericmeyer.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
-------------------------------------------------------------------------------*/
/* line 9, ../../scss/_reset.scss */
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* line 21, ../../scss/_reset.scss */
article, aside, figure, figcaption, footer, header, hgroup, nav, section, time {
  display: block;
}

/* line 23, ../../scss/_reset.scss */
img, object, embed {
  max-width: 100%;
}

/* line 25, ../../scss/_reset.scss */
ul {
  list-style: none;
}

/* line 27, ../../scss/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 32, ../../scss/_reset.scss */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* line 34, ../../scss/_reset.scss */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* line 36, ../../scss/_reset.scss */
del {
  text-decoration: line-through;
}

/* line 38, ../../scss/_reset.scss */
abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* line 40, ../../scss/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 41, ../../scss/_reset.scss */
th {
  font-weight: bold;
  vertical-align: bottom;
}

/* line 42, ../../scss/_reset.scss */
td {
  font-weight: normal;
  vertical-align: top;
}

/* line 44, ../../scss/_reset.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* line 46, ../../scss/_reset.scss */
input, select {
  vertical-align: middle;
}

/* line 48, ../../scss/_reset.scss */
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

/* line 55, ../../scss/_reset.scss */
input[type="radio"] {
  vertical-align: text-bottom;
}

/* line 56, ../../scss/_reset.scss */
input[type="checkbox"] {
  vertical-align: bottom;
  *vertical-align: baseline;
}

/* line 57, ../../scss/_reset.scss */
.ie6 input {
  vertical-align: text-bottom;
}

/* line 59, ../../scss/_reset.scss */
select, input, textarea {
  font: 99% sans-serif;
}

/* line 61, ../../scss/_reset.scss */
table {
  font-size: inherit;
  font: 100%;
}

/* line 63, ../../scss/_reset.scss */
a:hover, a:active {
  outline: none;
}

/* line 65, ../../scss/_reset.scss */
small {
  font-size: 85%;
}

/* line 67, ../../scss/_reset.scss */
strong, th {
  font-weight: normal;
}

/* line 69, ../../scss/_reset.scss */
td, td img {
  vertical-align: top;
}

/* line 71, ../../scss/_reset.scss */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

/* line 72, ../../scss/_reset.scss */
sup {
  top: -0.5em;
}

/* line 73, ../../scss/_reset.scss */
sub {
  bottom: -0.25em;
}

/* line 75, ../../scss/_reset.scss */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* line 77, ../../scss/_reset.scss */
.clickable, input[type=button], input[type=submit], button {
  cursor: pointer;
}

/* line 79, ../../scss/_reset.scss */
button, input, select, textarea {
  margin: 0;
}

/* line 81, ../../scss/_reset.scss */
button {
  width: auto;
  overflow: visible;
}

/* line 83, ../../scss/_reset.scss */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* line 85, ../../scss/_reset.scss */
.ie6 html {
  filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

/* line 87, ../../scss/_reset.scss */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}

/* line 89, ../../scss/_reset.scss */
.clearfix:after {
  clear: both;
}

/* line 91, ../../scss/_reset.scss */
.clearfix {
  zoom: 1;
}

/* line 93, ../../scss/_reset.scss */
::-moz-selection {
  background: #0A578B;
  color: #FFF;
  text-shadow: none;
}

/* line 94, ../../scss/_reset.scss */
::selection {
  background: #0A578B;
  color: #FFF;
  text-shadow: none;
}

/* line 96, ../../scss/_reset.scss */
ins {
  background-color: #0A578B;
  color: #FFF;
  text-decoration: none;
}

/* line 97, ../../scss/_reset.scss */
mark {
  background-color: #0A578B;
  color: #FFF;
  font-style: italic;
  font-weight: bold;
}

@font-face {
  font-family: 'bodidotaregular';
  src: url("../fonts/bodidota-webfont.woff2") format("woff2");
  src: url("../fonts/Bodidota.ttf") format("ttf"), url("../fonts/bodidota-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'comfortaabold';
  src: url("../fonts/comfortaa-bold-webfont.woff2") format("woff2");
  src: url("../fonts/Comfortaa-Bold.ttf") format("ttf"), url("../fonts/comfortaa-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'comfortaaregular';
  src: url("../fonts/comfortaa-regular-webfont.woff2") format("woff2");
  src: url("../fonts/Comfortaa-Regular.ttf") format("ttf"), url("../fonts/comfortaa-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'hello_scriptregular';
  src: url("../fonts/helloscript_trial-webfont.woff2") format("woff2");
  src: url("../fonts/HelloScript.ttf") format("ttf"), url("../fonts/helloscript_trial-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* line 42, ../../scss/styles.scss */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 50, ../../scss/styles.scss */
a {
  cursor: pointer;
}

/* line 53, ../../scss/styles.scss */
.hidden {
  overflow: hidden;
}

/* line 56, ../../scss/styles.scss */
.blocker {
  display: none;
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* line 66, ../../scss/styles.scss */
.masInfo {
  display: block;
  position: fixed;
  width: 60%;
  background: #FF422E;
  top: 40px;
  right: -75%;
  bottom: 0;
  z-index: 5;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
/* line 78, ../../scss/styles.scss */
.masInfo .cerrar {
  display: block;
  position: absolute;
  width: 88px;
  height: 32px;
  background: url("../images/cerrar.png") center no-repeat;
  cursor: pointer;
  top: 10px;
  left: 20px;
}
/* line 87, ../../scss/styles.scss */
.masInfo .cerrar:hover {
  background: url("../images/cerrar-hover.png") center no-repeat;
}
/* line 91, ../../scss/styles.scss */
.masInfo .cont-masinfo {
  position: absolute;
  top: 60px;
  bottom: 30px;
  left: 55px;
  color: #000;
  height: auto;
  overflow-y: scroll;
  width: 96%;
}
/* line 100, ../../scss/styles.scss */
.masInfo .cont-masinfo .left {
  display: inline-block;
  padding-left: 50px;
}
/* line 103, ../../scss/styles.scss */
.masInfo .cont-masinfo .left .numero {
  font-family: 'bodidotaregular';
  color: #fff;
  font-size: 82px;
  opacity: 0.12;
  left: 60px;
  text-align: right;
  line-height: 75px;
}
/* line 113, ../../scss/styles.scss */
.masInfo .cont-masinfo .right {
  display: inline-block;
  vertical-align: top;
}
/* line 116, ../../scss/styles.scss */
.masInfo .cont-masinfo .right .pelicula {
  color: #fff;
  font-size: 14px;
  font-family: 'comfortaaregular';
  padding: 27px 35px;
  line-height: 21px;
}

/* line 126, ../../scss/styles.scss */
.contenedor_principal {
  width: 100%;
  position: relative;
}
/* line 129, ../../scss/styles.scss */
.contenedor_principal .centro {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  position: relative;
}
/* line 135, ../../scss/styles.scss */
.contenedor_principal .caja_title {
  padding: 30px 80px;
  background: #FF422E;
  min-height: 200px;
}
/* line 139, ../../scss/styles.scss */
.contenedor_principal .caja_title .left {
  display: inline-block;
  width: 60%;
}
/* line 143, ../../scss/styles.scss */
.contenedor_principal .caja_title .right {
  font-family: 'comfortaaregular';
  display: inline-block;
  vertical-align: top;
  color: #fff;
  font-size: 12px;
  width: 40%;
  padding-top: 130px;
  padding-right: 60px;
  padding-left: 40px;
  line-height: 18px;
}
/* line 154, ../../scss/styles.scss */
.contenedor_principal .caja_title .right .redes {
  margin-bottom: 10px;
}
/* line 156, ../../scss/styles.scss */
.contenedor_principal .caja_title .right .redes a {
  color: #fff;
  font-size: 20px;
}
/* line 159, ../../scss/styles.scss */
.contenedor_principal .caja_title .right .redes a .icon-facebook {
  margin-left: -5px;
  padding-right: 5px;
}
/* line 162, ../../scss/styles.scss */
.contenedor_principal .caja_title .right .redes a .icon-facebook:hover {
  opacity: 0.50;
}
/* line 167, ../../scss/styles.scss */
.contenedor_principal .caja_title .right .redes a .icon-twitter:hover {
  opacity: 0.50;
}
/* line 175, ../../scss/styles.scss */
.contenedor_principal .peliculas {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
/* line 179, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula {
  position: relative;
  padding-top: 80px;
  padding-left: 302px;
}
/* line 183, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula .left {
  padding-top: 30px;
  width: 184px;
  display: inline-block;
}
/* line 188, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula .right {
  display: inline-block;
  vertical-align: top;
  color: #fff;
  width: 350px;
  margin-left: 90px;
}
/* line 194, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula .right .title {
  font-size: 56px;
  font-family: 'hello_scriptregular';
  width: 100%;
  line-height: 52px;
  padding-bottom: 13px;
}
/* line 201, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula .right .autor {
  font-size: 13px;
  font-family: 'comfortaabold';
  width: 100%;
  line-height: 22px;
}
/* line 207, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula .right .linea {
  width: 40px;
  height: 3px;
  background: #fff;
  margin: 15px 0;
}
/* line 213, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula .right .sumario {
  width: 100%;
  font-size: 12px;
  font-family: 'comfortaaregular';
  line-height: 18px;
}
/* line 220, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula .flecha {
  padding-top: 30px;
  padding-bottom: 15px;
}
/* line 223, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula .flecha .imgFlecha {
  background: url("../images/flecha.png");
  width: 32px;
  height: 32px;
  margin: 0 auto;
  margin-left: 210px;
}
/* line 229, ../../scss/styles.scss */
.contenedor_principal .peliculas .caja_pelicula .flecha .imgFlecha:hover {
  background: url("../images/flecha-hover.png");
}
/* line 236, ../../scss/styles.scss */
.contenedor_principal #pelicula1, .contenedor_principal #pelicula11, .contenedor_principal #pelicula21 {
  background: #FF6C1A;
}
/* line 239, ../../scss/styles.scss */
.contenedor_principal #pelicula2, .contenedor_principal #pelicula12, .contenedor_principal #pelicula22 {
  background: #E2239E;
}
/* line 242, ../../scss/styles.scss */
.contenedor_principal #pelicula3, .contenedor_principal #pelicula13, .contenedor_principal #pelicula23 {
  background: #AD059D;
}
/* line 245, ../../scss/styles.scss */
.contenedor_principal #pelicula4, .contenedor_principal #pelicula14, .contenedor_principal #pelicula24 {
  background: #A718EA;
}
/* line 248, ../../scss/styles.scss */
.contenedor_principal #pelicula5, .contenedor_principal #pelicula15, .contenedor_principal #pelicula25 {
  background: #4233AA;
}
/* line 251, ../../scss/styles.scss */
.contenedor_principal #pelicula6, .contenedor_principal #pelicula16, .contenedor_principal #pelicula26 {
  background: #3C4AD3;
}
/* line 254, ../../scss/styles.scss */
.contenedor_principal #pelicula7, .contenedor_principal #pelicula17, .contenedor_principal #pelicula27 {
  background: #4290C6;
}
/* line 257, ../../scss/styles.scss */
.contenedor_principal #pelicula8, .contenedor_principal #pelicula18, .contenedor_principal #pelicula28 {
  background: #2EAFBC;
}
/* line 260, ../../scss/styles.scss */
.contenedor_principal #pelicula9, .contenedor_principal #pelicula19, .contenedor_principal #pelicula29 {
  background: #31C497;
}
/* line 263, ../../scss/styles.scss */
.contenedor_principal #pelicula10, .contenedor_principal #pelicula20, .contenedor_principal #pelicula30 {
  background: #33C165;
}
/* line 266, ../../scss/styles.scss */
.contenedor_principal .ver_lista {
  position: absolute;
  background: url("../images/verlista.png");
  width: 82px;
  height: 15px;
  top: 20px;
  right: 20px;
  z-index: 1;
}
/* line 275, ../../scss/styles.scss */
.contenedor_principal .numero {
  font-family: 'bodidotaregular';
  position: absolute;
  color: #fff;
  font-size: 500px;
  opacity: 0.12;
  left: -110px;
}

/* line 284, ../../scss/styles.scss */
.mobile {
  display: none;
}

@media (max-width: 768px) {
  /* line 289, ../../scss/styles.scss */
  .contenedor_principal {
    width: 100%;
    text-align: center;
  }
  /* line 292, ../../scss/styles.scss */
  .contenedor_principal .caja_title {
    padding: 30px 15px;
  }
  /* line 294, ../../scss/styles.scss */
  .contenedor_principal .caja_title .left {
    width: 100%;
  }
  /* line 297, ../../scss/styles.scss */
  .contenedor_principal .caja_title .right {
    width: 100%;
    padding: 30px 0 0 0;
  }
  /* line 303, ../../scss/styles.scss */
  .contenedor_principal .peliculas .caja_pelicula {
    padding-top: 0px;
    padding-left: 0;
  }
  /* line 306, ../../scss/styles.scss */
  .contenedor_principal .peliculas .caja_pelicula .right {
    width: 100%;
    margin-left: 0;
    padding: 0 15px;
  }
  /* line 310, ../../scss/styles.scss */
  .contenedor_principal .peliculas .caja_pelicula .right .title {
    font-size: 30px;
    line-height: 30px;
  }
  /* line 314, ../../scss/styles.scss */
  .contenedor_principal .peliculas .caja_pelicula .right .autor {
    font-size: 11px;
  }
  /* line 317, ../../scss/styles.scss */
  .contenedor_principal .peliculas .caja_pelicula .right .sumario {
    font-size: 11px;
  }
  /* line 320, ../../scss/styles.scss */
  .contenedor_principal .peliculas .caja_pelicula .right .linea {
    margin: 15px auto;
  }
  /* line 324, ../../scss/styles.scss */
  .contenedor_principal .peliculas .caja_pelicula .flecha {
    padding-left: 0;
    padding-bottom: 10px;
  }
  /* line 327, ../../scss/styles.scss */
  .contenedor_principal .peliculas .caja_pelicula .flecha .imgFlecha {
    margin-left: auto;
  }
  /* line 333, ../../scss/styles.scss */
  .contenedor_principal .numero {
    font-size: 100px;
    left: 10px;
  }
  /* line 337, ../../scss/styles.scss */
  .contenedor_principal .ver_lista {
    bottom: 23px;
    top: auto;
  }

  /* line 342, ../../scss/styles.scss */
  .mobile {
    display: block;
  }

  /* line 345, ../../scss/styles.scss */
  .desktop {
    display: none;
  }

  /* line 348, ../../scss/styles.scss */
  .masInfo {
    width: 100%;
    right: -100%;
    top: 50px;
  }
  /* line 352, ../../scss/styles.scss */
  .masInfo .cont-masinfo {
    width: 100%;
    left: 0;
  }
  /* line 355, ../../scss/styles.scss */
  .masInfo .cont-masinfo .left {
    padding-left: 0px;
  }
  /* line 358, ../../scss/styles.scss */
  .masInfo .cont-masinfo .right {
    width: 69%;
  }
  /* line 360, ../../scss/styles.scss */
  .masInfo .cont-masinfo .right .pelicula {
    font-size: 11px;
    padding: 7px 1px 0 15px;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
}
