/**MIXINS**/
/******************************WOW******************************/
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600;1,700;1,800;1,900&display=swap");
.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*Variables*/
/*General*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

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

@media only screen and (max-width: 1199px) {
  * {
    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;
  overflow-x: hidden;
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  color: #232323;
  font-size: 18px;
  line-height: 28px;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

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

body.body-fade-in {
  -webkit-animation: fadeIn ease 0.6s;
  -moz-animation: fadeIn ease 0.6s;
  -ms-animation: fadeIn ease 0.6s;
  -o-animation: fadeIn ease 0.6s;
  animation: fadeIn ease 0.6s;
}

div {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  color: #2266b1;
  margin: 0 0 20px 0;
  font-weight: 700;
  padding: 0;
}

h1 {
  font-size: 40px;
  line-height: 44px;
}

@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 35px;
    line-height: 40px;
  }
}

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

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

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

@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 32px;
    line-height: 36px;
  }
}

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

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

h3 {
  font-size: 25px;
  line-height: 30px;
}

@media only screen and (max-width: 1199px) {
  h3 {
    font-size: 23px;
    line-height: 28px;
  }
}

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

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

h4, h5 {
  font-size: 23px;
  line-height: 26px;
}

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

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

ul, ol {
  padding: 0 0 5px 40px;
  margin: 0;
}

ul li, ol li {
  margin: 0 0 10px 0;
  padding: 0;
}

ul li {
  list-style: disc;
}

p {
  margin: 0 0 15px 0;
  padding: 0;
  font-weight: 400;
  color: #232323;
  font-size: 18px;
  line-height: 28px;
  color: #232323;
}

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

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

p strong {
  font-weight: 700;
}

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

a {
  -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;
  }
}

table {
  width: 100%;
  font-size: 14px;
  line-height: 14px;
  border-spacing: 0;
}

table tr th {
  padding: 10px 5px 10px 0;
  text-align: left;
  border-bottom: 1px solid #232323;
}

table tr td {
  padding: 10px 5px 10px 0;
  text-align: left;
  border-bottom: 1px solid #232323;
}

table tr td:first-child, table tr td:last-child {
  font-weight: 600;
}

:active, :focus {
  outline: none;
}

::placeholder {
  color: #2266b1;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #2266b1;
}

::-ms-input-placeholder {
  color: #2266b1;
}

textarea, input {
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
  font-family: "Raleway", sans-serif;
  color: #232323;
  padding: 7px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  border: 0;
  background: transparent;
  border-bottom: 1px solid #232323;
}

@media only screen and (max-width: 991px) {
  textarea, input {
    font-size: 15px;
    line-height: 18px;
  }
}

@media only screen and (max-width: 600px) {
  textarea, input {
    font-size: 14px;
    line-height: 16px;
  }
}

select {
  width: 100%;
  border-radius: 0;
  font-family: "Raleway", sans-serif;
  color: #232323;
  padding: 7px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  border: 0;
  background: transparent;
  border-bottom: 1px solid #232323;
}

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

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

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

/*Formularios*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: none;
  height: 80px;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}

[type="radio"]:checked,
[type="radio"]:not(:checked), [type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + span,
[type="radio"]:not(:checked) + span, [type="checkbox"]:checked + span,
[type="checkbox"]:not(:checked) + span {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: block;
  color: #232323;
}

[type="radio"]:checked + span:before,
[type="radio"]:not(:checked) + span:before, [type="checkbox"]:checked + span:before,
[type="checkbox"]:not(:checked) + span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #232323;
  background: transparent;
}

[type="radio"]:checked + span:after,
[type="radio"]:not(:checked) + span:after, [type="checkbox"]:checked + span:after,
[type="checkbox"]:not(:checked) + span:after {
  content: '';
  width: 8px;
  height: 8px;
  background: #232323;
  position: absolute;
  top: 6px;
  left: 4px;
  -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;
}

[type="radio"]:not(:checked) + span:after, [type="checkbox"]:not(:checked) + span:after {
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked + span:after, [type="checkbox"]:checked + span:after {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* General */
section, footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  padding: 120px 0;
}

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

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

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

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

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

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

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

@media only screen and (max-width: 480px) {
  section .container, section .container-mini, section .container-post, footer .container, footer .container-mini, footer .container-post {
    padding: 0 10px;
  }
}

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

@media only screen and (max-width: 1600px) {
  section .container .row, section .container-mini .row, section .container-post .row, footer .container .row, footer .container-mini .row, footer .container-post .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

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

section .container .row .col, section .container-mini .row .col, section .container-post .row .col, footer .container .row .col, footer .container-mini .row .col, footer .container-post .row .col {
  position: relative;
  padding: 0 20px;
}

@media only screen and (max-width: 1600px) {
  section .container .row .col, section .container-mini .row .col, section .container-post .row .col, footer .container .row .col, footer .container-mini .row .col, footer .container-post .row .col {
    padding: 0 15px;
  }
}

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

section .container .row .col.col12, section .container-mini .row .col.col12, section .container-post .row .col.col12, footer .container .row .col.col12, footer .container-mini .row .col.col12, footer .container-post .row .col.col12 {
  width: 12.5%;
}

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

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

section .container .row .col.col16, section .container-mini .row .col.col16, section .container-post .row .col.col16, footer .container .row .col.col16, footer .container-mini .row .col.col16, footer .container-post .row .col.col16 {
  width: 16.6666%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col16, section .container-mini .row .col.col16, section .container-post .row .col.col16, footer .container .row .col.col16, footer .container-mini .row .col.col16, footer .container-post .row .col.col16 {
    margin-top: 20px;
    width: 50%;
  }
}

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

section .container .row .col.col20, section .container-mini .row .col.col20, section .container-post .row .col.col20, footer .container .row .col.col20, footer .container-mini .row .col.col20, footer .container-post .row .col.col20 {
  width: 20%;
}

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

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

section .container .row .col.col25, section .container-mini .row .col.col25, section .container-post .row .col.col25, footer .container .row .col.col25, footer .container-mini .row .col.col25, footer .container-post .row .col.col25 {
  width: 25%;
}

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

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

section .container .row .col.col30, section .container-mini .row .col.col30, section .container-post .row .col.col30, footer .container .row .col.col30, footer .container-mini .row .col.col30, footer .container-post .row .col.col30 {
  width: 30%;
}

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

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

section .container .row .col.col33, section .container-mini .row .col.col33, section .container-post .row .col.col33, footer .container .row .col.col33, footer .container-mini .row .col.col33, footer .container-post .row .col.col33 {
  width: 33.3333%;
}

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

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

section .container .row .col.col36, section .container-mini .row .col.col36, section .container-post .row .col.col36, footer .container .row .col.col36, footer .container-mini .row .col.col36, footer .container-post .row .col.col36 {
  width: 36.6666%;
}

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

section .container .row .col.col40, section .container-mini .row .col.col40, section .container-post .row .col.col40, footer .container .row .col.col40, footer .container-mini .row .col.col40, footer .container-post .row .col.col40 {
  width: 40%;
}

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

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

section .container .row .col.col45, section .container-mini .row .col.col45, section .container-post .row .col.col45, footer .container .row .col.col45, footer .container-mini .row .col.col45, footer .container-post .row .col.col45 {
  width: 45%;
}

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

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

section .container .row .col.col50, section .container-mini .row .col.col50, section .container-post .row .col.col50, footer .container .row .col.col50, footer .container-mini .row .col.col50, footer .container-post .row .col.col50 {
  width: 50%;
}

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

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

section .container .row .col.col55, section .container-mini .row .col.col55, section .container-post .row .col.col55, footer .container .row .col.col55, footer .container-mini .row .col.col55, footer .container-post .row .col.col55 {
  width: 55%;
}

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

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

section .container .row .col.col60, section .container-mini .row .col.col60, section .container-post .row .col.col60, footer .container .row .col.col60, footer .container-mini .row .col.col60, footer .container-post .row .col.col60 {
  width: 60%;
}

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

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

section .container .row .col.col63, section .container-mini .row .col.col63, section .container-post .row .col.col63, footer .container .row .col.col63, footer .container-mini .row .col.col63, footer .container-post .row .col.col63 {
  width: 63.3333%;
}

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

section .container .row .col.col66, section .container-mini .row .col.col66, section .container-post .row .col.col66, footer .container .row .col.col66, footer .container-mini .row .col.col66, footer .container-post .row .col.col66 {
  width: 66.6666%;
}

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

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

section .container .row .col.col70, section .container-mini .row .col.col70, section .container-post .row .col.col70, footer .container .row .col.col70, footer .container-mini .row .col.col70, footer .container-post .row .col.col70 {
  width: 70%;
}

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

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

section .container .row .col.col75, section .container-mini .row .col.col75, section .container-post .row .col.col75, footer .container .row .col.col75, footer .container-mini .row .col.col75, footer .container-post .row .col.col75 {
  width: 75%;
}

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

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

section .container .row .col.col80, section .container-mini .row .col.col80, section .container-post .row .col.col80, footer .container .row .col.col80, footer .container-mini .row .col.col80, footer .container-post .row .col.col80 {
  width: 80%;
}

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

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

section .container-mini, footer .container-mini {
  max-width: 960px;
}

section .container-post, footer .container-post {
  max-width: 660px;
}

main {
  overflow: hidden;
  min-height: 100vh;
  padding: 160px 0 140px 0;
}

@media only screen and (max-width: 767px) {
  main {
    padding: 60px 0;
    min-height: calc(100vh - 310px);
  }
}

@media only screen and (max-width: 480px) {
  main {
    min-height: calc(100vh - 270px);
  }
}

/*General*/
.supertitulo {
  font-size: 80px;
  line-height: 85px;
  font-weight: 700;
  color: #03b254;
}

@media only screen and (max-width: 1199px) {
  .supertitulo {
    font-size: 65px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .supertitulo {
    font-size: 50px;
    line-height: 55px;
  }
}

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

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

.titulo {
  font-size: 60px;
  line-height: 65px;
  font-weight: 700;
  color: #03b254;
}

@media only screen and (max-width: 1199px) {
  .titulo {
    font-size: 50px;
    line-height: 55px;
  }
}

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

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

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

.titulo-grande {
  font-weight: 700;
  color: #03b254;
  font-size: 46px;
  line-height: 52px;
}

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

@media only screen and (max-width: 991px) {
  .titulo-grande {
    font-size: 34px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 600px) {
  .titulo-grande {
    font-size: 28px;
    line-height: 32px;
  }
}

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

.titulo-medio {
  font-weight: 700;
  color: #03b254;
  font-size: 28px;
  line-height: 36px;
}

@media only screen and (max-width: 1199px) {
  .titulo-medio {
    font-size: 26px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 991px) {
  .titulo-medio {
    font-size: 24px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 600px) {
  .titulo-medio {
    font-size: 22px;
    line-height: 26px;
  }
}

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

.extralink {
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 991px) {
  .extralink {
    font-size: 13px;
    line-height: 18px;
  }
}

@media only screen and (max-width: 600px) {
  .extralink {
    font-size: 12px;
    line-height: 16px;
  }
}

.extralink a {
  font-weight: 600;
  text-decoration: underline;
  color: #232323;
}

.extralink a:hover {
  color: #03b254;
}

@media only screen and (max-width: 1199px) {
  .extralink a:hover {
    color: #232323;
  }
}

.boton {
  background: #03b254;
  color: #232323;
  font-weight: 700;
  display: table;
  font-size: 18px;
  line-height: 48px;
  height: 48px;
  border-radius: 30px;
  padding: 0 40px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  -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: 991px) {
  .boton {
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 480px) {
  .boton {
    font-size: 14px;
    line-height: 36px;
    height: 36px;
    padding: 0 25px;
  }
}

.boton:hover {
  background: white;
  color: #03b254;
}

@media only screen and (max-width: 1199px) {
  .boton:hover {
    background: #03b254;
    color: #232323;
  }
}

.boton.boton-mini {
  font-size: 14px;
  line-height: 36px;
  height: 36px;
  padding: 0 25px;
}

@media only screen and (max-width: 480px) {
  .boton.boton-mini {
    padding: 0 20px;
    font-size: 13px;
  }
}

.boton.boton-back span {
  font-weight: 700;
  font-size: 12px;
  margin: 0 10px 0 0;
}

.johnson {
  position: absolute;
  top: 33px;
  left: calc(50% - 90px);
}

.johnson span {
  margin: 0 auto;
  width: 180px;
  height: 34px;
  display: block;
  background-image: url("../img/logo-johnson-blanco.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 180px 34px;
}

.section-blank h1, .section-blank h2, .section-blank h3, .section-blank h4, .section-blank h5 {
  margin: 30px 0 10px 0;
}

/* Header */
.menu-superior {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 20px 100px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 1600px) {
  .menu-superior {
    padding: 20px 50px;
  }
}

@media only screen and (max-width: 1360px) {
  .menu-superior {
    padding: 20px 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .menu-superior {
    padding: 20px 30px;
  }
}

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

@media only screen and (max-width: 767px) {
  .menu-superior {
    position: inherit;
    left: inherit;
    bottom: inherit;
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .menu-superior {
    padding: 10px;
    height: 80px;
  }
}

.menu-superior .logo {
  width: 40%;
}

.menu-superior .logo span {
  width: 176px;
  height: 72px;
  display: block;
  background-image: url("../img/logo-carrera-login.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 176px 72px;
}

@media only screen and (max-width: 480px) {
  .menu-superior .logo span {
    width: 146px;
    height: 60px;
    background-size: 146px 60px;
  }
}

.menu-superior .navmenu {
  display: flex;
  align-items: center;
  width: 60%;
  margin: 0 0 0 auto;
  justify-content: flex-end;
}

.menu-superior .navmenu .submenu {
  display: flex;
  align-items: center;
}

.menu-superior .navmenu .submenu .login-link {
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 15px 0 0;
  color: #232323;
}

@media only screen and (max-width: 600px) {
  .menu-superior .navmenu .submenu .login-link {
    font-size: 0;
    line-height: 0;
    margin: 0 10px 0 0;
  }
}

@media only screen and (max-width: 480px) {
  .menu-superior .navmenu .submenu .login-link {
    margin: 0 5px 0 0;
  }
}

.menu-superior .navmenu .submenu .login-link span {
  font-size: 22px;
  line-height: 22px;
  position: relative;
  top: 3px;
  margin: 0 5px 0 0;
}

@media only screen and (max-width: 600px) {
  .menu-superior .navmenu .submenu .login-link span {
    height: 36px;
    width: 36px;
    display: block;
    background: white;
    position: inherit;
    top: inherit;
    border-radius: 30px;
    line-height: 36px;
    color: #232323;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .menu-superior .navmenu .submenu .login-link span {
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
}

.menu-superior .navmenu .submenu .login-link:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

@media only screen and (max-width: 1199px) {
  .menu-superior .navmenu .submenu .login-link:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.menu-superior .navmenu .submenu .boton {
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  .menu-superior .navmenu .submenu .boton {
    font-size: 12px;
    line-height: 30px;
    height: 30px;
    padding: 0 12px;
  }
}

.menu-superior .navmenu .submenu .boton span {
  font-size: 22px;
  line-height: 22px;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
}

@media only screen and (max-width: 480px) {
  .menu-superior .navmenu .submenu .boton span {
    font-size: 18px;
    line-height: 18px;
    top: 3px;
    margin: 0 3px 0 0;
  }
}

.menu-superior .navmenu .submenu.juego .login-link:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.menu-superior .navmenu .idiomas {
  padding: 0 0 0 10px;
}

@media only screen and (max-width: 480px) {
  .menu-superior .navmenu .idiomas {
    padding: 0 0 0 5px;
    margin: 0 -5px 0 0;
  }
}

.menu-superior .navmenu .idiomas .language-menu {
  display: flex;
}

.menu-superior .navmenu .idiomas .language-menu a {
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #232323;
  font-weight: 700;
  padding: 0 5px;
  margin: 0;
  opacity: 1;
  filter: alpha(opacity=100);
}

@media only screen and (max-width: 480px) {
  .menu-superior .navmenu .idiomas .language-menu a {
    font-size: 13px;
    line-height: 13px;
  }
}

.menu-superior .navmenu .idiomas .language-menu a:first-child {
  border-right: 1px solid #232323;
}

.menu-superior .navmenu .idiomas .language-menu a.no-activo {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.menu-superior .navmenu .idiomas .language-menu a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

@media only screen and (max-width: 1199px) {
  .menu-superior .navmenu .idiomas .language-menu a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.menu-superior .navmenu .langmenu {
  display: flex;
}

.menu-superior .navmenu .langmenu a, .menu-superior .navmenu .langmenu span {
  font-size: 15px;
  font-weight: 700;
  line-height: 37px;
  display: block;
  height: 36px;
  width: 36px;
  border-radius: 20px;
  text-align: center;
  margin: 0 0 0 10px;
}

.menu-superior .navmenu .langmenu span {
  background: #feca28;
  color: #232323;
}

.menu-superior .navmenu .langmenu a {
  color: white;
  background: transparent;
}

.menu-superior .navmenu .langmenu a:hover {
  color: #03b254;
  background: white;
}

@media only screen and (max-width: 1199px) {
  .menu-superior .navmenu .langmenu a:hover {
    background: transparent;
    color: white;
  }
}

/* Footer */
.footer {
  width: 100%;
  padding: 30px 100px;
}

@media only screen and (max-width: 1600px) {
  .footer {
    padding: 30px 50px;
  }
}

@media only screen and (max-width: 1360px) {
  .footer {
    padding: 30px 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer {
    padding: 20px 30px;
  }
}

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

@media only screen and (max-width: 767px) {
  .footer {
    position: inherit;
    left: inherit;
    bottom: inherit;
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .footer {
    padding: 20px 10px;
  }
}

.footer .container-footer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .footer .container-footer {
    align-content: baseline;
  }
}

@media only screen and (max-width: 767px) {
  .footer .container-footer {
    height: auto;
  }
}

.footer .container-footer p, .footer .container-footer a {
  color: #232323;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
}

@media only screen and (max-width: 480px) {
  .footer .container-footer p, .footer .container-footer a {
    font-size: 12px;
    line-height: 18px;
  }
}

.footer .container-footer .logo-footer {
  width: 300px;
}

@media only screen and (max-width: 1199px) {
  .footer .container-footer .logo-footer {
    order: 3;
  }
}

@media only screen and (max-width: 767px) {
  .footer .container-footer .logo-footer {
    width: 300px;
    margin: 20px auto 0 auto;
  }
}

@media only screen and (max-width: 480px) {
  .footer .container-footer .logo-footer {
    width: 280px;
  }
}

.footer .container-footer .condiciones {
  width: calc(100% - 600px);
  text-align: center;
  color: #232323;
}

@media only screen and (max-width: 1199px) {
  .footer .container-footer .condiciones {
    width: calc(100% - 300px);
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .footer .container-footer .condiciones {
    width: 100%;
    text-align: center;
  }
}

.footer .container-footer .condiciones a {
  border-bottom: 1px solid transparent;
}

.footer .container-footer .condiciones a:hover {
  border-bottom: 1px solid #232323;
}

@media only screen and (max-width: 1199px) {
  .footer .container-footer .condiciones a:hover {
    border-bottom: 1px solid transparent;
  }
}

.footer .container-footer .social {
  width: 300px;
}

@media only screen and (max-width: 1199px) {
  .footer .container-footer .social {
    width: 100%;
  }
}

.footer .container-footer .social ul {
  margin: 0;
  padding: 0;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .footer .container-footer .social ul {
    text-align: center;
  }
}

.footer .container-footer .social ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  margin: 3px 10px 0 0;
}

@media only screen and (max-width: 767px) {
  .footer .container-footer .social ul li {
    margin: 0 5px 10px 5px;
  }
}

.footer .container-footer .social ul li a {
  font-size: 20px;
}

.footer .container-footer .social ul li a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

@media only screen and (max-width: 1199px) {
  .footer .container-footer .social ul li a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.footer.footer-white {
  background: #2266b1;
}

.footer.footer-white .container-footer p, .footer.footer-white .container-footer a {
  color: white;
}

.footer.footer-white .container-footer .condiciones {
  color: white;
}

.footer.footer-white .container-footer .condiciones a:hover {
  border-bottom: 1px solid white;
}

.footer.footer-red {
  background: #ee4d47;
}

.footer.footer-green {
  background: #03b254;
}

/* Inicio */
.inicio {
  padding: 0;
  overflow: hidden;
  align-self: center;
}

.inicio .imagen-inicio {
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .inicio .imagen-inicio {
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@media only screen and (max-width: 991px) {
  .inicio .imagen-inicio {
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@media only screen and (max-width: 767px) {
  .inicio .imagen-inicio {
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 480px) {
  .inicio .imagen-inicio {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.inicio .imagen-inicio .logo-i, .inicio .imagen-inicio .logo-d {
  position: absolute;
  top: -175px;
  left: calc(50% - 600px);
  top: calc(50% - 180px);
}

@media only screen and (max-width: 767px) {
  .inicio .imagen-inicio .logo-i, .inicio .imagen-inicio .logo-d {
    left: calc(50% - 540px);
  }
}

@media only screen and (max-width: 600px) {
  .inicio .imagen-inicio .logo-i, .inicio .imagen-inicio .logo-d {
    left: calc(50% - 495px);
    top: calc(50% - 180px);
  }
}

@media only screen and (max-width: 480px) {
  .inicio .imagen-inicio .logo-i, .inicio .imagen-inicio .logo-d {
    display: none;
  }
}

.inicio .imagen-inicio .logo-i:before, .inicio .imagen-inicio .logo-d:before {
  content: "";
  height: 5px;
  width: 50vw;
  position: absolute;
  right: 300px;
  top: 139.5px;
  background: #03b254;
  display: block;
}

.inicio .imagen-inicio .logo-d {
  left: calc(50% + 300px);
}

@media only screen and (max-width: 767px) {
  .inicio .imagen-inicio .logo-d {
    left: calc(50% + 240px);
  }
}

@media only screen and (max-width: 600px) {
  .inicio .imagen-inicio .logo-d {
    left: calc(50% + 200px);
    top: calc(50% - 185px);
  }
}

.inicio .imagen-inicio .logo-d:before {
  right: inherit;
  left: 300px;
  top: 142px;
}

.inicio .imagen-inicio .logo-c {
  width: 600px;
  height: auto;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .inicio .imagen-inicio .logo-c {
    width: 500px;
  }
}

@media only screen and (max-width: 600px) {
  .inicio .imagen-inicio .logo-c {
    width: 400px;
  }
}

@media only screen and (max-width: 480px) {
  .inicio .imagen-inicio .logo-c {
    width: 100%;
    padding: 0 10px;
  }
}

.inicio .imagen-inicio .lineas-inicio {
  width: 300px;
  height: auto;
  fill: none;
  stroke: #03b254;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

@media only screen and (max-width: 767px) {
  .inicio .imagen-inicio .lineas-inicio {
    stroke-width: 4;
  }
}

@media only screen and (max-width: 600px) {
  .inicio .imagen-inicio .lineas-inicio {
    stroke-width: 3;
  }
}

.inicio .texto-inicio {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 30px 0 30px;
}

@media only screen and (max-width: 767px) {
  .inicio .texto-inicio {
    padding: 20px 20px 0 20px;
  }
}

@media only screen and (max-width: 480px) {
  .inicio .texto-inicio {
    padding: 15px 15px 0 15px;
  }
}

.inicio .texto-inicio h1 {
  color: #03b254;
}

.inicio .texto-inicio p {
  font-size: 20px;
  line-height: 30px;
  color: white;
}

@media only screen and (max-width: 991px) {
  .inicio .texto-inicio p {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .inicio .texto-inicio p {
    font-size: 16px;
    line-height: 24px;
  }
}

.inicio .texto-inicio .boton {
  margin: 30px auto 0 auto;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .inicio .texto-inicio .boton {
    margin: 20px auto 0 auto;
  }
}

@media only screen and (max-width: 480px) {
  .inicio .texto-inicio .boton {
    margin: 15px auto 0 auto;
  }
}

.inicio.inicio-amarillo {
  overflow: visible;
  width: 100%;
  padding: 60px 0 20px 0;
}

.inicio.inicio-amarillo .imagen-inicio .logo-i:before, .inicio.inicio-amarillo .imagen-inicio .logo-d:before {
  background: #feca28;
}

.inicio.inicio-amarillo .imagen-inicio .lineas-inicio {
  stroke: #feca28;
}

.inicio.inicio-amarillo .texto-inicio h1 {
  color: #232323;
}

.inicio.inicio-amarillo .texto-inicio .boton {
  background: white;
}

@media only screen and (max-width: 767px) {
  .body-general {
    background: #18264f;
  }
}

.body-general .menu-superior .logo span {
  background-image: url("../img/logo-carrera-login.svg");
}

.body-general .menu-superior .navmenu .submenu .login-link {
  color: white;
}

.body-general .menu-superior .navmenu .idiomas .language-menu a {
  color: white;
}

.body-general .menu-superior .navmenu .idiomas .language-menu a:first-child {
  border-right: 1px solid  white;
}

.body-general .main-inicio {
  background: #18264f;
  display: flex;
}

.body-general .main-inicio .inicio {
  padding: 0;
  overflow: visible;
  align-self: center;
}

.body-general.en .menu-superior .logo span {
  background-image: url("../img/logo-carrera-home-en.svg");
}

*:lang(en) .menu-superior .logo span {
  background-image: url("../img/logo-carrera-login-en.svg");
}

.modal {
  width: 100%;
  height: 100vh;
  background: rgba(24, 38, 79, 0.8);
  position: fixed;
  z-index: 3214235543;
  top: 0;
  left: 0;
  display: flex;
  animation: modal .6s 1s forwards;
  visibility: hidden;
  opacity: 0;
}

.modal .contenido {
  margin: auto;
  width: 580px;
  height: auto;
  background: #03b254;
  padding: 50px;
  border-radius: 20px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .modal .contenido {
    padding: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .modal .contenido {
    padding: 30px;
    width: 480px;
  }
}

@media only screen and (max-width: 600px) {
  .modal .contenido {
    padding: 20px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 480px) {
  .modal .contenido {
    width: calc(100% - 20px);
  }
}

.modal .contenido p {
  color: white;
}

.modal .contenido p.extralink {
  position: relative;
  padding: 0 0 0 30px;
  margin: 0;
}

.modal .contenido p.extralink span {
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  color: #03b254;
  border-radius: 20px;
  line-height: 20px;
  left: 0;
  text-align: center;
  font-size: 12px;
}

.modal .contenido label {
  position: absolute;
  font-size: 20px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  background: transparent;
  -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;
  color: white;
}

@media only screen and (max-width: 767px) {
  .modal .contenido label {
    top: 20px;
    right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .modal .contenido label {
    top: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .modal .contenido label {
    top: 5px;
    right: 5px;
  }
}

.modal .contenido label span {
  line-height: 40px;
}

@media only screen and (max-width: 767px) {
  .modal .contenido label span {
    position: relative;
    top: 3px;
  }
}

.modal .contenido label:hover {
  background: white;
  color: #03b254;
}

@media only screen and (max-width: 1199px) {
  .modal .contenido label:hover {
    color: white;
    background: transparent;
  }
}

#cerrar {
  display: none;
}

#cerrar:checked + label, #cerrar:checked ~ .modal {
  display: none;
}

@keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}

/* Formularios */
@media only screen and (max-width: 767px) {
  .body-login {
    background: #c7e7e5;
  }
}

.main-login {
  background: #c7e7e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-login .linea-fondo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  -moz-transform: scale(2);
  -o-transform: scale(2);
  -ms-transform: scale(2);
  -webkit-transform: scale(2);
  transform: scale(2);
}

.main-login .linea-fondo .linea-login {
  width: 100%;
  height: auto;
  fill: none;
  stroke: #2266b1;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.main-login .ventana-formulario {
  width: 560px;
  background: white;
  border-radius: 10px;
  padding: 40px 60px;
  margin: 40px auto;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 991px) {
  .main-login .ventana-formulario {
    padding: 30px 40px;
  }
}

@media only screen and (max-width: 600px) {
  .main-login .ventana-formulario {
    padding: 20px;
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}

@media only screen and (max-width: 480px) {
  .main-login .ventana-formulario {
    padding: 20px;
    width: calc(100% - 20px);
    margin: 0 10px;
  }
}

.main-login .ventana-formulario .logo-login {
  width: 220px;
  margin: 0 auto 40px auto;
}

.main-login .ventana-formulario form .formulario-linea {
  margin: 20px 0 0 0;
}

.main-login .ventana-formulario form .formulario-linea label {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.main-login .ventana-formulario form .formulario-linea .obligatorio {
  color: #ee4d47;
}

.main-login .ventana-formulario form .formulario-checkbox {
  margin: 30px 0 0 0;
}

.main-login .ventana-formulario form .formulario-enviar {
  text-align: center;
  margin: 30px 0 0 0;
}

.main-login .ventana-formulario form .formulario-enviar .boton {
  margin: 0 auto 20px auto;
}

.main-login .ventana-formulario .notificacion {
  font-size: 14px;
  line-height: 16px;
  color: #03b254;
  font-weight: 600;
}

.error-form {
  padding: 0;
  margin: 0;
}

.error-form li {
  padding: 10px 0 5px 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  line-height: 16px;
  color: #ee4d47;
  font-weight: 600;
}

/* Panel usuario */
.panel-usuario .menu-superior .navmenu .submenu .boton {
  background: #c7e7e5;
}

.panel-usuario .menu-superior .navmenu .submenu .boton:hover {
  background: #03b254;
  color: white;
}

@media only screen and (max-width: 1199px) {
  .panel-usuario .menu-superior .navmenu .submenu .boton:hover {
    background: #c7e7e5;
    color: #232323;
  }
}

.main-dashboard {
  overflow: visible;
}

.main-dashboard .links-dashboard {
  padding: 0;
}

.links-dashboard .container .row .col {
  margin: 30px 0 0 0;
}

@media only screen and (max-width: 767px) {
  .links-dashboard .container .row .col {
    width: 100% !important;
    margin: 20px 0 0 0;
  }
}

@media only screen and (max-width: 480px) {
  .links-dashboard .container .row .col {
    margin: 10px 0 0 0;
  }
}

.links-dashboard .container .row .col .box-juego, .links-dashboard .container .row .col .box-ranking, .links-dashboard .container .row .col .box-clasificacion {
  background-color: #03b254;
  padding: 30px 150px 60px 35px;
  height: 100%;
  background-size: 200px 300px;
  background-repeat: no-repeat;
  background-position: right bottom;
}

@media only screen and (max-width: 991px) {
  .links-dashboard .container .row .col .box-juego, .links-dashboard .container .row .col .box-ranking, .links-dashboard .container .row .col .box-clasificacion {
    padding: 20px 120px 50px 25px;
    background-size: 150px 225px;
  }
}

@media only screen and (max-width: 480px) {
  .links-dashboard .container .row .col .box-juego, .links-dashboard .container .row .col .box-ranking, .links-dashboard .container .row .col .box-clasificacion {
    padding: 15px 120px 50px 15px;
  }
}

.links-dashboard .container .row .col .box-juego .logo-box, .links-dashboard .container .row .col .box-ranking .logo-box, .links-dashboard .container .row .col .box-clasificacion .logo-box {
  width: 220px;
  height: auto;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 991px) {
  .links-dashboard .container .row .col .box-juego .logo-box, .links-dashboard .container .row .col .box-ranking .logo-box, .links-dashboard .container .row .col .box-clasificacion .logo-box {
    width: 180px;
  }
}

.links-dashboard .container .row .col .box-juego .boton, .links-dashboard .container .row .col .box-ranking .boton, .links-dashboard .container .row .col .box-clasificacion .boton {
  margin: 20px 0;
  text-transform: uppercase;
  background: white;
}

.links-dashboard .container .row .col .box-juego p, .links-dashboard .container .row .col .box-ranking p, .links-dashboard .container .row .col .box-clasificacion p {
  color: white;
}

.links-dashboard .container .row .col .box-juego p a, .links-dashboard .container .row .col .box-ranking p a, .links-dashboard .container .row .col .box-clasificacion p a {
  color: white;
}

.links-dashboard .container .row .col .box-juego .intro-box, .links-dashboard .container .row .col .box-ranking .intro-box, .links-dashboard .container .row .col .box-clasificacion .intro-box {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 991px) {
  .links-dashboard .container .row .col .box-juego .intro-box, .links-dashboard .container .row .col .box-ranking .intro-box, .links-dashboard .container .row .col .box-clasificacion .intro-box {
    margin: 0 0 30px 0;
  }
}

@media only screen and (max-width: 480px) {
  .links-dashboard .container .row .col .box-juego .intro-box, .links-dashboard .container .row .col .box-ranking .intro-box, .links-dashboard .container .row .col .box-clasificacion .intro-box {
    margin: 0 0 20px 0;
  }
}

.links-dashboard .container .row .col .box-juego {
  background-image: url("../img/box-juego.jpg");
}

.links-dashboard .container .row .col .box-ranking {
  background-color: #feca28;
  background-image: url("../img/box-ranking.jpg");
}

.links-dashboard .container .row .col .box-clasificacion {
  background-color: #feca28;
  background-image: url("../img/box-ranking.jpg");
  padding: 40px 200px 60px 50px;
}

@media only screen and (max-width: 1199px) {
  .links-dashboard .container .row .col .box-clasificacion {
    padding: 30px 40px 160px 40px;
    background-size: 150px 225px;
  }
}

@media only screen and (max-width: 991px) {
  .links-dashboard .container .row .col .box-clasificacion {
    padding: 20px 25px 160px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .links-dashboard .container .row .col .box-clasificacion {
    padding: 20px 150px 30px 25px;
  }
}

@media only screen and (max-width: 480px) {
  .links-dashboard .container .row .col .box-clasificacion {
    padding: 15px 15px 160px 15px;
  }
}

.links-dashboard .container .row .col .box-aecc {
  background-color: #c7e7e5;
  background-image: url("../img/box-clasificacion.jpg");
  background-size: 600px 300px;
  padding: 40px 200px 40px 50px;
  background-position: right bottom;
  background-repeat: no-repeat;
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .links-dashboard .container .row .col .box-aecc {
    padding: 30px 40px 200px 40px;
  }
}

@media only screen and (max-width: 991px) {
  .links-dashboard .container .row .col .box-aecc {
    padding: 20px 25px 200px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .links-dashboard .container .row .col .box-aecc {
    padding: 20px 200px 10px 25px;
  }
}

@media only screen and (max-width: 600px) {
  .links-dashboard .container .row .col .box-aecc {
    background-size: 500px 250px;
  }
}

@media only screen and (max-width: 480px) {
  .links-dashboard .container .row .col .box-aecc {
    padding: 15px 15px 180px 15px;
  }
}

.links-dashboard .container .row .col .box-aecc .titulo-grande {
  width: calc(100% + 150px);
  color: #2266b1;
}

@media only screen and (max-width: 1199px) {
  .links-dashboard .container .row .col .box-aecc .titulo-grande {
    width: 100%;
  }
}

.links-dashboard .container .row .col .box-aecc .boton {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 991px) {
  .links-dashboard .container .row .col .box-aecc .boton {
    margin: 0 0 30px 0;
  }
}

@media only screen and (max-width: 767px) {
  .links-dashboard .container .row .col .box-aecc .boton {
    margin: 0 0 20px 0;
  }
}

.links-dashboard .container .boton-back {
  background: white;
}

/* Intro de juego */
.body-juego.game-intro {
  background: #03b254;
}

.body-juego.game-intro .menu-superior .logo span {
  background-image: url("../img/logo-carrera-fullblanco.svg");
}

.body-juego.game-intro .menu-superior .navmenu .submenu .login-link {
  color: white;
}

.body-juego.game-intro .menu-superior .navmenu .submenu .boton {
  background: white;
}

.body-juego.game-intro .menu-superior .navmenu .idiomas .language-menu a {
  color: white;
}

.body-juego.game-intro .menu-superior .navmenu .idiomas .language-menu a:first-child {
  border-right: 1px solid  white;
}

*:lang(en) .body-juego.game-intro {
  background: #03b254;
}

*:lang(en) .body-juego.game-intro .menu-superior .logo span {
  background-image: url("../img/logo-carrera-fullblanco-en.svg");
}

/* Ranking */
.body-general.ranking, .game.success, .game.fail {
  background: #03b254;
}

.body-general.ranking .menu-superior .logo span, .game.success .menu-superior .logo span, .game.fail .menu-superior .logo span {
  background-image: url("../img/logo-carrera-fullblanco.svg");
}

.body-general.ranking .menu-superior .navmenu .submenu .login-link, .game.success .menu-superior .navmenu .submenu .login-link, .game.fail .menu-superior .navmenu .submenu .login-link {
  color: white;
}

.body-general.ranking .menu-superior .navmenu .submenu .boton, .game.success .menu-superior .navmenu .submenu .boton, .game.fail .menu-superior .navmenu .submenu .boton {
  background: white;
}

.body-general.ranking .menu-superior .navmenu .idiomas .language-menu a, .game.success .menu-superior .navmenu .idiomas .language-menu a, .game.fail .menu-superior .navmenu .idiomas .language-menu a {
  color: white;
}

.body-general.ranking .menu-superior .navmenu .idiomas .language-menu a:first-child, .game.success .menu-superior .navmenu .idiomas .language-menu a:first-child, .game.fail .menu-superior .navmenu .idiomas .language-menu a:first-child {
  border-right: 1px solid  white;
}

*:lang(en) .body-general.ranking, *:lang(en) .game.success, *:lang(en) .game.fail {
  background: #03b254;
}

*:lang(en) .body-general.ranking .menu-superior .logo span, *:lang(en) .game.success .menu-superior .logo span, *:lang(en) .game.fail .menu-superior .logo span {
  background-image: url("../img/logo-carrera-fullblanco-en.svg");
}

@media only screen and (max-width: 1360px) {
  .body-juego.game.success .main-juego, .body-juego.game.fail .main-juego {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .body-juego.game.success .main-juego, .body-juego.game.fail .main-juego {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .body-juego.game.success .main-juego, .body-juego.game.fail .main-juego {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .body-juego.game.success .main-juego, .body-juego.game.fail .main-juego {
    padding-bottom: 0;
  }
}

.body-juego.game.success {
  background: #03b254;
}

.body-juego.game.fail {
  background: #ee4d47;
}

.main-ranking {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
}

.main-ranking .links-dashboard {
  align-self: center;
  padding: 0;
  width: 100%;
}

.m-scroll {
  display: flex;
  position: relative;
  width: 100%;
  height: 60px;
  background: #feca28;
  margin: auto;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 1360px) {
  .m-scroll {
    height: 56px;
  }
}

@media only screen and (max-width: 1199px) {
  .m-scroll {
    height: 52px;
  }
}

@media only screen and (max-width: 991px) {
  .m-scroll {
    height: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .m-scroll {
    height: 44px;
  }
}

@media only screen and (max-width: 600px) {
  .m-scroll {
    height: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .m-scroll {
    height: 36px;
  }
}

.m-scroll__title {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transition: all 1s ease;
}

.m-scroll__title > div {
  display: flex;
  animation: scrollText 500s infinite linear;
}

.m-scroll__title span {
  color: #232323;
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
}

@media only screen and (max-width: 1360px) {
  .m-scroll__title span {
    font-size: 36px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 1199px) {
  .m-scroll__title span {
    font-size: 32px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 991px) {
  .m-scroll__title span {
    font-size: 28px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .m-scroll__title span {
    font-size: 26px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .m-scroll__title span {
    font-size: 24px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 480px) {
  .m-scroll__title span {
    font-size: 22px;
    line-height: 22px;
  }
}

/* Final */
.game.success .main-juego {
  background: #03b254;
}

.game.fail {
  background: #ee4d47;
}

.game.fail .boton:hover {
  color: #ee4d47;
}

@media only screen and (max-width: 1199px) {
  .game.fail .boton:hover {
    color: #232323;
  }
}

.game.fail .main-juego {
  background: #ee4d47;
}

.ranking-fin {
  padding-top: 35px;
}

.ilustracion-enhorabuena .container .row .col .boton {
  margin: 20px 0;
  background: white;
}

.ilustracion-enhorabuena .container .row .col .boton-social {
  background: white;
  width: 36px;
  height: 36px;
  border-radius: 20px;
  display: inline-block;
  margin: 0 0 0 5px;
  position: relative;
  top: -2px;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  position: relative;
  top: 2px;
  color: #232323;
}

.ilustracion-enhorabuena .container .row .col .boton-social span {
  position: relative;
  top: 2px;
}

.ilustracion-enhorabuena .container .row .col .boton-social:hover {
  color: #03b254;
}

@media only screen and (max-width: 1199px) {
  .ilustracion-enhorabuena .container .row .col .boton-social:hover {
    color: #232323;
  }
}

.ilustracion-enhorabuena .container .row .col p .record {
  color: #feca28;
}

.ilustracion.ilustracion-fail {
  background: #ee4d47;
}

.ilustracion.ilustracion-fail .container .row .col .boton {
  margin: 20px 0;
  background: white;
}

/* Noticia */
.game-intro {
  position: relative;
  z-index: 1234567;
}

.game-intro .main-juego {
  background: #03b254;
}

.noticia {
  padding: 0;
  margin: 100px 0 0 0;
}

.noticia .video {
  overflow: hidden;
}

.noticia .video .slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .noticia .video .slider {
    position: inherit;
    top: inherit;
    left: inherit;
  }
}

.noticia .video .slider .items {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  padding-bottom: 56.25%;
}

.noticia .video .slider .items .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .6s ease-in-out;
}

.noticia .video .slider .items .item.current {
  opacity: 1;
}

.noticia .video .slider .items .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.noticia .video .box-video {
  background: white;
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 100px 100px 100px auto;
  padding: 60px 60px 40px 60px;
}

@media only screen and (max-width: 1360px) {
  .noticia .video .box-video {
    margin: 80px 80px 80px auto;
    padding: 50px 50px 30px 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .noticia .video .box-video {
    margin: 60px 60px 60px auto;
    padding: 40px 40px 20px 40px;
  }
}

@media only screen and (max-width: 991px) {
  .noticia .video .box-video {
    max-width: 400px;
    margin: 40px 40px 40px auto;
  }
}

@media only screen and (max-width: 767px) {
  .noticia .video .box-video {
    margin: 0;
    max-width: 100%;
    padding: 30px 30px 10px 30px;
  }
}

@media only screen and (max-width: 600px) {
  .noticia .video .box-video {
    padding: 25px 20px 5px 20px;
  }
}

@media only screen and (max-width: 480px) {
  .noticia .video .box-video {
    padding: 20px 10px 5px 10px;
  }
}

.noticia .video .box-video .destacado {
  font-size: 16px;
  line-height: 16px;
  font-weight: 800;
  background: #feca28;
  padding: 5px 10px;
  display: table;
}

.noticia .video .box-video .titulo-medio {
  color: #232323;
  font-weight: 800;
}

.noticia .video .box-video .parrafo-video p {
  font-size: 16px;
  line-height: 24px;
}

@media only screen and (max-width: 991px) {
  .noticia .video .box-video .parrafo-video p {
    font-size: 15px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 480px) {
  .noticia .video .box-video .parrafo-video p {
    font-size: 14px;
    line-height: 20px;
  }
}

.padding-izquierda {
  padding: 30px 30px 20px 120px;
}

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

@media only screen and (max-width: 991px) {
  .padding-izquierda {
    padding: 10px 20px 10px 0;
  }
}

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

.padding-derecha {
  padding: 30px 120px 20px 30px;
}

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

@media only screen and (max-width: 991px) {
  .padding-derecha {
    padding: 10px 0 20px 10px;
  }
}

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

.ilustracion {
  background: #03b254;
}

.ilustracion .container .row {
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .ilustracion .container .row .col {
    width: 100% !important;
  }
}

.ilustracion .container .row .col.col-texto p {
  color: white;
}

.ilustracion .container .row .col.col-texto .supertitulo {
  color: #feca28;
}

.ilustracion .container .row .col.col-img img {
  max-width: 500px;
  margin: 0 auto;
}

.ilustracion .container .row .col.col-pistas {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .ilustracion .container .row .col.col-derecha {
    order: 4;
  }
}

.ayuda {
  background: #feca28;
  padding-bottom: 0;
  overflow: hidden;
}

.ayuda .container .supertitulo {
  color: #232323;
}

.ayuda .container .supertitulo span {
  color: #2266b1;
  display: block;
}

.ayuda .policia {
  min-width: 2200px;
  width: 100%;
  position: relative;
  left: 0;
}

@media only screen and (max-width: 2200px) {
  .ayuda .policia {
    left: calc(50% - 1100px);
  }
}

.mensaje-popup {
  -webkit-animation: heartbeat 5s linear infinite;
  -moz-animation: heartbeat 5s linear infinite;
  -ms-animation: heartbeat 5s linear infinite;
  -o-animation: heartbeat 5s linear infinite;
  animation: heartbeat 5s linear infinite;
  animation-delay: 1s;
  width: 300px;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

@media only screen and (max-width: 767px) {
  .mensaje-popup {
    bottom: 20px;
    right: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .mensaje-popup {
    bottom: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }
}

.mensaje-popup button {
  display: block;
  background: white;
  width: 300px;
  font-size: 16px;
  line-height: 20px;
  color: #232323;
  padding: 0;
  text-align: left;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  .mensaje-popup button {
    width: 100%;
  }
}

.mensaje-popup button .nuevo-mensaje {
  padding: 15px 80px 0 15px;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 10px 0;
  display: block;
}

.mensaje-popup button .nuevo-mensaje .icon-mensaje {
  font-size: 24px;
  color: #2266b1;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
}

.mensaje-popup button .contenido-mensaje {
  padding: 0 80px 20px 15px;
  display: block;
  color: #626262;
}

.mensaje-popup button .contenido-mensaje strong {
  display: block;
  color: #232323;
}

.mensaje-popup button .leer {
  display: block;
  background: #efefef;
  padding: 5px 15px;
  color: #2266b1;
  font-weight: 600;
  text-transform: uppercase;
}

.mensaje-popup button img {
  position: absolute;
  bottom: calc(50% - 25px);
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Juego */
.main-juego {
  background: #c7e7e5;
  padding-bottom: 0;
  position: relative;
}

.main-juego #content {
  position: relative;
}

.main-juego .linea-juego {
  background-image: url("../img/linea-fondo-1.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: block;
  height: 400px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 200px;
}

@media only screen and (max-width: 1600px) {
  .main-juego .linea-juego {
    width: 1600px;
    left: calc(50% - 800px);
  }
}

.main-juego .linea-juego.linea-2 {
  background-image: url("../img/linea-fondo-2.svg");
  top: 1000px;
}

.main-juego .linea-juego.linea-3 {
  background-image: url("../img/linea-fondo-3.svg");
  top: 1800px;
}

.mensajes {
  padding-top: 0;
  overflow: hidden;
}

.mensajes .container .mensaje {
  display: block;
  background: white;
  padding: 30px 30px 40px 30px;
  position: relative;
  margin: 0 0 60px 0;
}

@media only screen and (max-width: 767px) {
  .mensajes .container .mensaje {
    padding: 20px 20px 30px 20px;
    margin: 0 auto 50px auto;
  }
}

@media only screen and (max-width: 480px) {
  .mensajes .container .mensaje {
    padding: 10px 10px 20px 10px;
  }
}

.mensajes .container .mensaje:after {
  position: absolute;
  bottom: -29px;
  left: 0;
  content: "";
  background-image: url("../img/chat.svg");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  display: block;
  height: 30px;
  width: 30px;
}

.mensajes .container .mensaje .nuevo-mensaje {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 20px 0;
  display: block;
  font-weight: 600;
}

@media only screen and (max-width: 480px) {
  .mensajes .container .mensaje .nuevo-mensaje {
    font-size: 13px;
  }
}

.mensajes .container .mensaje .nuevo-mensaje .icon-mensaje {
  font-size: 24px;
  color: #2266b1;
  position: relative;
  top: 5px;
  margin: 0 10px 0 0;
}

.mensajes .container .mensaje .nuevo-mensaje .recibido {
  color: #626262;
  font-weight: 500;
}

.mensajes .container .mensaje .contenido-mensaje {
  display: flex;
  flex-wrap: nowrap;
}

.mensajes .container .mensaje .contenido-mensaje .foto-doctora {
  width: 50px;
  height: 50px;
  background-image: url("../img/foto-perfil.jpg");
  background-size: 50px 50px;
  border-radius: 50%;
  display: block;
  background-repeat: none;
}

@media only screen and (max-width: 480px) {
  .mensajes .container .mensaje .contenido-mensaje .foto-doctora {
    width: 45px;
    height: 45px;
    background-size: 45px 45px;
  }
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje {
  width: calc(100% - 50px);
  padding: 0 0 0 20px;
}

@media only screen and (max-width: 480px) {
  .mensajes .container .mensaje .contenido-mensaje .texto-mensaje {
    width: calc(100% - 45px);
    padding: 0 0 0 15px;
  }
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje p {
  color: #626262;
  font-size: 16px;
  line-height: 24px;
}

@media only screen and (max-width: 480px) {
  .mensajes .container .mensaje .contenido-mensaje .texto-mensaje p {
    font-size: 14px;
    line-height: 20px;
  }
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje p .remitente {
  display: block;
  font-weight: 700;
  color: #232323;
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje p.texto-prueba {
  color: #232323;
  font-weight: 600;
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje p.texto-prueba i {
  width: 120px;
  border-bottom: 1px solid #232323;
  display: inline-block;
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje form {
  display: flex;
  flex-wrap: wrap;
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje form label {
  width: 33.3333%;
  padding: 10px 10px 0 0;
}

@media only screen and (max-width: 480px) {
  .mensajes .container .mensaje .contenido-mensaje .texto-mensaje form label {
    width: 100%;
    padding: 5px 5px 0 0;
  }
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje .descargar-pdf {
  font-size: 14px;
  line-height: 40px;
  color: #232323;
  font-weight: 600;
  display: table;
  background: #efefef;
  border-radius: 20px;
  position: relative;
  padding: 0 20px 0 50px;
}

@media only screen and (max-width: 480px) {
  .mensajes .container .mensaje .contenido-mensaje .texto-mensaje .descargar-pdf {
    font-size: 13px;
  }
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje .descargar-pdf:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  left: 20px;
  background-image: url("../img/pdf.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje .descargar-pdf:hover {
  background: #d9dad9;
}

@media only screen and (max-width: 1199px) {
  .mensajes .container .mensaje .contenido-mensaje .texto-mensaje .descargar-pdf:hover {
    background: #efefef;
  }
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje .info-penal {
  margin: 30px 0 10px 0;
  color: white;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #232323;
}

@media only screen and (max-width: 991px) {
  .mensajes .container .mensaje .contenido-mensaje .texto-mensaje .info-penal {
    font-size: 13px;
    line-height: 18px;
  }
}

@media only screen and (max-width: 600px) {
  .mensajes .container .mensaje .contenido-mensaje .texto-mensaje .info-penal {
    margin: 20px 0 10px 0;
    font-size: 12px;
    line-height: 16px;
  }
}

.mensajes .container .mensaje .contenido-mensaje .texto-mensaje .info-penal .icon-info {
  width: 20px;
  height: 20px;
  background: #feca28;
  color: #232323;
  border-radius: 12px;
  display: inline-block;
  line-height: 20px;
  font-size: 15px;
  text-align: center;
  margin: 0 5px 0 0;
}

.mutacion {
  background-image: url("../img/linea-mutacion.png");
  background-size: 100% 620px;
  background-repeat: no-repeat;
  display: block;
  height: 620px;
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
}

@media only screen and (max-width: 2200px) {
  .mutacion {
    height: 560px;
    width: 2200px;
    background-size: 100% auto;
    left: calc(50% - 1100px);
  }
}

@media only screen and (max-width: 1600px) {
  .mutacion {
    height: 420px;
    width: 1600px;
    background-size: 100% auto;
    left: calc(50% - 800px);
  }
}

@media only screen and (max-width: 480px) {
  .mutacion {
    height: 320px;
    width: 1200px;
    left: calc(50% - 580px);
  }
}

.mutacion .open-reto-2-1 {
  position: absolute;
  top: 30px;
  left: 48%;
  animation-delay: .5s;
}

@media only screen and (max-width: 1600px) {
  .mutacion .open-reto-2-1 {
    top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .mutacion .open-reto-2-1 {
    top: 0;
  }
}

.mutacion .open-reto-2-2 {
  position: absolute;
  top: 30px;
  left: 54%;
  animation-delay: 1s;
}

@media only screen and (max-width: 1600px) {
  .mutacion .open-reto-2-2 {
    top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .mutacion .open-reto-2-2 {
    top: 0;
  }
}

.mutacion .open-reto-2-3 {
  position: absolute;
  top: 110px;
  left: 51%;
  animation-delay: 1.5s;
}

@media only screen and (max-width: 2200px) {
  .mutacion .open-reto-2-3 {
    top: 90px;
  }
}

@media only screen and (max-width: 1600px) {
  .mutacion .open-reto-2-3 {
    top: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .mutacion .open-reto-2-3 {
    top: 40px;
  }
}

.mutacion .open-reto-2-4 {
  position: absolute;
  top: 110px;
  left: 57%;
  animation-delay: 2s;
}

@media only screen and (max-width: 2200px) {
  .mutacion .open-reto-2-4 {
    top: 90px;
  }
}

@media only screen and (max-width: 1600px) {
  .mutacion .open-reto-2-4 {
    top: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .mutacion .open-reto-2-4 {
    top: 40px;
  }
}

.mapamundi {
  background-image: url("../img/linea-fondo-viaje.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: block;
  height: 600px;
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
}

@media only screen and (max-width: 2200px) {
  .mapamundi {
    height: 560px;
    width: 2200px;
    background-size: 100% auto;
    left: calc(50% - 1100px);
  }
}

@media only screen and (max-width: 1600px) {
  .mapamundi {
    height: 420px;
    width: 1600px;
    background-size: 100% auto;
    left: calc(50% - 800px);
  }
}

@media only screen and (max-width: 600px) {
  .mapamundi {
    height: 320px;
    width: 1200px;
    left: calc(50% - 580px);
  }
}

.mapamundi .open-reto-4-1 {
  position: absolute;
  top: 25%;
  left: 45%;
  animation-delay: 0.3s;
}

.mapamundi .open-reto-4-2 {
  position: absolute;
  top: 35%;
  left: 54%;
  animation-delay: 0.6s;
}

.mapamundi .open-reto-4-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  animation-delay: 0.9s;
}

.mapamundi .open-reto-4-4 {
  position: absolute;
  top: 29%;
  left: 36%;
  animation-delay: 1.2s;
}

.mapamundi .open-reto-4-5 {
  position: absolute;
  top: 53%;
  left: 59%;
  animation-delay: 1.5s;
}

.mapamundi .open-reto-4-6 {
  position: absolute;
  top: 40%;
  left: 64%;
  animation-delay: 1.8s;
}

@media only screen and (max-width: 600px) {
  .mapamundi .open-reto-4-6 {
    left: 40%;
    top: 60%;
  }
}

.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.reto {
  background: white;
}

.reto .container .supertitulo {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 991px) {
  .reto .container .supertitulo {
    margin: 0 0 30px 0;
  }
}

@media only screen and (max-width: 767px) {
  .reto .container .supertitulo {
    margin: 0 0 20px 0;
  }
}

@media only screen and (max-width: 480px) {
  .reto .container .supertitulo {
    margin: 0 0 15px 0;
  }
}

.reto .container .listado-adn {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.reto .container .listado-adn li {
  width: 14.285%;
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
}

@media only screen and (max-width: 767px) {
  .reto .container .listado-adn li {
    width: 16.6666%;
  }
}

@media only screen and (max-width: 600px) {
  .reto .container .listado-adn li {
    width: 20%;
    margin: 20px 0 0 0;
  }
}

@media only screen and (max-width: 480px) {
  .reto .container .listado-adn li {
    width: 25%;
  }
}

.reto .container .listado-adn li img {
  max-width: 80px;
  margin: 0 auto;
}

.reto .container .secuencia {
  margin: 60px 0 0 0;
}

.reto .container .secuencia img {
  margin: 0 auto;
}

.reto .container .secuencia .titulo-secuencia {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  color: #03b254;
}

@media only screen and (max-width: 600px) {
  .reto .container .secuencia .titulo-secuencia {
    font-size: 22px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 480px) {
  .reto .container .secuencia .titulo-secuencia {
    font-size: 20px;
    line-height: 26px;
  }
}

.reto .container .secuencia.secuencia-1 img {
  max-width: 450px;
}

.reto .container .secuencia.secuencia-2 img, .reto .container .secuencia.secuencia-4 img {
  max-width: 900px;
}

.reto .container .secuencia.secuencia-3 img {
  max-width: 560px;
}

.reto .container .referencia-color {
  height: 20px;
  display: inline-block;
  width: auto;
  position: relative;
  top: 4px;
  margin: 0 0 0 5px;
}

.reto .container .microscopio-color {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 600px) {
  .reto .container .microscopio-color {
    width: calc(100% + 120px);
    margin-left: -120px;
  }
}

.reto.microscopio {
  padding-bottom: 0;
}

.reto.microscopio:after {
  content: "";
  width: 100%;
  height: 30px;
  background: #18264f;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.reto .pulmones {
  position: relative;
}

.reto .pulmones:after, .reto .pulmones:before {
  content: "";
  height: 15px;
  background: #03b254;
  width: 50%;
  display: block;
  position: absolute;
}

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

.reto .pulmones:before {
  top: 52.3px;
  left: 0;
}

.reto .pulmones:after {
  top: 595.3px;
  right: 0;
}

.reto .pulmones img {
  width: 900px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 991px) {
  .reto .pulmones img {
    width: 100%;
  }
}

/* Laberinto */
.laberinto {
  height: 540px;
  position: relative;
  width: 100%;
}

#container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-rows: 60% 40%;
}

#maze {
  position: absolute;
  width: 340px;
  height: 340px;
  /*background: #39a;

	align-self: center;
	justify-self: center;
	place-self: center center;*/
  top: 180px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mbox,
.controls {
  height: 100%;
  display: grid;
}

@media only screen and (max-width: 340px) {
  .mbox {
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.buttons {
  width: 210px;
  height: 140px;
  align-self: center;
  justify-self: center;
  display: grid;
  grid-template-rows: 70px 70px;
  grid-template-columns: 70px 70px 70px;
}

.btn {
  width: 60px;
  height: 60px;
  align-self: center;
  justify-self: center;
  cursor: pointer;
  border-radius: 8px;
  display: grid;
  background: #c7e7e5;
  font-family: "Raleway", sans-serif;
}

.chevron {
  height: 20px;
  width: 20px;
  align-self: center;
  justify-self: center;
  color: #222;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #232323;
}

#bu {
  grid-column-start: 2;
}

#bd {
  grid-column-start: 2;
  grid-row-start: 2;
}

#bl {
  grid-column-start: 1;
  grid-row-start: 2;
}

#br {
  grid-column-start: 3;
  grid-row-start: 2;
}

#thingie,
#home {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  /*background: #39a;
	transition: all .1s;*/
}

#home {
  line-height: 16px;
  font-weight: 700;
  background: white;
}

#home .emo {
  background: white;
}

.emo {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  background: #03b254;
  color: white;
}

.barrier {
  position: absolute;
  background: #232323;
}

#top {
  top: 20px;
  left: 20px;
  width: 300px;
  height: 2px;
}

#bottom {
  top: 320px;
  left: 20px;
  width: 302px;
  height: 2px;
}

/*style reset*/
button {
  display: inline-block;
  border: none;
  padding: none;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

button:hover,
button:focus {
  -webkit-appearance: none;
}

button:focus {
  outline: none;
}

button:active {
  transform: scale(1);
  -webkit-appearance: none;
}

/* Validar */
.codigo {
  background: #18264f;
}

.codigo .container .supertitulo span {
  display: block;
  color: white;
}

.codigo .container .instrucciones-codigo {
  padding: 60px 0 0 0;
}

@media only screen and (max-width: 1199px) {
  .codigo .container .instrucciones-codigo {
    padding: 45px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .codigo .container .instrucciones-codigo {
    padding: 30px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .codigo .container .instrucciones-codigo {
    padding: 20px 0 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .codigo .container .instrucciones-codigo {
    padding: 10px 0 0 0;
  }
}

@media only screen and (max-width: 480px) {
  .codigo .container .instrucciones-codigo {
    padding: 0;
  }
}

.codigo .container .instrucciones-codigo p {
  color: white;
}

.codigo .container form {
  display: flex;
  margin: 60px 0 0 0;
}

@media only screen and (max-width: 1199px) {
  .codigo .container form {
    margin: 45px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .codigo .container form {
    margin: 30px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .codigo .container form {
    margin: 20px 0 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .codigo .container form {
    margin: 10px 0 0 0;
  }
}

@media only screen and (max-width: 480px) {
  .codigo .container form {
    margin: 0;
  }
}

.codigo .container form input {
  background: white;
  border-radius: 30px;
  padding: 0 20px;
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 480px) {
  .codigo .container form input {
    margin: 0 10px 0 0;
  }
}

.codigo .container form ::placeholder {
  color: #626262;
  opacity: 1;
}

.codigo .container form :-ms-input-placeholder {
  color: #626262;
}

.codigo .container form ::-ms-input-placeholder {
  color: #626262;
}

.codigo .container form .boton {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
}

.codigo .container .info-codigo {
  margin: 20px 0 0 0;
  color: white;
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 480px) {
  .codigo .container .info-codigo {
    font-size: 13px;
  }
}

.codigo .container .info-codigo .icon-info {
  width: 20px;
  height: 20px;
  background: #feca28;
  color: #232323;
  border-radius: 12px;
  display: inline-block;
  line-height: 20px;
  font-size: 15px;
  text-align: center;
  margin: 0 5px 0 0;
}

/* Cuanta atras */
#counter {
  position: fixed;
  z-index: 31;
  width: 160px;
  height: 50px;
  background: #feca28;
  border-radius: 23px;
  display: block;
  top: 100px;
  right: 100px;
  padding: 10px 20px;
  text-align: right;
}

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

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

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

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

@media only screen and (max-width: 480px) {
  #counter {
    right: 10px;
    top: 70px;
  }
}

#counter:after {
  content: "";
  background: #03b254;
  display: block;
  position: absolute;
  height: 40px;
  width: 100px;
  top: 5px;
  left: 55px;
  border-radius: 20px;
  z-index: -1;
}

#counter:before {
  content: "";
  background-image: url("../img/favicon.svg");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
}

#counter .minutes, #counter .colon, #counter .seconds {
  color: white;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  display: inline-block;
  display: inline-block;
  text-align: right;
}

#counter .colon {
  width: 4px;
  margin: 0 0 0 2px;
}

#counter .minutes, #counter .seconds {
  width: 32px;
}

#counter.large {
  -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;
}

#counter.small {
  right: -40px;
  -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;
  width: 200px;
  padding: 10px 60px 10px 20px;
}

/* Avisos */
#avisos .aviso {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  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-weight: 700;
  color: white;
}

@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: #ee4d47;
  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: #03b254;
  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;
}

/* Popup */
.body-juego.game {
  -webkit-animation: fadeIn 0.6s ease-in;
  -moz-animation: fadeIn 0.6s ease-in;
  -ms-animation: fadeIn 0.6s ease-in;
  -o-animation: fadeIn 0.6s ease-in;
  animation: fadeIn 0.6s ease-in;
  background: #c7e7e5;
}

.no-overflow {
  overflow: hidden !important;
}

.open_popup {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: #feca28;
  padding: 0;
  position: relative;
  top: 5px;
  cursor: pointer;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 26px;
  -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;
  -webkit-animation: breathe 3s linear infinite;
  -moz-animation: breathe 3s linear infinite;
  -ms-animation: breathe 3s linear infinite;
  -o-animation: breathe 3s linear infinite;
  animation: breathe 3s linear infinite;
  /*&.open-reto-1-1 {
    position: absolute;
    top: 65%;
    left: 20%;
  }
  &.open-reto-1-2 {
    position: absolute;
    top: 20%;
    left: 20%;
    animation-delay: 1s;
  }*/
}

.open_popup span {
  font-size: 25px;
}

.open_popup i {
  position: absolute;
  line-height: 18px;
  position: absolute;
  font-size: 18px;
  font-weight: 700;
  padding: 4px 0 0 20px;
  font-family: "Raleway", sans-serif;
  color: #232323;
}

.open_popup:hover {
  background: #232323;
}

.open_popup:hover span {
  color: #feca28;
}

.open_popup.open-reto-1-3 {
  margin: 30px 0 0 0;
  /*position: absolute;
    top: 65%;
    right: 10%;
    animation-delay: 2s;*/
}

.open_popup.open-reto-3-1 {
  position: absolute;
  top: 55%;
  left: 25%;
}

.open_popup.open-reto-5-1 {
  position: absolute;
  top: 72%;
  left: 22%;
}

.box-pistas {
  margin: 30px auto 0 auto;
  display: table;
}

.popup_body {
  display: block;
  opacity: 0;
  z-index: -1234;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transform: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.popup_body.popup_body_show {
  z-index: 34;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transform: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  height: auto;
  overflow: auto;
}

.popup_body .popup_back {
  background: rgba(35, 35, 35, 0.9);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.popup_contain {
  position: relative;
  background: #feca28;
  max-width: 800px;
  margin: 100px auto;
  padding: 50px;
  border-radius: 20px;
}

@media only screen and (max-width: 991px) {
  .popup_contain {
    max-width: 700px;
    padding: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .popup_contain {
    max-width: 100%;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 40px 30px;
    border-radius: 0;
    overflow: auto;
  }
}

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

.popup_contain .popup_close {
  position: absolute;
  font-size: 20px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  background: transparent;
  -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) {
  .popup_contain .popup_close {
    top: 20px;
    right: 20px;
    position: fixed;
    border-radius: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .popup_contain .popup_close {
    top: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .popup_contain .popup_close {
    top: 5px;
    right: 5px;
  }
}

.popup_contain .popup_close span {
  line-height: 40px;
}

@media only screen and (max-width: 767px) {
  .popup_contain .popup_close span {
    position: relative;
    top: 3px;
  }
}

.popup_contain .popup_close:hover {
  background: #232323;
  color: #feca28;
}

@media only screen and (max-width: 1199px) {
  .popup_contain .popup_close:hover {
    color: #232323;
    background: transparent;
  }
}

.popup_contain .info-intro {
  font-weight: 700;
}

.popup_contain .info-intro .icon-info {
  display: inline-block;
  background: #232323;
  color: #feca28;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  margin: 0 10px 0 0;
}

.popup_contain p span {
  width: 28px;
  height: 28px;
  text-align: center;
  font-weight: 700;
  border-radius: 20px;
  display: inline-block;
  color: white;
}

@media only screen and (max-width: 991px) {
  .popup_contain p span {
    width: 25px;
    height: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .popup_contain p span {
    width: 22px;
    height: 22px;
  }
}

.popup_contain p span.adenina {
  background: #ea4e48;
}

.popup_contain p span.guanina {
  background: #655ca4;
}

.popup_contain p span.timina {
  background: #2ea956;
}

.popup_contain p span.citosina {
  background: #30a9e0;
}

.popup_contain.popup-foto {
  max-width: 900px;
  padding: 0;
}

@media only screen and (max-width: 991px) {
  .popup_contain.popup-foto {
    max-width: 700px;
  }
}

@media only screen and (max-width: 767px) {
  .popup_contain.popup-foto {
    max-width: 100%;
    height: auto;
  }
}

.popup_contain.popup-foto .popup_close {
  color: white;
}

.popup_contain.popup-foto .popup_close:hover {
  background: #232323;
  color: white;
}

@media only screen and (max-width: 767px) {
  .popup_contain.popup-foto .popup_close:hover {
    background: transparent;
  }
}

.popup_contain.popup-foto img {
  border-radius: 19px;
}

@media only screen and (max-width: 767px) {
  .popup_contain.popup-foto img {
    border-radius: 0;
  }
}

.popup_contain.tabla-periodica {
  max-width: 960px;
  background: white;
}

@media only screen and (max-width: 991px) {
  .popup_contain.tabla-periodica {
    max-width: 700px;
  }
}

@media only screen and (max-width: 767px) {
  .popup_contain.tabla-periodica {
    max-width: 100%;
    height: auto;
  }
}

.popup_contain.tabla-periodica .info-intro .icon-info {
  color: white;
}

.popup_contain.tabla-periodica img {
  max-width: 100% !important;
}

.popup_contain.tabla-periodica .popup_close:hover {
  color: white;
}

.img-desktop-480 {
  display: block;
}

@media only screen and (max-width: 480px) {
  .img-desktop-480 {
    display: none;
  }
}

.img-mobile-480 {
  display: none;
}

@media only screen and (max-width: 480px) {
  .img-mobile-480 {
    display: block;
  }
}

.img-desktop-600 {
  display: block;
}

@media only screen and (max-width: 600px) {
  .img-desktop-600 {
    display: none;
  }
}

.img-mobile-600 {
  display: none;
}

@media only screen and (max-width: 600px) {
  .img-mobile-600 {
    display: block;
  }
}

.pista-integrada {
  display: flex;
  align-items: center;
}

.pista-integrada b {
  font-size: 18px;
  line-height: 18px;
  margin: 0 0 0 20px;
}

/* Cookies */
.main-legal a {
  font-weight: 600;
  color: #03b254;
  text-decoration: underline;
}

.main-legal a:hover {
  color: #18264f;
}

@media only screen and (max-width: 1199px) {
  .main-legal a:hover {
    color: #03b254;
  }
}

.cookies {
  width: 260px;
  height: auto;
  padding: 30px;
  border-radius: 20px;
  background: white;
  position: fixed;
  z-index: 1237409274039;
  bottom: 30px;
  left: 30px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 991px) {
  .cookies {
    bottom: 20px;
    left: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .cookies {
    width: calc(100% - 20px);
    bottom: 10px;
    left: 10px;
    padding: 20px;
  }
}

.cookies p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin: 0 0 25px 0;
}

@media only screen and (max-width: 480px) {
  .cookies p {
    margin: 0 0 15px 0;
  }
}

.cookies p a {
  font-weight: 600;
  color: #03b254;
  text-decoration: underline;
  display: table;
}

.cookies p a:hover {
  color: #18264f;
}

@media only screen and (max-width: 1199px) {
  .cookies p a:hover {
    color: #03b254;
  }
}

.cookies button {
  font-family: "Raleway", sans-serif;
  background: #03b254;
  color: #232323;
  font-weight: 700;
  display: table;
  font-size: 14px;
  line-height: 36px;
  height: 36px;
  padding: 0 25px;
  border-radius: 30px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  -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: 480px) {
  .cookies button {
    padding: 0 20px;
    font-size: 13px;
  }
}

.cookies button:hover {
  background: white;
  color: #03b254;
}

@media only screen and (max-width: 1199px) {
  .cookies button:hover {
    background: #03b254;
    color: #232323;
  }
}

.cookies button.cookies__boton--no {
  display: none !important;
}

/* Alt test */
.oculto-1, .oculto-2, .oculto-3, .oculto-4, .oculto-5, .codigo-test, .oculto-1-error, .oculto-2-error, .oculto-3-error, .oculto-4-error, .oculto-5-error {
  display: none !important;
}

.oculto-1.visible, .oculto-2.visible, .oculto-3.visible, .oculto-4.visible, .oculto-5.visible, .codigo-test.visible, .oculto-1-error.visible, .oculto-2-error.visible, .oculto-3-error.visible, .oculto-4-error.visible, .oculto-5-error.visible {
  display: block !important;
}

.test-error p {
  color: white !important;
  font-weight: 600 !important;
  margin: 20px 0 0 0 !important;
  display: table;
  padding: 2px 12px;
  border-radius: 20px;
}

.oculto-1 .test-error p, .oculto-2 .test-error p, .oculto-3 .test-error p, .oculto-4 .test-error p, .oculto-5 .test-error p, .codigo-test .test-error p {
  background: #03b254 !important;
}

.oculto-1-error .test-error p, .oculto-2-error .test-error p, .oculto-3-error .test-error p, .oculto-4-error .test-error p, .oculto-5-error .test-error p {
  background: #ee4d47 !important;
}

.marca-personal {
  padding: 10px 30px;
  border-radius: 50px;
  background: white;
  display: table;
}

.marca-personal p {
  margin: 0;
  color: #feca28 !important;
  line-height: 1 !important;
}

/* Animaciones */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@keyframes heartbeat {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  19% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  21% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  34% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  35% {
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  36% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes breathe {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -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);
  }
}
