@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800&display=swap);@import url(https://fonts.googleapis.com/css?family=Rubik:400,500,700,500&display=swap);@import url(https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap);@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
@charset "UTF-8";

/**
 * Foundation for Sites by ZURB
 * Version 6.2.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS and IE text size adjust after device orientation change,
   *    without disabling user zoom.
   */

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
   * Remove default margin.
   */

body {
  margin: 0;
}

/* HTML5 display definitions
     ========================================================================== */

/**
   * Correct `block` display not defined for any HTML5 element in IE 8/9.
   * Correct `block` display not defined for `details` or `summary` in IE 10/11
   * and Firefox.
   * Correct `block` display not defined for `main` in IE 11.
   */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
   * 1. Correct `inline-block` display not defined in IE 8/9.
   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
   */

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
   * Prevent modern browsers from displaying `audio` without controls.
   * Remove excess height in iOS 5 devices.
   */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
   */

[hidden],
template {
  display: none;
}

/* Links
     ========================================================================== */

/**
   * Remove the gray background color from active links in IE 10.
   */

a {
  background-color: transparent;
}

/**
   * Improve readability of focused elements when they are also in an
   * active/hover state.
   */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
     ========================================================================== */

/**
   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
   */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
   */

b,
strong {
  font-weight: bold;
}

/**
   * Address styling not present in Safari and Chrome.
   */

dfn {
  font-style: italic;
}

/**
   * Address variable `h1` font-size and margin within `section` and `article`
   * contexts in Firefox 4+, Safari, and Chrome.
   */

h1 {
  font-size: 2em;
  /*margin: 0.67em 0; */
}

/**
   * Address styling not present in IE 8/9.
   */

mark {
  background: #ff0;
  color: #000;
}

/**
   * Address inconsistent and variable font size in all browsers.
   */

small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
   */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
     ========================================================================== */

/**
   * Remove border when inside `a` element in IE 8/9/10.
   */

img {
  border: 0;
}

/**
   * Correct overflow not hidden in IE 9/10/11.
   */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
     ========================================================================== */

/**
   * Address margin not present in IE 8/9 and Safari.
   */

figure {
  margin: 1em 40px;
}

/**
   * Address differences between Firefox and other browsers.
   */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
   * Contain overflow in all browsers.
   */

pre {
  overflow: auto;
}

/**
   * Address odd `em`-unit font size rendering in all browsers.
   */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
     ========================================================================== */

/**
   * Known limitation: by default, Chrome and Safari on OS X allow very limited
   * styling of `select`, unless a `border` property is set.
   */

/**
   * 1. Correct color not being inherited.
   *    Known issue: affects color of disabled elements.
   * 2. Correct font properties not being inherited.
   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
   */

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */

button {
  overflow: visible;
}

/**
   * Address inconsistent `text-transform` inheritance for `button` and `select`.
   * All other form control elements do not inherit `text-transform` values.
   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
   * Correct `select` style inheritance in Firefox.
   */

button,
select {
  text-transform: none;
}

/**
   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
   *    and `video` controls.
   * 2. Correct inability to style clickable `input` types in iOS.
   * 3. Improve usability and consistency of cursor style between image-type
   *    `input` and others.
   */

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
   * Re-set default cursor for disabled elements.
   */

button[disabled],
html input[disabled] {
  cursor: not-allowed;
}

/**
   * Remove inner padding and border in Firefox 4+.
   */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
   * the UA stylesheet.
   */

input {
  line-height: normal;
}

/**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   */

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
   * `font-size` values of the `input`, it causes the cursor style of the
   * decrement button to change from `default` to `text`.
   */

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
   */

input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * Define consistent border, margin, and padding.
   * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
   */

/* fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  } */

/**
   * 1. Correct `color` not being inherited in IE 8/9/10/11.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   */

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Remove default vertical scrollbar in IE 8/9/10/11.
   */

textarea {
  overflow: auto;
}

/**
   * Don't inherit the `font-weight` (applied by a rule above).
   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
   */

optgroup {
  font-weight: bold;
}

/* Tables
     ========================================================================== */

/**
   * Remove most spacing between table cells.
   */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  background: #fefefe;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
}

textarea {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

select {
  width: 100%;
  border-radius: 3px;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 3px;
  line-height: 1;
}

[data-whatinput=mouse] button {
  outline: 0;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.row {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: row wrap;
}

.row .row {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.row.expanded {
  max-width: none;
}

.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}

.column,
.columns {
  flex: 1 1 0px;
  padding-left: 0;
  padding-right: 0;
  min-width: initial;
}

.column.row.row,
.row.row.columns {
  float: none;
  display: block;
}

.row .column.row.row,
.row .row.row.columns {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.small-1 {
  flex: 0 0 4.16667%;
  max-width: 4.16667%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.small-offset-1 {
  margin-left: 4.16667%;
}

.small-3 {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.small-offset-2 {
  margin-left: 8.33333%;
}

.small-4 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.small-offset-3 {
  margin-left: 12.5%;
}

.small-5 {
  flex: 0 0 20.83333%;
  max-width: 20.83333%;
}

.small-offset-4 {
  margin-left: 16.66667%;
}

.small-6 {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-offset-5 {
  margin-left: 20.83333%;
}

.small-7 {
  flex: 0 0 29.16667%;
  max-width: 29.16667%;
}

.small-offset-6 {
  margin-left: 25%;
}

.small-8 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.small-offset-7 {
  margin-left: 29.16667%;
}

.small-9 {
  flex: 0 0 37.5%;
  max-width: 37.5%;
}

.small-offset-8 {
  margin-left: 33.33333%;
}

.small-10 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.small-offset-9 {
  margin-left: 37.5%;
}

.small-11 {
  flex: 0 0 45.83333%;
  max-width: 45.83333%;
}

.small-offset-10 {
  margin-left: 41.66667%;
}

.small-12 {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-offset-11 {
  margin-left: 45.83333%;
}

.small-13 {
  flex: 0 0 54.16667%;
  max-width: 54.16667%;
}

.small-offset-12 {
  margin-left: 50%;
}

.small-14 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.small-offset-13 {
  margin-left: 54.16667%;
}

.small-15 {
  flex: 0 0 62.5%;
  max-width: 62.5%;
}

.small-offset-14 {
  margin-left: 58.33333%;
}

.small-16 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.small-offset-15 {
  margin-left: 62.5%;
}

.small-17 {
  flex: 0 0 70.83333%;
  max-width: 70.83333%;
}

.small-offset-16 {
  margin-left: 66.66667%;
}

.small-18 {
  flex: 0 0 75%;
  max-width: 75%;
}

.small-offset-17 {
  margin-left: 70.83333%;
}

.small-19 {
  flex: 0 0 79.16667%;
  max-width: 79.16667%;
}

.small-offset-18 {
  margin-left: 75%;
}

.small-20 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.small-offset-19 {
  margin-left: 79.16667%;
}

.small-21 {
  flex: 0 0 87.5%;
  max-width: 87.5%;
}

.small-offset-20 {
  margin-left: 83.33333%;
}

.small-22 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.small-offset-21 {
  margin-left: 87.5%;
}

.small-23 {
  flex: 0 0 95.83333%;
  max-width: 95.83333%;
}

.small-offset-22 {
  margin-left: 91.66667%;
}

.small-24 {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-offset-23 {
  margin-left: 95.83333%;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

.small-up-1 {
  flex-wrap: wrap;
}

.small-up-1 > .column,
.small-up-1 > .columns {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-up-2 {
  flex-wrap: wrap;
}

.small-up-2 > .column,
.small-up-2 > .columns {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-up-3 {
  flex-wrap: wrap;
}

.small-up-3 > .column,
.small-up-3 > .columns {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.small-up-4 {
  flex-wrap: wrap;
}

.small-up-4 > .column,
.small-up-4 > .columns {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-up-5 {
  flex-wrap: wrap;
}

.small-up-5 > .column,
.small-up-5 > .columns {
  flex: 0 0 20%;
  max-width: 20%;
}

.small-up-6 {
  flex-wrap: wrap;
}

.small-up-6 > .column,
.small-up-6 > .columns {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.small-up-7 {
  flex-wrap: wrap;
}

.small-up-7 > .column,
.small-up-7 > .columns {
  flex: 0 0 14.28571%;
  max-width: 14.28571%;
}

.small-up-8 {
  flex-wrap: wrap;
}

.small-up-8 > .column,
.small-up-8 > .columns {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.small-collapse > .column,
.small-collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}

.small-uncollapse > .column,
.small-uncollapse > .columns {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 40em) {
  .medium-1 {
    flex: 0 0 4.16667%;
    max-width: 4.16667%;
  }

  .medium-offset-0 {
    margin-left: 0%;
  }

  .medium-2 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .medium-offset-1 {
    margin-left: 4.16667%;
  }

  .medium-3 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .medium-offset-2 {
    margin-left: 8.33333%;
  }

  .medium-4 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .medium-offset-3 {
    margin-left: 12.5%;
  }

  .medium-5 {
    flex: 0 0 20.83333%;
    max-width: 20.83333%;
  }

  .medium-offset-4 {
    margin-left: 16.66667%;
  }

  .medium-6 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .medium-offset-5 {
    margin-left: 20.83333%;
  }

  .medium-7 {
    flex: 0 0 29.16667%;
    max-width: 29.16667%;
  }

  .medium-offset-6 {
    margin-left: 25%;
  }

  .medium-8 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .medium-offset-7 {
    margin-left: 29.16667%;
  }

  .medium-9 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }

  .medium-offset-8 {
    margin-left: 33.33333%;
  }

  .medium-10 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .medium-offset-9 {
    margin-left: 37.5%;
  }

  .medium-11 {
    flex: 0 0 45.83333%;
    max-width: 45.83333%;
  }

  .medium-offset-10 {
    margin-left: 41.66667%;
  }

  .medium-12 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .medium-offset-11 {
    margin-left: 45.83333%;
  }

  .medium-13 {
    flex: 0 0 54.16667%;
    max-width: 54.16667%;
  }

  .medium-offset-12 {
    margin-left: 50%;
  }

  .medium-14 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .medium-offset-13 {
    margin-left: 54.16667%;
  }

  .medium-15 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }

  .medium-offset-14 {
    margin-left: 58.33333%;
  }

  .medium-16 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .medium-offset-15 {
    margin-left: 62.5%;
  }

  .medium-17 {
    flex: 0 0 70.83333%;
    max-width: 70.83333%;
  }

  .medium-offset-16 {
    margin-left: 66.66667%;
  }

  .medium-18 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .medium-offset-17 {
    margin-left: 70.83333%;
  }

  .medium-19 {
    flex: 0 0 79.16667%;
    max-width: 79.16667%;
  }

  .medium-offset-18 {
    margin-left: 75%;
  }

  .medium-20 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .medium-offset-19 {
    margin-left: 79.16667%;
  }

  .medium-21 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }

  .medium-offset-20 {
    margin-left: 83.33333%;
  }

  .medium-22 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .medium-offset-21 {
    margin-left: 87.5%;
  }

  .medium-23 {
    flex: 0 0 95.83333%;
    max-width: 95.83333%;
  }

  .medium-offset-22 {
    margin-left: 91.66667%;
  }

  .medium-24 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .medium-offset-23 {
    margin-left: 95.83333%;
  }

  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }

  .medium-up-1 {
    flex-wrap: wrap;
  }

  .medium-up-1 > .column,
  .medium-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .medium-up-2 {
    flex-wrap: wrap;
  }

  .medium-up-2 > .column,
  .medium-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .medium-up-3 {
    flex-wrap: wrap;
  }

  .medium-up-3 > .column,
  .medium-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .medium-up-4 {
    flex-wrap: wrap;
  }

  .medium-up-4 > .column,
  .medium-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .medium-up-5 {
    flex-wrap: wrap;
  }

  .medium-up-5 > .column,
  .medium-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .medium-up-6 {
    flex-wrap: wrap;
  }

  .medium-up-6 > .column,
  .medium-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .medium-up-7 {
    flex-wrap: wrap;
  }

  .medium-up-7 > .column,
  .medium-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }

  .medium-up-8 {
    flex-wrap: wrap;
  }

  .medium-up-8 > .column,
  .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media screen and (min-width: 40em) and (min-width: 40em) {
  .medium-expand {
    flex: 1 1 0px;
  }
}

.row.medium-unstack > .column,
.row.medium-unstack > .columns {
  flex: 0 0 100%;
}

@media screen and (min-width: 40em) {
  .row.medium-unstack > .column,
  .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media screen and (min-width: 40em) {
  .medium-collapse > .column,
  .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }

  .medium-uncollapse > .column,
  .medium-uncollapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 64em) {
  .large-1 {
    flex: 0 0 4.16667%;
    max-width: 4.16667%;
  }

  .large-offset-0 {
    margin-left: 0%;
  }

  .large-2 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .large-offset-1 {
    margin-left: 4.16667%;
  }

  .large-3 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .large-offset-2 {
    margin-left: 8.33333%;
  }

  .large-4 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .large-offset-3 {
    margin-left: 12.5%;
  }

  .large-5 {
    flex: 0 0 20.83333%;
    max-width: 20.83333%;
  }

  .large-offset-4 {
    margin-left: 16.66667%;
  }

  .large-6 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .large-offset-5 {
    margin-left: 20.83333%;
  }

  .large-7 {
    flex: 0 0 29.16667%;
    max-width: 29.16667%;
  }

  .large-offset-6 {
    margin-left: 25%;
  }

  .large-8 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .large-offset-7 {
    margin-left: 29.16667%;
  }

  .large-9 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }

  .large-offset-8 {
    margin-left: 33.33333%;
  }

  .large-10 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .large-offset-9 {
    margin-left: 37.5%;
  }

  .large-11 {
    flex: 0 0 45.83333%;
    max-width: 45.83333%;
  }

  .large-offset-10 {
    margin-left: 41.66667%;
  }

  .large-12 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .large-offset-11 {
    margin-left: 45.83333%;
  }

  .large-13 {
    flex: 0 0 54.16667%;
    max-width: 54.16667%;
  }

  .large-offset-12 {
    margin-left: 50%;
  }

  .large-14 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .large-offset-13 {
    margin-left: 54.16667%;
  }

  .large-15 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }

  .large-offset-14 {
    margin-left: 58.33333%;
  }

  .large-16 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .large-offset-15 {
    margin-left: 62.5%;
  }

  .large-17 {
    flex: 0 0 70.83333%;
    max-width: 70.83333%;
  }

  .large-offset-16 {
    margin-left: 66.66667%;
  }

  .large-18 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .large-offset-17 {
    margin-left: 70.83333%;
  }

  .large-19 {
    flex: 0 0 79.16667%;
    max-width: 79.16667%;
  }

  .large-offset-18 {
    margin-left: 75%;
  }

  .large-20 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .large-offset-19 {
    margin-left: 79.16667%;
  }

  .large-21 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }

  .large-offset-20 {
    margin-left: 83.33333%;
  }

  .large-22 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .large-offset-21 {
    margin-left: 87.5%;
  }

  .large-23 {
    flex: 0 0 95.83333%;
    max-width: 95.83333%;
  }

  .large-offset-22 {
    margin-left: 91.66667%;
  }

  .large-24 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .large-offset-23 {
    margin-left: 95.83333%;
  }

  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }

  .large-up-1 {
    flex-wrap: wrap;
  }

  .large-up-1 > .column,
  .large-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .large-up-2 {
    flex-wrap: wrap;
  }

  .large-up-2 > .column,
  .large-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .large-up-3 {
    flex-wrap: wrap;
  }

  .large-up-3 > .column,
  .large-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .large-up-4 {
    flex-wrap: wrap;
  }

  .large-up-4 > .column,
  .large-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .large-up-5 {
    flex-wrap: wrap;
  }

  .large-up-5 > .column,
  .large-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .large-up-6 {
    flex-wrap: wrap;
  }

  .large-up-6 > .column,
  .large-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .large-up-7 {
    flex-wrap: wrap;
  }

  .large-up-7 > .column,
  .large-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }

  .large-up-8 {
    flex-wrap: wrap;
  }

  .large-up-8 > .column,
  .large-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    flex: 1 1 0px;
  }
}

.row.large-unstack > .column,
.row.large-unstack > .columns {
  flex: 0 0 100%;
}

@media screen and (min-width: 64em) {
  .row.large-unstack > .column,
  .row.large-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media screen and (min-width: 64em) {
  .large-collapse > .column,
  .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }

  .large-uncollapse > .column,
  .large-uncollapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
}

.shrink {
  flex: 0 0 auto;
  max-width: 100%;
}

.column.align-top,
.align-top.columns {
  align-self: flex-start;
}

.column.align-bottom,
.align-bottom.columns {
  align-self: flex-end;
}

.column.align-middle,
.align-middle.columns {
  align-self: center;
}

.column.align-stretch,
.align-stretch.columns {
  align-self: stretch;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }
}

@media screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }
}

.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  -webkit-animation-name: shake-7;
  animation-name: shake-7;
}

@-webkit-keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }

  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }

  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  -webkit-animation-name: spin-cw-1turn;
  animation-name: spin-cw-1turn;
}

@-webkit-keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }

  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  -webkit-animation-name: spin-cw-1turn;
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  -webkit-animation-name: wiggle-7deg;
  animation-name: wiggle-7deg;
}

@-webkit-keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }

  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }

  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }

  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }

  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.slow {
  -webkit-animation-duration: 750ms !important;
  animation-duration: 750ms !important;
}

.fast {
  -webkit-animation-duration: 250ms !important;
  animation-duration: 250ms !important;
}

.linear {
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}

.ease {
  -webkit-animation-timing-function: ease !important;
  animation-timing-function: ease !important;
}

.ease-in {
  -webkit-animation-timing-function: ease-in !important;
  animation-timing-function: ease-in !important;
}

.ease-out {
  -webkit-animation-timing-function: ease-out !important;
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  -webkit-animation-timing-function: ease-in-out !important;
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  -webkit-animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  -webkit-animation-delay: 300ms !important;
  animation-delay: 300ms !important;
}

.long-delay {
  -webkit-animation-delay: 700ms !important;
  animation-delay: 700ms !important;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */

.slick-loading .slick-list {
  background: #fff url(/images/vendor/slick-carousel/slick/ajax-loader.gif?c5cd7f5300576ab4c88202b42f6ded62) center center no-repeat;
}

/* Icons */

@font-face {
  font-family: "slick";
  src: url(/fonts/vendor/slick-carousel/slick/slick.eot?ced611daf7709cc778da928fec876475);
  src: url(/fonts/vendor/slick-carousel/slick/slick.eot?ced611daf7709cc778da928fec876475) format("embedded-opentype"), url(/fonts/vendor/slick-carousel/slick/slick.woff?b7c9e1e479de3b53f1e4e30ebac2403a) format("woff"), url(/fonts/vendor/slick-carousel/slick/slick.ttf?d41f55a78e6f49a5512878df1737e58a) format("truetype"), url(/fonts/vendor/slick-carousel/slick/slick.svg?f97e3bbf73254b0112091d0192f17aec) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "\2190";
}

[dir=rtl] .slick-prev:before {
  content: "\2192";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "\2192";
}

[dir=rtl] .slick-next:before {
  content: "\2190";
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2022";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Transition effects */

.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */

@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

@supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
}
}

/* Share */

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */

@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
  }

  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }

  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

@font-face {
  font-family: "MyWebFont";
  src: url("/fonts/Adlery_TRIAL.ttf") format("truetype");
}

html {
  background: #0464cc;
  width: 100%;
  left: 0;
  top: 0;
  max-height: 100vh;
}

body {
  background: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  min-height: 100vh;
  position: relative;
}

#mainwrapper-container {
  height: 100vh;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: relative;
}

@media screen and (max-width: 1023px) {
  #mainwrapper-container {
    height: 92vh;
  }
}

.blocker {
  z-index: 1002;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.justify-center {
  justify-content: center;
}

.text-justify {
  text-align: justify;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn {
  border: 0;
  font-size: 0.95em;
}

.btn.blue {
  background: #0464cc;
  color: #fff;
  font-size: 0.85em;
  padding: 0 0.4em;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn.blue:hover {
  background: #034b9a;
}

.btn.blue-text {
  border-bottom: 4px solid #0464cc;
  border-radius: 0;
  color: #0464cc;
  font-size: 0.85em;
  font-weight: 700;
  padding: 0 0.6em;
  transition: 0.3s;
}

.btn.blue-text:hover {
  color: #034b9a;
}

.is-invalid {
  border: 0.5px solid #e60000 !important;
}

.required {
  color: #cc0000;
  margin: -0.5em 0 0.2em;
}

.text-blue {
  color: #0464cc;
  text-transform: uppercase;
}

.text-red {
  color: #f50000;
}

[type=number],
[type=tel],
[type=text],
[type=email],
[type=password] {
  border: 1px solid #0464cc;
  outline: none;
  text-indent: 0.5em;
}

[type=number]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=email]:focus,
[type=password]:focus {
  border: 1px solid #0458b3;
}

select {
  background: #fff;
  border: 1px solid #0464cc;
  border-radius: 0;
  color: #666666;
  outline: none;
  padding: 0.2em 0.5em;
}

select.active {
  color: black;
}

textarea {
  border: 1px solid #0464cc;
  outline: none;
  padding: 0.5em;
  resize: none;
}

textarea:focus {
  border: 1px solid #0458b3;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.mb-1 {
  margin-bottom: 0.5em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-4 {
  margin-bottom: 4em;
}

.container {
  margin: 0 auto;
  max-width: 80vw;
  overflow: hidden;
  padding: 0 1em;
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 90vw;
  }
}

@media screen and (max-width: 720px) {
  .container {
    max-width: 100vw;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
}

h1 {
  font-family: "Rubik", sans-serif;
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  h1 {
    font-size: 2em;
  }
}

h5,
h6 {
  margin: 0;
}

h3 {
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

h4 {
  color: #0464cc;
  font-family: "Rubik", sans-serif;
  margin: 1em 0 0;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

button {
  outline: 0;
}

p {
  line-height: 1.2;
  margin: 0.2em 0;
}

.blocqu {
  display: flex;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

.hidden {
  display: none;
}

.menu {
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1024px) {
  .menu {
    display: inline-block;
  }
}

.menu .bar {
  background-color: #fff;
  height: 5px;
  margin: 6px 0 6px auto;
  transition: 0.4s;
  width: 35px;
}

.menu .change.bar-1 {
  -ms-transform: rotate(-45deg) translate(-8px, 6px);
  -moz-transform: rotate(-45deg) translate(-8px, 6px);
  -webkit-transform: rotate(-45deg) translate(-8px, 6px);
  -o-transform: rotate(-45deg) translate(-8px, 6px);
}

.menu .change.bar-2 {
  filter: alpha(opacity=0);
  opacity: 0;
}

.menu .change.bar-3 {
  -ms-transform: rotate(45deg) translate(-8px, -8px);
  -moz-transform: rotate(45deg) translate(-8px, -8px);
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  -o-transform: rotate(45deg) translate(-8px, -8px);
}

@media screen and (max-width: 1024px) {
  .nav-bar-mobile {
    display: flex;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.3);
    height: 100vh;
    right: -100%;
    position: fixed;
    top: 0%;
    transition: all 0.3s;
    width: 100%;
    color: black;
  }
}

.nav-bar-mobile.show {
  left: 0;
}

nav {
  display: block;
}

nav .menu-back,
nav .bar-separate,
nav .carrito-blue,
nav .fb-blue,
nav .ig-blue {
  display: none;
}

nav.show {
  left: 0;
}

nav ul {
  display: flex;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  nav ul {
    text-align: left;
    padding: 0 1.5em;
  }
}

@media screen and (max-width: 1024px) {
  nav ul li {
    font-size: 1.2em;
    margin: 1em 0;
  }
}

nav ul a {
  letter-spacing: 0.15em;
}

nav .active {
  border-bottom: 2px solid #fff;
  font-weight: 600;
  padding: 0 0.2em 0 0.3em;
  padding-bottom: 0.1em;
  text-align: center;
}

nav .menu-items {
  margin: 1em 0 0.5em;
  transition: 0.3s;
}

@media screen and (max-width: 1024px) {
  nav .menu-items {
    flex: 1 0 100%;
    order: 1;
    max-height: 45vh;
  }
}

nav .menu-items ul {
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 1024px) {
  nav .menu-items ul {
    display: block;
  }
}

nav span {
  display: none;
}

@media screen and (max-width: 1024px) {
  nav span {
    display: inline-block;
  }
}

nav .cart-items {
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  nav .cart-items {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 1024px) {
  nav .mobile-cart {
    display: none;
  }
}

nav .social-links {
  display: flex;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  transition: 0.3s;
}

@media screen and (max-width: 1024px) {
  nav .social-links {
    display: block;
    height: auto;
    vertical-align: baseline;
  }
}

@media screen and (max-width: 720px) {
  nav .social-links {
    font-size: 0.8em;
  }
}

nav .social-links ul {
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

@media screen and (max-width: 1024px) {
  nav .social-links ul {
    display: block;
  }
}

nav .social-links li {
  padding: 0 0.7em;
}

@media screen and (max-width: 1024px) {
  nav .social-links li {
    display: block;
    padding: 0;
  }
}

@media screen and (max-width: 720px) {
  nav .social-links li {
    border-right: 0;
    display: block;
    margin: 0.3em 0;
  }
}

nav .social-links li:last-child {
  border-right: 0;
  padding: 0 0 0 0.7em;
}

@media screen and (max-width: 1024px) {
  nav .social-links li:last-child {
    padding: 0;
  }
}

nav .buscador {
  display: none;
}

@media screen and (max-width: 1024px) {
  nav .buscador {
    display: block;
  }
}

nav .ingresar {
  display: none;
}

@media screen and (max-width: 1024px) {
  nav .ingresar {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  nav .social-ul img {
    display: none;
  }
}

nav .actions-buttons {
  display: flex;
  font-size: 0.8em;
  padding: 0 3em 0 0;
}

@media screen and (max-width: 1024px) {
  nav .actions-buttons {
    font-size: 1em;
    padding: 0;
  }
}

nav .actions-buttons li {
  border-right: 1px solid #fff;
  padding: 0 1.5em;
}

nav .actions-buttons li:first-child {
  padding: 0 1.5em 0 0;
}

@media screen and (max-width: 1024px) {
  nav .actions-buttons li:first-child {
    padding: 0;
  }
}

nav .actions-buttons li:last-child {
  padding: 0 0 0 1.5em;
}

@media screen and (max-width: 1024px) {
  nav .actions-buttons li:last-child {
    padding: 0;
  }
}

nav .actions-buttons li.loupe {
  align-items: center;
  align-self: center;
  border-right: 0;
  display: flex;
  padding: 0 0.5em 0 0;
}

@media screen and (max-width: 1024px) {
  nav .actions-buttons li.loupe {
    display: none;
  }
}

nav .actions-buttons li.loupe [type=text] {
  background: transparent;
  border: 0;
  border-bottom: 1.25px solid #fff;
  color: #fff;
  text-indent: 2px;
  width: 150px;
}

nav .actions-buttons li.loupe [type=text]::-webkit-input-placeholder {
  color: #fff;
}

nav .actions-buttons li.loupe [type=text]::-moz-placeholder {
  color: #fff;
}

nav .actions-buttons li.loupe [type=text]:-ms-input-placeholder {
  color: #fff;
}

nav .actions-buttons li.loupe [type=text]::-ms-input-placeholder {
  color: #fff;
}

nav .actions-buttons li.loupe [type=text]::placeholder {
  color: #fff;
}

nav .actions-buttons li.loupe img {
  max-height: 1.35em;
  max-width: 1.35em;
}

nav .actions-buttons li.loupe button:hover {
  background: transparent;
}

nav .actions-buttons li button {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

header {
  background: #0464cc;
  color: #fff;
  left: 0;
  padding: 1em 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 1001;
}

@media screen and (max-width: 1024px) {
  header {
    padding: 1.5em 0;
  }
}

header img {
  max-height: 1em;
  max-width: 1em;
}

header img.logo {
  max-height: none;
  max-width: 10em;
  position: absolute;
  transition: 0.3s;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  header img.logo {
    max-width: 9em;
    top: 10%;
  }
}

@media screen and (max-width: 720px) {
  header img.logo {
    max-width: 7em;
  }
}

header.scroll-header .logo {
  max-width: 5em;
}

header.scroll-header .menu-items {
  margin: 0;
}

header.scroll-header .social-links {
  filter: alpha(opacity=0);
  opacity: 0;
  height: 0;
  overflow: hidden;
  width: 0;
}

@media screen and (max-width: 1024px) {
  header.scroll-header .social-links {
    filter: alpha(opacity=100);
    opacity: 1;
    height: auto;
    overflow: visible;
    width: auto;
  }
}

header .carrito-white {
  max-height: 1.2em;
  max-width: 1.2em;
}

header .carrito {
  display: none;
}

@media screen and (max-width: 1024px) {
  header .carrito {
    display: inline-block;
    padding: 0.2em 1em 0.2em 0;
  }
}

header .carrito img {
  max-height: 1.5em;
  max-width: 1.5em;
}

@media screen and (max-width: 1024px) {
  header nav {
    background: #fff;
    color: #0464cc;
    display: none;
    height: 100vh;
    position: fixed;
    right: 0%;
    top: 0%;
    width: 50%;
  }

  header nav .bar-separate {
    background: #0464cc;
    display: block;
    height: 1px;
    margin: 0 auto;
    width: 90%;
  }

  header nav .menu-back {
    align-items: center;
    background: #0464cc;
    color: #fff;
    display: flex;
    padding: 1em;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
  }

  header nav .menu-back h3 {
    margin: 0 0.5em;
    line-height: 0;
  }

  header nav .menu-back img {
    transform: rotate(180deg);
    max-height: 1.75em;
    max-width: 1.75em;
  }

  header nav .buscador {
    padding: 1em 1.5em 0;
  }
}

@media screen and (max-width: 1024px) and (max-width: 720px) {
  header nav .buscador {
    padding: 1em 1em 0 2em;
  }
}

@media screen and (max-width: 1024px) {
  header nav .buscador input {
    border: 0;
    border-bottom: 2px solid #0464cc;
    color: #0464cc;
    font-family: "Open Sans", sans-serif;
    padding: 0.25em 0;
    text-indent: 3px;
    width: 100%;
  }

  header nav .buscador input::-webkit-input-placeholder {
    color: #0464cc;
  }

  header nav .buscador input::-moz-placeholder {
    color: #0464cc;
  }

  header nav .buscador input:-ms-input-placeholder {
    color: #0464cc;
  }

  header nav .buscador input::-ms-input-placeholder {
    color: #0464cc;
  }

  header nav .buscador input::placeholder {
    color: #0464cc;
  }

  header nav .buscador input:focus {
    border: 0;
    border-bottom: 2px solid #0464cc;
  }
}

@media screen and (max-width: 1024px) and (max-width: 720px) {
  header nav .ingresar {
    padding: 0.25em 1.5em 0 2em;
  }
}

@media screen and (max-width: 1024px) {
  header nav .ingresar .btn-ingresar {
    margin: 1em 0 0.5em;
  }

  header nav .ingresar .btn-ingresar span {
    align-items: center;
    display: flex;
    font-size: 0.9em;
    letter-spacing: 0.15em;
  }
}

@media screen and (max-width: 1024px) and (max-width: 720px) {
  header nav .ingresar .btn-ingresar span {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 1024px) {
  header nav .ingresar img {
    margin: 0 0 0 1em;
    max-height: 0.75em;
    max-width: 0.75em;
    padding: 0;
    transform: rotate(270deg);
  }
}

@media screen and (max-width: 1024px) {
  header nav .actions-buttons {
    display: none;
    border: 1px solid white;
    margin: 0 0 0.5em;
  }

  header nav .actions-buttons li {
    align-items: center;
    display: flex;
    font-size: 0.9em;
    padding: 0 0 1em;
    margin: 0 0 0.5em 1.75em;
  }
}

@media screen and (max-width: 1024px) and (max-width: 720px) {
  header nav .actions-buttons li {
    font-size: 0.8em;
    margin: 0 0 0 2.5em;
    padding: 0 0 0.5em;
  }
}

@media screen and (max-width: 1024px) {
  header nav .actions-buttons span {
    display: flex;
    margin-right: 1em;
  }
}

@media screen and (max-width: 1024px) {
  header nav .social-media {
    bottom: 5%;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    justify-content: center;
    width: 100%;
  }

  header nav .social-media li {
    text-align: center;
    width: 100%;
  }

  header nav .social-media .fb-blue,
  header nav .social-media .ig-blue {
    display: inline-block;
  }

  header nav .social-media .fb-white,
  header nav .social-media .ig-white {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  header nav .menu-items ul li {
    font-size: 1.1em;
  }

  header nav .menu-items .active {
    border-bottom: 0px solid #fff;
    font-weight: 700;
    padding: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  header nav .btn-cart {
    align-items: center;
    display: flex;
  }

  header nav .btn-cart img {
    margin-right: 0.5em;
  }
}

@media screen and (max-width: 1024px) {
  header nav .carrito-blue {
    display: inline-block;
  }
}

@media screen and (max-width: 1024px) {
  header nav .carrito-white {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  header nav {
    width: 60%;
  }

  header nav ul li {
    font-size: 0.8em !important;
  }
}

.slick-next {
  right: 25px;
}

.slick-prev {
  left: 25px;
  z-index: 999;
}

.slick-dots {
  bottom: 1.5em;
}

.slick-dots li button::before {
  color: #fff;
  font-size: 20px;
}

@media screen and (max-width: 600px) {
  .slick-dots li button::before {
    font-size: 15px;
  }
}

.slick-dots li.slick-active button::before {
  color: #fff;
  font-size: 20px;
}

@media screen and (max-width: 600px) {
  .slick-dots li.slick-active button::before {
    font-size: 15px;
  }
}

.slick-slider {
  margin-bottom: -12px !important;
}

.home-1 {
  color: #fff;
}

.home-1 .slide {
  position: relative;
}

@media screen and (max-width: 720px) {
  .home-1 .slick-dots {
    bottom: 0.7em;
  }
}

.home-1 .push-to-buy {
  bottom: 4em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1024px) {
  .home-1 .push-to-buy {
    bottom: 3em;
  }
}

@media screen and (max-width: 720px) {
  .home-1 .push-to-buy {
    bottom: 1.9em;
  }
}

.home-1 .push-to-buy .btn.blue {
  background: #fff;
  color: #0464cc;
  border-radius: 4px;
  font-size: 1.5em;
  font-weight: bold;
  padding: 0.5em 1.5em;
  transition: all 0.25s;
}

@media screen and (max-width: 1024px) {
  .home-1 .push-to-buy .btn.blue {
    font-size: 1em;
  }
}

@media screen and (max-width: 720px) {
  .home-1 .push-to-buy .btn.blue {
    font-size: 0.75em;
    padding: 0.5em 1.2em;
  }
}

@media screen and (max-width: 375px) {
  .home-1 .push-to-buy .btn.blue {
    font-size: 0.75em;
    padding: 0.5em 1.1em;
  }
}

.home-1 .push-to-buy .btn.blue:hover {
  background: rgba(4, 100, 204, 0.8);
  color: #fff;
}

.title {
  color: #0464cc;
  display: table;
  height: 10vh;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .title {
    height: 15vh;
  }
}

.title .container {
  display: table-cell;
  vertical-align: middle;
}

.title .container h1 {
  font-size: 2.5em;
}

@media screen and (max-width: 500px) {
  .title .container h1 {
    font-size: 2em;
  }
}

.content {
  margin: 2em 0 0;
}

.product-name {
  color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  font-size: 0.95em;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1em;
  min-height: 2.2em;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category {
  margin: 2em 0 0 !important;
}

.category .slide {
  text-align: center;
  padding: 0 1em;
}

.category .slick-prev::before,
.category .slick-next::before {
  color: #0464cc;
}

.category .slick-prev {
  left: -15px;
}

.category .slick-next {
  right: -15px;
}

.category img {
  margin: 0 auto 0.5em;
  border-radius: 100%;
}

.category .title {
  height: auto;
}

.category h1 {
  font-size: 1.5em;
  padding: 1em 0;
}

.category .product-name {
  min-height: auto;
}

.home-2 {
  margin: 1em 0 2em;
}

.home-2 .product-name {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.85em;
}

@media screen and (max-width: 720px) {
  .home-2 .product-name {
    min-height: auto;
  }
}

.home-2 .product-name:hover {
  color: rgba(0, 0, 0, 0.9);
}

.home-2 .container {
  max-width: 88vw;
}

@media screen and (max-width: 900px) {
  .home-2 .container {
    max-width: 98vw;
  }
}

@media screen and (max-width: 500px) {
  .home-2 .container {
    max-width: 95vw;
  }
}

.home-2 .title {
  margin: 3em 0 0;
  height: auto;
}

.home-2 [type=text] {
  color: #0464cc;
}

.home-2 h2 {
  color: #0464cc;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.home-2 img {
  max-height: 15em;
}

@media screen and (max-width: 1024px) {
  .home-2 img {
    max-height: 11em;
  }
}

@media screen and (max-width: 720px) {
  .home-2 img {
    max-height: none;
  }
}

.home-2 .price {
  line-height: 1;
}

.home-2 .price span {
  font-size: 1.2em;
  font-weight: bold;
  color: #0cb4ec;
}

@media screen and (max-width: 1024px) {
  .home-2 .price span {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 600px) {
  .home-2 .price span {
    font-size: 1.2em;
  }
}

.home-2 .price span.presentation {
  font-size: 0.6em;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  .home-2 .price span.presentation {
    font-size: 0.6em;
  }
}

@media screen and (max-width: 600px) {
  .home-2 .price span.presentation {
    font-size: 0.65em;
  }
}

.home-2 .btn {
  font-size: 0.7em;
  font-weight: 600;
  padding: 0.5em 0.75em;
}

@media screen and (max-width: 1024px) {
  .home-2 .btn {
    font-size: 0.6em;
    padding: 0.45em 0.75em;
  }
}

@media screen and (max-width: 600px) {
  .home-2 .btn {
    font-size: 0.7em;
    padding: 0.5em 0.75em;
  }
}

.home-2 .product-box {
  margin: 0 0 1em;
}

.home-2 .product-box .row {
  align-items: center;
}

.home-2 .opciones {
  align-items: center;
  padding: 0.4em 0;
}

.home-2 .columns {
  padding: 1em;
}

@media screen and (max-width: 1024px) {
  .home-2 .columns.filter-container {
    padding: 1em 1em 1em 0;
  }
}

@media screen and (max-width: 1023px) {
  .home-2 .columns.filter-container {
    padding: 1em;
  }
}

.home-2 .columns .columns {
  padding: 0;
}

.home-2 .products-container {
  padding: 1em 0;
}

.home-2 .product-list .columns {
  padding: 0 1em 0.5em;
}

.home-2 .product-list .columns .columns {
  padding: 0;
}

.home-2 span {
  color: #737373;
  font-family: "Rubik", sans-serif;
  font-size: 0.9em;
}

.home-2 span.bad-price {
  color: #0464cc;
  font-size: 0.7em;
  display: block;
}

.home-2 span.bad-price small {
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  -webkit-text-decoration-color: #0464cc;
          text-decoration-color: #0464cc;
  font-size: 1em;
}

.home-2 .inblock {
  display: table;
  margin: 4em auto 0;
  padding: 0.5em 1em;
}

.home-2 .featured-categories {
  margin: 0 0 2em;
}

.home-2 .featured-categories span {
  color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  margin: 0 1em 1em;
  padding: 0 0.5em 0.1em;
}

.home-2 .featured-categories span.active {
  border-bottom: 2.5px solid rgba(128, 128, 128, 0.7);
}

.home-2 .featured-products {
  display: none;
}

.home-2 .featured-products.show {
  display: flex;
  opacity: 1;
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.home-3 {
  margin: 1em 0 0;
  padding: 0 0 2em;
  text-align: center;
}

.home-3 .title {
  height: auto;
  padding: 0;
}

.home-3 a {
  color: #0464cc;
}

.home-3.information-1 {
  margin: 0 0 1em;
  text-align: left;
}

.home-3.information-1 a {
  text-decoration: none;
}

.home-3.information-1 li {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  padding: 0 0 0 1.5em;
}

.home-3.information-1 li::before {
  color: #0464cc;
  content: "\2714";
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  margin-left: -1em;
  padding-right: 1.1em;
  width: 1em;
}

@media screen and (max-width: 1023px) {
  .home-3 {
    text-align: left;
  }
}

.home-3 img {
  max-width: 4em;
}

.home-3 span {
  color: #0464cc;
  font-size: 1.35em;
  font-weight: 600;
  padding: 0 0 0 0.2em;
  text-decoration: underline;
}

.home-3 .columns {
  margin: 0.5em 0;
}

@media screen and (max-width: 1023px) {
  .home-3 .box-zones {
    justify-content: center;
    text-align: center;
  }
}

footer {
  background: #0464cc;
  top: 100%;
  color: #fff;
  left: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}

footer .footer-alpina {
  background: #0464cc;
  padding: 1em 0 0;
}

footer .footer-alpina h3 {
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  margin: 0;
}

footer .footer-alpina h3 span {
  font-family: "MyWebFont", sans-serif;
  font-weight: 200;
  font-size: 2em;
  text-transform: none;
}

@media screen and (max-width: 375px) {
  footer .footer-alpina h3 {
    font-size: 0.75em;
    margin: 0 0.75em;
  }
}

footer .container {
  max-width: 85vw;
  padding: 2em 0 1em;
}

@media screen and (max-width: 1024px) {
  footer .container {
    max-width: 90vw;
  }
}

footer .container-footer {
  border-top: 1px solid #fff;
  color: #fff;
  margin: 0 2em;
  padding-top: 1em;
}

@media screen and (max-width: 1023px) {
  footer .container-footer {
    text-align: center;
    margin: auto;
  }
}

footer a {
  align-items: center;
  display: flex;
  font-size: 0.85em;
  margin: 0 0 0.5em;
}

@media screen and (max-width: 1023px) {
  footer a {
    justify-content: center;
  }
}

footer h3 {
  font-size: 1em;
  margin: 0 0 0.5em;
}

footer .root-home {
  text-align: center;
}

footer .logo-box {
  line-height: 1;
}

footer .logo-box small {
  font-size: 0.65em;
}

@media screen and (max-width: 500px) {
  footer .logo-box {
    margin: 0 0 1em;
  }

  footer .logo-box small {
    width: 70%;
  }
}

footer img {
  max-height: 2em;
  max-width: 2em;
}

footer img.logo {
  margin-bottom: 0.5em;
  max-height: 9em;
  max-width: 9em;
}

@media screen and (max-width: 1024px) {
  footer img.logo {
    margin: 0 auto;
  }
}

footer img.card {
  height: 32px;
  max-height: none;
  max-width: none;
  width: 48px;
}

footer img.card:last-child {
  width: 52px;
}

@media screen and (max-width: 1024px) {
  footer img.card {
    height: 28px;
    width: 44px;
  }

  footer img.card:last-child {
    width: 48px;
  }
}

@media screen and (max-width: 500px) {
  footer img.card {
    height: 25px;
    width: 40px;
  }

  footer img.card:last-child {
    width: 42px;
  }
}

footer img.visa {
  height: 20px;
}

footer img.master-card {
  width: 45px;
  height: 30px;
}

footer img.secure-code {
  height: 25px;
}

footer small {
  color: #fff;
  font-weight: 400;
  text-transform: none;
}

footer .card-group {
  align-items: center;
  display: flex;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  footer .card-group {
    margin: 1em 0;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
}

footer .card-group img {
  margin: 0 0.5em;
}

@media screen and (max-width: 1024px) {
  footer .card-group img {
    margin: 0 0.2em;
  }
}

footer ul {
  display: flex;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

footer ul li {
  align-items: center;
  display: flex;
  margin: 0 0.6em 0 0.2em;
}

footer ul li img {
  max-height: 1.75em;
  max-width: 1.75em;
}

footer ul li:first-child {
  margin: 0 0.6em 0 0;
}

footer ul li:first-child img {
  max-height: 1.65em;
  max-width: 1.65em;
}

footer ul li:last-child {
  margin: 0 0 0 0.2em;
}

footer .columns {
  line-height: 1.2;
  padding: 0 1em 0.5em;
}

footer .columns.logo-box {
  padding: 0 2em 0.5em;
  line-height: 1;
}

footer .icons {
  max-width: 1em;
  max-height: 1em;
}

footer .icons.persons {
  max-height: 2em;
}

footer .icons.terms {
  padding: 0 0.05em;
}

footer .icons.agencies {
  margin-left: 2px;
  max-width: 10px;
}

@media screen and (max-width: 1024px) {
  footer .icons {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  footer .col-med {
    text-align: center;
  }
}

footer .ig-link {
  font-family: "Rubik", sans-serif;
  font-size: 0.95em;
  font-weight: 700;
  margin: 0.5em 0;
  text-align: center;
  text-transform: uppercase;
}

footer .ig-link.ig-link-desktop {
  font-size: 0.9em;
}

@media screen and (max-width: 1023px) {
  footer .ig-link.ig-link-desktop {
    display: none;
  }
}

footer .ig-link.ig-link-mobile {
  display: none;
}

@media screen and (max-width: 1023px) {
  footer .ig-link.ig-link-mobile {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  footer .link-desktop {
    display: none;
  }
}

footer .space-mobile {
  margin-top: 1em;
}

@media screen and (max-width: 720px) {
  footer .dropdown-title h3 {
    background-image: url(/images/icon-arrow-down.png?b8525d71ce27f3dc2b18672b1314b2d1);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 16px 10px;
  }

  footer .dropdown-title h3.opened {
    background-image: url(/images/icon-arrow-up.png?71bbc19241e796ab46d75dd924317826);
  }
}

footer .dropdown-group {
  transition: 0.3s;
}

@media screen and (max-width: 720px) {
  footer .dropdown-group {
    filter: alpha(opacity=0);
    opacity: 0;
    height: 0;
    overflow: hidden;
  }
}

footer .dropdown-group.selected {
  filter: alpha(opacity=100);
  opacity: 1;
  height: auto;
}

footer .menu-footer .columns {
  padding: 0 0 0 4em;
}

@media screen and (max-width: 1024px) {
  footer .menu-footer .columns {
    padding: 0 0 0 3em;
  }
}

@media screen and (max-width: 1023px) {
  footer .menu-footer .columns {
    padding: 0;
  }
}

footer .menu-footer .columns:last-child {
  padding: 0;
}

.product-1 {
  margin: 4em 0;
}

.product-1 .container {
  max-width: 95vw;
}

.product-1 .filter-container {
  padding: 0 0 2em;
}

.product-1 .product-details {
  padding: 0 0 0 1em;
}

@media screen and (max-width: 620px) {
  .product-1 .product-details {
    padding: 0;
  }
}

@media screen and (max-width: 600px) {
  .product-1 {
    margin: 2em 0;
  }
}

.product-1 .options-shop {
  padding: 1em 0 1em;
  margin: 0 0 1em;
  /* The container */
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */
}

.product-1 .options-shop img {
  align-self: center;
  max-height: 5em;
}

.product-1 .options-shop img.gota {
  max-height: 3em;
}

.product-1 .options-shop .icon-box {
  align-items: center;
  align-self: center;
  min-height: 5em;
  max-height: 5em;
}

.product-1 .options-shop h2 {
  color: #0464cc;
  font-size: 1em;
  font-weight: 600;
  margin: 1em 0 0;
  text-transform: uppercase;
}

.product-1 .options-shop h3 {
  color: #0cb4ec;
  margin: 0;
}

.product-1 .options-shop h4 {
  color: #0464cc;
  font-size: 0.7em;
  margin: 0;
}

.product-1 .options-shop h4 span {
  color: #0464cc !important;
  text-decoration: line-through;
}

.product-1 .options-shop .box-radio {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  text-align: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.product-1 .options-shop .box-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.product-1 .options-shop .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #e6e6e6;
  border-radius: 50%;
}

.product-1 .options-shop .box-radio:hover input ~ .checkmark {
  background-color: #ccc;
}

.product-1 .options-shop .box-radio input:checked ~ .checkmark {
  background-color: rgba(4, 100, 204, 0.8);
}

.product-1 .options-shop .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.product-1 .options-shop .box-radio input:checked ~ .checkmark:after {
  display: block;
}

.product-1 .options-shop .box-radio .checkmark:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.product-1 h1 {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.5em;
  font-weight: 500;
  margin: 0 0 0.25em;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .product-1 h1 {
    font-size: 1.3em;
  }
}

.product-1 .pieces-cuts-tittle {
  flex-wrap: wrap;
}

.product-1 .price {
  color: #0cb4ec;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 2.2em;
  margin: 0 0 1em;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .product-1 .price {
    font-size: 1.8em;
    margin: 0 0 0.5em;
  }
}

.product-1 .price .bad-price {
  color: #0464cc !important;
  font-size: 0.6em;
  display: block;
}

.product-1 .price .bad-price small {
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  -webkit-text-decoration-color: #0464cc;
          text-decoration-color: #0464cc;
  font-size: 0.9em;
}

.product-1 [type=number] {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-self: center;
  appearance: none;
  border: 2px solid #0464cc;
  color: #0464cc;
  font-weight: bold;
  max-width: 2em;
  text-align: center;
  text-indent: 0;
  height: 2em;
  width: auto;
}

.product-1 [type=number]::-webkit-outer-spin-button,
.product-1 [type=number]::-webkit-inner-spin-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.product-1 .btn {
  align-self: center;
  font-size: 1.5em;
  line-height: 0;
  padding: 0.5em 0;
}

.product-1 .btn.added {
  align-items: center;
  border-radius: 0;
  display: block;
  font-weight: bold;
  height: 1.3em;
  margin: 0 0.4em;
  width: 1.2em;
}

.product-1 .btn.cart {
  align-items: center;
  background: #0cb4ec;
  border-radius: 0;
  display: flex;
  font-size: 0.8em;
  font-weight: 700;
  margin: 1.5em 0;
  padding: 0.9em 1.1em;
}

@media screen and (max-width: 600px) {
  .product-1 .btn.cart {
    margin: 1em auto;
  }
}

.product-1 .btn.cart:hover {
  background: #0ba1d4;
}

.product-1 .btn.cart img {
  width: 1.3em;
}

.product-1 .btn.add-list {
  border: 1px solid #0464cc;
  padding: 0.25em 1em;
  color: #0464cc;
}

.product-1 .btn.add-list img {
  width: 0.9em;
}

@media screen and (max-width: 600px) {
  .product-1 .details-product {
    text-align: center;
  }
}

.product-1 .control {
  align-items: center;
  margin-bottom: 1em;
}

.product-1 .control,
.product-1 .qty {
  display: flex;
}

@media screen and (max-width: 600px) {
  .product-1 .control,
  .product-1 .qty {
    justify-content: center;
  }
}

.product-1 .qty {
  margin: 0 1em;
}

@media screen and (max-width: 600px) {
  .product-1 .qty {
    margin: 0 0.25em;
  }
}

.product-1 .gallery img {
  max-height: 21em;
}

.product-1 label {
  color: #0464cc;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
}

.product-1 p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1em;
  line-height: 1.3;
  text-align: justify;
}

.product-1 .smothness {
  color: #0464cc;
  font-size: 0.9em;
  margin: 0.5em 0;
}

.product-1 .smothness img {
  margin: 0 0.3em;
}

.product-1 .smothness p,
.product-1 .smothness span {
  color: #8c8c8c;
}

.product-1 ul {
  color: #666666 !important;
  font-size: 0.8em;
}

.product-1 .description-product {
  margin: 1em 0;
}

@media screen and (max-width: 600px) {
  .product-1 .description-product {
    padding: 0 0.5em;
  }
}

.product-1 .description-product ul {
  text-align: left;
}

.product-1 .description-product ul li {
  align-items: center;
  display: flex;
  font-size: 1.1em;
  font-weight: 600;
  text-align: left;
}

.product-1 .description-product ul li::before {
  content: "\2714";
  color: #0464cc !important;
  font-size: 1.25em;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 0.3em;
  -webkit-text-fill-color: #0464cc !important;
}

.product-1 span,
.product-1 li {
  color: rgba(0, 0, 0, 0.7) !important;
}

.product-1 .block-blue {
  border: 1px solid #0464cc;
  cursor: pointer;
  display: inline-block;
  height: 1em;
  width: 1em;
}

.product-1 .block-blue.fill {
  background: #0464cc;
}

.product-1 .target {
  color: #0464cc;
  font-weight: 600;
  margin: 0.5em 0;
}

.product-1 [type=radio] {
  display: none;
}

.product-1 .title-option span {
  color: #0464cc !important;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.product-1 .certification {
  align-items: center;
  margin: 1em 0 0;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .product-1 .certification {
    display: none;
  }
}

.product-1 .certification img {
  height: 75px;
  margin: 1em auto;
}

.product-1 .certification-1 {
  display: none;
}

@media screen and (max-width: 1023px) {
  .product-1 .certification-1 {
    display: block;
    margin: 2em 0 0;
    text-align: center;
  }

  .product-1 .certification-1 img {
    height: 50px;
    margin: 0 0.5em 1em;
  }
}

@media screen and (max-width: 1023px) and (max-width: 350px) {
  .product-1 .certification-1 img {
    height: 45px;
    margin: 0 0.2em;
  }
}

@media screen and (max-width: 350px) {
  .product-1 .certification-1 {
    margin: 1em 0 0;
  }
}

.product-1 .remove-options {
  display: none;
}

.product-1 .pieces-box {
  display: none;
}

@media screen and (max-width: 600px) {
  .product-1 .prices {
    justify-content: center;
  }
}

.product-1 h5 {
  align-items: center;
  color: rgba(0, 0, 0, 0.9);
  display: flex;
  margin: 0 auto;
  text-transform: uppercase;
}

.product-1 h5 span {
  align-items: center;
  color: #0cb4ec !important;
  display: flex;
  font-size: 1.5em !important;
  font-weight: 400;
  margin: 0 0 0 0.5em !important;
}

@media screen and (max-width: 600px) {
  .product-1 h5 span {
    font-size: 1.2em !important;
  }
}

.product-1 .without-bottle {
  cursor: pointer;
  margin: 1em 0;
  padding: 0.75em 0.5em 0.75em 0;
  transition: all 0.5;
}

.product-1 .without-bottle.selected {
  background: #e4e4e4;
  transition: all 0.5;
}

.product-1 .without-bottle h4 {
  align-items: center;
  display: flex;
  font-size: 1.4em;
  margin: 0;
}

@media screen and (max-width: 790px) {
  .product-1 .without-bottle h4 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 600px) {
  .product-1 .without-bottle h4 {
    justify-content: center;
  }
}

@media screen and (max-width: 350px) {
  .product-1 .without-bottle h4 {
    font-size: 1em;
  }
}

.product-1 .without-bottle h4.text-blue {
  color: #0464cc;
  font-weight: 500;
}

.product-1 .without-bottle h4 span {
  align-items: center;
  display: flex;
}

.product-1 .without-bottle img {
  width: 2em;
  margin: 0;
}

.paginate {
  text-align: center;
}

.paginate span {
  color: #0464cc;
}

.paginate li {
  border: 1px solid #0464cc;
  color: #0464cc;
  display: inline-block;
  margin: 0 0.1em;
  min-width: 2em;
}

.paginate li.active {
  background: #0464cc;
  color: #fff;
}

.paginate li.active span {
  color: #fff;
}

.paginate li:first-child,
.paginate li:last-child {
  border: 0;
  font-size: 1.7em;
  font-weight: 700;
  min-width: auto;
}

.login .title .container h1 {
  font-size: 2.2em;
}

.login .black {
  font-weight: 500;
}

.login form {
  margin: 0 auto;
  width: 55%;
}

@media screen and (max-width: 1024px) {
  .login form {
    width: 75%;
  }
}

@media screen and (max-width: 720px) {
  .login form {
    width: 100%;
  }
}

.login .content {
  margin: 0.5em 0 0;
}

.login .form-group {
  margin: 0.7em 0;
}

.login .btn {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.login .btn.blue {
  font-family: "Rubik", sans-serif;
  font-size: 0.85em;
  font-weight: 500;
  padding: 0.85em 1em;
}

.login .btn.link {
  color: #0464cc;
  font-size: 0.9em;
  font-weight: 600;
  margin: 1em 0 0;
  padding: 0 0.5em 0.2em;
  transition: 0.3s;
}

@media screen and (max-width: 500px) {
  .login .btn.link {
    margin: 0.25em 0 0;
  }
}

.login .btn.link:last-child {
  border-left: 2px solid #0464cc;
}

@media screen and (max-width: 500px) {
  .login .btn.link:last-child {
    border-left: 0;
  }
}

.login .btn.link:hover {
  color: #262626;
}

.login label {
  color: #0464cc;
  font-weight: 400;
}

.login [type=email],
.login [type=password],
.login [type=text] {
  border: 1px solid #e4e4e4;
  padding: 0.4em 0;
  width: 100%;
}

.login .checkbox {
  cursor: pointer;
  display: block;
  padding: 0 0 0 1.3em;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.login .checkbox:hover [type=checkbox] ~ .checkmark {
  border: 1px solid #e4e4e4;
  background-color: #e4e4e4;
}

.login .checkbox [type=checkbox]:checked ~ .checkmark {
  border: 1px solid #0464cc;
  background-color: #0464cc;
}

.login .checkbox [type=checkbox]:checked ~ .checkmark::after {
  display: block;
}

.login [type=checkbox] {
  cursor: pointer;
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}

.login .checkmark {
  background-color: #fff;
  border: 1px solid #b1b1b1;
  height: 1em;
  left: 0;
  position: absolute;
  top: 5px;
  width: 1em;
}

.login .checkmark::after {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 3px 3px 0;
  content: "";
  display: none;
  height: 10px;
  left: 6px;
  position: absolute;
  top: 2px;
  width: 5px;
}

.login .help-block {
  color: #0464cc;
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-size: 0.8em;
}

.register [type=email],
.register [type=password],
.register [type=text] {
  border: 1px solid #e4e4e4;
  font-size: 1em;
  padding: 0.5em 0.2em;
  width: 100%;
}

.register .checkbox {
  font-weight: 400;
}

.login-1 {
  text-align: center;
}

.login-1 h2 {
  color: #0464cc;
  font-weight: bold;
  text-transform: uppercase;
}

.login-1 a {
  color: #0464cc;
  padding-bottom: 0.05em;
  border-bottom: 1px solid #0464cc;
}

.line {
  margin: 0.5em 0 0;
  height: 2px;
  width: 100%;
}

.line.black {
  background: rgba(0, 0, 0, 0.3);
}

.cart-1 {
  min-height: 100vh;
  padding: 3em 0 2em;
}

.cart-1 .data-cart {
  padding: 0 0 1em;
}

@media screen and (max-width: 500px) {
  .cart-1 .data-cart {
    margin: 0 0 1em;
    overflow-x: scroll;
  }
}

.cart-1 .header {
  display: flex;
  flex-wrap: nowrap;
}

@media screen and (max-width: 500px) {
  .cart-1 .header {
    max-width: 225%;
    width: 225%;
  }
}

.cart-1 .header p {
  color: #989898;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-1 .header .subtotal {
  text-align: center;
}

.cart-1 .name-product {
  flex-wrap: wrap;
  line-height: 0;
  padding-left: 1em;
}

.cart-1 .name-product small {
  font-size: 0.6em;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-1 .list-cart {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
  padding-right: 0.15em;
}

@media screen and (max-width: 500px) {
  .cart-1 .list-cart {
    max-width: 225%;
    width: 225%;
  }
}

.cart-1 .list-cart .item {
  background: rgba(228, 228, 228, 0.1);
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0.75em;
}

.cart-1 .list-cart .item:last-child {
  margin: 0;
}

.cart-1 .list-cart .item .columns {
  align-items: center;
  display: flex;
}

.cart-1 .list-cart .item .name-product {
  font-weight: 600;
}

.cart-1 .list-cart .item .name-product p {
  color: rgba(0, 0, 0, 0.7);
}

.cart-1 .list-cart .item .imagen {
  align-items: center;
  justify-content: center;
}

.cart-1 .list-cart .item .imagen img {
  max-height: 5em;
  max-width: auto;
}

.cart-1 .list-cart .item .qty {
  display: flex;
  flex-wrap: nowrap;
}

.cart-1 .list-cart .item .qty span {
  color: #0464cc;
  cursor: pointer;
  font-size: 1.4em;
  font-weight: 700;
}

.cart-1 .list-cart .item .qty span:first-child {
  margin-left: 0.5em;
}

@media screen and (max-width: 350px) {
  .cart-1 .list-cart .item .qty span:first-child {
    margin-left: 0;
  }
}

.cart-1 .list-cart .item .qty p {
  color: #0464cc;
  font-weight: 700;
  margin: 0 1em;
  text-align: center;
  width: 50px;
}

@media screen and (max-width: 500px) {
  .cart-1 .list-cart .item .qty p {
    margin: 0 0.3em;
  }
}

.cart-1 .list-cart .item .price {
  color: #0cb4ec;
  font-weight: 700;
}

.cart-1 .list-cart .item .subtotal {
  justify-content: center;
}

.cart-1 .list-cart .item .delete {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0.75em 0;
}

.cart-1 .list-cart .item .delete img {
  cursor: pointer;
  max-width: 1.5em;
  opacity: 0.9;
}

.cart-1 .list-cart .item .option {
  background: #e4e4e4;
  cursor: pointer;
  padding: 0.75em 0;
  text-align: center;
}

.cart-1 .list-cart .item .option img {
  max-width: 1.5em;
  opacity: 0.9;
}

.cart-1 .list-cart .item .description {
  background: white;
  display: none;
  padding: 0.5em 1em;
}

.cart-1 .list-cart .item .description p {
  align-items: center;
  color: rgba(0, 0, 0, 0.8);
  display: flex;
  font-size: 1em;
  font-weight: 600;
  width: 100%;
}

.cart-1 .list-cart .item .description p span {
  color: #0cb4ec;
  font-size: 1em;
  font-weight: 700;
}

.cart-1 .save-list {
  margin: 0.25em 1em 0;
}

.cart-1 .save-list a {
  color: #0464cc;
  font-size: 0.75em;
  font-weight: 600;
  padding-bottom: 0.2em;
  text-transform: uppercase;
}

.cart-1 .save-list a:hover {
  color: #034b9a;
}

.cart-1 .total-box {
  padding-left: 1em;
}

@media screen and (max-width: 600px) {
  .cart-1 .total-box {
    justify-content: center;
    padding: 0;
  }
}

.cart-1 .total-box .bill {
  background: rgba(228, 228, 228, 0.2);
  padding: 0.5em 1em;
}

.cart-1 .total-box .subtotal p,
.cart-1 .total-box .send p,
.cart-1 .total-box .total p {
  align-items: center;
  color: rgba(0, 0, 0, 0.8);
  display: flex;
  font-size: 1em;
  font-weight: 600;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 1em 0;
  text-transform: uppercase;
}

.cart-1 .total-box .subtotal p span,
.cart-1 .total-box .send p span,
.cart-1 .total-box .total p span {
  color: #0cb4ec;
  font-size: 1.2em;
  font-weight: 700;
}

.cart-1 .total-box .total p span {
  color: #0464cc;
}

.cart-1 .total-box .btns {
  margin: 1em 0 0;
  flex-wrap: wrap;
  width: 100%;
}

.cart-1 .total-box .btns p {
  font-size: 0.8em;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 1em;
  text-align: right;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .cart-1 .total-box .btns p {
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .cart-1 .total-box .btns .responsive-mobile {
    display: none;
  }
}

.cart-1 .total-box .btn.blue {
  border-radius: 3px;
  font-size: 0.7em;
  font-weight: 600;
  padding: 0.8em 1em;
  margin: 0 0 1em 0.5em;
}

.cart-1 .total-box .btn.cyan {
  background: #0cb4ec;
}

.cart-1 .total-box .btns-responsive {
  display: none;
  margin: 4em 0 2em;
}

.cart-1 .total-box .btns-responsive .btn.blue {
  background: transparent;
  border-bottom: 2px solid #0464cc;
  border-radius: 0;
  color: #0464cc;
  font-size: 0.9em;
  font-weight: 700;
  padding: 0 0.2em 0.1em;
  margin: 0 0 1em 0.5em;
}

.cart-1 .total-box .btns-responsive .btn.blue:hover {
  border-bottom: 2px solid #034b9a;
  color: #034b9a;
}

@media screen and (max-width: 500px) {
  .cart-1 .total-box .btns-responsive {
    display: flex;
  }
}

.cart-1 h1 {
  color: #0464cc;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6em;
  letter-spacing: 0.1em;
  padding: 0 0 1em;
  text-align: center;
  width: 100%;
}

.cart-1 .cart-empty img {
  max-width: 16em;
  max-height: 15em;
}

@media screen and (max-width: 600px) {
  .cart-1 .cart-empty img {
    max-width: 10em;
    max-height: 9em;
  }
}

@media screen and (max-width: 350px) {
  .cart-1 .cart-empty img {
    max-width: 8em;
    max-height: 8em;
  }
}

.cart-1 .cart-empty h1 {
  margin-top: 1em;
}

.cart-1 .cart-empty .btn.blue {
  background: transparent;
  border-bottom: 2px solid #0464cc;
  color: #0464cc;
  font-size: 1em;
  font-weight: 600;
  padding: 0 0.2em 0.1em;
}

.cart-1 .cart-empty .btn.blue:hover {
  color: #033f81;
  border-bottom: 2px solid #033f81;
}

.cart-1 h2 {
  color: #0464cc;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.cart-1 .blue-text {
  display: block;
  margin: 0 0 0 auto;
  padding: 2em 0 0;
}

.cart-1 .d-block {
  display: block;
  font-size: 1em;
  margin: 1em 0 0 auto;
  max-width: 8em;
  text-align: center;
}

.cart-1 .d-block.blq {
  max-width: none;
  margin: 1em 1em 0 auto;
}

.cart-1 h3 {
  color: #0464cc;
  font-size: 1em;
  margin: 2em 0 0;
  text-transform: none;
}

.cart-1 span {
  display: block;
  font-size: 0.8em;
}

.table-responsive {
  overflow-x: auto;
}

@media screen and (max-width: 940px) {
  .table-responsive {
    overflow-x: scroll;
  }

  .table-responsive .name-pd {
    width: 215px !important;
  }

  .table-responsive .price-box {
    width: 118px !important;
  }
}

.table tr {
  align-items: center;
  align-self: center;
  border-bottom: 1px solid #0464cc;
}

.table tr:last-child {
  border-bottom: 0;
}

.table thead {
  border-bottom: 1px solid #0464cc;
}

.table span {
  font-size: 0.8em;
}

.table span.pago {
  color: #0464cc;
  display: block;
  font-size: 0.7em;
}

.table a {
  color: #0464cc;
  font-size: 0.8em;
}

.table td {
  padding: 1em !important;
}

.table td a {
  font-size: 0.95em;
}

.table td:first-child {
  color: #0464cc;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-align: left;
  width: 40%;
}

.table td:nth-child(2) {
  max-width: none;
}

.table.table-services {
  width: 100%;
}

.table.table-services th {
  color: #0464cc;
  padding: 0 1em;
  text-align: left;
}

.table.table-profile {
  width: 100%;
}

.table.table-profile .btn {
  float: right;
}

.table.table-profile th {
  color: #0464cc;
}

.table.table-profile td {
  color: #333333 !important;
  padding: 0 !important;
}

.profile-1,
.profile-2 {
  padding: 1em 0 2em;
}

.profile-1 h1,
.profile-2 h1 {
  font-size: 2em;
  font-weight: 500;
}

.profile-1 .title h1,
.profile-2 .title h1 {
  font-weight: 500;
  text-transform: capitalize;
}

.profile-1 .title h5,
.profile-2 .title h5 {
  color: rgba(0, 0, 0, 0.9);
}

.profile-1 .title .btn.blue,
.profile-2 .title .btn.blue {
  font-size: 0.8em;
  padding: 0.35em 1em;
  text-transform: none;
}

.profile-1 [type=tel],
.profile-1 [type=text],
.profile-1 textarea,
.profile-1 select,
.profile-2 [type=tel],
.profile-2 [type=text],
.profile-2 textarea,
.profile-2 select {
  background: #e4e4e4;
  border: 0px solid gray;
  padding: 0.35em 0.5em;
  width: 100%;
}

.profile-1 h2,
.profile-2 h2 {
  align-items: center;
  color: #0464cc;
  display: flex;
  margin: 0;
  text-align: center;
}

.profile-1 h2 span,
.profile-2 h2 span {
  border-left: 2px solid #e4e4e4;
  margin: 0;
  padding: 0 1em 0;
}

.profile-1 h2 span .btn,
.profile-2 h2 span .btn {
  font-size: 0.6em;
  margin: 0;
  padding: 0;
}

.profile-1 h2 span .btn:hover,
.profile-2 h2 span .btn:hover {
  color: #033f81;
}

.profile-1 label,
.profile-2 label {
  color: #0464cc;
  font-family: "Rubik", sans-serif;
  font-size: 0.9em;
  font-weight: 400;
}

.profile-1 .btn,
.profile-2 .btn {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  margin: 1em 0 0;
  padding: 0.75em 1em;
}

.profile-1 span.error-block,
.profile-2 span.error-block {
  color: #db0000;
  font-size: 0.7em;
  font-weight: 600;
}

.profile-1 button {
  border-radius: 0;
  margin: 0 0.5em;
}

.profile-1 button img {
  max-width: 1.2em;
}

.profile-1 .phone {
  align-items: center;
  margin: 0 1em 0 0;
}

.profile-1 .phone p {
  margin: 0.1em 0 0;
}

.profile-3 .title {
  text-align: left;
}

.profile-3 .title h1 {
  font-size: 2em;
  font-weight: 500;
  margin: 1em 0 0;
}

.profile-3 .title h1.text-blue {
  text-transform: uppercase;
}

.profile-3 .list {
  margin: 0 0 1em;
  padding: 0 0 1em;
}

.profile-3 .list h2 {
  color: #0464cc;
  display: flex;
  font-size: 1.3em;
  font-weight: 600;
  flex-wrap: wrap;
  text-transform: uppercase;
  margin: 0;
}

.profile-3 .list h2 span {
  border-left: 1px solid gray;
  color: #f50000;
  font-size: 0.65em;
  padding-left: 0.4em;
}

.profile-3 .list h2 span:hover {
  color: #e60000;
}

.profile-3 .list h2 span button {
  text-transform: uppercase;
}

.profile-3 .list p {
  font-size: 0.9em;
  font-weight: 400;
  text-align: justify;
  margin: 0.5em 0 1em;
}

.profile-3 .list .btn {
  margin: 1em 0;
}

.profile-3 .list .btn.blue {
  background: #0464cc;
  font-size: 0.7em;
  font-weight: 600;
  padding: 0.7em 0.75em;
}

.profile-3 .data-cart {
  padding: 0 0 1em;
}

@media screen and (max-width: 500px) {
  .profile-3 .data-cart {
    margin: 0 0 1em;
    overflow-x: scroll;
  }
}

.profile-3 .header {
  display: flex;
  flex-wrap: nowrap;
}

@media screen and (max-width: 500px) {
  .profile-3 .header {
    max-width: 225%;
    width: 225%;
  }
}

.profile-3 .header p {
  color: #989898;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}

.profile-3 .header p.center {
  text-align: center;
}

.profile-3 .header .subtotal {
  text-align: center;
}

.profile-3 .name-product {
  flex-wrap: wrap;
  line-height: 0;
  padding-left: 1em;
}

.profile-3 .name-product small {
  font-size: 0.6em;
  font-weight: 600;
  text-transform: uppercase;
}

.profile-3 .list-cart {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
  padding-right: 0.15em;
}

@media screen and (max-width: 500px) {
  .profile-3 .list-cart {
    max-width: 225%;
    width: 225%;
  }
}

.profile-3 .list-cart .item {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0.75em;
}

.profile-3 .list-cart .item:last-child {
  margin: 0;
}

.profile-3 .list-cart .item .columns {
  align-items: center;
  display: flex;
}

.profile-3 .list-cart .item .name-product {
  font-weight: 600;
}

.profile-3 .list-cart .item .name-product p {
  color: rgba(0, 0, 0, 0.7);
}

.profile-3 .list-cart .item .imagen {
  align-items: center;
  justify-content: center;
  padding: 0;
}

.profile-3 .list-cart .item .imagen img {
  max-height: 5em;
  max-width: auto;
}

.profile-3 .list-cart .item .qty {
  display: flex;
  justify-content: center;
}

.profile-3 .list-cart .item .qty span {
  color: #0464cc;
  cursor: pointer;
  font-size: 1.4em;
  font-weight: 700;
}

.profile-3 .list-cart .item .qty span:first-child {
  margin-left: 0.5em;
}

@media screen and (max-width: 350px) {
  .profile-3 .list-cart .item .qty span:first-child {
    margin-left: 0;
  }
}

.profile-3 .list-cart .item .qty p {
  color: #0464cc;
  font-weight: 700;
  margin: 0 1em;
  text-align: center;
  width: 50px;
}

@media screen and (max-width: 500px) {
  .profile-3 .list-cart .item .qty p {
    margin: 0 0.3em;
  }
}

.profile-3 .list-cart .item .price {
  color: #0cb4ec;
  font-weight: 700;
  justify-content: center;
}

.profile-3 .list-cart .item .subtotal {
  justify-content: center;
}

.profile-3 .list-cart .item .option {
  justify-content: center;
}

.profile-3 .list-cart .item .option .btn {
  font-size: 0.7em;
  padding: 0.7em 0.75em;
}

.profile-3 .list-cart .item .option .btn.blue {
  font-weight: 600;
}

.form-phone input {
  background: #e4e4e4;
  border: 0;
  padding: 0.4em 0;
  width: 100%;
}

.form-phone .row {
  margin: 0.25em 0 0;
}

.form-phone .btn.blue {
  font-size: 0.8em;
}

.form-phone .btn.red {
  background: #e4e4e4;
  border-radius: 2px;
  color: black;
  font-size: 0.8em;
  margin-left: 0.5em;
  text-transform: uppercase;
}

.accordion a {
  background-image: url(/images/arrow-blue-down.png?03639c783df62be868b5aa4a29dee9f8);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 16px 10px;
  color: #0464cc;
  display: block;
  padding: 0 1em 0 0;
}

.accordion a.opened {
  background-image: url(/images/arrow-blue-up.png?e5232e7421ba7a40a21a18543e2bc51c);
}

.accordion .btn {
  display: initial;
}

.accordion .item {
  padding: 0 0 1em;
}

.accordion .item b {
  color: #0464cc;
}

.accordion .item p a {
  background-image: none;
  color: #0464cc;
  font-size: 1em;
  display: inline-block;
  padding: 0;
  margin: 0;
}

.accordion .item li {
  font-size: 0.9em;
}

.accordion .item:last-child {
  border-bottom: 0;
}

.order-1 .container h1 {
  color: #0464cc;
  font-weight: 500;
  margin: 1.5em 0 0;
  text-align: left;
}

.order-1 .container small {
  color: rgba(0, 0, 0, 0.7);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.order-1 h4 {
  font-weight: 500;
  margin: 0 0 1em;
  padding: 0;
}

.order-1 h4.address {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.order-1 .blue {
  padding: 0.75em;
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  margin: 1em 0 1.5em;
}

.order-1 .blue img {
  width: 1em;
}

.order-1 .select {
  background: #f2f2f2;
  border: 1px solid #0464cc;
  border-radius: 5px;
  margin: 0.3em 0;
  padding: 0.5em 1em;
  text-align: center;
}

.order-1 label {
  color: #0464cc;
  display: block;
  font-size: 0.8em;
}

.order-1 h2 {
  color: #0464cc;
  text-align: center;
  text-transform: uppercase;
}

.order-1 p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.85em;
  font-weight: 500;
  text-align: left;
}

.order-1 p.cyan {
  color: #0cb4ec;
  font-size: 1em;
  margin: 0;
}

.order-1 p.qty {
  font-size: 1em;
}

.order-1 p.center {
  text-align: center;
}

.order-1 .data-cart {
  padding: 0 0 1em;
}

@media screen and (max-width: 500px) {
  .order-1 .data-cart {
    margin: 0 0 1em;
    overflow-x: scroll;
  }
}

.order-1 .header {
  display: flex;
  flex-wrap: nowrap;
}

@media screen and (max-width: 500px) {
  .order-1 .header {
    max-width: 225%;
    width: 225%;
  }
}

.order-1 .header p {
  color: #989898;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}

.order-1 .header .subtotal {
  text-align: center;
}

.order-1 .name-product {
  flex-wrap: wrap;
  line-height: 0;
  padding-left: 1em;
}

.order-1 .name-product small {
  font-size: 0.6em;
  font-weight: 600;
  text-transform: uppercase;
}

.order-1 .list-cart {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
  padding-right: 0.15em;
}

@media screen and (max-width: 500px) {
  .order-1 .list-cart {
    max-width: 225%;
    width: 225%;
  }
}

.order-1 .list-cart .item {
  background: rgba(228, 228, 228, 0.1);
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0.75em;
}

.order-1 .list-cart .item:last-child {
  margin: 0;
}

.order-1 .list-cart .item .columns {
  align-items: center;
  display: flex;
}

.order-1 .list-cart .item .name-product {
  font-weight: 600;
}

.order-1 .list-cart .item .name-product p {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

.order-1 .list-cart .item .imagen {
  align-items: center;
  justify-content: center;
  padding: 0;
}

.order-1 .list-cart .item .imagen img {
  max-height: 5em;
  max-width: auto;
}

.order-1 .list-cart .item .qty {
  display: flex;
  justify-content: center;
}

.order-1 .list-cart .item .qty span {
  color: #0464cc;
  cursor: pointer;
  font-size: 1.4em;
  font-weight: 700;
}

.order-1 .list-cart .item .qty span:first-child {
  margin-left: 0.5em;
}

@media screen and (max-width: 350px) {
  .order-1 .list-cart .item .qty span:first-child {
    margin-left: 0;
  }
}

.order-1 .list-cart .item .qty p {
  color: #0464cc;
  font-weight: 700;
  margin: 0 1em;
  text-align: center;
  width: 50px;
}

@media screen and (max-width: 500px) {
  .order-1 .list-cart .item .qty p {
    margin: 0 0.3em;
  }
}

.order-1 .list-cart .item .price {
  color: #0cb4ec;
  font-weight: 700;
  justify-content: center;
}

.order-1 .list-cart .item .subtotal {
  justify-content: center;
}

.alert.alert-success {
  color: #0464cc;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  text-align: center;
}

.alert.alert-response {
  background: #0464cc;
  border: 2px solid #fff;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 1em;
  left: 4em;
  padding: 0.5em 1em;
  position: fixed;
  top: 60%;
  transform: translateY(-40%);
}

@media screen and (max-width: 1023px) {
  .alert.alert-response {
    bottom: 2em;
    left: 2em;
  }
}

.slide-cut {
  cursor: pointer;
  padding: 0.5em 1em;
}

.slide-cut.selected-cut {
  background: #d9d9d9;
  cursor: default;
  display: flex;
}

.slide-cut.selected-cut .check-icon {
  transition: all 0.5s;
  display: block !important;
}

.slide-cut.selected-cut img {
  margin-right: 0.5em;
}

.modal-products label {
  color: #0464cc;
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  margin: 0.25em 0 0;
}

.modal-products [type=text],
.modal-products [type=password],
.modal-products select {
  border: 1px solid #e4e4e4;
  display: block;
  width: 100%;
}

.modal-products textarea {
  border: 1px solid #e4e4e4;
}

.modal-products .btn {
  font-size: 0.75em;
  font-weight: 600;
  margin: 0.5em auto;
  padding: 0.75em 1em;
}

.modal-products .btn.link {
  color: #0464cc;
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  padding: 0;
}

.modal-products .btn.link:hover {
  color: #034b9a;
}

@media screen and (max-width: 1023px) {
  .modal-products .btn.link {
    font-size: 1em;
  }
}

.modal-products h3 {
  color: #0464cc;
  font-weight: 700;
  text-align: center;
}

.modal-products .close {
  color: #666666;
  font-size: 0.85em;
  text-decoration: underline;
}

.modal-products span.error-block {
  color: #e60000;
  font-size: 0.65em;
  font-weight: 600;
  padding: 0 0.2em;
}

.check-1 {
  padding: 0 0 1em;
}

.check-1 span {
  margin: 0 0 1em;
}

.check-1 span.error-block {
  color: #e60000;
  font-size: 0.7em;
  font-weight: 600;
}

.check-1 [type=text],
.check-1 select {
  border: 1px solid #e4e4e4;
}

.check-1 label {
  color: #0464cc;
  display: block;
  font-size: 0.9em;
}

.check-1 .blue {
  font-size: 0.8em;
  padding: 0.75em 1em;
}

.check-1 .name {
  padding: 0.5em 0;
  width: 100%;
}

.check-1 .address {
  color: #0464cc;
  font-size: 0.8em;
  margin: 0 0 2em;
  text-align: right;
}

.check-1 .address a {
  font-weight: 600;
}

.check-1 .address a:hover {
  color: #034b9a;
}

.check-1 .control {
  margin: 0 0 0.3em;
}

.check-1 .control label {
  font-weight: 600;
}

.check-1 .control p {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  padding: 0.25em 0.2em;
}

.check-1 button {
  margin: 1em 0 0;
}

@media screen and (max-width: 1024px) {
  .check-1 .content {
    margin: 0;
  }
}

.check-1 .check-box {
  margin: 2em 0;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .check-1 .check-box {
    margin: 0 0 1em;
  }
}

.check-1 .header {
  display: flex;
  flex-wrap: nowrap;
}

.check-1 .header p {
  color: #989898;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}

.check-1 .header .subtotal {
  text-align: center;
}

.check-1 .name-product {
  flex-wrap: wrap;
  line-height: 0;
  padding-left: 1em;
}

.check-1 .name-product small {
  font-size: 0.6em;
  font-weight: 600;
  text-transform: uppercase;
}

.check-1 .list-cart {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
  padding-right: 0.15em;
}

.check-1 .list-cart .item {
  background: rgba(228, 228, 228, 0.1);
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0.5em;
  padding: 0.75em 0;
}

.check-1 .list-cart .item:last-child {
  margin: 0;
}

.check-1 .list-cart .item .columns {
  align-items: center;
  display: flex;
}

.check-1 .list-cart .item .name-product p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9em;
  font-weight: 600;
}

.check-1 .list-cart .item .imagen {
  align-items: center;
  justify-content: center;
  padding: 0.5em 0;
}

.check-1 .list-cart .item .imagen img {
  max-height: 5em;
  max-width: auto;
}

.check-1 .list-cart .item .qty {
  display: flex;
  flex-wrap: nowrap;
}

.check-1 .list-cart .item .qty span {
  color: #0464cc;
  cursor: pointer;
  font-size: 1.4em;
  font-weight: 700;
}

.check-1 .list-cart .item .qty span:first-child {
  margin-left: 0.5em;
}

.check-1 .list-cart .item .qty p {
  color: #0464cc;
  font-weight: 700;
  margin: 0 1em;
  text-align: center;
  width: 50px;
}

.check-1 .list-cart .item .price {
  color: #0cb4ec;
  font-weight: 700;
}

.check-1 .list-cart .item .subtotal {
  justify-content: center;
}

.check-1 .list-cart .item .delete {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0.75em 0;
}

.check-1 .list-cart .item .delete img {
  cursor: pointer;
  max-width: 1.5em;
  opacity: 0.9;
}

.check-1 .list-cart .item .option {
  background: #e4e4e4;
  cursor: pointer;
  padding: 0.75em 0;
  text-align: center;
}

.check-1 .list-cart .item .option img {
  max-width: 1.5em;
  opacity: 0.9;
}

.check-1 .list-cart .item .description {
  background: white;
  display: none;
  padding: 0.5em 1em;
}

.check-1 .list-cart .item .description p {
  align-items: center;
  color: rgba(0, 0, 0, 0.8);
  display: flex;
  font-size: 1em;
  font-weight: 600;
  width: 100%;
}

.check-1 .list-cart .item .description p span {
  color: #0cb4ec;
  font-size: 1em;
  font-weight: 700;
}

.copy {
  font-size: 14px;
}

@media screen and (max-width: 720px) {
  .copy {
    font-size: 12px;
  }
}

.icons-brands {
  font-size: 0.75em;
}

.icons-brands img {
  max-height: none;
  max-width: 1.5em;
}

@media screen and (max-width: 720px) {
  .icons-brands {
    font-size: 18px;
  }
}

.icons-brands a {
  display: inline-block;
}

.banner-1 {
  position: relative;
}

@media screen and (max-width: 500px) {
  .banner-1 {
    display: none;
  }
}

.banner-1 img {
  width: 100%;
  height: 90vh;
}

@media screen and (max-width: 1024px) {
  .banner-1 img {
    height: 30vh;
  }
}

@media screen and (max-width: 1023px) {
  .banner-1 img {
    height: 20vh;
  }
}

.banner-1 .shadow {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  top: 0%;
  position: absolute;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .banner-1 .shadow {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
  }
}

.banner-1 .banner-content {
  color: #fff;
  position: absolute;
  text-align: center;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 70%;
}

@media screen and (max-width: 500px) {
  .banner-1 .banner-content {
    text-align: center;
    width: 90%;
  }
}

.banner-1 .banner-content h1 {
  font-size: 3em;
  font-weight: 300;
  text-transform: none;
}

@media screen and (max-width: 700px) {
  .banner-1 .banner-content h1 {
    font-size: 2em;
  }
}

@media screen and (max-width: 500px) {
  .banner-1 .banner-content h1 {
    font-size: 1.7em;
  }
}

@media screen and (max-width: 350px) {
  .banner-1 .banner-content h1 {
    font-size: 1.5em;
  }
}

.banner-1 .banner-content h1.faq {
  font-size: 2.25em;
  line-height: 1;
}

.banner-1 .banner-content p {
  color: #fff;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .banner-1 .banner-content p {
    font-size: 0.9em;
    font-weight: 300;
  }
}

@media screen and (max-width: 350px) {
  .banner-1 .banner-content p {
    font-size: 0.8em;
  }
}

.banner-1 .banner-content p.faqs {
  line-height: 0;
}

@media screen and (max-width: 1023px) {
  .conocenos-1 .banner-content,
  .conocenos-1 .shadow {
    display: none;
  }
}

.conocenos-1 .about-mobile {
  display: block;
  margin: 1em 0 2em;
  padding: 1em 0;
}

@media screen and (max-width: 1023px) {
  .conocenos-1 .about-mobile {
    display: block;
  }
}

.conocenos-1 .about-mobile h1 {
  color: #0464cc;
  font-family: "Open Sans", sans-serif;
  font-size: 2em;
  font-weight: 600;
  margin: 0 0 0.35em;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .conocenos-1 .about-mobile h1 {
    font-size: 1.75em;
  }
}

.conocenos-1 .about-mobile p {
  font-size: 1em;
  font-weight: 300;
  text-align: justify;
  line-height: 1.5;
}

.conocenos-1 .video-alpina {
  margin: 1em 0 0;
}

.conocenos-1 .video-alpina span {
  color: #0cb4ec;
  font-size: 2.5em;
  text-transform: none;
  font-family: "MyWebFont";
}

@media screen and (max-width: 500px) {
  .conocenos-1 .video-alpina span {
    font-size: 1.8em;
  }
}

.conocenos-1 .video-alpina h1 {
  color: #0464cc;
  font-size: 1.5em;
  font-weight: 300;
}

.conocenos-1 .video-alpina iframe {
  margin: 1em 0 0;
  height: 60vh;
  width: 60vw;
}

@media screen and (max-width: 1024px) {
  .conocenos-1 .video-alpina iframe {
    height: 30vh;
    width: 70vw;
  }
}

@media screen and (max-width: 1023px) {
  .conocenos-1 .video-alpina iframe {
    height: 30vh;
    width: 75vw;
  }
}

@media screen and (max-width: 720px) {
  .conocenos-1 .video-alpina iframe {
    width: 85vw;
  }
}

.conocenos-1 .columns {
  align-items: center;
  align-self: center;
  padding: 1em 1.5em;
}

.conocenos-1 .content h1,
.conocenos-1 .content h2,
.conocenos-1 .content h3,
.conocenos-1 .content h4,
.conocenos-1 .content h5,
.conocenos-1 .content h1 > *,
.conocenos-1 .content h2 > *,
.conocenos-1 .content h3 > *,
.conocenos-1 .content h4 > *,
.conocenos-1 .content h5 > * {
  color: #0464cc !important;
  font-family: "Rubik", sans-serif !important;
  font-size: 1.15em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

.conocenos-1 .content b,
.conocenos-1 .content b > * {
  color: #0464cc !important;
}

.conocenos-1 .content p,
.conocenos-1 .content p > * {
  text-align: justify;
}

.conocenos-1 .content p {
  line-height: 1.5;
  font-weight: 300;
}

.conocenos-1 .row {
  margin: 2em 0 1em;
}

.conocenos-1 .row.certification {
  align-items: center;
}

.conocenos-1 .row.certification img {
  max-height: 5em;
}

.product-description {
  color: #8c8c8c;
  margin: 1em 0 1.5em;
}

.terms-1 {
  padding: 0 0 2em;
}

.terms-1 ul {
  font-size: 18px;
  padding: 0 0 0 2em;
}

.terms-1 > * {
  font-size: 16px !important;
}

.terms-1 .content > * {
  font-size: 16px !important;
}

.terms-1 .content h1,
.terms-1 .content h2,
.terms-1 .content h3,
.terms-1 .content h4,
.terms-1 .content h5,
.terms-1 .content h6,
.terms-1 .content h1 > *,
.terms-1 .content h2 > *,
.terms-1 .content h3 > *,
.terms-1 .content h4 > *,
.terms-1 .content h5 > *,
.terms-1 .content h6 > * {
  color: #0464cc !important;
  font-family: "Rubik", sans-serif !important;
  font-size: 1.6em !important;
  text-transform: uppercase;
}

.terms-1 .content h1 {
  font-size: 1.8em !important;
}

.terms-1 .content h4 {
  font-size: 1.2em !important;
  margin: 0.5em 0;
}

.terms-1 li::before {
  color: #0464cc;
  content: "\2022";
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  margin-left: -1em;
  width: 1em;
}

.terms-1 .container > * {
  font-size: 16px !important;
}

.terms-1 p > * {
  font-size: 16px !important;
}

.terms-1 p {
  margin: 0 0 1em;
  text-align: justify;
}

.terms-1 span {
  font-size: 16px !important;
}

.terms-1 .title h1 {
  font-size: 2em !important;
}

.terms-1 table {
  margin: 0 auto;
}

.asks-1 {
  margin: 0 0 3em;
  padding: 0 0 3em;
}

@media screen and (max-width: 500px) {
  .asks-1 .banner-1 {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .asks-1 h1 {
    font-size: 1.4em;
  }
}

.asks-1 h2,
.asks-1 .h2 {
  color: #0464cc;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  margin: 1em 0 0.5em;
  text-align: left;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  .asks-1 h2,
  .asks-1 .h2 {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 500px) {
  .asks-1 h2,
  .asks-1 .h2 {
    text-align: center;
  }
}

.asks-1 a {
  color: rgba(4, 100, 204, 0.95);
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0.3em 0;
  padding: 0 0.4em;
}

@media screen and (max-width: 1023px) {
  .asks-1 a {
    font-size: 1em;
  }
}

.asks-1 .faqs-mobile {
  display: block;
  margin: 0 0 2em;
  padding: 0 0 2em;
}

@media screen and (max-width: 500px) {
  .asks-1 .faqs-mobile {
    margin: 0 0 1em;
    padding: 0 0 1em;
  }
}

.asks-1 .faqs-mobile p,
.asks-1 .faqs-mobile h1 {
  font-weight: 600;
  text-align: center;
}

.asks-1 .faqs-mobile p {
  color: #0464cc;
  font-size: 1.5em;
  margin: 0 0 0.25em;
}

@media screen and (max-width: 500px) {
  .asks-1 .faqs-mobile p {
    font-size: 1.2em;
  }
}

.asks-1 .faqs-mobile h1 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.2em;
  font-weight: 500;
  padding: 0 1em;
}

@media screen and (max-width: 500px) {
  .asks-1 .faqs-mobile h1 {
    font-size: 0.9em;
    padding: 0 0.2em;
  }
}

.asks-1 .item {
  margin: 0 0 0.5em;
}

.asks-1 p {
  color: #262626;
  margin: 0 0 1em;
  padding: 0 0.7em;
  text-align: justify;
}

@media screen and (max-width: 1023px) {
  .asks-1 p {
    font-size: 0.85em;
  }
}

.errors h1 {
  text-transform: initial !important;
}

@media screen and (max-width: 375px) {
  .errors h1 {
    font-size: 1.5em !important;
  }
}

.errors .content {
  padding: 1.5em 0 3em;
}

.errors .btn {
  display: table;
  font-family: "Rubik", sans-serif;
  font-size: 0.9em;
  margin: 0 auto;
  padding: 0.5em 1em;
}

.errors img {
  margin: 1em 0 0;
  max-width: 8em;
  max-height: 8em;
}

@media screen and (max-width: 600px) {
  .errors img {
    max-width: 7em;
    max-height: 7em;
  }
}

.errors p {
  font-weight: 600;
}

.thanks {
  margin: 3em 0 0;
}

.thanks p {
  margin: 0 auto;
  padding: 1em 0 3em;
  text-align: center;
  width: 60%;
}

@media screen and (max-width: 720px) {
  .thanks p {
    width: 100%;
  }
}

.thanks .btn {
  display: table;
  font-family: "Rubik", sans-serif;
  font-size: 0.9em;
  margin: 0 auto;
  padding: 0.5em 1em;
}

.thanks .details .message {
  margin: 0 0 2em;
}

.thanks .details .message p {
  font-size: 0.8em;
  font-weight: 300;
  margin: 0.5em 0 1em;
  padding: 0;
}

.thanks .details h3 {
  color: #0464cc;
  font-weight: 400;
  margin: 0 0 1em;
}

.thanks .details img {
  max-width: 5em;
  max-height: 5em;
}

.thanks .details h5 {
  color: #0464cc;
  font-size: 1.5em;
  font-weight: 300;
  margin: 1em 0 0;
  text-align: center;
  width: 100%;
}

.thanks .details h5 span {
  color: #54c444;
  font-weight: 600;
}

.thanks .details .summary {
  align-self: center;
  padding: 0 3em 0 0;
}

@media screen and (max-width: 1023px) {
  .thanks .details .summary {
    margin: 0 0 3em;
    padding: 0;
  }
}

.thanks .details .summary p {
  font-weight: 300;
  margin: 0 0 1em;
  padding: 0;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .thanks .details .summary p {
    text-align: center;
  }
}

.thanks .details .summary p.center {
  text-align: center;
}

.thanks .details .summary .titulo {
  color: #0464cc;
  font-size: 1em;
  font-weight: 600;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

.thanks .details .summary .mensaje {
  font-size: 0.85em;
  margin: 3em 0 0;
}

.thanks .process {
  margin: 0;
  padding: 0 0 0 2em;
}

@media screen and (max-width: 1023px) {
  .thanks .process {
    justify-content: center;
    padding: 0 1em;
  }
}

.thanks .process h3 {
  color: #0464cc;
  font-weight: 400;
  margin: 0 0 2em;
  text-align: center;
}

.thanks .process .item {
  align-items: center;
  margin: 0 0 1.5em;
}

.thanks .process .item .row {
  align-items: center;
}

@media screen and (max-width: 600px) {
  .thanks .process .item .row {
    justify-content: center;
    margin: 0 0 1em;
    width: 100%;
  }
}

.thanks .process .item .icon {
  align-items: center;
  background: #0464cc;
  border-radius: 100%;
  max-width: 4em;
  padding: 1em;
}

.thanks .process .item .icon.blue {
  background: rgba(4, 100, 204, 0.9);
}

.thanks .process .item img {
  max-width: 2em;
}

.thanks .process .item .description {
  align-items: center;
  padding: 0 0 0 1em;
}

@media screen and (max-width: 600px) {
  .thanks .process .item .description {
    padding: 0;
  }
}

.thanks .process .item .description h4 {
  font-weight: 500;
  margin: 0 0 0.2em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .thanks .process .item .description h4 {
    text-align: center;
  }
}

.thanks .process .item .description p {
  font-size: 0.95em;
  font-weight: 300;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .thanks .process .item .description p {
    text-align: justify;
  }
}

.whatsapp {
  border-radius: 100%;
  bottom: 1em;
  position: fixed;
  right: 1em;
  padding: 0.7em;
  background: #0464cc;
}

.whatsapp img {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
  transition: 0.1s;
  width: 2.2em;
}

@media screen and (max-width: 500px) {
  .whatsapp img {
    width: 2em;
  }
}

.whatsapp img:hover {
  -webkit-filter: brightness(95%);
          filter: brightness(95%);
  transition: 0.1s;
  width: 2.5em;
}

.process {
  margin: 2em 0 0;
  background: #fff;
}

@media screen and (max-width: 720px) {
  .process .desktop {
    display: none;
  }
}

.process .mobile {
  margin: 1em 0;
  display: none;
}

.process .mobile h2 {
  color: #0464cc;
}

@media screen and (max-width: 720px) {
  .process .mobile {
    padding: 1em;
    display: block;
  }
}

.process .mobile figure {
  margin: 1em 0;
  padding: 1em 0;
  text-align: center;
}

.process .mobile figure img {
  width: 6em;
  height: 6em;
}

.process .mobile figure:nth-child(4) img {
  width: 8em;
  height: 6em;
}

.process .mobile figure h2 {
  font-size: 1em;
  margin: 1em 0;
  padding: 0 5em;
}

@media screen and (max-width: 375px) {
  .process .mobile figure h2 {
    padding: 0 3.5em;
  }
}

@media screen and (max-width: 350px) {
  .process .mobile figure h2 {
    padding: 0 2em;
  }
}

.process h2 {
  color: #fff;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.filter {
  background: #e6e6e6;
  padding: 0 0 1em;
}

@media screen and (max-width: 640px) {
  .filter {
    display: none;
  }
}

.filter.show-filt {
  left: 0;
}

.filter .heading {
  background: #0464cc;
  color: #fff;
  font-weight: 700;
  padding: 0.5em;
  position: relative;
  text-transform: uppercase;
}

@media screen and (max-width: 640px) {
  .filter .heading {
    display: none;
  }
}

.filter .body {
  padding: 0.5em;
  text-align: center;
}

.filter h4 {
  margin: 0;
}

.filter li {
  padding-left: 1.3em;
}

.filter li::before {
  content: "\2022";
  color: #0464cc;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.filter .item p {
  color: rgba(0, 0, 0, 0.65);
  font-family: "Open Sans", sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  text-align: center;
}

.filter .item p:hover {
  color: rgba(0, 0, 0, 0.8);
}

.filter [type=text] {
  background: #fff;
  border: 0;
  color: #0464cc;
  font-size: 0.9em;
  padding: 0.1em 0;
  outline: none;
  text-align: center;
  width: 95%;
}

.filter .item {
  margin: 0.5em 0;
}

.filter [type=submit] {
  background: #0cb4ec;
  margin: 0.5em 0 0;
  font-size: 1em;
  font-weight: bold;
  border-radius: 0;
  padding: 0.6em 0;
  display: block;
  width: 100%;
}

.mobile-heading {
  align-items: center;
  background: #0464cc;
  display: none;
  color: #fff;
  justify-content: space-between;
  padding: 0.5em 1em;
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  .mobile-heading {
    display: flex;
  }
}

.mobile-heading .show-filter {
  text-align: right;
}

.mobile-heading img {
  width: 1.2em;
  border: 0;
}

.cards-icons .columns {
  padding: 0;
}

.cards-icons img {
  height: 2em;
  max-width: none;
  width: 100%;
}

.mini-slider {
  align-self: center;
}

@media screen and (max-width: 1023px) {
  .mini-slider {
    margin: 2em auto 1em;
  }
}

.mini-slider .slider {
  align-self: center;
  background: #0464cc;
  width: 100%;
}

.mini-slider .slider img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.mini-slider .slider .shipping-free {
  align-self: center;
  position: relative;
  justify-content: center;
  height: 225px;
}

.mini-slider .slider .shipping-free h3 {
  color: #fff;
  font-size: 1.5em;
  position: absolute;
  text-align: center;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  padding: 0 1em;
}

.mini-slider .slider .slick-dots {
  bottom: 1em;
}

.mini-slider .slider .slick-dots li {
  height: 15px;
  width: 15px;
}

.page-load-status {
  color: #0464cc;
  margin: 2em 0 1em;
  text-align: center;
  text-transform: uppercase;
}

.contacts-1 .title {
  margin: 2em 0 3em;
  height: auto;
}

@media screen and (max-width: 375px) {
  .contacts-1 .title {
    margin: 2em 0 1em;
  }
}

.contacts-1 .title h1 {
  font-size: 2.5em;
}

@media screen and (max-width: 375px) {
  .contacts-1 .title h1 {
    font-size: 2em;
  }
}

@media screen and (max-width: 1023px) {
  .contacts-1 .map-container {
    margin: 0 0 1em;
    text-align: center;
  }
}

.contacts-1 small.phone-small {
  font-size: 12px;
}

.contacts-1 .form-container {
  margin: 0 0 2em;
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .contacts-1 .form-container {
    text-align: center;
  }
}

.contacts-1 .form-container [type=text],
.contacts-1 .form-container [type=tel],
.contacts-1 .form-container [type=email],
.contacts-1 .form-container select,
.contacts-1 .form-container textarea {
  background: #e4e4e4;
  border: 0;
  font-size: 0.8em;
  font-weight: 500;
  margin: 0.25em 0;
  padding: 0.45em 0.7em;
  width: 100%;
}

.contacts-1 .form-container button {
  font-weight: bold;
  padding: 1em 1.5em;
}

.agencies-1 {
  margin: 0 0 1em;
}

.agencies-1 .title {
  margin: 2em 0;
}

.agencies-1 p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.8em;
  text-align: center;
}

.agencies-1 .list-agencies {
  margin: 1em 0;
}

.agencies-1 .list-agencies .columns {
  padding: 0 1.2em;
  margin: 0 0 2em;
}

@media screen and (max-width: 500px) {
  .agencies-1 .list-agencies .columns {
    padding: 0 0.5em;
  }
}

.agencies-1 .list-agencies .columns h3 {
  font-size: 0.9em;
  text-align: center;
}

.agencies-1 .list-agencies .columns .phone {
  color: #0464cc;
  margin-top: 0.5em;
  text-align: center;
}

.payment-1 form {
  width: 100%;
}

.payment-1 form input {
  font-size: 0.9em;
  padding: 0.5em 0;
  width: 100%;
}

.payment-1 .columns {
  margin: 0.25em 0;
}

.payment-1 .payment-methods {
  margin: 2em 0 1em;
  padding: 1em 0;
}

.payment-1 img {
  height: 2em;
}

.payment-1 .field-error {
  color: #e60000;
  font-size: 0.65em;
  font-weight: 600;
  text-transform: uppercase;
}

.payment-1 .btn {
  font-size: 0.85em;
  font-weight: 600;
}

button:disabled {
  cursor: default;
  pointer-events: all !important;
}

.active-loading {
  -webkit-animation: rotate 1.4s ease 0.5s infinite;
          animation: rotate 1.4s ease 0.5s infinite;
  background: transparent !important;
  border: 2px solid #0464cc;
  border-radius: 50%;
  border-left-color: transparent !important;
  font-size: 0px !important;
  height: 42px;
  width: 42px;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(360deg);
  }
}

.list-1 p {
  font-weight: 600;
}

