@charset "UTF-8";

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

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

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

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

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

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

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

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

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

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

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

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

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

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

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

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

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

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

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

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

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

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

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

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

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

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

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

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

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

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

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

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

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

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

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

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

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

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

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

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

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

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

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

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

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

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

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

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

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

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

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

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

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

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

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

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

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

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

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

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

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

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

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

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

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

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

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

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

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

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

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

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

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

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

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

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

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

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

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

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../../assets/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../../assets/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../../assets/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../../assets/font-awesome-4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../../assets/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../../assets/font-awesome-4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[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;
}

@charset "UTF-8";
/*
    Created on : 12.05.2015, 09:34:00
*/
/* karla-200 - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 200;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-200.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-200.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-200.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-200.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-200.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-200.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-300 - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 300;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-regular - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 400;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-regular.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-regular.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-regular.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-regular.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-regular.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-500 - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 500;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-600 - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 600;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-700 - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 700;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-800 - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 800;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-300italic - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 300;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300italic.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300italic.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300italic.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300italic.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-300italic.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-italic - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 400;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-italic.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-italic.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-italic.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-italic.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-italic.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-500italic - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 500;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500italic.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500italic.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500italic.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500italic.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-500italic.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-600italic - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 600;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600italic.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600italic.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600italic.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600italic.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-600italic.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-700italic - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 700;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700italic.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700italic.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700italic.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700italic.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-700italic.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* karla-800italic - latin-ext_latin */
@font-face {
  font-family: "Karla";
  font-style: italic;
  font-weight: 800;
  src: url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800italic.eot?#iefix") format("embedded-opentype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800italic.woff2") format("woff2"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800italic.woff") format("woff"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800italic.ttf") format("truetype"), url("../../files/theme-baufinanz-2019/fonts/karla-v21-latin-ext_latin-800italic.svg#Karla") format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/**
 * Contao Open Source CMS
 *
 * Copyright (c) 2005-2015 Leo Feyer
 *
 * @license LGPL-3.0+
 */
/**
 * Reset the margin and padding of the block elements
 */
body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, code, ol, ul, li, dl, dt, dd, figure, table, th, td, form, fieldset, legend, input, textarea {
  margin: 0;
  padding: 0;
}

/**
 * Basic element formatting
 */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption, th, td {
  text-align: left;
  text-align: start; /* see #4596 */
  vertical-align: top;
}

abbr, acronym {
  font-variant: normal;
  border-bottom: 1px dotted #666;
  cursor: help;
}

blockquote, q {
  quotes: none;
}

fieldset, img {
  border: 0;
}

ul {
  list-style-type: none;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

del {
  text-decoration: line-through;
}

ins {
  text-decoration: none;
}

header, footer, nav, section, aside, article, figure, figcaption {
  /* display:block; */
}

/**
 * Default font settings
 */
body {
  font: 12px/1 sans-serif;
  color: #000;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: 99%;
  font-weight: inherit;
}

pre, code {
  font-family: Monaco, monospace;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

h1 {
  font-size: 1.8333em; /* 22px */
}

h2 {
  font-size: 1.6667em; /* 20px */
}

h3 {
  font-size: 1.5em; /* 18px */
}

h4 {
  font-size: 1.3333em; /* 16px */
}

table {
  font-size: inherit;
}

caption, th, b {
  font-weight: bold;
}

a {
  color: inherit;
}

/**
 * Default margins
 */
/*h1,h2,h3,h4,h5,h6 {
    margin-top:1em;
}
h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form {
    margin-bottom:12px;  Should match the font size 
}*/
/*
    Created on : 03.02.2015, 08:44:48
    Description: Some SASS mixins
*/
.clearfix, #container #content-1 .mod_article, #container .mod_article, .inside {
  zoom: 1;
}
.clearfix::after, #container #content-1 .mod_article::after, #container .mod_article::after, .inside::after, .clearfix::before, #container #content-1 .mod_article::before, #container .mod_article::before, .inside::before {
  content: "";
  display: table;
}
.clearfix::after, #container #content-1 .mod_article::after, #container .mod_article::after, .inside::after {
  clear: both;
}

.fg-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.fg-black {
  color: #000;
}

.bg-black {
  background-color: #000;
}

/*
    Created on : 17.04.2015, 09:34:00
    Descroption: Custom Contao 3.x Grid with fixed with
                 http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
                 Default Breaks...
                 @768 for portrait > sm
                 @1024 for landscape > md
                 @1280 for desktops > lg
                 Percenatgegrid uses bootstrap-like classes col-xs-*, col-sm-*...

                 Add some more breakoint by extent $arrBreakpoints
                 08.07.2016: Fixed clear-floating
                 23.09.2016: tuned grid, fixed col-xx-hide
*/
/*
 Created on : 22.07.2015, 16:12:20
 Changes :
 07.10.2015 - included percentage grid and rename old one to generatePixelGrid
 28.10.2015 - introduced prefixes
 27.01.2016 - added/fixed boxed behavior
 17.02.2016 - removes pixel-based grid calculation
 15.04.2016 - replace with css-calc
 24.06.2016 - remove junk
 23.09.2016 - tuned
*/
/* STOP edit here! */
.grid {
  /*min-width: 320px;*/
  margin-left: auto;
  margin-right: auto;
}
.grid-fluid {
  max-width: 100% !important;
}

*[class*=col-] {
  /*display: inline;*/
  box-sizing: border-box;
  float: left;
  margin-left: 15px;
  margin-right: 15px;
}
*[class*=col-][class*=push-], *[class*=col-][class*=pull-] {
  position: relative;
}

.mod_article[class*=col-] {
  margin-left: 0;
  margin-right: 0;
}

.row {
  clear: left;
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-0 {
  width: calc(100% * 0 / 12 - 31px);
}
.col-xs-0.mod_article, .col-xs-0.no-margin {
  width: 0%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-0.no-margin-left, .col-xs-0.no-margin-right {
  width: calc(100% * 0 / 12 - 16px);
}

.offset-xs-0 {
  margin-left: calc(100% * 0 / 12 + 16px);
}
.offset-xs-0.mod_article {
  margin-left: 0%;
}

.push-xs-0 {
  left: 0%;
}

.pull-xs-0 {
  right: 0%;
}

.col-xs-1 {
  width: calc(100% * 1 / 12 - 31px);
}
.col-xs-1.mod_article, .col-xs-1.no-margin {
  width: 8.3333333333%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-1.no-margin-left, .col-xs-1.no-margin-right {
  width: calc(100% * 1 / 12 - 16px);
}

.offset-xs-1 {
  margin-left: calc(100% * 1 / 12 + 16px);
}
.offset-xs-1.mod_article {
  margin-left: 8.3333333333%;
}

.push-xs-1 {
  left: 8.3333333333%;
}

.pull-xs-1 {
  right: 8.3333333333%;
}

.col-xs-2 {
  width: calc(100% * 2 / 12 - 31px);
}
.col-xs-2.mod_article, .col-xs-2.no-margin {
  width: 16.6666666667%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-2.no-margin-left, .col-xs-2.no-margin-right {
  width: calc(100% * 2 / 12 - 16px);
}

.offset-xs-2 {
  margin-left: calc(100% * 2 / 12 + 16px);
}
.offset-xs-2.mod_article {
  margin-left: 16.6666666667%;
}

.push-xs-2 {
  left: 16.6666666667%;
}

.pull-xs-2 {
  right: 16.6666666667%;
}

.col-xs-3 {
  width: calc(100% * 3 / 12 - 31px);
}
.col-xs-3.mod_article, .col-xs-3.no-margin {
  width: 25%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-3.no-margin-left, .col-xs-3.no-margin-right {
  width: calc(100% * 3 / 12 - 16px);
}

.offset-xs-3 {
  margin-left: calc(100% * 3 / 12 + 16px);
}
.offset-xs-3.mod_article {
  margin-left: 25%;
}

.push-xs-3 {
  left: 25%;
}

.pull-xs-3 {
  right: 25%;
}

.col-xs-4 {
  width: calc(100% * 4 / 12 - 31px);
}
.col-xs-4.mod_article, .col-xs-4.no-margin {
  width: 33.3333333333%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-4.no-margin-left, .col-xs-4.no-margin-right {
  width: calc(100% * 4 / 12 - 16px);
}

.offset-xs-4 {
  margin-left: calc(100% * 4 / 12 + 16px);
}
.offset-xs-4.mod_article {
  margin-left: 33.3333333333%;
}

.push-xs-4 {
  left: 33.3333333333%;
}

.pull-xs-4 {
  right: 33.3333333333%;
}

.col-xs-5 {
  width: calc(100% * 5 / 12 - 31px);
}
.col-xs-5.mod_article, .col-xs-5.no-margin {
  width: 41.6666666667%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-5.no-margin-left, .col-xs-5.no-margin-right {
  width: calc(100% * 5 / 12 - 16px);
}

.offset-xs-5 {
  margin-left: calc(100% * 5 / 12 + 16px);
}
.offset-xs-5.mod_article {
  margin-left: 41.6666666667%;
}

.push-xs-5 {
  left: 41.6666666667%;
}

.pull-xs-5 {
  right: 41.6666666667%;
}

.col-xs-6 {
  width: calc(100% * 6 / 12 - 31px);
}
.col-xs-6.mod_article, .col-xs-6.no-margin {
  width: 50%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-6.no-margin-left, .col-xs-6.no-margin-right {
  width: calc(100% * 6 / 12 - 16px);
}

.offset-xs-6 {
  margin-left: calc(100% * 6 / 12 + 16px);
}
.offset-xs-6.mod_article {
  margin-left: 50%;
}

.push-xs-6 {
  left: 50%;
}

.pull-xs-6 {
  right: 50%;
}

.col-xs-7 {
  width: calc(100% * 7 / 12 - 31px);
}
.col-xs-7.mod_article, .col-xs-7.no-margin {
  width: 58.3333333333%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-7.no-margin-left, .col-xs-7.no-margin-right {
  width: calc(100% * 7 / 12 - 16px);
}

.offset-xs-7 {
  margin-left: calc(100% * 7 / 12 + 16px);
}
.offset-xs-7.mod_article {
  margin-left: 58.3333333333%;
}

.push-xs-7 {
  left: 58.3333333333%;
}

.pull-xs-7 {
  right: 58.3333333333%;
}

.col-xs-8 {
  width: calc(100% * 8 / 12 - 31px);
}
.col-xs-8.mod_article, .col-xs-8.no-margin {
  width: 66.6666666667%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-8.no-margin-left, .col-xs-8.no-margin-right {
  width: calc(100% * 8 / 12 - 16px);
}

.offset-xs-8 {
  margin-left: calc(100% * 8 / 12 + 16px);
}
.offset-xs-8.mod_article {
  margin-left: 66.6666666667%;
}

.push-xs-8 {
  left: 66.6666666667%;
}

.pull-xs-8 {
  right: 66.6666666667%;
}

.col-xs-9 {
  width: calc(100% * 9 / 12 - 31px);
}
.col-xs-9.mod_article, .col-xs-9.no-margin {
  width: 75%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-9.no-margin-left, .col-xs-9.no-margin-right {
  width: calc(100% * 9 / 12 - 16px);
}

.offset-xs-9 {
  margin-left: calc(100% * 9 / 12 + 16px);
}
.offset-xs-9.mod_article {
  margin-left: 75%;
}

.push-xs-9 {
  left: 75%;
}

.pull-xs-9 {
  right: 75%;
}

.col-xs-10 {
  width: calc(100% * 10 / 12 - 31px);
}
.col-xs-10.mod_article, .col-xs-10.no-margin {
  width: 83.3333333333%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-10.no-margin-left, .col-xs-10.no-margin-right {
  width: calc(100% * 10 / 12 - 16px);
}

.offset-xs-10 {
  margin-left: calc(100% * 10 / 12 + 16px);
}
.offset-xs-10.mod_article {
  margin-left: 83.3333333333%;
}

.push-xs-10 {
  left: 83.3333333333%;
}

.pull-xs-10 {
  right: 83.3333333333%;
}

.col-xs-11 {
  width: calc(100% * 11 / 12 - 31px);
}
.col-xs-11.mod_article, .col-xs-11.no-margin {
  width: 91.6666666667%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-11.no-margin-left, .col-xs-11.no-margin-right {
  width: calc(100% * 11 / 12 - 16px);
}

.offset-xs-11 {
  margin-left: calc(100% * 11 / 12 + 16px);
}
.offset-xs-11.mod_article {
  margin-left: 91.6666666667%;
}

.push-xs-11 {
  left: 91.6666666667%;
}

.pull-xs-11 {
  right: 91.6666666667%;
}

.col-xs-12 {
  width: calc(100% * 12 / 12 - 31px);
}
.col-xs-12.mod_article, .col-xs-12.no-margin {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.col-xs-12.no-margin-left, .col-xs-12.no-margin-right {
  width: calc(100% * 12 / 12 - 16px);
}

.offset-xs-12 {
  margin-left: calc(100% * 12 / 12 + 16px);
}
.offset-xs-12.mod_article {
  margin-left: 100%;
}

.push-xs-12 {
  left: 100%;
}

.pull-xs-12 {
  right: 100%;
}

@media screen and (max-width: 479px) {
  .col-xs-12 {
    clear: left;
  }
  .col-xs-hide {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .col-xsm-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-xsm-0.mod_article, .col-xsm-0.no-margin {
    width: 0%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-0.no-margin-left, .col-xsm-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-xsm-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-xsm-0.mod_article {
    margin-left: 0%;
  }
  .push-xsm-0 {
    left: 0%;
  }
  .pull-xsm-0 {
    right: 0%;
  }
  .col-xsm-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-xsm-1.mod_article, .col-xsm-1.no-margin {
    width: 8.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-1.no-margin-left, .col-xsm-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-xsm-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-xsm-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-xsm-1 {
    left: 8.3333333333%;
  }
  .pull-xsm-1 {
    right: 8.3333333333%;
  }
  .col-xsm-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-xsm-2.mod_article, .col-xsm-2.no-margin {
    width: 16.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-2.no-margin-left, .col-xsm-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-xsm-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-xsm-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-xsm-2 {
    left: 16.6666666667%;
  }
  .pull-xsm-2 {
    right: 16.6666666667%;
  }
  .col-xsm-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-xsm-3.mod_article, .col-xsm-3.no-margin {
    width: 25%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-3.no-margin-left, .col-xsm-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-xsm-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-xsm-3.mod_article {
    margin-left: 25%;
  }
  .push-xsm-3 {
    left: 25%;
  }
  .pull-xsm-3 {
    right: 25%;
  }
  .col-xsm-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-xsm-4.mod_article, .col-xsm-4.no-margin {
    width: 33.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-4.no-margin-left, .col-xsm-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-xsm-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-xsm-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-xsm-4 {
    left: 33.3333333333%;
  }
  .pull-xsm-4 {
    right: 33.3333333333%;
  }
  .col-xsm-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-xsm-5.mod_article, .col-xsm-5.no-margin {
    width: 41.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-5.no-margin-left, .col-xsm-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-xsm-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-xsm-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-xsm-5 {
    left: 41.6666666667%;
  }
  .pull-xsm-5 {
    right: 41.6666666667%;
  }
  .col-xsm-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-xsm-6.mod_article, .col-xsm-6.no-margin {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-6.no-margin-left, .col-xsm-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-xsm-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-xsm-6.mod_article {
    margin-left: 50%;
  }
  .push-xsm-6 {
    left: 50%;
  }
  .pull-xsm-6 {
    right: 50%;
  }
  .col-xsm-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-xsm-7.mod_article, .col-xsm-7.no-margin {
    width: 58.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-7.no-margin-left, .col-xsm-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-xsm-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-xsm-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-xsm-7 {
    left: 58.3333333333%;
  }
  .pull-xsm-7 {
    right: 58.3333333333%;
  }
  .col-xsm-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-xsm-8.mod_article, .col-xsm-8.no-margin {
    width: 66.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-8.no-margin-left, .col-xsm-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-xsm-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-xsm-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-xsm-8 {
    left: 66.6666666667%;
  }
  .pull-xsm-8 {
    right: 66.6666666667%;
  }
  .col-xsm-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-xsm-9.mod_article, .col-xsm-9.no-margin {
    width: 75%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-9.no-margin-left, .col-xsm-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-xsm-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-xsm-9.mod_article {
    margin-left: 75%;
  }
  .push-xsm-9 {
    left: 75%;
  }
  .pull-xsm-9 {
    right: 75%;
  }
  .col-xsm-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-xsm-10.mod_article, .col-xsm-10.no-margin {
    width: 83.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-10.no-margin-left, .col-xsm-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-xsm-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-xsm-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-xsm-10 {
    left: 83.3333333333%;
  }
  .pull-xsm-10 {
    right: 83.3333333333%;
  }
  .col-xsm-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-xsm-11.mod_article, .col-xsm-11.no-margin {
    width: 91.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-11.no-margin-left, .col-xsm-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-xsm-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-xsm-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-xsm-11 {
    left: 91.6666666667%;
  }
  .pull-xsm-11 {
    right: 91.6666666667%;
  }
  .col-xsm-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-xsm-12.mod_article, .col-xsm-12.no-margin {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xsm-12.no-margin-left, .col-xsm-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-xsm-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-xsm-12.mod_article {
    margin-left: 100%;
  }
  .push-xsm-12 {
    left: 100%;
  }
  .pull-xsm-12 {
    right: 100%;
  }
  .grid {
    max-width: 480px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .col-xsm-12 {
    clear: left;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .col-xsm-hide {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .col-sm-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-sm-0.mod_article, .col-sm-0.no-margin {
    width: 0%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-0.no-margin-left, .col-sm-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-sm-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-sm-0.mod_article {
    margin-left: 0%;
  }
  .push-sm-0 {
    left: 0%;
  }
  .pull-sm-0 {
    right: 0%;
  }
  .col-sm-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-sm-1.mod_article, .col-sm-1.no-margin {
    width: 8.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-1.no-margin-left, .col-sm-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-sm-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-sm-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-sm-1 {
    left: 8.3333333333%;
  }
  .pull-sm-1 {
    right: 8.3333333333%;
  }
  .col-sm-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-sm-2.mod_article, .col-sm-2.no-margin {
    width: 16.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-2.no-margin-left, .col-sm-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-sm-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-sm-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-sm-2 {
    left: 16.6666666667%;
  }
  .pull-sm-2 {
    right: 16.6666666667%;
  }
  .col-sm-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-sm-3.mod_article, .col-sm-3.no-margin {
    width: 25%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-3.no-margin-left, .col-sm-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-sm-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-sm-3.mod_article {
    margin-left: 25%;
  }
  .push-sm-3 {
    left: 25%;
  }
  .pull-sm-3 {
    right: 25%;
  }
  .col-sm-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-sm-4.mod_article, .col-sm-4.no-margin {
    width: 33.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-4.no-margin-left, .col-sm-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-sm-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-sm-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-sm-4 {
    left: 33.3333333333%;
  }
  .pull-sm-4 {
    right: 33.3333333333%;
  }
  .col-sm-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-sm-5.mod_article, .col-sm-5.no-margin {
    width: 41.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-5.no-margin-left, .col-sm-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-sm-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-sm-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-sm-5 {
    left: 41.6666666667%;
  }
  .pull-sm-5 {
    right: 41.6666666667%;
  }
  .col-sm-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-sm-6.mod_article, .col-sm-6.no-margin {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-6.no-margin-left, .col-sm-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-sm-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-sm-6.mod_article {
    margin-left: 50%;
  }
  .push-sm-6 {
    left: 50%;
  }
  .pull-sm-6 {
    right: 50%;
  }
  .col-sm-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-sm-7.mod_article, .col-sm-7.no-margin {
    width: 58.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-7.no-margin-left, .col-sm-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-sm-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-sm-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-sm-7 {
    left: 58.3333333333%;
  }
  .pull-sm-7 {
    right: 58.3333333333%;
  }
  .col-sm-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-sm-8.mod_article, .col-sm-8.no-margin {
    width: 66.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-8.no-margin-left, .col-sm-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-sm-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-sm-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-sm-8 {
    left: 66.6666666667%;
  }
  .pull-sm-8 {
    right: 66.6666666667%;
  }
  .col-sm-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-sm-9.mod_article, .col-sm-9.no-margin {
    width: 75%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-9.no-margin-left, .col-sm-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-sm-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-sm-9.mod_article {
    margin-left: 75%;
  }
  .push-sm-9 {
    left: 75%;
  }
  .pull-sm-9 {
    right: 75%;
  }
  .col-sm-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-sm-10.mod_article, .col-sm-10.no-margin {
    width: 83.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-10.no-margin-left, .col-sm-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-sm-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-sm-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-sm-10 {
    left: 83.3333333333%;
  }
  .pull-sm-10 {
    right: 83.3333333333%;
  }
  .col-sm-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-sm-11.mod_article, .col-sm-11.no-margin {
    width: 91.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-11.no-margin-left, .col-sm-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-sm-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-sm-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-sm-11 {
    left: 91.6666666667%;
  }
  .pull-sm-11 {
    right: 91.6666666667%;
  }
  .col-sm-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-sm-12.mod_article, .col-sm-12.no-margin {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-12.no-margin-left, .col-sm-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-sm-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-sm-12.mod_article {
    margin-left: 100%;
  }
  .push-sm-12 {
    left: 100%;
  }
  .pull-sm-12 {
    right: 100%;
  }
  .grid {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .col-sm-12 {
    clear: left;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .col-sm-hide {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .col-md-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-md-0.mod_article, .col-md-0.no-margin {
    width: 0%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-0.no-margin-left, .col-md-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-md-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-md-0.mod_article {
    margin-left: 0%;
  }
  .push-md-0 {
    left: 0%;
  }
  .pull-md-0 {
    right: 0%;
  }
  .col-md-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-md-1.mod_article, .col-md-1.no-margin {
    width: 8.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-1.no-margin-left, .col-md-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-md-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-md-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-md-1 {
    left: 8.3333333333%;
  }
  .pull-md-1 {
    right: 8.3333333333%;
  }
  .col-md-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-md-2.mod_article, .col-md-2.no-margin {
    width: 16.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-2.no-margin-left, .col-md-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-md-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-md-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-md-2 {
    left: 16.6666666667%;
  }
  .pull-md-2 {
    right: 16.6666666667%;
  }
  .col-md-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-md-3.mod_article, .col-md-3.no-margin {
    width: 25%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-3.no-margin-left, .col-md-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-md-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-md-3.mod_article {
    margin-left: 25%;
  }
  .push-md-3 {
    left: 25%;
  }
  .pull-md-3 {
    right: 25%;
  }
  .col-md-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-md-4.mod_article, .col-md-4.no-margin {
    width: 33.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-4.no-margin-left, .col-md-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-md-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-md-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-md-4 {
    left: 33.3333333333%;
  }
  .pull-md-4 {
    right: 33.3333333333%;
  }
  .col-md-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-md-5.mod_article, .col-md-5.no-margin {
    width: 41.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-5.no-margin-left, .col-md-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-md-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-md-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-md-5 {
    left: 41.6666666667%;
  }
  .pull-md-5 {
    right: 41.6666666667%;
  }
  .col-md-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-md-6.mod_article, .col-md-6.no-margin {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-6.no-margin-left, .col-md-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-md-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-md-6.mod_article {
    margin-left: 50%;
  }
  .push-md-6 {
    left: 50%;
  }
  .pull-md-6 {
    right: 50%;
  }
  .col-md-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-md-7.mod_article, .col-md-7.no-margin {
    width: 58.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-7.no-margin-left, .col-md-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-md-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-md-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-md-7 {
    left: 58.3333333333%;
  }
  .pull-md-7 {
    right: 58.3333333333%;
  }
  .col-md-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-md-8.mod_article, .col-md-8.no-margin {
    width: 66.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-8.no-margin-left, .col-md-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-md-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-md-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-md-8 {
    left: 66.6666666667%;
  }
  .pull-md-8 {
    right: 66.6666666667%;
  }
  .col-md-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-md-9.mod_article, .col-md-9.no-margin {
    width: 75%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-9.no-margin-left, .col-md-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-md-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-md-9.mod_article {
    margin-left: 75%;
  }
  .push-md-9 {
    left: 75%;
  }
  .pull-md-9 {
    right: 75%;
  }
  .col-md-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-md-10.mod_article, .col-md-10.no-margin {
    width: 83.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-10.no-margin-left, .col-md-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-md-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-md-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-md-10 {
    left: 83.3333333333%;
  }
  .pull-md-10 {
    right: 83.3333333333%;
  }
  .col-md-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-md-11.mod_article, .col-md-11.no-margin {
    width: 91.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-11.no-margin-left, .col-md-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-md-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-md-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-md-11 {
    left: 91.6666666667%;
  }
  .pull-md-11 {
    right: 91.6666666667%;
  }
  .col-md-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-md-12.mod_article, .col-md-12.no-margin {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-12.no-margin-left, .col-md-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-md-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-md-12.mod_article {
    margin-left: 100%;
  }
  .push-md-12 {
    left: 100%;
  }
  .pull-md-12 {
    right: 100%;
  }
  .grid {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1170px) {
  .col-md-12 {
    clear: left;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1170px) {
  .col-md-hide {
    display: none;
  }
}
@media screen and (min-width: 1171px) {
  .col-lg-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-lg-0.mod_article, .col-lg-0.no-margin {
    width: 0%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-0.no-margin-left, .col-lg-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-lg-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-lg-0.mod_article {
    margin-left: 0%;
  }
  .push-lg-0 {
    left: 0%;
  }
  .pull-lg-0 {
    right: 0%;
  }
  .col-lg-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-lg-1.mod_article, .col-lg-1.no-margin {
    width: 8.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-1.no-margin-left, .col-lg-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-lg-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-lg-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-lg-1 {
    left: 8.3333333333%;
  }
  .pull-lg-1 {
    right: 8.3333333333%;
  }
  .col-lg-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-lg-2.mod_article, .col-lg-2.no-margin {
    width: 16.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-2.no-margin-left, .col-lg-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-lg-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-lg-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-lg-2 {
    left: 16.6666666667%;
  }
  .pull-lg-2 {
    right: 16.6666666667%;
  }
  .col-lg-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-lg-3.mod_article, .col-lg-3.no-margin {
    width: 25%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-3.no-margin-left, .col-lg-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-lg-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-lg-3.mod_article {
    margin-left: 25%;
  }
  .push-lg-3 {
    left: 25%;
  }
  .pull-lg-3 {
    right: 25%;
  }
  .col-lg-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-lg-4.mod_article, .col-lg-4.no-margin {
    width: 33.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-4.no-margin-left, .col-lg-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-lg-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-lg-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-lg-4 {
    left: 33.3333333333%;
  }
  .pull-lg-4 {
    right: 33.3333333333%;
  }
  .col-lg-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-lg-5.mod_article, .col-lg-5.no-margin {
    width: 41.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-5.no-margin-left, .col-lg-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-lg-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-lg-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-lg-5 {
    left: 41.6666666667%;
  }
  .pull-lg-5 {
    right: 41.6666666667%;
  }
  .col-lg-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-lg-6.mod_article, .col-lg-6.no-margin {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-6.no-margin-left, .col-lg-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-lg-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-lg-6.mod_article {
    margin-left: 50%;
  }
  .push-lg-6 {
    left: 50%;
  }
  .pull-lg-6 {
    right: 50%;
  }
  .col-lg-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-lg-7.mod_article, .col-lg-7.no-margin {
    width: 58.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-7.no-margin-left, .col-lg-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-lg-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-lg-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-lg-7 {
    left: 58.3333333333%;
  }
  .pull-lg-7 {
    right: 58.3333333333%;
  }
  .col-lg-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-lg-8.mod_article, .col-lg-8.no-margin {
    width: 66.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-8.no-margin-left, .col-lg-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-lg-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-lg-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-lg-8 {
    left: 66.6666666667%;
  }
  .pull-lg-8 {
    right: 66.6666666667%;
  }
  .col-lg-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-lg-9.mod_article, .col-lg-9.no-margin {
    width: 75%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-9.no-margin-left, .col-lg-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-lg-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-lg-9.mod_article {
    margin-left: 75%;
  }
  .push-lg-9 {
    left: 75%;
  }
  .pull-lg-9 {
    right: 75%;
  }
  .col-lg-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-lg-10.mod_article, .col-lg-10.no-margin {
    width: 83.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-10.no-margin-left, .col-lg-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-lg-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-lg-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-lg-10 {
    left: 83.3333333333%;
  }
  .pull-lg-10 {
    right: 83.3333333333%;
  }
  .col-lg-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-lg-11.mod_article, .col-lg-11.no-margin {
    width: 91.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-11.no-margin-left, .col-lg-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-lg-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-lg-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-lg-11 {
    left: 91.6666666667%;
  }
  .pull-lg-11 {
    right: 91.6666666667%;
  }
  .col-lg-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-lg-12.mod_article, .col-lg-12.no-margin {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-lg-12.no-margin-left, .col-lg-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-lg-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-lg-12.mod_article {
    margin-left: 100%;
  }
  .push-lg-12 {
    left: 100%;
  }
  .pull-lg-12 {
    right: 100%;
  }
  .grid {
    max-width: 1170px;
  }
}
@media screen and (min-width: 1171px) and (max-width: 1280px) {
  .col-lg-12 {
    clear: left;
  }
}
@media screen and (min-width: 1171px) and (max-width: 1280px) {
  .col-lg-hide {
    display: none;
  }
}
@media screen and (min-width: 1281px) {
  .col-xl-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-xl-0.mod_article, .col-xl-0.no-margin {
    width: 0%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-0.no-margin-left, .col-xl-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-xl-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-xl-0.mod_article {
    margin-left: 0%;
  }
  .push-xl-0 {
    left: 0%;
  }
  .pull-xl-0 {
    right: 0%;
  }
  .col-xl-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-xl-1.mod_article, .col-xl-1.no-margin {
    width: 8.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-1.no-margin-left, .col-xl-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-xl-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-xl-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-xl-1 {
    left: 8.3333333333%;
  }
  .pull-xl-1 {
    right: 8.3333333333%;
  }
  .col-xl-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-xl-2.mod_article, .col-xl-2.no-margin {
    width: 16.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-2.no-margin-left, .col-xl-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-xl-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-xl-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-xl-2 {
    left: 16.6666666667%;
  }
  .pull-xl-2 {
    right: 16.6666666667%;
  }
  .col-xl-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-xl-3.mod_article, .col-xl-3.no-margin {
    width: 25%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-3.no-margin-left, .col-xl-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-xl-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-xl-3.mod_article {
    margin-left: 25%;
  }
  .push-xl-3 {
    left: 25%;
  }
  .pull-xl-3 {
    right: 25%;
  }
  .col-xl-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-xl-4.mod_article, .col-xl-4.no-margin {
    width: 33.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-4.no-margin-left, .col-xl-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-xl-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-xl-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-xl-4 {
    left: 33.3333333333%;
  }
  .pull-xl-4 {
    right: 33.3333333333%;
  }
  .col-xl-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-xl-5.mod_article, .col-xl-5.no-margin {
    width: 41.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-5.no-margin-left, .col-xl-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-xl-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-xl-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-xl-5 {
    left: 41.6666666667%;
  }
  .pull-xl-5 {
    right: 41.6666666667%;
  }
  .col-xl-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-xl-6.mod_article, .col-xl-6.no-margin {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-6.no-margin-left, .col-xl-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-xl-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-xl-6.mod_article {
    margin-left: 50%;
  }
  .push-xl-6 {
    left: 50%;
  }
  .pull-xl-6 {
    right: 50%;
  }
  .col-xl-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-xl-7.mod_article, .col-xl-7.no-margin {
    width: 58.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-7.no-margin-left, .col-xl-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-xl-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-xl-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-xl-7 {
    left: 58.3333333333%;
  }
  .pull-xl-7 {
    right: 58.3333333333%;
  }
  .col-xl-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-xl-8.mod_article, .col-xl-8.no-margin {
    width: 66.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-8.no-margin-left, .col-xl-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-xl-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-xl-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-xl-8 {
    left: 66.6666666667%;
  }
  .pull-xl-8 {
    right: 66.6666666667%;
  }
  .col-xl-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-xl-9.mod_article, .col-xl-9.no-margin {
    width: 75%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-9.no-margin-left, .col-xl-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-xl-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-xl-9.mod_article {
    margin-left: 75%;
  }
  .push-xl-9 {
    left: 75%;
  }
  .pull-xl-9 {
    right: 75%;
  }
  .col-xl-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-xl-10.mod_article, .col-xl-10.no-margin {
    width: 83.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-10.no-margin-left, .col-xl-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-xl-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-xl-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-xl-10 {
    left: 83.3333333333%;
  }
  .pull-xl-10 {
    right: 83.3333333333%;
  }
  .col-xl-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-xl-11.mod_article, .col-xl-11.no-margin {
    width: 91.6666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-11.no-margin-left, .col-xl-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-xl-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-xl-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-xl-11 {
    left: 91.6666666667%;
  }
  .pull-xl-11 {
    right: 91.6666666667%;
  }
  .col-xl-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-xl-12.mod_article, .col-xl-12.no-margin {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col-xl-12.no-margin-left, .col-xl-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-xl-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-xl-12.mod_article {
    margin-left: 100%;
  }
  .push-xl-12 {
    left: 100%;
  }
  .pull-xl-12 {
    right: 100%;
  }
  .grid {
    max-width: 1280px;
  }
}
@media screen and (min-width: 1281px) {
  .col-xl-12 {
    clear: left;
  }
  .col-xl-hide {
    display: none;
  }
}
/* 
    Created on : 26.02.2015, 13:21:0
    Changes     : 
        22.07.2015, 11:24:00
        07.07.2016 - fixed gallery-listing, remove junk
*/
.invisible {
  position: absolute;
  left: -6000px;
  top: -6000px;
  display: none;
}

nav ul {
  margin: 0;
}
nav a {
  text-decoration: none;
}

a img {
  display: block;
}

@media (min-width: 1025px) {
  figure.float_right {
    float: right;
  }
  figure.float_left {
    float: left;
  }
}
figure img {
  display: block;
}

.ce_gallery ul {
  margin-top: 0;
}
.ce_gallery li {
  float: left;
  vertical-align: middle;
  margin-top: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}
.ce_gallery figure {
  margin: 0;
}
.ce_gallery img {
  max-width: 100%;
  height: auto;
}
.ce_gallery .cols_1 li {
  width: 100%;
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .ce_gallery .cols_2 li,
.ce_gallery .cols_3 li,
.ce_gallery .cols_4 li,
.ce_gallery .cols_5 li,
.ce_gallery .cols_6 li,
.ce_gallery .cols_7 li,
.ce_gallery .cols_8 li,
.ce_gallery .cols_9 li,
.ce_gallery .cols_10 li,
.ce_gallery .cols_11 li,
.ce_gallery .cols_12 li {
    margin-right: 0;
  }
}
@media screen and (min-width: 481px) {
  .ce_gallery .cols_2 li,
.ce_gallery .cols_3 li,
.ce_gallery .cols_4 li,
.ce_gallery .cols_5 li,
.ce_gallery .cols_6 li,
.ce_gallery .cols_7 li,
.ce_gallery .cols_8 li,
.ce_gallery .cols_9 li,
.ce_gallery .cols_10 li,
.ce_gallery .cols_11 li,
.ce_gallery .cols_12 li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .ce_gallery .cols_2 li:nth-child(2n+1),
.ce_gallery .cols_3 li:nth-child(2n+1),
.ce_gallery .cols_4 li:nth-child(2n+1),
.ce_gallery .cols_5 li:nth-child(2n+1),
.ce_gallery .cols_6 li:nth-child(2n+1),
.ce_gallery .cols_7 li:nth-child(2n+1),
.ce_gallery .cols_8 li:nth-child(2n+1),
.ce_gallery .cols_9 li:nth-child(2n+1),
.ce_gallery .cols_10 li:nth-child(2n+1),
.ce_gallery .cols_11 li:nth-child(2n+1),
.ce_gallery .cols_12 li:nth-child(2n+1) {
    clear: left;
  }
  .ce_gallery .cols_2 li:nth-child(2n),
.ce_gallery .cols_3 li:nth-child(2n),
.ce_gallery .cols_4 li:nth-child(2n),
.ce_gallery .cols_5 li:nth-child(2n),
.ce_gallery .cols_6 li:nth-child(2n),
.ce_gallery .cols_7 li:nth-child(2n),
.ce_gallery .cols_8 li:nth-child(2n),
.ce_gallery .cols_9 li:nth-child(2n),
.ce_gallery .cols_10 li:nth-child(2n),
.ce_gallery .cols_11 li:nth-child(2n),
.ce_gallery .cols_12 li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .ce_gallery .cols_2 li {
    width: calc((100% - 30px) / 2);
  }
  .ce_gallery .cols_2 li:nth-child(2n+1) {
    clear: left;
  }
  .ce_gallery .cols_2 li:nth-child(2n) {
    margin-right: 0;
  }
  .ce_gallery .cols_3 li {
    width: calc((100% - 60px) / 3);
  }
  .ce_gallery .cols_3 li:nth-child(3n+1) {
    clear: left;
  }
  .ce_gallery .cols_3 li:nth-child(3n) {
    margin-right: 0;
  }
  .ce_gallery .cols_4 li {
    width: calc((100% - 90px) / 4);
  }
  .ce_gallery .cols_4 li:nth-child(4n+1) {
    clear: left;
  }
  .ce_gallery .cols_4 li:nth-child(4n) {
    margin-right: 0;
  }
  .ce_gallery .cols_5 li {
    width: calc((100% - 120px) / 5);
  }
  .ce_gallery .cols_5 li:nth-child(5n+1) {
    clear: left;
  }
  .ce_gallery .cols_5 li:nth-child(5n) {
    margin-right: 0;
  }
  .ce_gallery .cols_6 li {
    width: calc((100% - 150px) / 6);
  }
  .ce_gallery .cols_6 li:nth-child(6n+1) {
    clear: left;
  }
  .ce_gallery .cols_6 li:nth-child(6n) {
    margin-right: 0;
  }
  .ce_gallery .cols_7 li {
    width: calc((100% - 180px) / 7);
  }
  .ce_gallery .cols_7 li:nth-child(7n+1) {
    clear: left;
  }
  .ce_gallery .cols_7 li:nth-child(7n) {
    margin-right: 0;
  }
  .ce_gallery .cols_8 li {
    width: calc((100% - 210px) / 8);
  }
  .ce_gallery .cols_8 li:nth-child(8n+1) {
    clear: left;
  }
  .ce_gallery .cols_8 li:nth-child(8n) {
    margin-right: 0;
  }
  .ce_gallery .cols_9 li {
    width: calc((100% - 240px) / 9);
  }
  .ce_gallery .cols_9 li:nth-child(9n+1) {
    clear: left;
  }
  .ce_gallery .cols_9 li:nth-child(9n) {
    margin-right: 0;
  }
  .ce_gallery .cols_10 li {
    width: calc((100% - 270px) / 10);
  }
  .ce_gallery .cols_10 li:nth-child(10n+1) {
    clear: left;
  }
  .ce_gallery .cols_10 li:nth-child(10n) {
    margin-right: 0;
  }
  .ce_gallery .cols_11 li {
    width: calc((100% - 300px) / 11);
  }
  .ce_gallery .cols_11 li:nth-child(11n+1) {
    clear: left;
  }
  .ce_gallery .cols_11 li:nth-child(11n) {
    margin-right: 0;
  }
}

.ce_accordion ul li,
.ce_accordion ol li,
.ce_text ul li,
.ce_text ol li,
.ce_list ul li,
.ce_list ol li,
.ce_rsce_text ul li,
.ce_rsce_text ol li {
  margin-left: 2rem;
}
.ce_accordion ul,
.ce_text ul,
.ce_list ul,
.ce_rsce_text ul {
  list-style-type: disc;
}
.ce_accordion ol,
.ce_text ol,
.ce_list ol,
.ce_rsce_text ol {
  list-style-type: decimal;
}

.ce_rsce_text.boxed ol,
.ce_rsce_text.boxed ul {
  list-style-type: none;
}
.ce_rsce_text.boxed ol li,
.ce_rsce_text.boxed ul li {
  margin-left: 0;
  margin-bottom: 16px;
}

.ce_accordion .toggle {
  cursor: pointer;
}
.ce_accordion .content {
  overflow: hidden;
  transition: max-height 420ms;
}

label > span.mandatory {
  display: inline;
}

.video_wrapper {
  background-image: url("../../files/theme-baufinanz-2019/dist/images/16_9_youtube_placeholder.jpg");
  background-size: cover;
  position: relative;
  width: 100%;
  margin-bottom: 32px;
}
.video_wrapper input {
  margin: auto;
  display: block;
}
.video_wrapper .video_trigger {
  padding: 60px 20px;
  height: calc(100% - 120px);
  width: calc(100% - 40px);
  position: absolute;
  /*bottom        : 0;*/
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
@media (min-width: 769px) {
  .video_wrapper .video_trigger {
    padding: 130px 30px;
    height: calc(100% - 260px);
    width: calc(100% - 60px);
  }
}
.video_wrapper .video_trigger_title {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 32px;
  line-height: 2rem;
  background-color: #FF0000;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 0 5px 15px;
  width: 100%;
  box-sizing: border-box;
}
.video_wrapper .video_trigger_text {
  text-align: center;
}
.video_wrapper .video_trigger_button {
  background-color: #FF0000;
  color: #fff;
}
.video_wrapper .video_layer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video_wrapper .video_layer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*
    Created on : 24.04.2022, 15:28:00
*/
body {
  font: 100%/1em Karla, sans-serif;
  color: #3d3c36;
  background-color: #fff;
}

sup {
  vertical-align: super;
}

h1,
.h1 {
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 48px;
  line-height: 3rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 48px;
  margin-bottom: 3rem;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 64px;
  line-height: 4rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 64px;
  margin-bottom: 4rem;
  font-weight: bold;
}
@media (max-width: 1280px) {
  h1,
.h1 {
    /*@include font-size-withMargin(44);*/
  }
}
@media (max-width: 1024px) {
  h1,
.h1 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 38px;
    line-height: 2.375rem;
    /*top: $lineHeight + px;*/
    /*top: rempharize($lineHeight);*/
    margin-bottom: 38px;
    margin-bottom: 2.375rem;
  }
}
@media (max-width: 768px) {
  h1,
.h1 {
    /*@include font-size-withMargin(36);*/
  }
}

h2,
.h2 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 32px;
  line-height: 2rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 32px;
  margin-bottom: 2rem;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 38px;
  line-height: 2.375rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
  text-transform: none;
  font-weight: bold;
}
@media (max-width: 1024px) {
  h2,
.h2 {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 32px;
    line-height: 2rem;
    /*top: $lineHeight + px;*/
    /*top: rempharize($lineHeight);*/
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }
}

h3,
.h3 {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 32px;
  line-height: 2rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 32px;
  margin-bottom: 2rem;
  text-transform: none;
  font-weight: bold;
}
@media (max-width: 1024px) {
  h3,
.h3 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
    /*top: $lineHeight + px;*/
    /*top: rempharize($lineHeight);*/
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }
}

h4,
.h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 32px;
  margin-bottom: 2rem;
  text-transform: none;
  font-weight: bold;
}

h5,
.h5 {
  font-size: 20.4px;
  font-size: 1.275rem;
  line-height: 32px;
  line-height: 2rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 32px;
  margin-bottom: 2rem;
  text-transform: none;
  font-weight: bold;
}

p,
ul,
ol,
table,
dl,
.ce_hyperlink,
div.submit,
h6,
.h6 {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 32px;
  line-height: 2rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

figcaption,
label,
.text {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 32px;
  line-height: 2rem;
}

p.error,
span.error {
  color: red;
}

p.error {
  margin-bottom: 0;
}

p > small {
  line-height: 1rem;
  display: inline-block;
}

.display-flex {
  display: flex;
  flex-wrap: wrap;
}

.ce_form label,
.mod_form label {
  display: none;
}
.ce_form label > span.error,
.mod_form label > span.error {
  display: block !important;
  transform: translateY(-50%);
}
.ce_form .checkbox_container legend,
.mod_form .checkbox_container legend {
  display: none;
}
.ce_form .checkbox_container label,
.mod_form .checkbox_container label {
  margin-bottom: 32px;
  display: block;
}
.ce_form .checkbox_container input,
.mod_form .checkbox_container input {
  margin-right: 12px;
}
.ce_form .checkbox_container > span,
.mod_form .checkbox_container > span {
  display: flex;
  align-items: baseline;
}
.ce_form .radio_container,
.mod_form .radio_container {
  display: flex;
  flex-direction: row;
  margin-bottom: 32px;
}
.ce_form .radio_container label,
.mod_form .radio_container label {
  display: block;
}
.ce_form .radio_container input,
.mod_form .radio_container input {
  margin-right: 6px;
}
.ce_form .radio_container > span,
.mod_form .radio_container > span {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 16px;
}
.ce_form .grecaptcha-badge,
.mod_form .grecaptcha-badge {
  margin-bottom: 32px;
}
.ce_form .widget-submit,
.mod_form .widget-submit {
  margin-bottom: 32px;
}
.ce_form .formbody,
.mod_form .formbody {
  display: flex;
  flex-direction: column;
}
.ce_form .formbody .widget,
.mod_form .formbody .widget {
  padding-left: 15px;
  padding-right: 15px;
  flex: 0 0 calc(100% - 15px - 15px);
}
.ce_form .formbody .widget-submit,
.mod_form .formbody .widget-submit {
  margin-bottom: 32px;
  text-align: right;
  margin-top: 22px;
}
.ce_form #kontakt-1 .formbody,
.mod_form #kontakt-1 .formbody {
  display: flex;
  flex-direction: column;
}
.ce_form #kontakt-1 .widget,
.mod_form #kontakt-1 .widget {
  flex: 1 1 100%;
}
@media (min-width: 769px) {
  .ce_form #kontakt-1 .formbody,
.mod_form #kontakt-1 .formbody {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ce_form #kontakt-1 .widget:nth-child(4),
.mod_form #kontakt-1 .widget:nth-child(4) {
    padding-right: 7.5px;
    flex: 0 0 calc(50% - 22.5px);
  }
  .ce_form #kontakt-1 .widget:nth-child(5),
.mod_form #kontakt-1 .widget:nth-child(5) {
    padding-left: 7.5px;
    flex: 0 0 calc(50% - 22.5px);
  }
}
.ce_form #partner-werden-4 label,
.mod_form #partner-werden-4 label {
  display: block;
}
.ce_form #partner-werden-4 .formbody,
.mod_form #partner-werden-4 .formbody {
  display: flex;
  flex-direction: column;
}
.ce_form #partner-werden-4 .widget,
.mod_form #partner-werden-4 .widget {
  flex: 1 1 100%;
}
@media (min-width: 769px) {
  .ce_form #partner-werden-4 .formbody,
.mod_form #partner-werden-4 .formbody {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ce_form #partner-werden-4 .widget,
.mod_form #partner-werden-4 .widget {
    box-sizing: border-box;
  }
  .ce_form #partner-werden-4 .widget:nth-child(9),
.mod_form #partner-werden-4 .widget:nth-child(9) {
    flex: 0 0 33%;
  }
  .ce_form #partner-werden-4 .widget:nth-child(10),
.mod_form #partner-werden-4 .widget:nth-child(10) {
    padding-left: 30px;
    flex: 0 0 67%;
  }
  .ce_form #partner-werden-4 .widget:nth-child(4), .ce_form #partner-werden-4 .widget:nth-child(11),
.mod_form #partner-werden-4 .widget:nth-child(4),
.mod_form #partner-werden-4 .widget:nth-child(11) {
    padding-right: 15px;
    flex: 0 0 50%;
  }
  .ce_form #partner-werden-4 .widget:nth-child(5), .ce_form #partner-werden-4 .widget:nth-child(12),
.mod_form #partner-werden-4 .widget:nth-child(5),
.mod_form #partner-werden-4 .widget:nth-child(12) {
    padding-left: 15px;
    flex: 0 0 50%;
  }
}
.ce_form #baufinanz-team-webinar label,
.mod_form #baufinanz-team-webinar label {
  display: block;
}
.ce_form #baufinanz-team-webinar .widget-select,
.ce_form #baufinanz-team-webinar .widget-text,
.ce_form #baufinanz-team-webinar .widget-textarea,
.mod_form #baufinanz-team-webinar .widget-select,
.mod_form #baufinanz-team-webinar .widget-text,
.mod_form #baufinanz-team-webinar .widget-textarea {
  margin-bottom: 32px;
}
.ce_form #baufinanz-team-webinar .widget:nth-child(8),
.mod_form #baufinanz-team-webinar .widget:nth-child(8) {
  padding-bottom: 32px;
  border-bottom: 1px solid #4C9C2E;
}
.ce_form #baufinanz-team-webinar .widget:nth-child(16) fieldset,
.mod_form #baufinanz-team-webinar .widget:nth-child(16) fieldset {
  margin-bottom: 0;
}
.ce_form#baufi-lead-form,
.mod_form#baufi-lead-form {
  background-color: #fff;
  color: #4C9C2E;
}
.ce_form#baufi-lead-form label,
.mod_form#baufi-lead-form label {
  display: block;
}
.ce_form#baufi-lead-form .widget,
.mod_form#baufi-lead-form .widget {
  display: flex;
  flex-direction: column;
}
.ce_form#baufi-lead-form .widget label,
.mod_form#baufi-lead-form .widget label {
  flex: 0 0 auto;
}
.ce_form#baufi-lead-form .widget input,
.mod_form#baufi-lead-form .widget input {
  flex: 1 1 auto;
}
.ce_form#baufi-lead-form .formbody,
.mod_form#baufi-lead-form .formbody {
  padding: 32px;
}
.ce_form#baufi-lead-form h1,
.ce_form#baufi-lead-form h2,
.ce_form#baufi-lead-form h3,
.mod_form#baufi-lead-form h1,
.mod_form#baufi-lead-form h2,
.mod_form#baufi-lead-form h3 {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 32px;
  line-height: 2rem;
  background-color: #4C9C2E;
  color: #fff;
  text-align: center;
  padding: 8px;
  margin: 0;
}
@media (min-width: 481px) {
  .ce_form#baufi-lead-form .widget,
.mod_form#baufi-lead-form .widget {
    flex-direction: row;
  }
  .ce_form#baufi-lead-form .widget label,
.mod_form#baufi-lead-form .widget label {
    flex: 0 0 150px;
  }
  .ce_form#baufi-lead-form .widget input,
.mod_form#baufi-lead-form .widget input {
    flex: 1 1 auto;
  }
}
@media (max-width: 1170px) {
  .ce_form#baufi-lead-form .widget-submit,
.mod_form#baufi-lead-form .widget-submit {
    justify-content: center;
  }
}
@media (min-width: 1171px) {
  .ce_form#baufi-lead-form .widget-submit,
.mod_form#baufi-lead-form .widget-submit {
    padding-left: 151px;
  }
}
.ce_form #feedback-form .formbody,
.mod_form #feedback-form .formbody {
  display: flex;
  flex-direction: column;
}
.ce_form #feedback-form .widget,
.mod_form #feedback-form .widget {
  flex: 1 1 100%;
}
.ce_form #feedback-form .widget-explanation,
.mod_form #feedback-form .widget-explanation {
  margin-top: 32px;
}
.ce_form #feedback-form .stars legend,
.mod_form #feedback-form .stars legend {
  display: none !important;
}
.ce_form #feedback-form .stars label,
.mod_form #feedback-form .stars label {
  cursor: pointer;
}
.ce_form #feedback-form .stars span input,
.mod_form #feedback-form .stars span input {
  opacity: 0;
  position: absolute;
}
.ce_form #feedback-form .stars span input ~ label,
.mod_form #feedback-form .stars span input ~ label {
  filter: grayscale(1000%);
}
.ce_form #feedback-form .stars span input:checked ~ label,
.mod_form #feedback-form .stars span input:checked ~ label {
  filter: grayscale(0%);
}
.ce_form #feedback-form .stars fieldset,
.mod_form #feedback-form .stars fieldset {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .ce_form #feedback-form .formbody,
.mod_form #feedback-form .formbody {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ce_form #feedback-form .widget,
.mod_form #feedback-form .widget {
    box-sizing: border-box;
  }
  .ce_form #feedback-form .widget:nth-child(4),
.mod_form #feedback-form .widget:nth-child(4) {
    padding-right: 5px;
    flex: 0 0 50%;
  }
  .ce_form #feedback-form .widget:nth-child(5),
.mod_form #feedback-form .widget:nth-child(5) {
    padding-left: 5px;
    flex: 0 0 50%;
  }
  .ce_form #feedback-form .stars fieldset,
.mod_form #feedback-form .stars fieldset {
    flex-direction: row;
    justify-content: space-around;
  }
}
.ce_form #baufinanz-team-flyer label,
.mod_form #baufinanz-team-flyer label {
  display: block;
}
.ce_form #baufinanz-team-flyer .widget:nth-child(9),
.mod_form #baufinanz-team-flyer .widget:nth-child(9) {
  margin-bottom: 96px;
}
.ce_form #baufinanz-team-flyer .widget-select, .ce_form #baufinanz-team-flyer .widget-text, .ce_form #baufinanz-team-flyer .widget-textarea, .ce_form #baufinanz-team-flyer .widget-upload,
.mod_form #baufinanz-team-flyer .widget-select,
.mod_form #baufinanz-team-flyer .widget-text,
.mod_form #baufinanz-team-flyer .widget-textarea,
.mod_form #baufinanz-team-flyer .widget-upload {
  margin-bottom: 32px;
}
.ce_form #baufinanz-team-flyer .widget-explanation p,
.mod_form #baufinanz-team-flyer .widget-explanation p {
  padding: 10px 20px;
  background-color: rgb(247, 247, 247);
  border-radius: 8px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
textarea,
select,
.btn,
input[type=button],
input[type=submit],
button {
  outline: none;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 32px;
  line-height: 2rem;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
textarea,
select {
  display: block;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  width: 100%;
  border: 1px solid #e5e5e5;
}
form.large input[type=text],
form.large input[type=email],
form.large input[type=password],
form.large input[type=number],
form.large input[type=tel],
form.large input[type=url],
form.large textarea,
form.large select {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
}

select {
  padding-top: 9px;
  padding-bottom: 9px;
}
form.large select {
  height: 42px;
}

.btn,
input[type=button],
input[type=submit],
button {
  border-width: 0;
  cursor: pointer;
  padding: 8px 32px;
  text-decoration: none;
  text-transform: uppercase;
}
.btn::before, .btn::after,
input[type=button]::before,
input[type=button]::after,
input[type=submit]::before,
input[type=submit]::after,
button::before,
button::after {
  vertical-align: middle;
  position: relative;
  top: -1px;
  transform: rotate(0deg);
  transition: transform 320ms;
  width: 18px;
  height: 9px;
  background-size: contain;
  display: inline-block;
  background: url("../../files/theme-baufinanz-2019/images/icons/button_arrow_black.png") no-repeat 50% 50%;
}
.btn::before,
input[type=button]::before,
input[type=submit]::before,
button::before {
  margin-right: 12px;
}
.btn::after,
input[type=button]::after,
input[type=submit]::after,
button::after {
  content: "";
  margin-left: 12px;
}
.btn.no-arrow::before, .btn.no-arrow::after,
input[type=button].no-arrow::before,
input[type=button].no-arrow::after,
input[type=submit].no-arrow::before,
input[type=submit].no-arrow::after,
button.no-arrow::before,
button.no-arrow::after {
  content: none !important;
}
.btn:hover::before,
input[type=button]:hover::before,
input[type=submit]:hover::before,
button:hover::before {
  transform: rotate(-180deg);
}
.btn:hover::after,
input[type=button]:hover::after,
input[type=submit]:hover::after,
button:hover::after {
  transform: rotate(-180deg);
}

.btn {
  display: inline-block;
}
.btn-default {
  background: linear-gradient(45deg, #87D1E6 0%, #4C9C2E 100%);
  color: #fff;
}
.btn-default::after {
  background-image: url("../../files/theme-baufinanz-2019/images/icons/button_arrow_white.png");
}
.back .btn-default::after {
  content: none !important;
}
.back .btn-default::before {
  content: "";
  transform: rotate(-180deg);
  background-image: url("../../files/theme-baufinanz-2019/images/icons/button_arrow_white.png") !important;
}
.back .btn-default:hover::before {
  transform: rotate(-360deg);
}
.btn-primary, .btn-secondary {
  background-color: transparent;
  transition: background 420ms;
}
.btn-primary {
  border: 1px solid #4C9C2E;
  color: #4C9C2E;
}
.btn-primary::after {
  background-image: url("../../files/theme-baufinanz-2019/images/icons/button_arrow_primary.png");
}
.btn-secondary {
  border: 1px solid #87D1E6;
  color: #87D1E6;
}
.btn-secondary::after {
  background-image: url("../../files/theme-baufinanz-2019/images/icons/button_arrow_secondary.png");
}
.btn-white {
  border: 1px solid #ccc;
  background-color: #fff;
  color: #3d3c36;
  transition: color 420ms, border-color 420ms;
}
.btn-small {
  padding: 4px 16px;
}
.btn-link {
  padding: 1px 2px;
  background-color: rgba(255, 255, 255, 0.39);
}

button.mfp-arrow {
  opacity: 1;
  width: 50px;
  height: 50px;
}
button.mfp-arrow:before {
  display: none;
  border: none;
}
button.mfp-arrow:after {
  display: none;
  border: none;
}
button.mfp-arrow.mfp-arrow-left {
  background: url(../../files/theme-baufinanz-2019/images/arrow-lightbox.svg) no-repeat center center;
}
button.mfp-arrow.mfp-arrow-right {
  background: url(../../files/theme-baufinanz-2019/images/arrow-lightbox-next.svg) no-repeat center center;
}

#baufi-lead-form {
  background-color: #fff;
  color: #4C9C2E;
  margin-bottom: 64px;
}
#baufi-lead-form .widget {
  display: flex;
  flex-direction: column;
}
#baufi-lead-form .widget label {
  flex: 0 0 auto;
}
#baufi-lead-form .widget input {
  flex: 1 1 auto;
}
#baufi-lead-form .formbody {
  padding: 32px;
}
#baufi-lead-form h1,
#baufi-lead-form h2,
#baufi-lead-form h3 {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 32px;
  line-height: 2rem;
  background-color: #4C9C2E;
  color: #fff;
  text-align: center;
  padding: 8px;
  margin: 0;
}
@media (min-width: 481px) {
  #baufi-lead-form .widget {
    flex-direction: row;
  }
  #baufi-lead-form .widget label {
    flex: 0 0 150px;
  }
  #baufi-lead-form .widget input {
    flex: 1 1 auto;
  }
}
@media (max-width: 1170px) {
  #baufi-lead-form .widget-submit {
    justify-content: center;
  }
}
@media (min-width: 1171px) {
  #baufi-lead-form .widget-submit {
    padding-left: 151px;
  }
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #232424;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #232424;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #232424;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #232424;
}

figure {
  margin-bottom: 32px;
}
@media (min-width: 1025px) {
  figure.float_right, figure.float_left {
    max-width: calc(50% - 15px);
  }
  figure.float_right {
    margin-left: 15px;
  }
  figure.float_left {
    margin-right: 15px;
  }
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.superfancy-border {
  border: 7px solid #4C9C2E;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #4C9C2E 0%, #87D1E6 100%);
}
.superfancy-border.ce_text {
  padding-top: 32px;
  margin-bottom: 32px;
  padding-left: 16px;
  padding-right: 16px;
}

.mod_newscategories > p,
.pagination > p {
  display: none;
}
.mod_newscategories ul,
.pagination ul {
  display: flex;
  justify-content: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.mod_newscategories li,
.pagination li {
  flex: 0 0 auto;
  margin-right: 15px;
  margin-bottom: 15px;
}
.mod_newscategories a,
.mod_newscategories strong,
.pagination a,
.pagination strong {
  background-color: transparent;
  transition: background 420ms, color 420ms;
  border-width: 0;
  padding: 4px 24px;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  text-align: center;
  color: #4C9C2E;
  border: 1px solid #4C9C2E;
}
.mod_newscategories a:hover,
.pagination a:hover {
  background: #4C9C2E;
  color: #fff;
}
.mod_newscategories strong,
.pagination strong {
  background: linear-gradient(45deg, #4a96ab 0%, #87D1E6 100%);
  background: linear-gradient(45deg, #339e37 0%, #4C9C2E 100%);
  color: #fff;
  border-width: 0;
  padding: 5px 24px;
}

.mod_article.flex {
  display: flex;
  flex-wrap: wrap;
}

.frontpage .mod_newslist {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1281px) {
  .frontpage .mod_newslist .layout_short:nth-child(4) {
    display: none;
  }
}
@media (min-width: 1025px) {
  .mod_newslist.skip-the-fourth .layout_short:nth-child(4) {
    display: none !important;
  }
}
.mod_newslist.display-flex {
  justify-content: center;
}
.mod_newslist .empty {
  flex: 1 1 auto;
  text-align: center;
}

.mod_breabcrumb ul {
  list-style: none;
}
@media (min-width: 769px) {
  .mod_breabcrumb li {
    display: inline-block;
  }
  .mod_breabcrumb li::before {
    display: inline-block;
    content: ">>";
  }
}

.mod_faqlist {
  flex-direction: column;
  display: flex !important;
  flex-wrap: wrap;
}
.mod_faqlist .content {
  flex: 0 0 calc(100% - 30px);
  margin: 0 15px 32px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1024px) {
  .mod_faqlist {
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .mod_faqlist {
    flex-direction: row;
  }
  .mod_faqlist .content {
    flex: 0 0 calc(50% - 30px);
  }
}
@media (min-width: 1281px) {
  .mod_faqlist .content {
    flex: 0 0 calc(33.3333333333% - 30px);
  }
}

.mod_testimonials {
  text-align: center;
}
.mod_testimonials .author,
.mod_testimonials .rating {
  display: block;
}
.mod_testimonials .rating img {
  display: inline-block;
}
.mod_testimonials .layout_default {
  border-bottom: 1px solid #ccc;
  margin: auto;
  margin-bottom: 32px;
  padding-bottom: 32px;
  max-width: 822px;
  display: block;
}
.mod_testimonials .layout_default .author-company {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 32px;
  line-height: 2rem;
  text-transform: none;
  font-weight: bold;
  display: block;
}
@media (max-width: 1024px) {
  .mod_testimonials .layout_default .author-company {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
  }
}
.mod_testimonials .layout_default .author-name {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem;
  text-transform: none;
  font-weight: bold;
  display: block;
}
.mod_testimonials .layout_default .ce_text {
  padding-top: 32px;
  padding-bottom: 16px;
  font-style: oblique;
}
.mod_testimonials .layout_default .ce_text p {
  margin-bottom: 16px;
}
.mod_testimonials .layout_default .ce_text p:first-child::before, .mod_testimonials .layout_default .ce_text p:last-child::after {
  content: "";
  position: relative;
}
.mod_testimonials .layout_default .ce_text p:first-child::before {
  content: "„";
  right: 0.15rem;
}
.mod_testimonials .layout_default .ce_text p:last-child::after {
  content: "“";
  left: 0.1rem;
}
.mod_testimonials .layout_default.row_last {
  border: none;
  padding-bottom: 0;
}

.mod_newslist .layout_short,
.mod_newsarchive .layout_short,
.mod_newsreader .layout_short {
  display: flex;
  flex-direction: column;
}
.mod_newslist .layout_short p.info,
.mod_newsarchive .layout_short p.info,
.mod_newsreader .layout_short p.info {
  font-style: oblique;
  font-size: 13.6px;
  font-size: 0.85rem;
  line-height: 32px;
  line-height: 2rem;
}
.mod_newslist .layout_short p.more,
.mod_newsarchive .layout_short p.more,
.mod_newsreader .layout_short p.more {
  flex: 1 1 auto;
  align-items: flex-end;
  display: flex;
  justify-content: center;
}
.mod_newslist .layout_short .content,
.mod_newsarchive .layout_short .content,
.mod_newsreader .layout_short .content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.mod_newslist .layout_latest,
.mod_newsarchive .layout_latest,
.mod_newsreader .layout_latest {
  margin-bottom: 64px;
}
.mod_newslist .layout_latest p.info,
.mod_newsarchive .layout_latest p.info,
.mod_newsreader .layout_latest p.info {
  font-style: oblique;
  margin-top: -32px;
}
.mod_newslist .layout_latest h2 a,
.mod_newslist .layout_latest h3 a,
.mod_newsarchive .layout_latest h2 a,
.mod_newsarchive .layout_latest h3 a,
.mod_newsreader .layout_latest h2 a,
.mod_newsreader .layout_latest h3 a {
  text-decoration: none;
}
.mod_newslist .layout_latest figure.float_right,
.mod_newsarchive .layout_latest figure.float_right,
.mod_newsreader .layout_latest figure.float_right {
  float: none !important;
  margin-left: 0;
}
.mod_newslist .layout_latest figure.float_left,
.mod_newsarchive .layout_latest figure.float_left,
.mod_newsreader .layout_latest figure.float_left {
  float: none !important;
  margin-right: 0;
}
.mod_newslist .layout_full > *,
.mod_newsarchive .layout_full > *,
.mod_newsreader .layout_full > * {
  clear: both;
}

.mod_newscategories {
  margin-bottom: 32px;
}
@media (min-width: 1281px) {
  .mod_newscategories {
    margin-bottom: 64px;
  }
}

.mod_static.login-europace {
  margin-bottom: 64px;
}
.mod_static.login-europace .formbody {
  border: 1px solid #ccc;
  padding: 32px;
}
@media (min-width: 1281px) {
  .mod_static.login-europace {
    box-sizing: border-box;
  }
  .mod_static.login-europace .formbody {
    margin: 0 32px;
    padding: 64px;
  }
  .mod_static.login-europace .formbody .widget {
    margin-bottom: 32px;
  }
}

.mod_google_ratings .slick-track {
  display: flex !important;
}
.mod_google_ratings .slick-slide {
  height: auto !important;
}

.google-review {
  box-shadow: 0 0 12px 0px #ededed;
  border-radius: 12px;
  padding: 32px 32px 0;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: 15px;
  margin-right: 15px;
}
.google-review-body .meta {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
}
.google-review-image {
  margin: 0 24px 0 0;
  float: left;
}
.google-review-author {
  padding-top: 4px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  line-height: 1.625rem;
}
.google-review-stars {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 26px;
  line-height: 1.625rem;
  padding-bottom: 46px;
  color: #c4974c;
}

.ce_text img,
.ce_image img {
  max-width: 100%;
  height: auto;
}
.ce_text.text-center img,
.ce_image.text-center img {
  display: block;
  margin: auto;
}

.ce_headline.margin-bottom-set {
  margin-bottom: 64px;
}

.ce_image.text-center figure > a figcaption {
  padding-top: 32px;
  font-weight: bold;
}
.ce_image.text-center figure > a:hover figcaption {
  text-decoration: underline;
}

.ce_table table {
  width: 100%;
}
.ce_table th {
  border: 1px solid #fff;
  padding: 2px 12px;
  font-weight: normal;
}
.ce_table td {
  border: 1px solid #dadada;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 4px;
}
.ce_table td.col_first {
  border-left-width: 0;
}
.ce_table td.col_last {
  border-right-width: 0;
}
.ce_table tr.row_last td {
  border-bottom-width: 0;
}
.ce_table thead {
  background: linear-gradient(45deg, #4C9C2E 0%, #87D1E6 100%);
  color: #fff;
}
.ce_table.text-center td,
.ce_table.text-center th {
  text-align: center;
}

.ce_sliderStart {
  position: relative;
  margin-bottom: 32px;
}
.ce_sliderStart figure {
  margin: 0;
}
.ce_sliderStart .slick-slide {
  overflow: hidden;
  clear: none !important;
}
.ce_sliderStart .slick-slider {
  position: static !important;
}
.ce_sliderStart button.slick-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0;
  line-height: 32px;
  margin: 0;
  padding: 0;
  background: #fff;
  width: 62px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  z-index: 100;
  border: none;
  transition: background 420ms;
}
.ce_sliderStart button.slick-arrow:after {
  font-size: 20px;
  display: inline;
  margin: 0;
  background: none;
  transform: none;
  position: static;
}
.ce_sliderStart button.slick-arrow:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.ce_sliderStart button.slick-prev {
  right: 62px;
}
.ce_sliderStart button.slick-prev:after {
  content: "<";
}
.ce_sliderStart button.slick-next:after {
  content: ">";
}
.ce_sliderStart .slick-dots {
  margin: 0;
  display: flex;
  position: absolute;
  bottom: 19px;
  left: 50%;
  transform: translateX(-50%);
}
.ce_sliderStart .slick-dots button {
  background: #fff;
  padding: 0;
  height: 24px;
  width: 24px;
  line-height: 24px;
  font-size: 0;
  border: 1px solid white;
  transition: border 420ms;
}
.ce_sliderStart .slick-dots li {
  padding-left: 4px;
  padding-right: 4px;
}
.ce_sliderStart .slick-dots .slick-active button {
  border-color: #4C9C2E;
}
.ce_sliderStart#seo-slider button.slick-arrow {
  top: 50%;
  transform: translateY(-33px);
}
.ce_sliderStart#seo-slider button.slick-prev {
  right: auto;
  left: -77px;
}
.ce_sliderStart#seo-slider button.slick-next {
  right: -77px;
}

.ce_rsce_flex_start.with-bg-box {
  position: relative;
  margin-top: 64px;
  margin-bottom: 64px;
}
.ce_rsce_flex_start.with-bg-box:first-child {
  margin-top: 32px;
}
.ce_rsce_flex_start.with-bg-box:last-child {
  margin-bottom: 32px;
  margin-bottom: 0;
}
.ce_rsce_flex_start.with-bg-box::before {
  content: "";
  background: #f1f1f1;
  position: absolute;
  display: block;
  z-index: -1;
  top: -32px;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 1025px) {
  .ce_rsce_flex_start.with-bg-box .ce_image,
.ce_rsce_flex_start.with-bg-box .ce_rsce_team {
    display: flex;
    justify-content: flex-start;
  }
  .ce_rsce_flex_start.with-bg-box::before {
    width: 100vw;
    right: auto;
    left: calc(50% - 320px);
  }
  .ce_rsce_flex_start.with-bg-box.with-bg-box-reverted::before {
    right: calc(50% - 320px);
    left: auto;
  }
  .ce_rsce_flex_start.with-bg-box.with-bg-box-reverted .ce_image,
.ce_rsce_flex_start.with-bg-box.with-bg-box-reverted .ce_rsce_team {
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 1281px) {
  .ce_rsce_flex_start.with-bg-box::before {
    left: calc(50% - 426.6666666667px);
    top: -64px;
    bottom: -32px;
  }
  .ce_rsce_flex_start.with-bg-box.with-bg-box-reverted::before {
    right: calc(50% - 426.6666666667px);
  }
}

.ce_rsce_fancy_slide {
  background-color: #f1f1f1;
  display: flex !important;
}
.ce_rsce_fancy_slide .caption {
  font-style: oblique;
}
.ce_rsce_fancy_slide .content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.ce_rsce_fancy_slide figure {
  position: relative;
  overflow: hidden;
}
.ce_rsce_fancy_slide figure img {
  position: absolute;
  right: -3vw;
  bottom: 0;
  max-width: 53vw;
  height: auto;
}
.ce_rsce_fancy_slide figure img.full {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: 0;
  max-width: none;
}
.ce_rsce_fancy_slide figure video {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: 0;
  max-width: none;
}
@media (min-width: 481px) {
  .ce_rsce_fancy_slide .content {
    min-height: 640px;
    min-height: 420px;
  }
  .ce_google_map ~ .ce_rsce_fancy_slide .content {
    min-height: 380px;
  }
}
@media (min-width: 769px) {
  .ce_rsce_fancy_slide .content {
    min-height: 480px;
  }
}
@media (min-width: 1025px) {
  .ce_rsce_fancy_slide .content {
    min-height: 640px;
    padding: 0 128px 96px;
    padding: 64px;
  }
  .ce_rsce_fancy_slide figure {
    position: relative;
  }
  .ce_rsce_fancy_slide figure img {
    left: auto;
    right: 0;
  }
}
@media (min-width: 1281px) {
  .ce_rsce_fancy_slide .content {
    padding: 0 128px 96px;
  }
}
@media (min-width: 1681px) {
  .ce_rsce_fancy_slide figure.content p {
    max-width: 50%;
  }
}

.ce_rsce_glossar .gloassary {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
.ce_rsce_glossar .gloassary li {
  flex: 0 0 36px;
  background-color: #87D1E6;
  color: #fff;
  margin: 0 12px 12px 0;
}
.ce_rsce_glossar .gloassary li a {
  text-decoration: none;
  height: 36px;
  line-height: 36px;
  display: block;
  text-align: center;
  text-transform: uppercase;
}

.ce_rsce_team {
  display: flex;
  flex-wrap: wrap;
}
.ce_rsce_team.x-1-members {
  justify-content: center;
}

.ce_rsce_team_member {
  display: flex;
}
.ce_rsce_team_member figure {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ce_rsce_team_member figcaption {
  position: relative;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(45deg, rgba(135, 209, 230, 0.9) 0%, rgba(76, 156, 46, 0.9) 100%);
  color: #fff;
  padding: 4px 16px;
  padding: 16px 21px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: start;
  line-height: 1.5em;
}
.ce_rsce_team_member figcaption .name {
  font-weight: bold;
  font-family: serif;
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 42px;
  line-height: 2.625rem;
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid white;
  align-self: flex-start;
}
.ce_rsce_team_member figcaption .position {
  line-height: 2em;
}
.ce_rsce_team_member figcaption .email:before,
.ce_rsce_team_member figcaption .hotline:before {
  margin-right: 10px;
}
.ce_rsce_team_member figcaption .email:before {
  background-image: url("../../files/theme-baufinanz-2019/images/icons/mail_baufinanz_white.svg");
}
.ce_rsce_team_member figcaption .hotline:before {
  background-image: url("../../files/theme-baufinanz-2019/images/icons/kontakt_baufinanz_white.svg");
}
.ce_rsce_team_member figcaption a {
  text-decoration: none;
}
.ce_rsce_team_member figcaption .qr-code {
  position: absolute;
  right: 21px;
  top: 21px;
}
@media (min-width: 1171px) {
  .ce_rsce_team_member figcaption {
    position: absolute;
    justify-content: flex-end;
  }
  .no-touch .ce_rsce_team_member figcaption {
    transform: translateY(100%);
    transition: transform 420ms, opacity 420ms;
    opacity: 0;
  }
  .no-touch .ce_rsce_team_member:hover figcaption {
    transform: translateY(0%);
    opacity: 1;
  }
}

.ce_youtube {
  margin-bottom: 32px;
}
.ce_youtube .responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 15px;
  height: 0;
  overflow: hidden;
}
.ce_youtube .responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ce_rsce_fancy_headline {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ce_rsce_fancy_headline h1,
.ce_rsce_fancy_headline h2,
.ce_rsce_fancy_headline h3 {
  line-height: 64px;
  padding-top: 15.5px;
  padding-bottom: 15.5px;
  font-weight: normal;
}
.bg-primary-colors .ce_rsce_fancy_headline h1,
.bg-primary-colors .ce_rsce_fancy_headline h2,
.bg-primary-colors .ce_rsce_fancy_headline h3 {
  color: #fff;
  font-size: 2.625rem;
}
.ce_rsce_fancy_headline .headline-watermark {
  font-size: 95px;
  font-size: 5.9375rem;
  line-height: 95px;
  line-height: 5.9375rem;
  font-family: serif;
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  transform: translate(-50%, -10%);
  transform: translate(-50%, 0%);
  color: rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
}
.bg-primary-colors .ce_rsce_fancy_headline .headline-watermark {
  color: rgba(255, 255, 255, 0.15);
}

.ce_rsce_countup span {
  font-size: 70px;
  font-size: 4.375rem;
  line-height: 110px;
  line-height: 6.875rem;
  border-bottom: 1px solid #d8d8d8;
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 32px;
}

.ce_rsce_fancy_line {
  margin-bottom: 64px;
  position: relative;
}
.ce_rsce_fancy_line:before, .ce_rsce_fancy_line:after {
  content: "";
  border-bottom: 1px solid #3d3c36;
  width: 8px;
  position: absolute;
  top: 50%;
  margin-top: 0px;
  left: 50%;
}
.ce_rsce_fancy_line:before {
  margin-left: -24px;
}
.ce_rsce_fancy_line:after {
  margin-left: 16px;
}

.ce_accordion.boxed,
.ce_text.boxed,
.ce_rsce_text.boxed {
  border: 1px solid #ccc;
}
.ce_accordion.boxed .accordion,
.ce_accordion.boxed .content,
.ce_text.boxed .accordion,
.ce_text.boxed .content,
.ce_rsce_text.boxed .accordion,
.ce_rsce_text.boxed .content {
  padding-top: 32px;
  padding-left: 15px;
  padding-right: 15px;
}
.ce_accordion.boxed.text-center a,
.ce_text.boxed.text-center a,
.ce_rsce_text.boxed.text-center a {
  text-decoration: none;
}
.ce_accordion.margin-bottom-set,
.ce_text.margin-bottom-set,
.ce_rsce_text.margin-bottom-set {
  margin-bottom: 96px;
}

.ce_text.boxed,
.ce_rsce_text.boxed {
  margin-bottom: 32px;
}
.ce_text figure img,
.ce_rsce_text figure img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}
.ce_text.boxed-img figure img,
.ce_rsce_text.boxed-img figure img {
  border: 1px solid #ccc;
  padding-left: 15px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}
.ce_text.flex-tile,
.ce_rsce_text.flex-tile {
  display: flex;
}
.ce_text.flex-tile .content,
.ce_rsce_text.flex-tile .content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.ce_text.flex-tile .content p,
.ce_rsce_text.flex-tile .content p {
  flex: 1 1 auto;
}
.ce_text.flex-tile .content p:last-child,
.ce_rsce_text.flex-tile .content p:last-child {
  flex: 0 0 auto;
}
.ce_text.flex-tile .content .btn,
.ce_rsce_text.flex-tile .content .btn {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
}
.ce_text.flex-tile .content .btn::after,
.ce_rsce_text.flex-tile .content .btn::after {
  content: none !important;
}

#slideshow .ce_google_map {
  position: relative;
}
#content-4-full-width-map .ce_google_map {
  min-height: 320px;
  height: 400px;
}
.ce_google_map button::after {
  content: none;
}

.ce_optin_fallback {
  background-color: red;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 32px 32px 0;
  margin-bottom: 32px;
}
.ce_optin_fallback.block, figure.full-responsive img.ce_optin_fallback, figure.responsive img.ce_optin_fallback, img.ce_optin_fallback.full-responsive, img.ce_optin_fallback.responsive, .ce_optin_fallback.block-center, img.ce_optin_fallback.center, label[for=nav-trigger] span.ce_optin_fallback, label[for=nav-trigger] span.ce_optin_fallback::before, label[for=nav-trigger] span.ce_optin_fallback::after, .ce_optin_fallback#toplink {
  display: flex;
}

.mod_cms_accept_tags button,
.mod_cms_cookie_bar button {
  font-size: 14px;
  padding-left: 64px !important;
  padding-right: 64px !important;
}
.mod_cms_accept_tags button:after,
.mod_cms_cookie_bar button:after {
  content: none;
}
.mod_cms_accept_tags button ~ button,
.mod_cms_cookie_bar button ~ button {
  margin-bottom: 12px;
}

.mod_cms_accept_tags form {
  border: 1px solid #ccc;
  box-shadow: none !important;
}
.mod_cms_accept_tags .info {
  text-align: center;
}
.mod_cms_accept_tags .info p:last-child {
  margin: 0;
}
.mod_cms_accept_tags .description p {
  margin: 0;
}
.mod_cms_accept_tags .widget-submit {
  position: relative;
  top: 18px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-bottom: 32px;
}

cms-accept-tags.mod_cms_accept_tags p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
}
cms-accept-tags.mod_cms_accept_tags > cms-container {
  margin: 2em auto;
}
cms-accept-tags.mod_cms_accept_tags > cms-container form {
  border: 0;
}
cms-accept-tags.mod_cms_accept_tags > cms-container form > cms-container {
  text-align: center;
}
cms-accept-tags.mod_cms_accept_tags > cms-container form cms-taggroup p {
  text-align: justify;
}
cms-accept-tags.mod_cms_accept_tags > cms-container form cms-buttons {
  justify-content: center;
}

cms-accept-tags > cms-container form cms-buttons cms-button[value=accept]:nth-last-of-type(1) {
  background-color: #87D1E6 !important;
}
cms-accept-tags > cms-container form cms-buttons cms-button[value=accept]:nth-last-of-type(1):hover {
  background-color: #4a96ab !important;
}

/*.baufilead_zinstableau {
    .baufilead-zinstableau-titel,

    .baufilead-zinstableau-bestzins-effektivzins-label,
    .baufilead-zinstableau-bestzins-zinsbindung,
    .baufilead-zinstableau-bestzins-sollzins,

    .baufilead-zinstableau-stand-per,
    .baufilead-zinstableau-annahmen-container,
    .baufilead-zinstableau-lead-erfassen-container    {
        display: none !important;
    }

    #baufilead-zinstableau-container-0 {
        background: #fff;
        .baufilead-zinstableau-untertitel,
        .baufilead-zinstableau-bestzins-container,
        div.baufilead-zinstableau-konditionen-tabelle-container {
            padding: 0;
            margin: 0
        }

        .baufilead-zinstableau-untertitel,
        .baufilead-zinstableau-bestzins-container {
            width: percentage(1/5);
            float: left;
            clear: left;
        }

        div.baufilead-zinstableau-konditionen-tabelle-container {
            width: percentage(4/5);
            float: right;
            margin-top: -76px
        }

        .baufilead-zinstableau-konditionen-tabelle {
            border-spacing: $marginRight + $marginLeft + px;
            border-collapse: separate;
            tr {
                border-width: 0px;
                background-color: white !important;
            }
            .baufilead-zinstableau-konditionen-ueberschrift-zeile {
                th {
                    border-top: 1px solid black;
                    padding-top: 24px;
                    padding-bottom: 24px;
                    br {
                        display: none
                    }
                }
            }
            .baufilead-zinstableau-kondition-zeile {
                border: 1px solid #000;
                border-width: 0px 1px;
                text-align: center;
                &:last-child {
                    .baufilead-zinstableau-konditionen-tabelle-zelle {
                        border-bottom: 1px solid black !important;
                        padding-bottom: 24px;
                    }
                }
            }
            .baufilead-zinstableau-konditionen-tabelle-zelle {
                border: 1px solid #000;
                border-width: 0px 1px;
                text-align: center;
            }
            .baufilead-zinstableau-konditionen-zelle-zinsbindung {
            }
            .baufilead-zinstableau-konditionen-zelle-monatliche-rate {
                /*border-top: 1px solid blCack;*
            }
        }
    }
}*/
#wrapper {
  overflow: hidden;
}

#cta-bar .inside {
  padding-top: 9px;
  padding-bottom: 9px;
}
#cta-bar a,
#cta-bar span {
  text-decoration: none;
  margin-left: 12px;
  flex: 0 0 100%;
}
#cta-bar .mod_static {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  #cta-bar .openings {
    display: none;
  }
}
@media (max-width: 768px) {
  #cta-bar a:nth-child(2),
#cta-bar span:nth-child(2) {
    flex: 0 0 auto;
  }
  #cta-bar a:nth-child(3),
#cta-bar span:nth-child(3) {
    flex: 1 0 auto;
  }
  #cta-bar .text {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}
@media (min-width: 769px) {
  #cta-bar a,
#cta-bar span {
    flex: 1 1 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #cta-bar a:first-child,
#cta-bar span:first-child {
    flex: 0 0 50%;
  }
}
@media (min-width: 769px) {
  #cta-bar .inside {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 48px;
  }
}
@media (min-width: 769px) {
  #cta-bar .mod_static {
    justify-content: space-evenly;
  }
}
@media (min-width: 769px) {
  #cta-bar .text {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 32px;
    line-height: 2rem;
  }
}
@media (min-width: 1025px) {
  #cta-bar .inside {
    padding-right: auto;
  }
  #cta-bar .mod_static {
    justify-content: flex-end;
  }
}
@media (min-width: 1281px) {
  #cta-bar .text {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 32px;
    line-height: 2rem;
  }
}

#slideshow {
  position: relative;
}
#slideshow .flex {
  display: flex;
  flex-wrap: wrap;
}
#slideshow .ce_player {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  max-width: 100%;
  overflow: hidden;
}
#slideshow .ce_player video {
  width: 100%;
  height: auto;
  display: block;
}
#slideshow .ce_player .killswitch {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  color: #fff;
  background: red;
  width: 28px;
  padding: 0;
  margin: 0;
  line-height: 28px;
  z-index: 123456;
  transform: translateX(100%);
  transition: transform 420ms;
  text-align: center;
}
#slideshow .ce_player .killswitch::after {
  content: none;
}
#slideshow .ce_player .killswitch.showMe {
  transform: translateX(0);
}
@media (max-width: 480px) {
  #slideshow .ce_player {
    bottom: 62px;
  }
}
@media (min-width: 861px) {
  #slideshow .ce_player {
    max-width: 75%;
  }
}
@media (min-width: 1682px) {
  #slideshow .ce_player {
    max-width: 50%;
  }
}

#container {
  position: relative;
  z-index: 2;
}
#container .mod_article {
  margin-top: 32px;
}
#container .no-padding > .mod_article.first {
  margin-top: 0;
}
#container .no-padding > .mod_article.last {
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  #container .mod_article {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  #container .inside {
    padding-top: 64px;
    padding-bottom: 32px;
  }
  #container .inside.no-padding {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1025px) {
  #container #content-1 {
    position: relative;
    overflow: hidden;
  }
  #container #content-1 .inside {
    padding-top: 0;
    padding-bottom: 0;
  }
  #container #content-1 .mod_article {
    margin-top: 0;
    margin-bottom: 0;
  }
  #container #content-1 .full-half-size {
    position: absolute;
    top: 0;
    bottom: 0;
    max-width: 50vw;
    height: auto;
    margin: 0;
    left: calc(50% + 15px);
  }
  #container #content-1 .full-half-size.reverse {
    left: auto;
    right: calc(50% + 15px);
  }
}

#aside-baufi-lead {
  background: url("../../files/theme-baufinanz-2019/images/frontpage-parallax.jpg") no-repeat 50% 50%;
  background-size: auto 110%;
}

.frontpage #content-3-full-width .inside {
  padding: 0 !important;
}
.frontpage #content-3-full-width .mod_article {
  margin: 0 !important;
}

#kontakt {
  position: relative;
}
#kontakt-fancy-image {
  position: absolute;
  bottom: 32px;
  left: calc(50vw + 640px - 279px - 65px);
}

#copyright .inside {
  padding-top: 9px;
  padding-bottom: 9px;
}
@media (min-width: 769px) {
  #copyright .text {
    text-align: right;
  }
  #copyright ul {
    display: flex;
    flex-direction: row;
  }
  #copyright li::before {
    content: "|";
    display: inline-block;
    margin-left: 5px;
    margin-right: 4px;
  }
  #copyright li.first::before {
    content: none;
  }
}

#header .inside {
  padding-top: 46px;
  padding-bottom: 46px;
}
@media (min-width: 1025px) {
  #header {
    position: relative;
    z-index: 3;
  }
}

#footer .inside {
  padding-top: 46px;
  padding-bottom: 46px;
}
#footer .mod_customnav {
  margin-bottom: 32px;
}
#footer .mod_customnav span.active {
  font-weight: bold;
}
#footer a {
  text-decoration: none;
}
#footer .fa {
  margin-right: 4px;
  width: 18px;
  text-align: center;
}
#footer .icon-marker {
  display: flex;
  flex-direction: inherit;
  align-items: baseline;
}
#footer .icon-marker::before {
  content: "";
  background: url("../../files/theme-baufinanz-2019/images/icons/local_baufinanz_white.svg") no-repeat 50% 50%;
  margin-right: 5px;
  display: inline-block;
  height: 20px;
  width: 18px;
  vertical-align: middle;
  position: relative;
  top: 4px;
  background-size: contain;
}

@media (max-width: 1024px) {
  #kde-widget {
    margin-bottom: 64px !important;
  }
}

#cookie-hint.theme-bar {
  display: block;
  text-align: center;
  background-color: #87D1E6;
  width: 100%;
  overflow: hidden;
}
#cookie-hint.theme-bar p {
  margin: 16px 0;
}
#cookie-hint.theme-bar a {
  display: inline-block;
  text-decoration: underline;
  background-color: #4C9C2E;
  padding: 6px 16px;
  font-size: 13px;
  color: #87D1E6;
}
#cookie-hint.theme-bar span {
  display: block;
  margin-bottom: 16px;
}
@media screen and (min-width: 1281px) {
  #cookie-hint.theme-bar span {
    display: inline-block;
    margin-right: 12px;
  }
}
#cookie-hint.theme-box {
  position: fixed;
  left: 20px;
  width: 300px;
  background-color: #212121;
  padding: 30px 20px 20px 20px;
  bottom: 50px;
  color: #fff;
  z-index: 100;
}
#cookie-hint.theme-box span {
  display: block;
  margin-bottom: 32px;
}
#cookie-hint.theme-box .btn {
  margin-bottom: 16px;
}
#cookie-hint.theme-box p {
  margin: 0;
}
#cookie-hint.theme-overlay::before {
  content: "";
  display: block;
  position: fixed;
  z-index: 1234;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
#cookie-hint.theme-overlay p {
  position: fixed;
  max-width: 320px;
  width: 100%;
  top: 0;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12345;
  padding: 15px;
  background-color: rgba(222, 222, 222, 0.91);
  text-align: center;
}
#cookie-hint.theme-overlay p span {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  display: block;
  margin-bottom: 32px;
}
#cookie-hint.theme-overlay p .btn {
  display: block;
  margin-bottom: 16px;
}

#service-tiles {
  display: flex;
  flex-direction: column;
}
#service-tiles > * {
  text-transform: uppercase;
  color: #4C9C2E;
}
#service-tiles > * img {
  border: 1px solid #c9c9c9;
  margin-bottom: 16px;
}
@media (min-width: 481px) {
  #service-tiles {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #service-tiles > * {
    margin-left: 15px;
    margin-right: 15px;
    flex: 0 0 calc(50% - 30px);
  }
}
@media (min-width: 769px) {
  #service-tiles > * {
    flex: 0 0 calc(33.333% - 30px);
  }
}
@media (min-width: 1025px) {
  #service-tiles > * {
    flex: 0 0 calc(20% - 30px);
  }
}

#toplink {
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  position: fixed;
  transition: opacity 420ms;
  font-size: 0;
  background-color: #87D1E6;
  opacity: 1;
}
#toplink::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 8px;
  display: block;
  border: 12px solid #4C9C2E;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
}

#googleMap {
  display: block;
  width: 100%;
  min-height: 250px;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
}
#googleMap .maps_allow_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
#googleMap .maps_allow_wrapper input {
  display: block;
  margin: auto;
}

.elemts_as_wizard .ce_text:nth-child(2)::before, .elemts_as_wizard .ce_text:nth-child(3)::before, .elemts_as_wizard .ce_text:nth-child(4)::before {
  font-size: 172px;
  font-size: 10.75rem;
  line-height: 312px;
  line-height: 19.5rem;
  display: block;
  border: 1px solid #7d7d7d;
  width: 312px;
  margin: 0 auto 42px;
  font-weight: bold;
  color: #dddddd;
  background-color: #fff;
}
.elemts_as_wizard .ce_text:nth-child(2)::before {
  content: "1";
}
.elemts_as_wizard .ce_text:nth-child(3)::before {
  content: "2";
}
.elemts_as_wizard .ce_text:nth-child(4)::before {
  content: "3";
}
@media (min-width: 1025px) {
  .elemts_as_wizard > .ce_headline {
    position: relative;
  }
  .elemts_as_wizard > .ce_headline::before {
    content: "";
    display: block;
    border-bottom: 1px solid #7d7d7d;
    display: block;
    z-index: -1;
    position: absolute;
    top: 284px;
    left: 10%;
    right: 10%;
  }
}

.js .sticky-wrapper {
  background-color: rgba(255, 0, 0, 0.3);
}
@media (min-width: 1025px) {
  .js #sticked {
    padding-bottom: 70px;
    margin-bottom: 32px;
    position: relative;
  }
  .js .sticky-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .js .sticked .sticky-wrapper {
    position: fixed;
    z-index: 1030;
  }
}

/*@import "_mobile_slide-in-menu";*/
/*@import "_mobile_menu";*/
/*
    Created on : 09.06.2017, 16:33:00
    Author     : Maik Lampe <ml@easy-media.de>
    Description: Allround menu tempalte
*/
body.no-scroll {
  position: fixed;
  overflow-y: hidden;
  width: 100%;
}

label[for=nav-trigger] {
  position: absolute;
  margin: 12px;
  float: left;
  display: block;
  cursor: pointer;
  right: 0;
  width: 25px;
  height: 25px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  z-index: 1000005;
  top: 0;
}
label[for=nav-trigger] span {
  top: 0px;
}
label[for=nav-trigger] span, label[for=nav-trigger] span::before, label[for=nav-trigger] span::after {
  content: "";
  background-color: #4C9C2E;
  position: relative;
  width: 25px;
  height: 5px;
}
label[for=nav-trigger] span::before {
  top: 10px;
}
label[for=nav-trigger] span::after {
  top: 15px;
}
#nav-trigger:checked ~ #wrapper label[for=nav-trigger] {
  /*top: -84px;*/
}
#nav-trigger:checked ~ #wrapper label[for=nav-trigger] span {
  height: 0;
}
#nav-trigger:checked ~ #wrapper label[for=nav-trigger] span::before {
  top: 10px;
  transform: rotate(45deg);
}
#nav-trigger:checked ~ #wrapper label[for=nav-trigger] span::after {
  top: 5px;
  transform: rotate(-45deg);
}
@media (min-width: 1024px) {
  label[for=nav-trigger] {
    display: none !important;
  }
}

#root a,
#root strong {
  display: block;
  white-space: nowrap;
}
#root .level_1 > li > a,
#root .level_1 > li > strong,
#root .level_1 > li > span {
  text-transform: uppercase;
}
#root ul ul {
  overflow: hidden;
  transition: max-height 800ms;
}
@media (max-width: 1024px) {
  #root {
    display: none;
    width: 100%;
    margin: 0;
    z-index: 12345;
    background-color: #fff;
    position: fixed;
    overflow: scroll;
    left: 0;
    top: 103px;
    top: 0px;
    bottom: 0;
    right: 0;
  }
  #root ul {
    font-size: 16px;
    font-size: 1rem;
    line-height: 48px;
    line-height: 3rem;
    margin: 0;
  }
  #root li.trail > a, #root li.active > a {
    color: #4C9C2E;
  }
  #root li.submenu > a::after,
#root li.submenu > span::after,
#root li.submenu > strong::after {
    content: url("../../files/theme-baufinanz-2019/images/submenu-caret-mobile.svg");
    display: inline-block;
    margin-left: 12px;
    position: relative;
    top: 0;
    transform: rotatez(-90deg);
    transition: transform 200ms;
  }
  .no-js #root li.submenu > a::after,
.no-js #root li.submenu > span::after,
.no-js #root li.submenu > strong::after {
    transform: rotatez(0deg);
  }
  .js #root li.submenu > ul {
    display: none;
  }
  #root li.submenuOpen > a::after,
#root li.submenuOpen > strong::after {
    transform: rotatez(0deg);
  }
  .js #root li.submenuOpen > ul {
    display: block;
  }
  #root li li > a,
#root li li > span,
#root li li > strong {
    padding-left: 64px;
  }
  #root li li li > a,
#root li li li > span,
#root li li li > strong {
    padding-left: 96px;
  }
  #root li li li li > a,
#root li li li li > span,
#root li li li li > strong {
    padding-left: 128px;
  }
  #root a,
#root strong {
    border-bottom: 1px solid rgba(179, 179, 179, 0.5);
    padding-left: 32px;
  }
  #nav-trigger:checked ~ #wrapper #root {
    display: block;
  }
}
@media (min-width: 1025px) {
  #root {
    position: relative;
    z-index: 1;
    font-weight: bold;
    margin-top: 34px;
  }
  #root .showJustMobile {
    display: none !important;
  }
  #root ul {
    font-size: 16px;
    font-size: 1rem;
    line-height: 40px;
    line-height: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  #root ul ul {
    transition: max-height 420ms;
  }
  #root a,
#root span,
#root strong {
    padding-left: 16px;
    padding-right: 16px;
    letter-spacing: -0.04em;
  }
  #root a {
    transition: color 480ms;
  }
  #root a:hover {
    transition-duration: 240ms;
    color: #4C9C2E;
  }
  #root span,
#root strong {
    color: #4C9C2E;
  }
  #root .submenu > ul {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
  }
  #root .submenu.submenuOpen > ul {
    z-index: 2;
  }
  html:not(.js) #root .submenu:hover > ul {
    display: block;
  }
  #root .level_1 {
    display: flex;
    flex-wrap: nowrap;
    /*align-content: stretch;*/
  }
  #root .level_1 > li {
    /*flex-grow: 1;*/
  }
  #root .level_1 > li > a,
#root .level_1 > li > span,
#root .level_1 > li > strong {
    padding-right: 0;
  }
  #root .level_1 > li.nav-bg-primary > a {
    padding-right: 16px;
    background-color: #4C9C2E;
    color: #fff;
  }
}
@media (min-width: 1281px) {
  #root ul {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 40px;
    line-height: 2.5rem;
  }
}

#nav-trigger:checked ~ #wrapper #container {
  position: relative;
}
#nav-trigger:checked ~ #wrapper #container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1234;
  background-color: rgba(0, 0, 0, 0.7);
}

/*
    Created on  : 08.05.2015, 10:15:00
    Description : Some usefull classes
    Changes     :
        09.06.2015, 16:04:00
        03.07.2015, 10:27:00
        15.07.2015, 11:57:00
*/
.hidden {
  display: none;
}

.block, figure.full-responsive img, figure.responsive img, img.full-responsive, img.responsive, .block-center, img.center, #toplink, label[for=nav-trigger] span, label[for=nav-trigger] span::before, label[for=nav-trigger] span::after {
  display: block;
}
.block-center, img.center {
  margin-left: auto;
  margin-right: auto;
}

.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}

.display-flex {
  display: flex !important;
  flex-wrap: wrap !important;
}

.clear, .clear-both, hr {
  clear: both;
}
.clear-right {
  clear: right;
}
.clear-left {
  clear: left;
}

.text-center {
  text-align: center;
}
@media screen and (min-width: 481px) {
  .text-xsm-center {
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .text-sm-center {
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1171px) {
  .text-lg-center {
    text-align: center;
  }
}
@media screen and (min-width: 1281px) {
  .text-xl-center {
    text-align: center;
  }
}
.text-left {
  text-align: left;
}
@media screen and (min-width: 481px) {
  .text-xsm-left {
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .text-sm-left {
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .text-md-left {
    text-align: left;
  }
}
@media screen and (min-width: 1171px) {
  .text-lg-left {
    text-align: left;
  }
}
@media screen and (min-width: 1281px) {
  .text-xl-left {
    text-align: left;
  }
}
.text-right {
  text-align: right;
}
@media screen and (min-width: 481px) {
  .text-xsm-right {
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .text-sm-right {
    text-align: right;
  }
}
@media screen and (min-width: 1025px) {
  .text-md-right {
    text-align: right;
  }
}
@media screen and (min-width: 1171px) {
  .text-lg-right {
    text-align: right;
  }
}
@media screen and (min-width: 1281px) {
  .text-xl-right {
    text-align: right;
  }
}
.text-justify {
  text-align: justify;
  -webkit-word-break: break-word;
  -moz-word-break: break-word;
  -ms-word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.underline {
  text-transform: underline;
}

.line-through {
  text-transform: line-through;
}

.ultra-thin {
  font-weight: 100;
}

.thin {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

.ultra-bold {
  font-weight: 900;
}

.italic {
  font-style: italic;
}

figure.full-responsive img, figure.responsive img, img.full-responsive, img.responsive {
  height: auto;
}
figure.responsive img, img.responsive {
  max-width: 100%;
}
figure.full-responsive img, img.full-responsive {
  width: 100%;
}

img.circle {
  border-radius: 50%;
}

.no-transform {
  text-transform: none;
}
.no-strong, strong.no-strong {
  font-weight: inherit;
}
.no-decoration {
  text-decoration: none;
}
.no-outline {
  outline: none;
}
.no-border {
  border-width: 0;
}
.no-border-top {
  border-top-width: 0;
}
.no-border-right {
  border-right-width: 0;
}
.no-border-bottom {
  border-bottom-width: 0;
}
.no-border-left {
  border-left-width: 0;
}
.no-padding {
  padding: 0;
}
.no-padding-top {
  padding-top: 0;
}
.no-padding-right {
  padding-right: 0;
}
.no-padding-bottom {
  padding-bottom: 0;
}
.no-padding-left {
  padding-left: 0;
}
.no-margin {
  margin: 0;
}
.no-margin-top {
  margin-top: 0;
}
.no-margin-right {
  margin-right: 0;
}
.no-margin-bottom {
  margin-bottom: 0;
}
.no-margin-left {
  margin-left: 0;
}

/* fancy frame animation for images */
.frame-animation {
  width: 380px;
  height: 380px;
  position: relative;
  background: rgb(255, 255, 255);
  display: inline-block;
  margin: 0;
  cursor: pointer;
  color: #2c3e50;
  box-shadow: inset 0 0 0 3px #2c3e50;
  -webkit-transition: background 0.4s 0.5s;
  transition: background 0.4s 0.5s;
}
.frame-animation svg {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 0;
  bottom: 0;
}
.frame-animation svg line {
  stroke-width: 5;
  stroke: #fff;
  fill: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.frame-animation svg line.top {
  stroke-dasharray: 410 320;
}
.frame-animation svg line.bottom {
  stroke-dasharray: 410 320;
}
.frame-animation svg line.left {
  stroke-dasharray: 410 320;
}
.frame-animation svg line.right {
  stroke-dasharray: 410 320;
}
.frame-animation svg line.top {
  transform: translateX(-380px);
}
.frame-animation svg line.bottom {
  transform: translateX(380px);
}
.frame-animation svg line.left {
  transform: translateY(380px);
}
.frame-animation svg line.right {
  transform: translateY(-380px);
}
.frame-animation:hover {
  background: rgba(255, 255, 255, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.frame-animation:hover svg line {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.frame-animation:hover svg line.top {
  transform: translateX(0);
}
.frame-animation:hover svg line.bottom {
  transform: translateX(0);
}
.frame-animation:hover svg line.left {
  transform: translateY(0);
}
.frame-animation:hover svg line.right {
  transform: translateY(0);
}

/*
    Created on : 01.09.2015, 12:30:50
    Description: easy-accordion minimal required css
*/
.ce_rsce_text.expandable .content {
  transition: max-height 420ms;
  overflow: hidden;
  position: relative;
}
.ce_rsce_text.expandable .content::after {
  content: url(../../files/theme-baufinanz-2019/images/down-arrow.svg);
  background: linear-gradient(to top, #f1f1f1 0%, rgba(241, 241, 241, 0) 24px);
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 24px;
  opacity: 0;
  transition: opacity 420ms;
}
.ce_rsce_text.expandable.expanded .content {
  max-height: max-content;
}
.ce_rsce_text.expandable.collapsed .content {
  max-height: 188px;
}
.ce_rsce_text.expandable.collapsed .content::after {
  opacity: 1;
}

.ce_accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.ce_accordion,
.ce_accordion .accordion {
  overflow: hidden;
  box-sizing: border-box;
}
.ce_accordion .toggler {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 48px;
  line-height: 3rem;
  text-transform: none;
  font-weight: bold;
  padding-left: 32px;
  display: flex;
  justify-content: space-between;
}
.ce_accordion .toggler::after {
  content: "+";
  text-align: center;
  min-width: 64px;
}
.js .ce_accordion .toggler {
  cursor: pointer;
}
.ce_accordion .accordion {
  transition: max-height 420ms;
}
.ce_accordion .accordion > div {
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 16px;
}
.ce_accordion.expanded .toggler::after {
  content: "-";
}

.fg-primary {
  color: #4C9C2E;
}

.bg-primary {
  background-color: #4C9C2E;
}

.fg-secondary {
  color: #87D1E6;
}

.bg-secondary {
  background-color: #87D1E6;
}

.fg-highlight {
  color: yellow;
}

.bg-highlight {
  background-color: yellow;
}

.fg-grey {
  color: #f1f1f1;
}

.bg-grey {
  background-color: #f1f1f1;
}

.fg-trans {
  color: rgba(255, 255, 255, 0.4);
}

.bg-trans {
  background-color: rgba(255, 255, 255, 0.4);
}

.bg-primary-colors {
  background: linear-gradient(45deg, #87D1E6 0%, #4C9C2E 100%);
}

.full-transparent {
  opacity: 0;
}

@-webkit-keyframes customSlideInUpAndFadeIn {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes customSlideInUpAndFadeIn {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.customSlideInUpAndFadeIn {
  -webkit-animation-name: customSlideInUpAndFadeIn;
  animation-name: customSlideInUpAndFadeIn;
}

#no-padding-teamimage {
  position: relative;
  top: 32px;
}
@media (min-width: 1025px) {
  #no-padding-teamimage {
    top: 96px;
  }
}

/*
    Created on : 27.07.2015, 16:33:17
    Description: CSS-Anweisungen für vordefiniertes Browserverhalten
    History
        2015-12-07: Added contao-like label handling
        2016-01-18: Fixed label handling
        2017-07-07: Fixed label handling
*/
.need-svg,
.need-js {
  display: none;
}

html.js .need-js {
  display: block;
}
html.svg .svg-fallback {
  display: none;
}
html.svg .need-svg {
  display: block;
}
html.touch .mobile-scroll {
  padding: 0 1px;
  position: relative;
}
@media (max-width: 1024px) {
  html.touch .mobile-scroll {
    overflow-x: scroll;
  }
}
html.touch .scroll-guide {
  position: absolute;
  left: 50%;
  top: 200px;
  width: 150px;
  line-height: 150px;
  margin-left: -75px;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  cursor: pointer;
}
html.touch .scroll-guide .flaticon-swipe {
  color: #fff;
}
html.touch .scroll-guide .flaticon-swipe::before {
  margin: 0;
  font-size: 64px;
  line-height: 150px;
  display: block;
}
@media (min-width: 1025px) {
  html.touch .scroll-guide {
    display: none !important;
    left: -1000%;
    top: -1000%;
  }
}

/*# sourceMappingURL=style.css.map */


/* baufi-passt rechner */

.rechnerWrapper { 
	width:fit-content;
	margin: auto;
	
}
/*
  stylesheet primary for C5-fixes
  for every theme
*/


.content-hyperlink { 
  margin-bottom: 2rem;
}

.content-image.text-center img {
  display: block;
  margin: auto;
}

.content-image.text-center figure > a figcaption {
  padding-top: 32px;
  font-weight: bold;
}

.content-text img, .content-image img {
  max-width: 100%;
  height: auto;
}

.content-download a {
  margin-bottom: 2rem;
  display: block;
}

@media (min-width: 1025px) {
  .media--left figure {
    margin-right: 15px;
  }
}
@media (min-width: 1025px) {
  
  .media--left figure, .media--right figure {
    max-width: calc(50% - 15px);
  }

  .media--left figure {
    float: left;
  }
  
  .media--right figure {
    float: right;
  }
  
}

.content-gallery ul {
  margin-top: 0;
}
.content-gallery li {
  float: left;
  vertical-align: middle;
  margin-top: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}
.content-gallery figure {
  margin: 0;
}
.content-gallery img {
  max-width: 100%;
  height: auto;
}
.content-gallery--cols-1 li {
  width: 100%;
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .content-gallery--cols-2 li,
.content-gallery--cols-3 li,
.content-gallery--cols-4 li,
.content-gallery--cols-5 li,
.content-gallery--cols-6 li,
.content-gallery--cols-7 li,
.content-gallery--cols-8 li,
.content-gallery--cols-9 li,
.content-gallery--cols-10 li,
.content-gallery--cols-11 li,
.content-gallery--cols-12 li {
    margin-right: 0;
  }
}
@media screen and (min-width: 481px) {
  .content-gallery--cols-2 li,
.content-gallery--cols-3 li,
.content-gallery--cols-4 li,
.content-gallery--cols-5 li,
.content-gallery--cols-6 li,
.content-gallery--cols-7 li,
.content-gallery--cols-8 li,
.content-gallery--cols-9 li,
.content-gallery--cols-10 li,
.content-gallery--cols-11 li,
.content-gallery--cols-12 li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .content-gallery--cols-2 li:nth-child(2n+1),
.content-gallery--cols-3 li:nth-child(2n+1),
.content-gallery--cols-4 li:nth-child(2n+1),
.content-gallery--cols-5 li:nth-child(2n+1),
.content-gallery--cols-6 li:nth-child(2n+1),
.content-gallery--cols-7 li:nth-child(2n+1),
.content-gallery--cols-8 li:nth-child(2n+1),
.content-gallery--cols-9 li:nth-child(2n+1),
.content-gallery--cols-10 li:nth-child(2n+1),
.content-gallery--cols-11 li:nth-child(2n+1),
.content-gallery--cols-12 li:nth-child(2n+1) {
    clear: left;
  }
  .content-gallery--cols-2 li:nth-child(2n),
.content-gallery--cols-3 li:nth-child(2n),
.content-gallery--cols-4 li:nth-child(2n),
.content-gallery--cols-5 li:nth-child(2n),
.content-gallery--cols-6 li:nth-child(2n),
.content-gallery--cols-7 li:nth-child(2n),
.content-gallery--cols-8 li:nth-child(2n),
.content-gallery--cols-9 li:nth-child(2n),
.content-gallery--cols-10 li:nth-child(2n),
.content-gallery--cols-11 li:nth-child(2n),
.content-gallery--cols-12 li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .content-gallery--cols-2 li {
    width: calc((100% - 30px) / 2);
  }
  .content-gallery--cols-2 li:nth-child(2n+1) {
    clear: left;
  }
  .content-gallery--cols-2 li:nth-child(2n) {
    margin-right: 0;
  }
  .content-gallery--cols-3 li {
    width: calc((100% - 60px) / 3);
  }
  .content-gallery--cols-3 li:nth-child(3n+1) {
    clear: left;
  }
  .content-gallery--cols-3 li:nth-child(3n) {
    margin-right: 0;
  }
  .content-gallery--cols-4 li {
    width: calc((100% - 90px) / 4);
  }
  .content-gallery--cols-4 li:nth-child(4n+1) {
    clear: left;
  }
  .content-gallery--cols-4 li:nth-child(4n) {
    margin-right: 0;
  }
  .content-gallery--cols-5 li {
    width: calc((100% - 120px) / 5);
  }
  .content-gallery--cols-5 li:nth-child(5n+1) {
    clear: left;
  }
  .content-gallery--cols-5 li:nth-child(5n) {
    margin-right: 0;
  }
  .content-gallery--cols-6 li {
    width: calc((100% - 150px) / 6);
  }
  .content-gallery--cols-6 li:nth-child(6n+1) {
    clear: left;
  }
  .content-gallery--cols-6 li:nth-child(6n) {
    margin-right: 0;
  }
  .content-gallery--cols-7 li {
    width: calc((100% - 180px) / 7);
  }
  .content-gallery--cols-7 li:nth-child(7n+1) {
    clear: left;
  }
  .content-gallery--cols-7 li:nth-child(7n) {
    margin-right: 0;
  }
  .content-gallery--cols-8 li {
    width: calc((100% - 210px) / 8);
  }
  .content-gallery--cols-8 li:nth-child(8n+1) {
    clear: left;
  }
  .content-gallery--cols-8 li:nth-child(8n) {
    margin-right: 0;
  }
  .content-gallery--cols-9 li {
    width: calc((100% - 240px) / 9);
  }
  .content-gallery--cols-9 li:nth-child(9n+1) {
    clear: left;
  }
  .content-gallery--cols-9 li:nth-child(9n) {
    margin-right: 0;
  }
  .content-gallery--cols-10 li {
    width: calc((100% - 270px) / 10);
  }
  .content-gallery--cols-10 li:nth-child(10n+1) {
    clear: left;
  }
  .content-gallery--cols-10 li:nth-child(10n) {
    margin-right: 0;
  }
  .content-gallery--cols-11 li {
    width: calc((100% - 300px) / 11);
  }
  .content-gallery--cols-11 li:nth-child(11n+1) {
    clear: left;
  }
  .content-gallery--cols-11 li:nth-child(11n) {
    margin-right: 0;
  }
}

.ce_optin_fallback {
  background-color: #4c9c2e;
  
}

.pagination.block {
  float: left;
  width: 100%;
}

@media screen and (min-width:1026px) {
  .phoneMockup img {
    margin-left: 50%;
  }
}

.headerFull {
  margin: 0px !important;
}

.colorAccent {
  color: #509e2f
}

.mb0 {
  margin-bottom:0;
}


.listStyleTypeDisc ul {
  list-style-type: disc;
}

.mod_newsreader ul {
  list-style-type: disc;
  padding-left: 20px;
}

.mod_newsreader p {
  margin-bottom: 0;
}

.mod_newsreader p + p {
  margin-top: 20px;
}

.mod_newsreader h3 {
  margin-bottom: 10px;
  margin-top: 20px;
}
