/**MIXINS**/
/******************************WOW******************************/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    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 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

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

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

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

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) 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 {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

@keyframes fondoLeftIn {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    width: 150%;
  }
}

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

@keyframes fondoRightIn {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    width: 150%;
  }
}

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

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

@font-face {
  font-family: 'icomoon';
  src: url("/wp-content/themes/losantonios/fonts/icomoon.eot?d75qzj");
  src: url("/wp-content/themes/losantonios/fonts/icomoon.eot?d75qzj#iefix") format("embedded-opentype"), url("/wp-content/themes/losantonios/fonts/icomoon.ttf?d75qzj") format("truetype"), url("/wp-content/themes/losantonios/fonts/icomoon.woff?d75qzj") format("woff"), url("/wp-content/themes/losantonios/fonts/icomoon.svg?d75qzj#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

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

.icon-ico-down:before {
  content: "\e901";
}

.icon-ico-right:before {
  content: "\e902";
}

.icon-ico-left:before {
  content: "\e903";
}

.icon-ico-close:before {
  content: "\e904";
}

.icon-ico-phone:before {
  content: "\e905";
}

.icon-facebook:before {
  content: "\e906";
}

.icon-twitter:before {
  content: "\e907";
}

.icon-instagram:before {
  content: "\e908";
}

.icon-linkedin:before {
  content: "\e909";
}

.icon-youtube:before {
  content: "\e90a";
}

.icon-right:before {
  content: "\e90b";
}

.icon-down:before {
  content: "\e90c";
}

/*General*/
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 1360px) {
  * {
    text-rendering: auto;
  }
}

*, *::after, *::before {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  background-color: #181929;
  background-image: url("../img/background.svg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: top center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: white;
  font-size: 15px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  /*&:before {
      content: "";
      display: block;
      background: white;
      width: 100%;
      height: 100vh;
      @include transition(all 0.3s ease);
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      @include opacity(0);
    }*/
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 18px;
  }
}

div {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-family: "Bangers", cursive;
  font-weight: normal;
  margin: 0 0 20px 0;
  padding: 0;
}

h1 {
  font-size: 35px;
  line-height: 45px;
}

@media only screen and (max-width: 991px) {
  h1 {
    font-size: 32px;
    line-height: 42px;
  }
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 28px;
    line-height: 38px;
  }
}

h2 {
  font-size: 30px;
  line-height: 40px;
}

@media only screen and (max-width: 991px) {
  h2 {
    font-size: 27px;
    line-height: 37px;
  }
}

@media only screen and (max-width: 600px) {
  h2 {
    font-size: 24px;
    line-height: 34px;
  }
}

h3 {
  font-size: 28px;
  line-height: 38px;
}

@media only screen and (max-width: 991px) {
  h3 {
    font-size: 25px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 600px) {
  h3 {
    font-size: 22px;
    line-height: 32px;
  }
}

h4, h5 {
  font-size: 24px;
  line-height: 32px;
}

@media only screen and (max-width: 991px) {
  h4, h5 {
    font-size: 22px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 600px) {
  h4, h5 {
    font-size: 20px;
    line-height: 28px;
  }
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  ul li {
    font-size: 14px;
    line-height: 18px;
  }
}

ul li strong {
  font-weight: 700;
}

p {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 18px;
  }
}

p strong {
  font-weight: 700;
}

sup {
  line-height: 0;
  font-size: 60%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

a {
  color: #1dce58;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
  text-decoration: none;
  position: relative;
}

@media only screen and (max-width: 767px) {
  a {
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -ms-transform: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
  }
}

:active, :focus {
  border: 0;
  outline: none;
}

select, textarea, input {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

section, header, footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  padding: 60px 0;
}

@media only screen and (max-width: 1199px) {
  section, header, footer {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 991px) {
  section, header, footer {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  section, header, footer {
    padding: 20px 0;
  }
}

section .container, header .container, footer .container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

@media only screen and (max-width: 991px) {
  section .container, header .container, footer .container {
    padding: 0 20px;
  }
}

section .container .row, header .container .row, footer .container .row {
  margin-left: -30px;
  margin-right: -30px;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
  section .container .row, header .container .row, footer .container .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}

section .container .row .col, header .container .row .col, footer .container .row .col {
  position: relative;
  padding: 0 30px;
}

@media only screen and (max-width: 991px) {
  section .container .row .col, header .container .row .col, footer .container .row .col {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col, header .container .row .col, footer .container .row .col {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col:first-child, header .container .row .col:first-child, footer .container .row .col:first-child {
    margin-top: 0;
  }
}

section .container .row .col.col12, header .container .row .col.col12, footer .container .row .col.col12 {
  width: 12.5%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col12, header .container .row .col.col12, footer .container .row .col.col12 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col12, header .container .row .col.col12, footer .container .row .col.col12 {
    width: 100%;
  }
}

section .container .row .col.col20, header .container .row .col.col20, footer .container .row .col.col20 {
  width: 20%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col20, header .container .row .col.col20, footer .container .row .col.col20 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col20, header .container .row .col.col20, footer .container .row .col.col20 {
    width: 100%;
  }
}

section .container .row .col.col25, header .container .row .col.col25, footer .container .row .col.col25 {
  width: 25%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col25, header .container .row .col.col25, footer .container .row .col.col25 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col25, header .container .row .col.col25, footer .container .row .col.col25 {
    width: 100%;
  }
}

section .container .row .col.col33, header .container .row .col.col33, footer .container .row .col.col33 {
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col33, header .container .row .col.col33, footer .container .row .col.col33 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col33, header .container .row .col.col33, footer .container .row .col.col33 {
    width: 100%;
  }
}

section .container .row .col.col40, header .container .row .col.col40, footer .container .row .col.col40 {
  width: 40%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col40, header .container .row .col.col40, footer .container .row .col.col40 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col40, header .container .row .col.col40, footer .container .row .col.col40 {
    width: 100%;
  }
}

section .container .row .col.col50, header .container .row .col.col50, footer .container .row .col.col50 {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col50, header .container .row .col.col50, footer .container .row .col.col50 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col50, header .container .row .col.col50, footer .container .row .col.col50 {
    width: 100%;
  }
}

section .container .row .col.col60, header .container .row .col.col60, footer .container .row .col.col60 {
  width: 60%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col60, header .container .row .col.col60, footer .container .row .col.col60 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col60, header .container .row .col.col60, footer .container .row .col.col60 {
    width: 100%;
  }
}

section .container .row .col.col66, header .container .row .col.col66, footer .container .row .col.col66 {
  width: 66.6666%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col66, header .container .row .col.col66, footer .container .row .col.col66 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col66, header .container .row .col.col66, footer .container .row .col.col66 {
    width: 100%;
  }
}

.verde {
  color: #1dce58;
}

.rojo {
  color: #df172f;
}

.amarillo {
  color: #ffbc00;
}

.azul {
  color: #0a89e0;
}

.morado {
  color: #e400ff;
}

.marron {
  color: #a26d6d;
}

.chat {
  background: white;
  padding: 25px 30px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .chat {
    padding: 20px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .chat {
    padding: 15px 20px;
  }
}

.chat:before {
  content: "";
  background-image: url("../img/chat.svg");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  display: block;
  height: 40px;
  width: 40px;
  position: absolute;
  left: -40px;
  bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .chat:before {
    background-size: 30px 30px;
    left: -30px;
    height: 30px;
    width: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .chat:before {
    background-size: 20px 20px;
    left: -20px;
    height: 20px;
    width: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .chat:before {
    background-size: 30px 30px;
    left: inherit;
    right: 60px;
    bottom: -30px;
    height: 30px;
    width: 30px;
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@media only screen and (max-width: 480px) {
  .chat:before {
    right: 30px;
  }
}

.titulo-espacial {
  font-family: "Bangers", cursive;
  font-size: 30px;
  line-height: 36px;
  color: #1dce58;
}

@media only screen and (max-width: 767px) {
  .titulo-espacial {
    font-size: 25px;
    line-height: 30px;
  }
}

.titulo-pista {
  font-family: "Bangers", cursive;
  font-size: 40px;
  line-height: 46px;
}

@media only screen and (max-width: 991px) {
  .titulo-pista {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .titulo-pista {
    font-size: 30px;
    line-height: 35px;
  }
}

.boton {
  height: 50px;
  font-family: "Bangers", cursive;
  font-size: 25px;
  line-height: 50px;
  padding: 0 20px;
  background: #1dce58;
  border: 0;
  border-bottom: 4px solid #169c3f;
  cursor: pointer;
}

.boton:hover {
  margin-top: 4px;
  height: 46px;
  border-bottom: 0px solid #169c3f;
}

@media only screen and (max-width: 767px) {
  .boton:hover {
    margin-top: 0;
    height: 50px;
    border-bottom: 4px solid #169c3f;
  }
}

/*Introduccion*/
.start .container .intro-imagenes img {
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .start .container .intro-imagenes img {
    max-width: 450px;
  }
}

.start .container .intro-imagenes img.matheroes {
  margin-top: -20px;
  margin-bottom: 30px;
}

.start .container .intro-juego {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.start .container .intro-juego h1 {
  margin: 0 0 10px 0;
}

.start .container .intro-juego p {
  margin: 0 0 5px 0;
}

.start .container .intro-juego .boton {
  margin: 20px 0 0 0;
}

.start .container .intro-juego .boton:hover {
  margin-top: 24px;
}

@media only screen and (max-width: 767px) {
  .start .container .intro-juego .boton:hover {
    margin: 20px 0 0 0;
  }
}

.start .container .intro-logos {
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0 0 0;
}

.start .container .intro-logos .logo {
  margin: 10px;
}

@media only screen and (max-width: 767px) {
  .start .container .intro-logos .logo {
    max-width: 200px;
    margin: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .start .container .intro-logos .logo {
    max-width: 140px;
    margin: 5px;
  }
}

/*Countdown*/
#counter {
  padding: 0;
  background: rgba(28, 61, 94, 0.75);
  position: fixed;
  z-index: 9;
  display: block;
  top: 60px;
  right: 0;
}

@media only screen and (max-width: 1199px) {
  #counter {
    top: 50px;
  }
}

@media only screen and (max-width: 991px) {
  #counter {
    top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  #counter {
    width: 100%;
    top: 0;
    text-align: center;
    background: rgba(28, 61, 94, 0.9);
  }
}

#counter span {
  font-family: "Orbitron", sans-serif;
  color: #1dce58;
  font-size: 30px;
  line-height: 30px;
  display: inline-block;
}

#counter span.minutes {
  min-width: 65px;
  text-align: right;
  padding: 10px 0 10px 10px;
}

#counter span.colon {
  padding: 10px 3px;
}

#counter span.seconds {
  min-width: 80px;
  text-align: left;
  padding: 10px 10px 10px 0;
}

/*Reto individual*/
@media only screen and (max-width: 767px) {
  .logo-matheroe {
    display: none;
  }
}

.logo-matheroe .container .matheroes {
  margin: 0 auto;
}

.chat-matheroe {
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 600px) {
  .chat-matheroe {
    min-height: inherit;
    padding-bottom: 0;
  }
}

.chat-matheroe .chat-level {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 2;
}

@media only screen and (max-width: 1199px) {
  .chat-matheroe .chat-level {
    left: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .chat-matheroe .chat-level {
    left: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .chat-matheroe .chat-level {
    top: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .chat-matheroe .chat-level {
    position: inherit;
    top: inherit;
    left: inherit;
    padding: 0 20px;
  }
}

.chat-matheroe .chat-level p {
  font-family: "Bangers", cursive;
  font-size: 50px;
  line-height: 50px;
}

@media only screen and (max-width: 991px) {
  .chat-matheroe .chat-level p {
    font-size: 40px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .chat-matheroe .chat-level p {
    font-size: 35px;
    line-height: 35px;
  }
}

.chat-matheroe .chat-level p span {
  font-size: 30px;
  line-height: 30px;
  display: block;
}

@media only screen and (max-width: 991px) {
  .chat-matheroe .chat-level p span {
    font-size: 25px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .chat-matheroe .chat-level p span {
    font-size: 20px;
    line-height: 20px;
  }
}

.chat-matheroe .container .matheroe-speak {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .chat-matheroe .container .matheroe-speak {
    width: 260px;
  }
}

@media only screen and (max-width: 767px) {
  .chat-matheroe .container .matheroe-speak {
    width: 200px;
  }
}

@media only screen and (max-width: 600px) {
  .chat-matheroe .container .matheroe-speak {
    position: inherit;
    bottom: inherit;
    margin: 20px auto 0 auto;
  }
}

.chat-matheroe .container .chat {
  width: calc(100% - 360px);
  margin-left: 360px;
}

@media only screen and (max-width: 991px) {
  .chat-matheroe .container .chat {
    width: calc(100% - 260px);
    margin-left: 260px;
  }
}

@media only screen and (max-width: 767px) {
  .chat-matheroe .container .chat {
    width: calc(100% - 200px);
    margin-left: 200px;
  }
}

@media only screen and (max-width: 600px) {
  .chat-matheroe .container .chat {
    width: 100%;
    margin-left: 0;
  }
}

.chat-matheroe .container .chat p {
  color: #181929;
  margin: 0 0 5px 0;
}

@media only screen and (max-width: 991px) {
  .chat-matheroe .container .chat p br {
    display: none;
  }
}

.chat-matheroe .container .chat p.titulo-espacial {
  color: #ad1647;
}

.celda {
  position: fixed;
  z-index: 2;
  width: 350px;
  height: 500px;
  display: block;
  left: calc(50% - 175px);
  top: calc(50vh - 300px);
}

@media only screen and (max-width: 1199px) {
  .celda {
    width: 294px;
    height: 420px;
    left: calc(50% - 147px);
    top: calc(50vh - 260px);
  }
}

@media only screen and (max-width: 991px) {
  .celda {
    left: calc(100% - 310px);
  }
}

@media only screen and (max-width: 767px) {
  .celda {
    position: relative;
    left: inherit;
    top: inherit;
    margin: 80px auto 30px auto;
  }
}

.celda div {
  position: absolute;
  height: auto;
  width: 100%;
}

.celda div.matheroe-silueta {
  z-index: 2;
  -webkit-animation: floating ease-in-out 10s infinite;
  -moz-animation: floating ease-in-out 10s infinite;
  -ms-animation: floating ease-in-out 10s infinite;
  -o-animation: floating ease-in-out 10s infinite;
  animation: floating ease-in-out 10s infinite;
}

.celda div.matheroe-celda {
  z-index: 3;
  -webkit-animation: celda ease-in-out 6s infinite;
  -moz-animation: celda ease-in-out 6s infinite;
  -ms-animation: celda ease-in-out 6s infinite;
  -o-animation: celda ease-in-out 6s infinite;
  animation: celda ease-in-out 6s infinite;
}

.celda div.matheroe-base-celda {
  z-index: 0;
}

.celda div.matheroe-logo {
  bottom: -80px;
  z-index: 3;
}

@media only screen and (max-width: 1199px) {
  .celda div.matheroe-logo {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .celda div.matheroe-logo {
    position: inherit;
    bottom: inherit;
  }
}

.celda div img {
  margin: 0 auto;
}

.celda.visible {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transform: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.celda.invisible {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transform: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media only screen and (max-width: 767px) {
  .celda.invisible {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.celda a {
  width: 100px;
  height: 100px;
  display: block;
  background: rgba(21, 129, 191, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 125px;
  top: 220px;
  z-index: 4;
  -webkit-animation: pulse 3s infinite;
  -moz-animation: pulse 3s infinite;
  -ms-animation: pulse 3s infinite;
  -o-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
}

@media only screen and (max-width: 1199px) {
  .celda a {
    left: 97px;
    top: 180px;
  }
}

.celda a:after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("../img/candado.svg");
  background-position: center center;
  background-size: 40px 50px;
  background-repeat: no-repeat;
}

.content-column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.content-column .content-left {
  width: calc(50% - 200px);
  margin-right: auto;
}

@media only screen and (max-width: 1199px) {
  .content-column .content-left {
    width: calc(50% - 175px);
  }
}

@media only screen and (max-width: 991px) {
  .content-column .content-left {
    width: calc(100% - 320px);
    margin-right: 0;
    padding: 40px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .content-column .content-left {
    width: 100%;
    padding: 20px 0 0 0;
  }
}

.content-column .content-right {
  width: calc(50% - 200px);
  margin-left: auto;
}

@media only screen and (max-width: 1199px) {
  .content-column .content-right {
    width: calc(50% - 175px);
  }
}

@media only screen and (max-width: 991px) {
  .content-column .content-right {
    width: calc(100% - 320px);
    margin-left: 0;
    padding: 40px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .content-column .content-right {
    width: 100%;
    padding: 20px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .intro-icmab {
    padding-bottom: 0;
  }
}

.intro-icmab .container img.logo {
  margin: 0 0 10px -5px;
  width: 200px;
}

.intro-icmab .container .content-right {
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .intro-icmab .container .content-right {
    text-align: left;
  }
}

@media only screen and (max-width: 991px) {
  .reto-origen, .reto-superpoder, .reto-liberacion {
    padding-top: 0;
  }
}

.postit {
  background: #f8e7bc;
  color: #181929;
  padding: 30px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .postit {
    padding: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .postit {
    padding: 20px;
  }
}

.postit .ahorcado {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -1px;
}

.postit .ahorcado .rojo {
  -webkit-animation: ahorcadorojo 1s infinite;
  -moz-animation: ahorcadorojo 1s infinite;
  -ms-animation: ahorcadorojo 1s infinite;
  -o-animation: ahorcadorojo 1s infinite;
  animation: ahorcadorojo 1s infinite;
}

.postit .ahorcado .verde {
  -webkit-animation: ahorcadoverde 1s infinite;
  -moz-animation: ahorcadoverde 1s infinite;
  -ms-animation: ahorcadoverde 1s infinite;
  -o-animation: ahorcadoverde 1s infinite;
  animation: ahorcadoverde 1s infinite;
}

.postit .ahorcado .amarillo {
  -webkit-animation: ahorcadoamarillo 1s infinite;
  -moz-animation: ahorcadoamarillo 1s infinite;
  -ms-animation: ahorcadoamarillo 1s infinite;
  -o-animation: ahorcadoamarillo 1s infinite;
  animation: ahorcadoamarillo 1s infinite;
}

.postit .ahorcado .azul {
  -webkit-animation: ahorcadoazul 1s infinite;
  -moz-animation: ahorcadoazul 1s infinite;
  -ms-animation: ahorcadoazul 1s infinite;
  -o-animation: ahorcadoazul 1s infinite;
  animation: ahorcadoazul 1s infinite;
}

.postit .ahorcado .morado {
  -webkit-animation: ahorcadomorado 1s infinite;
  -moz-animation: ahorcadomorado 1s infinite;
  -ms-animation: ahorcadomorado 1s infinite;
  -o-animation: ahorcadomorado 1s infinite;
  animation: ahorcadomorado 1s infinite;
}

.postit .ahorcado .marron {
  -webkit-animation: ahorcadomarron 1s infinite;
  -moz-animation: ahorcadomarron 1s infinite;
  -ms-animation: ahorcadomarron 1s infinite;
  -o-animation: ahorcadomarron 1s infinite;
  animation: ahorcadomarron 1s infinite;
}

.postit:after, .postit:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 30px;
  background: white;
  display: block;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

@media only screen and (max-width: 767px) {
  .postit:after, .postit:before {
    display: none;
  }
}

.postit:before {
  top: 0;
  right: -30px;
  -moz-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

.postit:after {
  width: 90px;
  bottom: -10px;
  left: -20px;
  -moz-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

.postit-pistas {
  font-size: 18px;
  line-height: 35px;
  font-weight: 700;
}

.postit-pistas span {
  color: white;
  background: #1dce58;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  line-height: 35px;
  display: inline-block;
  margin: 0 10px 0 0;
}

.pista {
  background: white;
  color: #181929;
  padding: 30px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .pista {
    padding: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .pista {
    padding: 20px;
  }
}

.pista:before {
  content: "";
  background-image: url("../img/chat.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  display: block;
  height: 30px;
  width: 30px;
  position: absolute;
  left: -30px;
  top: 30px;
}

@media only screen and (max-width: 991px) {
  .pista:before {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    left: inherit;
    right: -30px;
  }
}

@media only screen and (max-width: 767px) {
  .pista:before {
    display: none;
  }
}

.pista .titulo-pista {
  color: #1dce58;
}

.content-column .content-left .pista:before {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  left: inherit;
  right: -30px;
}

.pista-desplegable {
  padding: 30px 0 0 0;
}

.pista-desplegable .pista-boton {
  display: table;
}

.pista-desplegable .pista-content {
  margin: 20px 0 0 0;
  display: none;
}

.verificar {
  position: relative;
  z-index: 5;
  background-color: #1dce58;
  background-image: url("../img/background-verificar.svg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top center;
}

.verificar .titulo-verificar {
  margin: 20px auto;
  font-size: 60px;
  line-height: 60px;
  font-family: "Bangers", cursive;
  color: #181929;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .verificar .titulo-verificar {
    margin: 10px auto;
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .verificar .titulo-verificar {
    font-size: 40px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .verificar .titulo-verificar {
    font-size: 30px;
    line-height: 30px;
  }
}

.verificar form {
  width: 400px;
  margin: 40px auto 20px auto;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .verificar form {
    margin: 20px auto 10px auto;
  }
}

@media only screen and (max-width: 480px) {
  .verificar form {
    width: 100%;
  }
}

.verificar form input {
  height: 48px;
  border: 0;
  background: white;
  padding: 10px;
  margin: 0 20px 0 0;
  width: 220px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

@media only screen and (max-width: 991px) {
  .verificar form input {
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .verificar form input {
    width: 100%;
    margin: 0 0 20px 0;
    display: block;
    height: 43px;
    line-height: 23px;
  }
}

.verificar form button {
  position: absolute;
  top: 0;
  background: #292b4c;
  color: white;
  width: 160px;
  border-bottom: 4px solid #181929;
}

@media only screen and (max-width: 480px) {
  .verificar form button {
    position: inherit;
    top: inherit;
    margin: 0 auto;
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .verificar form button:hover {
    border-bottom: 4px solid #181929;
  }
}

/*Avisos*/
#avisos .aviso {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
}

#avisos .aviso span {
  width: 60px;
  height: 90px;
  position: absolute;
  top: calc(50% - 120px);
  left: calc(50% - 20px);
  background-image: url("../img/mensaje-candado.svg");
  background-repeat: no-repeat;
  background-size: 60px 90px;
}

#avisos .aviso span:before {
  content: "";
  display: block;
  width: 60px;
  height: 90px;
  position: absolute;
  top: 12px;
  left: 0;
  background-image: url("../img/mensaje-cierre.svg");
  background-repeat: no-repeat;
  background-size: 60px 90px;
}

#avisos .aviso div {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: calc(50% - 150px);
  text-align: center;
  font-size: 60px;
  line-height: 60px;
  font-family: "Bangers", cursive;
}

@media only screen and (max-width: 991px) {
  #avisos .aviso div {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  #avisos .aviso div {
    font-size: 40px;
    line-height: 40px;
  }
}

#avisos .aviso.error {
  background: #ad1647;
  background-image: url("../img/background-magnon.svg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top center;
}

#avisos .aviso.error span {
  -webkit-animation: 0.3s shake ease-in-out 0.6s;
  -moz-animation: 0.3s shake ease-in-out 0.6s;
  -ms-animation: 0.3s shake ease-in-out 0.6s;
  -o-animation: 0.3s shake ease-in-out 0.6s;
  animation: 0.3s shake ease-in-out 0.6s;
}

#avisos .aviso.success {
  background: #ad1647;
  background-image: url("../img/background-verificar.svg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top center;
}

#avisos .aviso.success span:before {
  top: -2px;
  -webkit-animation: candado 1s linear;
  -moz-animation: candado 1s linear;
  -ms-animation: candado 1s linear;
  -o-animation: candado 1s linear;
  animation: candado 1s linear;
}

#content {
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transform: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

.entering #content {
  opacity: 1;
  filter: alpha(opacity=100);
}

.leaving #content {
  opacity: 0;
  filter: alpha(opacity=0);
}

/*Page1*/
.matheroe-magnon {
  background-color: #ad1647;
  background-image: url("../img/background-magnon.svg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top center;
}

/*Page2*/
.matheroe-fotoenergia {
  background-color: #013574;
  background-image: url("../img/background-fotoenergia.svg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top center;
}

.matheroe-fotoenergia .container .chat p.titulo-espacial {
  color: #013574;
}

/*Page3*/
.matheroe-bionanocapsula {
  background-color: #077871;
  background-image: url("../img/background-bionanocapsula.svg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top center;
}

.matheroe-bionanocapsula .container .chat p.titulo-espacial {
  color: #077871;
}

/*Page4*/
.matheroe-electrowoman {
  background-color: #5f0968;
  background-image: url("../img/background-electrowoman.svg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top center;
}

.matheroe-electrowoman .container .chat p.titulo-espacial {
  color: #5f0968;
}

/*Page5*/
.matheroe-superconductor {
  background-color: #00a0d8;
  background-image: url("../img/background-superconductor.svg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top center;
}

.matheroe-superconductor .container .chat p.titulo-espacial {
  color: #00a0d8;
}

/*Coordenadas*/
.coordenadas {
  height: 100vh;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .coordenadas {
    height: auto;
    display: inherit;
  }
}

.coordenadas .content-column {
  margin-top: 140px;
}

@media only screen and (max-width: 991px) {
  .coordenadas .content-column {
    margin: 20px 0 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .coordenadas .content-column {
    margin: 60px 0 0 0;
  }
}

@media only screen and (max-width: 480px) {
  .coordenadas .content-column {
    margin: 20px 0 0 0;
  }
}

.coordenadas .content-column .content-left {
  width: calc(50% - 250px);
}

@media only screen and (max-width: 1199px) {
  .coordenadas .content-column .content-left {
    width: calc(50% - 220px);
  }
}

@media only screen and (max-width: 991px) {
  .coordenadas .content-column .content-left {
    width: 100%;
    padding: 0;
  }
}

.coordenadas .content-column .content-right {
  width: calc(50% - 250px);
  position: absolute;
  right: 0;
}

@media only screen and (max-width: 1199px) {
  .coordenadas .content-column .content-right {
    width: calc(50% - 220px);
  }
}

@media only screen and (max-width: 991px) {
  .coordenadas .content-column .content-right {
    display: none;
  }
}

.coordenadas .content-column .content-right .panel-mandos {
  padding: 30px 0 0 30px;
}

@media only screen and (max-width: 991px) {
  .coordenadas .content-column .listado-coordenadas {
    display: flex;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 600px) {
  .coordenadas .content-column .listado-coordenadas {
    display: inherit;
    max-width: 340px;
    margin: 0 auto;
  }
}

.coordenadas .content-column .listado-coordenadas li {
  margin: 15px 0 0 0;
}

@media only screen and (max-width: 991px) {
  .coordenadas .content-column .listado-coordenadas li {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .coordenadas .content-column .listado-coordenadas li {
    width: 100%;
  }
}

.coordenadas .content-column .listado-coordenadas li a {
  display: flex;
  align-items: center;
}

.coordenadas .content-column .listado-coordenadas li a img {
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .coordenadas .content-column .listado-coordenadas li a img {
    height: 80px;
    width: 94px;
  }
}

.coordenadas .content-column .listado-coordenadas li a span {
  font-size: 18px;
  line-height: 20px;
  padding: 0 0 0 20px;
  font-weight: 700;
  color: #1dce58;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .coordenadas .content-column .listado-coordenadas li a span {
    padding: 0 15px;
  }
}

.coordenadas .content-column .listado-coordenadas li a:hover img {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media only screen and (max-width: 767px) {
  .coordenadas .content-column .listado-coordenadas li a:hover img {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.coordenadas .content-column .listado-coordenadas li a:hover span {
  color: white;
}

@media only screen and (max-width: 767px) {
  .coordenadas .content-column .listado-coordenadas li a:hover span {
    color: #1dce58;
  }
}

.coordenadas .panel-coordenadas {
  position: absolute;
  width: 600px;
  left: calc(50% - 300px);
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .coordenadas .panel-coordenadas {
    position: relative;
    width: inherit;
    left: inherit;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .coordenadas .panel-coordenadas {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 600px) {
  .coordenadas .panel-coordenadas br {
    display: none;
  }
}

.coordenadas .panel-coordenadas .titulo-pista {
  text-align: center;
  color: #1dce58;
}

.coordenadas .panel-coordenadas .radar {
  margin: 40px 0;
  height: 600px;
  height: 380px;
}

@media only screen and (max-width: 480px) {
  .coordenadas .panel-coordenadas .radar {
    height: auto;
    width: 100%;
    margin: 30px auto;
  }
}

.coordenadas .panel-coordenadas .radar .panel {
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .coordenadas .panel-coordenadas .radar .panel {
    height: 380px;
    width: 450px;
  }
}

@media only screen and (max-width: 480px) {
  .coordenadas .panel-coordenadas .radar .panel {
    height: auto;
    width: 100%;
  }
}

.coordenadas .panel-coordenadas .radar .radar {
  position: absolute;
  top: 216px;
  left: 271px;
  width: 58px;
  height: 58px;
  -webkit-animation: rotate linear 6s infinite;
  -moz-animation: rotate linear 6s infinite;
  -ms-animation: rotate linear 6s infinite;
  -o-animation: rotate linear 6s infinite;
  animation: rotate linear 6s infinite;
}

@media only screen and (max-width: 991px) {
  .coordenadas .panel-coordenadas .radar .radar {
    top: 204px;
    left: calc(50% - 29px);
  }
}

@media only screen and (max-width: 767px) {
  .coordenadas .panel-coordenadas .radar .radar {
    top: 190px;
  }
}

@media only screen and (max-width: 480px) {
  .coordenadas .panel-coordenadas .radar .radar {
    /*width: 45px;
            height: 45px;
            top: 202px;
            left: calc(50% - 23px);*/
    display: none;
  }
}

.coordenadas .panel-coordenadas .ayuda-coordenadas {
  position: absolute;
  width: 380px;
  bottom: 90px;
  left: 110px;
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}

@media only screen and (max-width: 991px) {
  .coordenadas .panel-coordenadas .ayuda-coordenadas {
    bottom: 100px;
    left: calc(50% - 190px);
  }
}

@media only screen and (max-width: 600px) {
  .coordenadas .panel-coordenadas .ayuda-coordenadas {
    bottom: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .coordenadas .panel-coordenadas .ayuda-coordenadas {
    position: inherit;
    left: inherit;
    bottom: inherit;
    width: 100%;
    background: #1dce58;
    padding: 10px;
    margin-top: -105px;
  }
}

@media only screen and (max-width: 480px) {
  .coordenadas .panel-coordenadas .ayuda-coordenadas .verde {
    color: #181929;
  }
}

.coordenadas .panel-coordenadas form {
  width: 350px;
  position: absolute;
  bottom: 0;
  left: 130px;
  width: 340px;
  margin: 0;
  background: #1dce58;
  height: 70px;
}

@media only screen and (max-width: 991px) {
  .coordenadas .panel-coordenadas form {
    left: calc(50% - 170px);
    bottom: 0;
  }
}

@media only screen and (max-width: 600px) {
  .coordenadas .panel-coordenadas form {
    bottom: -50px;
  }
}

@media only screen and (max-width: 480px) {
  .coordenadas .panel-coordenadas form {
    position: inherit;
    left: inherit;
    bottom: inherit;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    height: auto;
  }
}

.coordenadas .panel-coordenadas form input {
  height: 50px;
  border: 0;
  background: white;
  padding: 10px;
  margin: 0;
  width: 160px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  position: absolute;
  top: 10px;
  left: 10px;
}

@media only screen and (max-width: 991px) {
  .coordenadas .panel-coordenadas form input {
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .coordenadas .panel-coordenadas form input {
    width: 100%;
    display: block;
    height: 43px;
    line-height: 23px;
    position: inherit;
    margin: 0;
    top: inherit;
    left: inherit;
  }
}

.coordenadas .panel-coordenadas form button {
  position: absolute;
  top: 10px;
  background: #292b4c;
  color: white;
  width: 150px;
  right: 10px;
  border-bottom: 4px solid #181929;
}

@media only screen and (max-width: 480px) {
  .coordenadas .panel-coordenadas form button {
    position: inherit;
    top: inherit;
    margin: 10px 0 0 0;
    display: block;
    right: inherit;
    width: 100%;
  }
}

.coordenadas .panel-coordenadas form button:hover {
  border-bottom: 0px solid #181929;
}

@media only screen and (max-width: 767px) {
  .coordenadas .panel-coordenadas form button:hover {
    border-bottom: 4px solid #181929;
  }
}

/*Finish*/
.finish .container .intro-imagenes {
  position: relative;
}

.finish .container .intro-imagenes img.logo {
  position: relative;
}

.finish .container .intro-imagenes img.mapamundi {
  max-width: 1100px;
  width: 100%;
  margin: -50px auto;
  position: relative;
  z-index: -1;
}

@media only screen and (max-width: 1199px) {
  .finish .container .intro-imagenes img.mapamundi {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .finish .container .intro-imagenes img.mapamundi {
    margin: 0 auto 30px auto;
  }
}

.finish .container .intro-imagenes span {
  position: absolute;
  top: 340px;
  left: calc(68% - 30px);
  text-align: center;
  display: block;
  width: 100px;
  color: #1dce58;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
}

@media only screen and (max-width: 1199px) {
  .finish .container .intro-imagenes span {
    top: calc(73% - 30px);
  }
}

.finish .container .intro-imagenes .coordenadas-finales {
  position: absolute;
  top: 380px;
  left: 68%;
}

@media only screen and (max-width: 1199px) {
  .finish .container .intro-imagenes .coordenadas-finales {
    top: 73%;
  }
}

.finish .container .intro-imagenes .coordenadas-finales:before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: #1dce58;
  position: absolute;
  top: -10px;
  left: -10px;
  border-radius: 50%;
  -webkit-animation: radar 1s linear infinite;
  -moz-animation: radar 1s linear infinite;
  -ms-animation: radar 1s linear infinite;
  -o-animation: radar 1s linear infinite;
  animation: radar 1s linear infinite;
}

@media only screen and (max-width: 767px) {
  .finish .container .intro-imagenes .coordenadas-finales img {
    width: 50px;
    height: 50px;
  }
}

.finish .container .intro-juego .titulo-espacial {
  font-size: 60px;
  line-height: 60px;
}

@media only screen and (max-width: 991px) {
  .finish .container .intro-juego .titulo-espacial {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .finish .container .intro-juego .titulo-espacial {
    font-size: 40px;
    line-height: 40px;
  }
}

/*Finish*/
.fail .container .intro-juego .titulo-espacial {
  font-size: 60px;
  line-height: 60px;
  color: #df172f;
}

@media only screen and (max-width: 991px) {
  .fail .container .intro-juego .titulo-espacial {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .fail .container .intro-juego .titulo-espacial {
    font-size: 40px;
    line-height: 40px;
  }
}

@-webkit-keyframes celda {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  25% {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  50% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  75% {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-moz-keyframes celda {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  25% {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  50% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  75% {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-ms-keyframes celda {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  25% {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  50% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  75% {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes celda {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  25% {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  50% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  75% {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-webkit-keyframes floating {
  0% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes floating {
  0% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes floating {
  0% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes floating {
  0% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes ahorcadorojo {
  0%, 25 {
    color: #df172f;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #df172f;
  }
}

@-moz-keyframes ahorcadorojo {
  0%, 25 {
    color: #df172f;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #df172f;
  }
}

@-ms-keyframes ahorcadorojo {
  0%, 25 {
    color: #df172f;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #df172f;
  }
}

@keyframes ahorcadorojo {
  0%, 25 {
    color: #df172f;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #df172f;
  }
}

@-webkit-keyframes ahorcadoverde {
  0%, 25 {
    color: #1dce58;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #1dce58;
  }
}

@-moz-keyframes ahorcadoverde {
  0%, 25 {
    color: #1dce58;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #1dce58;
  }
}

@-ms-keyframes ahorcadoverde {
  0%, 25 {
    color: #1dce58;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #1dce58;
  }
}

@keyframes ahorcadoverde {
  0%, 25 {
    color: #1dce58;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #1dce58;
  }
}

@-webkit-keyframes ahorcadoamarillo {
  0%, 25 {
    color: #ffbc00;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #ffbc00;
  }
}

@-moz-keyframes ahorcadoamarillo {
  0%, 25 {
    color: #ffbc00;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #ffbc00;
  }
}

@-ms-keyframes ahorcadoamarillo {
  0%, 25 {
    color: #ffbc00;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #ffbc00;
  }
}

@keyframes ahorcadoamarillo {
  0%, 25 {
    color: #ffbc00;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #ffbc00;
  }
}

@-webkit-keyframes ahorcadoazul {
  0%, 25 {
    color: #0a89e0;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #0a89e0;
  }
}

@-moz-keyframes ahorcadoazul {
  0%, 25 {
    color: #0a89e0;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #0a89e0;
  }
}

@-ms-keyframes ahorcadoazul {
  0%, 25 {
    color: #0a89e0;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #0a89e0;
  }
}

@keyframes ahorcadoazul {
  0%, 25 {
    color: #0a89e0;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #0a89e0;
  }
}

@-webkit-keyframes ahorcadomorado {
  0%, 25 {
    color: #e400ff;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #e400ff;
  }
}

@-moz-keyframes ahorcadomorado {
  0%, 25 {
    color: #e400ff;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #e400ff;
  }
}

@-ms-keyframes ahorcadomorado {
  0%, 25 {
    color: #e400ff;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #e400ff;
  }
}

@keyframes ahorcadomorado {
  0%, 25 {
    color: #e400ff;
  }
  50% {
    color: #181929;
  }
  75%, 100% {
    color: #e400ff;
  }
}

@-webkit-keyframes ahorcadomarron {
  0%, 25, 75%, 100% {
    color: #a26d6d;
  }
  50% {
    color: #181929;
  }
}

@-moz-keyframes ahorcadomarron {
  0%, 25, 75%, 100% {
    color: #a26d6d;
  }
  50% {
    color: #181929;
  }
}

@-ms-keyframes ahorcadomarron {
  0%, 25, 75%, 100% {
    color: #a26d6d;
  }
  50% {
    color: #181929;
  }
}

@keyframes ahorcadomarron {
  0%, 25, 75%, 100% {
    color: #a26d6d;
  }
  50% {
    color: #181929;
  }
}

@-webkit-keyframes candado {
  0% {
    top: 12px;
  }
  50% {
    top: 12px;
  }
  70% {
    top: -2px;
  }
  100% {
    top: -2px;
  }
}

@-moz-keyframes candado {
  0% {
    top: 12px;
  }
  50% {
    top: 12px;
  }
  70% {
    top: -2px;
  }
  100% {
    top: -2px;
  }
}

@-ms-keyframes candado {
  0% {
    top: 12px;
  }
  50% {
    top: 12px;
  }
  70% {
    top: -2px;
  }
  100% {
    top: -2px;
  }
}

@keyframes candado {
  0% {
    top: 12px;
  }
  50% {
    top: 12px;
  }
  70% {
    top: -2px;
  }
  100% {
    top: -2px;
  }
}

@-webkit-keyframes shake {
  0% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  15% {
    -moz-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  30% {
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  45% {
    -moz-transform: rotate(4deg);
    -o-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  60% {
    -moz-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  75% {
    -moz-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  85% {
    -moz-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  92% {
    -moz-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  100% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-moz-keyframes shake {
  0% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  15% {
    -moz-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  30% {
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  45% {
    -moz-transform: rotate(4deg);
    -o-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  60% {
    -moz-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  75% {
    -moz-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  85% {
    -moz-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  92% {
    -moz-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  100% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-ms-keyframes shake {
  0% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  15% {
    -moz-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  30% {
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  45% {
    -moz-transform: rotate(4deg);
    -o-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  60% {
    -moz-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  75% {
    -moz-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  85% {
    -moz-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  92% {
    -moz-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  100% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes shake {
  0% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  15% {
    -moz-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  30% {
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  45% {
    -moz-transform: rotate(4deg);
    -o-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  60% {
    -moz-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  75% {
    -moz-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  85% {
    -moz-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  92% {
    -moz-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  100% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes rotate {
  0% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  25% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  50% {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  75% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
}

@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  25% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  50% {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  75% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
}

@-ms-keyframes rotate {
  0% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  25% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  50% {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  75% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
}

@keyframes rotate {
  0% {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  25% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  50% {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  75% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
}

@-webkit-keyframes radar {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  100% {
    -moz-transform: scale(3);
    -o-transform: scale(3);
    -ms-transform: scale(3);
    -webkit-transform: scale(3);
    transform: scale(3);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@-moz-keyframes radar {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  100% {
    -moz-transform: scale(3);
    -o-transform: scale(3);
    -ms-transform: scale(3);
    -webkit-transform: scale(3);
    transform: scale(3);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@-ms-keyframes radar {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  100% {
    -moz-transform: scale(3);
    -o-transform: scale(3);
    -ms-transform: scale(3);
    -webkit-transform: scale(3);
    transform: scale(3);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes radar {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  100% {
    -moz-transform: scale(3);
    -o-transform: scale(3);
    -ms-transform: scale(3);
    -webkit-transform: scale(3);
    transform: scale(3);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
