@charset "UTF-8";
/* CSS RESET */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code,
small, strong, em, del, ins, b, i, a,
dl, dt, dd, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th,
article, aside, figure, footer, header, hgroup, menu, nav, section, menu,
time, mark, audio, video										{ margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; list-style: none; }
article, aside, figure, footer, header, hgroup, nav, section	{ display:block; }
/*!
 * animate.css -https://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

@font-face {
  font-family: 'Century Gothic';
  src: local('Century Gothic'), local('Century Gothic'), url(cg.woff2) format('woff2'),url(cg.woff) format('woff');
}

@font-face {
  font-family: 'BebasNeue-Regular';
  src: local('BebasNeue-Regular'), local('BebasNeue-Regular'), url(BebasNeue-Regular.woff2) format('woff2'),url(BebasNeue-Regular.woff) format('woff');
  }

@font-face {
    font-family: 'FontAwesome';
    src: url('fontawesome-webfont.woff2') format('woff2'),
        url('fontawesome-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


.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.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

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

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

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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: none;
    transform: none;
  }

  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: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  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: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  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: none;
    transform: none;
  }

  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 bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

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

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

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

  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: none;
    transform: none;
  }
}

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

  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: none;
    transform: none;
  }
}

.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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
    transform: none;
  }
}

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

  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: none;
    transform: none;
  }
}

.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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
    transform: none;
  }
}

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

  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: none;
    transform: none;
  }
}

.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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -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-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-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);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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-name: hinge;
  animation-name: hinge;
}

/* 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: none;
    transform: none;
  }
}

@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: none;
    transform: none;
  }
}

.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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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);

  }

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


    -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;
}
.delay-quarter{-webkit-animation-delay:0.5s;animation-delay:0.5s}.delay-half{-webkit-animation-delay:0.75s;animation-delay:0.75s}.delay-three-quarter{-webkit-animation-delay:1s;animation-delay:1s}.delay-one{-webkit-animation-delay:1.25s;animation-delay:1.25s}.delay-one-quarter{-webkit-animation-delay:1.5s;animation-delay:1.5s}.delay-one-half{-webkit-animation-delay:1.75s;animation-delay:1.75s}.delay-two{-webkit-animation-delay:2.25s;animation-delay:2.25s}.delay-two-half{-webkit-animation-delay:2.75s;animation-delay:2.75s}

html {height:100%;}
body {	color:#3c3c3b;  line-height: 26px; font:300 18px 'Century Gothic',Arial,Helvetica; -webkit-font-smoothing:antialiased; }

span.glyphicon-chevron-left,
span.glyphicon-chevron-right,
a.carousel-control span { border:none!important}
a{color:#002ea2; text-decoration:none; transition:color 0.5s ease-in-out;}
a:hover{color:#202020;}
.btn,a,.btn:hover,a:hover {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
outline: none !important;
}
h1,h2,h3,h4{margin: 0;line-height: 1em;}
h1{font:300 37px 'BebasNeue-Regular',Arial,Helvetica; padding-top:0px; margin: 15px 0px 15px 0px; font-weight:normal;    color:#3c3c3b; letter-spacing:2px;  }
h2{font:300 23px 'BebasNeue-Regular',Arial,Helvetica;  font-weight:normal;  color:#3c3c3b; letter-spacing:2px; margin-bottom:20px; }
h3{font:300 17px 'BebasNeue-Regular',Arial,Helvetica;margin:14px 0 10px 0; font-weight:normal;  color:#3c3c3b; }
h4{font:300 24px 'BebasNeue-Regular',Arial,Helvetica;margin: 15px 0px 15px 0px; font-weight:normal;  letter-spacing:2px; }
h4 i{margin-right: 0.5em;}
h5.binnenkijken {font:300 30px 'BebasNeue-Regular',Arial,Helvetica; padding-top:0px; margin: 15px 0px 15px 0px; font-weight:normal;    font-style:italic;  color:#202020; letter-spacing:2px;  }
p{}
.row {padding-bottom: 100px; }

.spacer{padding: 2em 0 0 0 ;}
.spacer2{padding: 2em 0;}
.margin_20 { margin-top:20px!important; }
.shadow {text-shadow: 2px 2px 5px #000; }

.btn-default{color: #ccc;border: 1px solid #aaa;}
.btn-default:hover,.btn-default:active{background: rgba(0,0,0,0.8);}
.btn-primary{color: #fff;background:#f3c024;width: 100%;outline: none;}
.btn-primary:hover,.btn-primary:active,.btn-primary:focus{background:#416376;box-shadow: none;}

.check { transform: scale(1.5); padding:0px 20px!important;}

.relative { position:relative; }
.center { text-align:center; }
.right { text-align:right;}
.left { text-align:left;}
.top-left { position:absolute; top:10px; left:10px}
.top-right { position:absolute; top:10px; right:10px}
.bottom-left { position:absolute; bottom:10px; left:10px}
.bottom-right { position:absolute; bottom:10px; right:10px}

.grey { background-color:#fcfaf6; }
.border-grey { border:2px solid #fcfaf6; }
.border-grey_over:hover { background-color:#fcfaf6; cursor:pointer;}

.margin_btm_10 {margin-bottom:10px!important;}
.margin_btm_20 {margin-bottom:20px!important;}
.margin_btm_30 {margin-bottom:30px!important;}
.margin_btm_40 {margin-bottom:40px!important;}
.margin_btm_50 {margin-bottom:50px!important;}
.margin_btm_60 {margin-bottom:60px!important;}
.margin_btm_70 {margin-bottom:70px!important;}
.margin_btm_80 {margin-bottom:80px!important;}

.margin_top_10 {margin-top:10px!important;}
.margin_top_20 {margin-top:20px!important;}
.margin_top_30 {margin-top:30px!important;}
.margin_top_40 {margin-top:40px!important;}
.margin_top_50 {margin-top:50px!important;}
.margin_top_80 {margin-top:80px!important;}

.margin_5_lr { margin-left:10px!important; margin-left:10px!important;}
.margin_10_left { margin-left:20px!important;}
.margin_10_right { margin-right:20px!important;}
.margin_right_10 { margin-right:10px;}

.padding_60 {padding:60px!important;}
.padding_50 {padding:50px!important;}
.padding_40 {padding:40px!important;}
.padding_20 {padding:20px!important;}
.padding_10 {padding:10px!important;}
.padding_5 {padding:5px!important;}

.padding_btm_80 {padding-bottom:80px!important;}
.padding_btm_60 {padding-bottom:60px!important;}
.padding_btm_40 {padding-bottom:40px!important;}
.padding_btm_20 {padding-bottom:20px!important;}
.padding_btm_10 {padding-bottom:10px!important;}
.padding_btm_5 {padding-bottom:5px!important;}

.padding_top_80 {padding-top:80px!important;}
.padding_top_60 {padding-top:60px!important;}
.padding_top_50 {padding-top:50px!important;}
.padding_top_40 {padding-top:40px!important;}
.padding_top_25 {padding-top:25px!important;}
.padding_top_20 {padding-top:20px!important;}
.padding_top_10 {padding-top:10px!important;}
.padding_top_5 {padding-top:5px!important;}
.padding_top_0 {padding-top:0px!important;}

.padding_top_btm_10 { padding-top:10px; padding-bottom:10px;}

.padding_lr_120 { padding-left:120px!important; padding-right:120px!important}
.padding_lr_100 { padding-left:100px!important; padding-right:100px!important}
.padding_lr_80 { padding-left:80px!important; padding-right:80px!important}
.padding_lr_60 { padding-left:60px!important; padding-right:60px!important}
.padding_lr_40 { padding-left:40px!important; padding-right:40px!important}
.padding_lr_15 {padding-left:15px!important; padding-right:15px!important}

.padding_l_5 {padding-left:5px!important;}
.padding_r_5 {padding-right:5px!important}
.padding_l_15 {padding-left:15px!important;}
.padding_l_30 {padding-left:30px!important;}
.padding_r_15 {padding-right:15px!important}

iframe { max-width:100%!important;}

.pics_fotoboek				{ width:100%;overflow:auto;}
 .pics_fotoboek ul				{ width:100%; overflow:auto; list-style:none; margin:0px; padding:0px; }
 .pics_fotoboek li				{ float:left; width:25%; color:#FFF; margin:0px;}
 .pics_fotoboek li img			{ max-width:100%;  transition:0.5s ease-in-out opacity;}
 .pics_fotoboek li img:hover {   opacity:0.7;} 


.vid_container {position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;}
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background { width:100%; height: 100%; }

.align_justify { text-align:justify!important;}
.no_pad_lr {padding-left:0px; padding-right:0px}

.border { border:1px solid #000; }

.float_left { float:left; }
.float_right { float:right; }
#top_info { background:#3c3c3b; color:#a6a6a6; width:100%;  padding:10px 0px; z-index:10; position:relative;}
#top_info a {  color:#a6a6a6; }
#top_info a:hover { color:#FFF; }

.abs_btm {  position:absolute; bottom:0px; width:calc(100% - 40px);  }
.align_btm { position:relative; overflow:auto; }
.align_btm_footer { position:relative; overflow:auto; width:100%; }
.align_btm div {position:relative; color:#202020; position:absolute; bottom:0px; font-size:17px; line-height:20px; font-family:'Myriad'; vertical-align: bottom; }
.white {color:#FFF!important;}

.bottom {bottom:0px; position:absolute;}

.full { width:100%; overflow:auto; position:relative; margin-top:100px;}

.z-index_1 { position:relative; z-index:1;}
.input_c { padding:10px 15px; margin-bottom:10px; border-radius:2px; border:1px solid #202020; }
.float_img_right { float:right; }

.margin_left_kolom { padding-left:8.33%!important}

.bck_black { background:#000!important}
.bck_black h1,
.bck_black h2,
.bck_black h3 { color:#FFF;}     
.white_txt { color:#FFF;}

.border-shadow { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
/* top info */
.float-left { float:left; width:50%; }
.float-right { float:left;width:50%; text-align:right; }
.mobile_full { padding-top:0px!important; height:auto; margin-top:0px!important; }
/* header */
div#top { position:relative; width:100%; background-color:#030707; z-index:10001!important; }
div.nav { background-color:#030707; padding:5px 0px; color:#FFF; z-index:10000!important; position:relative; text-align:center;  }
#div_logo { padding:5px 0px; background-color:#030707; position:relative; text-align:center; }

.select_img { opacity:0.5;}
.logo:hover { opacity:0.5;}

div#translate_div { position: absolute; right:10px; top:10px;}
div#menu {  padding:5px 0px; z-index:10000!important; position:relative; transition: 0.2s ease-in-out padding; }
#ul_menu { list-style:none; margin:0px auto; padding:0px 0px 0px 0px; vertical-align: bottom;  z-index:10000!important; display: block; }
#ul_menu li { margin:0px 0px 0px 0px; display:inline-block; font-family: 'BebasNeue-Regular'; text-align:center; padding:3px 15px 10px 0px; position:relative; }

#ul_menu li a.blue_btn { background-color:#FFF; color:#FFF; border-radius:5px; }
#ul_menu li a.blue_btn:hover { background-color:#FFF; color:#202020 }

#ul_menu li:hover { cursor:pointer; }
#ul_menu li:first-child { padding-left:0px!important;}
#ul_menu li:last-child { padding-right:0px!important;}
#ul_menu li a { color:#FFF; font-family: 'BebasNeue-Regular',Helvetica!important; padding:4px 10px; font-size:24px; letter-spacing:1px;  text-decoration:none; }
#ul_menu li a:hover { color:#017eff;   }
#ul_menu li a.selected {  border-bottom: 1px solid #FFF; color:#FFF!important;}
#ul_menu li ul                   { display: none; position: absolute; left:0px; top:35px; margin:0px; padding:3px 0px 5px 3px; }
#ul_menu li ul li                { float:left; background-color:#FFF;  border:none!important; list-style: none; padding: 10px 5px 10px 5px; width: 200px; margin:0px; color:#40748e; border: none; text-align:left; }
#ul_menu li ul li:hover          { background-color:#002ea2; }
#ul_menu li ul li a              { color:#000; font-size:15px; border:none!important; padding:2px 5px; margin: 0px; letter-spacing:1px; }
#ul_menu li ul li:hover a        { color:#FFF; text-decoration: underline; padding:2px 5px; }
#ul_menu li:hover ul             { display:block; }

.menu_item { color:#FFF; font-family: 'Century Gothic'; line-height:48px!important; font-size:24px; }
.menu_item:hover { color:#FFF; }

.btn_top { background-color:#fcc429; position:absolute; width:150px; height:60px; border:3px solid #FFF; border-right:none; z-index:10000; right:2px; top:100px; padding:15px 5px 10px 15px; border-top-left-radius:25px 50%; border-bottom-left-radius:25px 50% ; color:#000; font-family: 'Century Gothic'; font-style:italic; }
.btn_top:hover { background-color:#fde6a8; cursor:pointer; }
.link_txt { margin-top: 70px; padding-top:15px; }
.link_txt2 { font-size: 17px; margin-top: 140px; padding-top:10px; }
.link_txt2 a {color:#000;}
.link_txt2 a:hover {color:#202020; text-decoration:none; }
.back_blue { background-color:#e0f2d7; }
.back_1 { background:url('/img/bck_intro_1.png') no-repeat left; z-index:2;}
.back_2  { position:absolute; bottom:0px; right:0px; z-index:2;}

img { max-width:100%;  }
.strong_blue strong { color:#03374e; font-weight:bold; }

/* flags */
#lang { float:right; padding:5px; position:relative; z-index:10001;}
a.gflag {vertical-align:middle;font-size:32px;padding:1px 0;background-repeat:no-repeat;background-image:url('/img/32.png');}
a.gflag img {border:0;}
a.gflag:hover {background-image:url('/img/32a.png');}
#goog-gt-tt {display:none !important;}
.goog-te-banner-frame {display:none !important;}
.goog-te-menu-value:hover {text-decoration:none !important;}
#google_translate_element2 {display:none!important;}

.contact_info { color:#FFF; line-height:27px; padding-top:20px; }
.contact_info a { color:#FFF;} 
.personeel { padding:15px 0px; background:rgba(255,255,255,0.7); overflow:auto; }
.personeel div.info_span { font-size:13px;}

.add_recensie { width:100%; text-align:center; margin-top:30px;}
.recensie_ { margin-top:60px;}
.recensie_ .item { padding:20px; font-size:18px; }

.footer_img img { margin-right:20px;}

.bck_blue { background:#a6c822;}
.bck_lightblue { background:#c6e2ff;}
.bck_lightgrey { background:#e8e9e9;} 

.nomargin { margin:0px!important; } 
.nopadding { padding:0px!important; }
.no-scroll { overflow: hidden;}

/* juicer */
h1.referral { display:none!important} 
.juicer-ad { display:none!important}
.juicer-feed .j-paginate:hover{ background:#202020!important; color:#FFF!important;} 
.juicer-feed .j-paginate{ border:2px solid #202020!important; border-radius:4px; color:#202020!important;}
h3.j-poster-meta { text-transform:uppercase!important; font-family: 'Century Gothic'}

.border-bottom-mob { border-bottom:0px; padding-bottom:5px;}
/* main */
.space { margin: 0em 0px 4em 0px!important;}
#slider {margin-top:0px; position:relative; overflow:hidden; }
.slide_txt { width:100%; text-align:center; position:absolute; bottom:0px; background-color:rgba(255,255,255,0.6); padding:10px;}
.slide_txt_cnt2 {  font-size: 2em; color:#FFF; line-height:1.9em; padding:15px; text-shadow: 0px 0px 5px #000; font-family: 'Century Gothic';}
.slide_txt_cnt {  font-size: 1.2em; color:#FFF; line-height:1.5em; padding:7px 5px; font-family: 'Century Gothic';}
.slide_txt_cnt a { border:1px solid #202020; border-radius:2px; background-color:#202020; padding:7px 10px; color:#FFF;}
.slide_txt_cnt a:hover { background-color:#759372;}
.next_btn { top:50%; right:5px; }
.prev_btn { top:50%; left:5px; }
.info { padding:20px 35px;}
#top,
article { color:#232323;  -ms-overflow-style: none; }
#top::-webkit-scrollbar,
article::-webkit-scrollbar { display: none;}

.border_radius { border-radius:5px; }
.bck_white { background-color:rgba(255,255,255,0.9); padding:30px 40px 60px 40px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
.img_right { float:right; margin:0px 0px 5px 5px;}

.hr-line { padding:30px 0px; }

/* */
.nieuws_block { width:33%; display:inline-block; }
.nieuws_block_input { margin:10px; padding:15px 15px; background:rgba(255,255,255,0.6);}
.nieuws_block_input:hover { background:rgba(255,255,255,1); cursor:pointer; }
.nieuws_title { min-height:50px; }
.nieuws_selected { color: #000; font-weight:bold;}
.nieuws_table td { padding:8px 3px; }
.bck_grey { background:#d9d9d9; padding-top:20px;}

/* contact form */
#contact_form { display:none;}
.mobile_phone { display:none; }

 /* faq */
 span.faq { color:#FFF; }
 div.faq_titel        { background:#002ea2; width:95%; padding:5px 10px;  color:#FFF!important;  margin-bottom: 5px; }
 .float-right { float:right;}
 div.faq_titel:hover  { background-color:#202020; cursor: pointer;  color:#FFF; font-size:25px; }
 div.faq_titel:hover .faq { color:#FFF;}
 div.faq_titel a      { text-decoration: none; color:#FFF; }
 div.faq_hide             { display: none; overflow:auto; width:95%;  padding:5px 10px; margin-bottom: 40px; }
  
.owl-dot { border:none!important; background:transparent; }
.owl-dot span { background:#002ea2!important }
.active span { background:#202020!important }
/* footer */
.footer { font-size: 14px; color:#3c3c3b}
#footer { background:#000; width:100%; font-size: 15px; color:#FFF; position:relative; z-index:1; overflow:auto; padding:30px 0px 10px 0px; margin:0px 0px 0px 0px; }
#footer span { margin:0px 10px; }
#footer a { color:#FFF; text-decoration:none; }
#footer .fa { color:#FFF!important; }
#footer h3 { color:#FFF; font-size:22px; margin:0px; padding:3px 0px 0px 0px; font-weight:normal; }
#footer a:hover { text-decoration:underline; color:#FFF; }
.marg_left { margin-left:40px; }
.footer_small { font-size:10px;  }
.footer_small a { font-size:10px;}
.thumb_img { width:100px; margin-right:10px;}
.thumb_img:hover { opacity:0.7;}

.footer_copy { color:#fb8f97; padding-top:50px; font-size:12px; margin:0px auto; width:1000px;}
.footer_copy a { color:#fb8f97!important; font-size:12px;}
#fj { position:absolute; bottom:5px; right:5px; font-size:10px; color:#202020; text-decoration:none; }
#fj:hover { color:#FFF; }

#video_id { width:100%!important}
#videoBG {
    position:relative;
    left:0px;
    top:0px;
    width:100vw;
    height: 100vh;
    z-index: -1;
}


.mobile-only { display:none; }

.ondertitel { font-family:'Century Gothic'; font-size:30px; margin-top:20px;}

.full { width:100%; padding:0px; margin:0px;}
.center { text-align:center; }
.right {text-align:right; }

.naam { display:none; }

.border { border:1px solid #000;}
.bck_correct { padding:20px; border:#259d00 solid 1px; background:#b2ff9a; }

 .float_right { float:right;}
 .float_left {float:left;}

input,
select,
textarea { margin:5px 0px; padding:10px 15px; border:1px solid #202020; border-radius:4px; }

.contact_div input,
.contact_div textarea { width:500px;}

textarea { height:150px; }

.txtarea { height:100px;}

.input_c_sm { width:30px} 

.standard_btn,
.btn { background-color:#202020; border:#202020 1px solid;  text-transform:uppercase; border-radius:2px; color:#FFF; border-radius:4px; font-family: 'Century Gothic'; font-size:23px; }
.standard_btn:hover,
.btn:hover { color:#FFF; background-color:#002ea2;}

.btn_whatsapp { word-break:keep-all; display:inline-block; background-color:#37b50b; margin-right:10px; margin-bottom:10px; border:#37b50b 1px solid; padding:15px 25px; color:#FFF!important; border-radius:4px; font-family: 'Century Gothic'; font-size:25px; line-height:25px; }
.btn_whatsapp:hover{
    color:#FFF!important; background-color:#227505;
   
}
.btn_orange { word-break:keep-all; display:inline-block; background-color:#dedede; margin-right:10px; margin-bottom:10px; border:#dedede 1px solid; padding:15px 25px; color:#000!important; border-radius:4px; font-family: 'Century Gothic'; font-size:25px; line-height:25px; }
.btn_orange:hover{
    color:#FFF!important; text-decoration:none; background-color:#030707;
}

.text ul li:before {    
    font-family: 'FontAwesome';
    content: '\f0a9';
    margin:0 5px 0 -15px;
    color: #FFF;
}
.text ul li { list-style:none; }

img.zoom:hover {animation:scale 3s ease-in-out; }
.ref_ .item img:hover{ animation:scale 3s ease-in-out;}
/* personeel */
.grid-sizer,
.grid-item { width: 33%; }
/* 2 columns */
.grid-item--width2 { width: 66%; }

@keyframes scale {
        0% {
            transform: scale(1.0);
            -webkit-transform: scale(1.0);
        }
        50% {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
        }
        100% {
            transform: scale(1.0);
            -webkit-transform: scale(1.0);
        }
    }
    
    div#slider { position:relative!important; }

table.menu_table tr:hover { background-color:#f8f8f8; cursor:default }
table.menu_table td { width:40%;}

.image-fit{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:
    50% 50%;
} 
img.full_img { position:absolute; top:0px; width:100%; z-index:0;}
img.scale_img { animation:scale 15s linear infinite; }

.img_div { width:calc(49% - 10px); margin-right:10px; display:inline-block; }
img.img_hover { transition:opacity 0.5s ease-in-out;  margin-bottom:0px; max-width:100%;}
img.img_hover:hover { cursor:pointer; opacity:0.6}

div.inner-h1   { margin:0px auto; text-align:left; padding:0px ;  }
 div.inner-h1 h1  {text-align:left; display:table-cell; font-size:20px; line-height:35px; font-weight:normal; padding:0px 4px; color:#202020; text-transform: uppercase; letter-spacing:8px; }
 div.line               { min-height:30px; width:100%; margin:20px 0px; }
 div.intro              { margin-bottom:50px; }

input.true						{ border:1px solid #0F0; }
 input.false					{ border:1px solid #F00; }
 select.true					{ border:1px solid #0F0; background-color:#9bffb5!important; }
 select.false					{ border:1px solid #F00; background-color:#ff9b9b!important; }
 textarea.true					{ border:1px solid #0F0; }
 textarea.false					{ border:1px solid #F00; }

/* Popup */
 #backgroundPopup			{ display:none; position:fixed; _position:absolute; height:100%; width:100%; top:0; left:0; background:#ffffff; z-index:100000; }
 #popupContact				{ display:none; position:fixed; _position:absolute; width:calc(600px - 48px); background:#FFFFFF; color:#000; border:4px solid #202020; z-index:100001; text-align:left; padding:15px; font-size:17px; }
 #popupContact h1			{ font:300 2em 'Neo Sans',Arial,Helvetica;margin-bottom: 20px 0px 10px 0px; color:#202020; letter-spacing:2px; }
 #popupContact h2			{ font:300 1.7em 'Neo Sans',Arial,Helvetica; font-weight:normal; color:#000; font-weight:bold; text-align:center;}
 #popupContact h3			{ font:300 1.2em 'Neo Sans',Arial,Helvetica;margin:14px 0 10px 0; color:#202020; }
 #popupContact img          { max-width:100%;}	
 #popupContactClose			{ font-size:12px; line-height:14px; right:4px; top:4px; position:absolute; color:#202020; font-weight:700; display:block; cursor:pointer; }

div#slider { position:relative!important; }


.slicknav_btn { position: relative; display: block; vertical-align: middle; float: right; padding: 0.438em 0.625em 0.438em 0.625em; line-height: 1.125em; cursor: pointer; z-index: 10000; }
.slicknav_menu  .slicknav_menutxt { display: block; line-height: 1.188em; float: left; }
.slicknav_menu .slicknav_icon { float: left; margin: 0.188em 0 0 0.438em; }
.slicknav_menu .slicknav_no-text { margin: 0 }
.slicknav_menu .slicknav_icon-bar { display: block; width: 1.125em; height: 0.125em; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 0.188em }
.slicknav_nav { clear: both }
.slicknav_nav ul,
.slicknav_nav li { display: block }
.slicknav_nav .slicknav_arrow { font-size: 0.8em; margin: 0 0 0 0.2em; }
.slicknav_nav .slicknav_item { cursor: pointer; }
.slicknav_nav .slicknav_row { display: block; }
.slicknav_nav a { display: block }
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a { display: inline }
.slicknav_menu:before,
.slicknav_menu:after { content: " "; display: table; }
.slicknav_menu:after { clear: both }
/* IE6/7 support */
.slicknav_menu { *zoom: 1 }

/* 
    User Default Style
    Change the following styles to modify the appearance of the menu.
*/

.slicknav_menu {
    font-size:16px;
}
/* Button */
.slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration:none;   
    border-radius: 0px;  
    background-color: #002ea2;
}
/* Button Text */
.slicknav_menu  .slicknav_menutxt {
    color: #FFF;
    font-size:20px;
    font-weight: bold;
}
/* Button Lines */
.slicknav_menu .slicknav_icon-bar {
  background-color: #FFF;
}
.slicknav_menu {
    background:#002ea2;  
    padding:5px;
}
.slicknav_nav {
    background-color:#002ea2;
    color:#000;
    margin:0;    
    padding:0;
    font-size:0.875em;
}
.slicknav_nav, .slicknav_nav ul {
    list-style: none;
    overflow:hidden;
}
.slicknav_nav ul {
    padding:0;
    margin:0 0 0 5px;
}
.slicknav_nav .slicknav_row {
    padding:5px 10px;
    margin:2px 5px;
    opacity:1;
}
.slicknav_nav a{
    padding:5px 5px;
    margin:2px 5px;
    font-size:20px;
    text-decoration:none;
    color:#FFF;
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
    padding:0;
    margin:0;
}
.slicknav_nav .slicknav_row:hover {
    
    border-radius: 0px;
    background:#202020;
    color:#FFF;
}
.slicknav_nav a:hover{
    
    border-radius: 0px;
    background:#202020;
    color:#FFF;
}
.slicknav_nav .slicknav_txtnode {
     margin-left:15px;   
}
.slicknav_menu {
	display:none;
}

.parallax {
    /* The image used */
    /* Full height */
    height: 400px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;
}

div#slider { position:relative!important; }
/*------------------------------------*\
    $CAROUSELS
\*------------------------------------*/

.hero-carousel, .hero-carousel .item {
  height: 200px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .hero-carousel, .hero-carousel .item {
      height: 600px; } }
  @media (min-width: 992px) {
    .hero-carousel, .hero-carousel .item {
      height: 800px; } }

body.boxed .hero-carousel .flex-direction-nav .flex-prev {
  left: 0; }
body.boxed .hero-carousel .flex-direction-nav .flex-next {
  right: 0; }
.height_min {height: 170px;}
.hero-carousel {
  position: relative;
  min-height: 170px;
  top: 0px;
  margin-bottom: 0px;
  margin-top:0px;
  
   }
   .hero-carousel .item {
    display: none;    
    position:relative;
    width:100%;
    left:0px;
    padding-top: 150px; }
    
   .container2 {min-height: 370px; position: relative; text-align:center;}
   @media (min-width: 992px) {
  .hero-carousel .item {
    display: none;    
    position:relative;
    width:100%;
    left:0px;
    padding-top: 91px; }
    }
  .hero-carousel .slides {
    margin: 0;
    margin-top: 0px;
    padding: 0;
    overflow: hidden;
    *zoom: 1; }
  .hero-carousel p {
    margin: 0; }
  .hero-carousel .big, .hero-carousel .carousel-blur .normal, .carousel-blur .hero-carousel .normal, .hero-carousel .carousel-image .normal, .carousel-image .hero-carousel .normal {
    font-family: "CharpentierRenRed-Normal";
    font-weight: 500;
    margin: 0; }
  .hero-carousel .normal {
    font-family: "CharpentierRenRed-Normal"; }
  .hero-carousel .flex-direction-nav {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 0;
    left: 50%;
    height: 100%;
    width: 480px;
    margin-left: -240px;
    overflow: visible;
    display: none; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .hero-carousel .flex-direction-nav {
        display: block;
        width: 992px;
        margin-left: -496px; } }
    @media (min-width: 1200px) {
      .hero-carousel .flex-direction-nav {
        display: block;
        width: 1200px;
        margin-left: -600px; } }
    .hero-carousel .flex-direction-nav .flex-next, .hero-carousel .flex-direction-nav .flex-prev {
      top: 50%;
      position: absolute;
      text-decoration: none;
      z-index: 999; }
  .hero-carousel .flex-control-paging {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    width: 60%;
    margin-left: -30%;
    text-align: center;
    list-style: none;
    z-index: 999; }
    .hero-carousel .flex-control-paging li {
      display: inline-block;
      margin: 2px; }
  .hero-carousel:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    color: white;
    -moz-animation: spin 4s infinite linear;
    -o-animation: spin 4s infinite linear;
    -webkit-animation: spin 4s infinite linear;
    animation: spin 4s infinite linear;
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    *margin-right: .3em;
    content: "\f110";
    -webkit-transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms; }
  .hero-carousel.fade-loading:before {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0; }

.lt-ie9 .hero-carousel.fade-loading:before {
  display: none; }

.carousel-blur .item {
  text-align: center; 
  }
.carousel-blur .big, .carousel-blur .normal {
  color: white;
  margin-top: 34px;
  font-size: 30px;
  line-height: 40px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-blur .big, .carousel-blur .normal {
      margin-top: 52px;
      font-size: 48px;
      line-height: 60px; } }
  @media (min-width: 992px) {
    .carousel-blur .big, .carousel-blur .normal {
      margin-top: 50px;
      font-size: 50px;
      line-height: 65px; } }
.carousel-blur .normal {
  font-weight: 300;
  margin: 0;
  margin-top: 27px;
  font-size: 18px;
  line-height: 22px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-blur .normal {
      margin-top: 36px;
      font-size: 24px;
      line-height: 30px; } }
  @media (min-width: 992px) {
    .carousel-blur .normal {
      margin-top: 45px;
      font-size: 30px;
      line-height: 37px; } }
.carousel-blur .btn.btn-lg {
  margin-top: 50px;
  margin-bottom: 95px;
  font-size: 20px;
  padding: 12px 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); }
  @media (min-width: 768px) {
    .carousel-blur .btn.btn-lg {
      margin-top: 50px;
      margin-bottom: 95px; } }

.hero-carousel.carousel-blur-arrows:hover .flex-direction-nav .flex-next, .hero-carousel.carousel-blur-arrows:hover .flex-direction-nav .flex-prev {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.carousel-blur-arrows .flex-direction-nav .flex-next, .carousel-blur-arrows .flex-direction-nav .flex-prev {
  margin-top: 25px;
  color: white;
  border: 2px solid white;
  text-align: center;
  vertical-align: middle;
  line-height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=15);
  opacity: 0.15;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms; }
  .carousel-blur-arrows .flex-direction-nav .flex-next:before, .carousel-blur-arrows .flex-direction-nav .flex-prev:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    *margin-right: .3em;
    content: "\f054";
    position: relative;
    top: -1px;
    font-size: 20px; }
.carousel-blur-arrows .flex-direction-nav .flex-prev {
  left: -30px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-blur-arrows .flex-direction-nav .flex-prev {
      left: 0px; } }
  .carousel-blur-arrows .flex-direction-nav .flex-prev:before {
    content: "\f053";
    margin-left: -2px; }
.carousel-blur-arrows .flex-direction-nav .flex-next {
  right: -30px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-blur-arrows .flex-direction-nav .flex-next {
      right: 0px; } }
  .carousel-blur-arrows .flex-direction-nav .flex-next:before {
    content: "\f054";
    margin-right: -2px; }

.carousel-blur-pagination .flex-control-paging {
  bottom: 18px;
  height: 20px; }
  .carousel-blur-pagination .flex-control-paging a {
    display: inline-block;
    cursor: pointer;
    color: transparent;
    position: relative;
    background-color: transparent;
    border: 2px solid transparent;
    text-indent: -9999px;
    width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }
    .carousel-blur-pagination .flex-control-paging a:before {
      content: '';
      text-indent: -9999px;
      display: block;
      text-indent: -9999px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: -3px;
      margin-top: -3px;
      background-color: white;
      width: 6px;
      height: 6px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%; }
    .carousel-blur-pagination .flex-control-paging a:hover, .carousel-blur-pagination .flex-control-paging a.flex-active {
      border-color: white; }

.carousel-contrast .big, .carousel-contrast .carousel-blur .normal, .carousel-blur .carousel-contrast .normal, .carousel-contrast .carousel-image .normal, .carousel-image .carousel-contrast .normal {
  color: white;
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 35px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-contrast .big, .carousel-contrast .carousel-blur .normal, .carousel-blur .carousel-contrast .normal, .carousel-contrast .carousel-image .normal, .carousel-image .carousel-contrast .normal {
      margin-top: 68px;
      font-size: 38px;
      line-height: 47px; } }
  @media (min-width: 992px) {
    .carousel-contrast .big, .carousel-contrast .carousel-blur .normal, .carousel-blur .carousel-contrast .normal, .carousel-contrast .carousel-image .normal, .carousel-image .carousel-contrast .normal {
      margin-top: 85px;
      font-size: 48px;
      line-height: 60px; } }
  .carousel-contrast .big span, .carousel-contrast .carousel-blur .normal span, .carousel-blur .carousel-contrast .normal span, .carousel-contrast .carousel-image .normal span, .carousel-image .carousel-contrast .normal span {
    padding: 15px 30px;
    display: inline-block;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.6); }
.carousel-contrast .normal {
  color: #FFF;
  font-family: "CharpentierRenRed-Normal";
  font-weight: 300;
  margin: 0;
  padding: 15px 30px;
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6); }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-contrast .normal {
      font-size: 20px;
      line-height: 30px; } }
  @media (min-width: 992px) {
    .carousel-contrast .normal {
      font-size: 24px;
      line-height: 37px; } }
.carousel-contrast .btn.btn-lg {
  margin-top: 30px;
  margin-bottom: 95px;
  font-size: 22px;
  padding: 12px 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); }

.hero-carousel.carousel-contrast-arrows:hover .flex-direction-nav .flex-next, .hero-carousel.carousel-contrast-arrows:hover .flex-direction-nav .flex-prev {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.carousel-contrast-arrows .flex-direction-nav .flex-next, .carousel-contrast-arrows .flex-direction-nav .flex-prev {
  margin-top: 32px;
  color: white;
  line-height: 26px;
  width: 26px;
  height: 26px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
  opacity: 0.25;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms; }
  .carousel-contrast-arrows .flex-direction-nav .flex-next:before, .carousel-contrast-arrows .flex-direction-nav .flex-prev:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    *margin-right: .3em;
    content: "\f054";
    font-size: 26px; }
.carousel-contrast-arrows .flex-direction-nav .flex-prev {
  left: -30px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-contrast-arrows .flex-direction-nav .flex-prev {
      left: 0px; } }
  .carousel-contrast-arrows .flex-direction-nav .flex-prev:before {
    content: "\f053"; }
.carousel-contrast-arrows .flex-direction-nav .flex-next {
  right: -30px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-contrast-arrows .flex-direction-nav .flex-next {
      right: 0px; } }
  .carousel-contrast-arrows .flex-direction-nav .flex-next:before {
    content: "\f054"; }

.carousel-contrast-pagination .flex-control-paging {
  bottom: -9px;
  height: 20px; }
  .carousel-contrast-pagination .flex-control-paging a {
    display: inline-block;
    cursor: pointer;
    text-indent: -9999px;
    background-color: #9ca4af;
    border: 4px solid white;
    width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }
    .carousel-contrast-pagination .flex-control-paging a:hover, .carousel-contrast-pagination .flex-control-paging a.flex-active {
      background-color: #ff0101; }

.carousel-image .big, .carousel-image .normal {
  color: white;
  margin-top: 0px;
  font-size: 18px;
  line-height: 25px;
  text-shadow: #041c47 2px 2px 3px;
   }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-image .big, .carousel-image .normal {
      margin-top: 72px;
      font-size: 38px;
      line-height: 60px; } }
  @media (min-width: 992px) {
    .carousel-image .big, .carousel-image .normal {
      margin-top: 90px;
      font-size: 50px;
      line-height: 75px; } }
.carousel-image .normal {
  font-weight: 300;
  margin: 0;
  margin-top: 24px;
  font-size: 18px;
  line-height: 22px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-image .normal {
      margin-top: 32px;
      font-size: 24px;
      line-height: 30px; } }
  @media (min-width: 992px) {
    .carousel-image .normal {
      margin-top: 40px;
      font-size: 30px;
      line-height: 37px; } }
.carousel-image .btn.btn-lg {
  margin-top: 50px;
  margin-bottom: 95px;
  font-size: 22px;
  padding: 12px 40px;
  font-weight: 500;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); }

.hero-carousel.carousel-image-arrows:hover .flex-direction-nav .flex-next, .hero-carousel.carousel-image-arrows:hover .flex-direction-nav .flex-prev {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.2); }

.lt-ie9 .carousel-image-arrows .flex-direction-nav .flex-next, .lt-ie9 .carousel-image-arrows .flex-direction-nav .flex-prev {
  background-color: transparent;
  border: 1px solid white; }
.lt-ie9 .carousel-image-arrows .flex-direction-nav .flex-next {
  border-right: none; }
.lt-ie9 .carousel-image-arrows .flex-direction-nav .flex-prev {
  border-left: none; }

.carousel-image-arrows .flex-direction-nav {
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-image-arrows .flex-direction-nav {
      display: block;
      margin-left: 0;
      width: 100%;
      height: 100%; } }
  @media (min-width: 1200px) {
    .carousel-image-arrows .flex-direction-nav {
      display: block;
      margin-left: 0;
      width: 100%;
      height: 100%; } }
  .carousel-image-arrows .flex-direction-nav .flex-next, .carousel-image-arrows .flex-direction-nav .flex-prev {
    margin-top: 20px;
    color: white;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    -webkit-transition: background-color 300ms;
    -moz-transition: background-color 300ms;
    -o-transition: background-color 300ms;
    transition: background-color 300ms; }
    .carousel-image-arrows .flex-direction-nav .flex-next:before, .carousel-image-arrows .flex-direction-nav .flex-prev:before {
      font-family: FontAwesome;
      font-weight: normal;
      font-style: normal;
      text-decoration: inherit;
      -webkit-font-smoothing: antialiased;
      *margin-right: .3em;
      content: "\f054";
      position: relative;
      font-size: 20px; }
  .carousel-image-arrows .flex-direction-nav .flex-prev {
    left: 0;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px; }
    .carousel-image-arrows .flex-direction-nav .flex-prev:before {
      content: "\f053";
      margin-left: -2px; }
  .carousel-image-arrows .flex-direction-nav .flex-next {
    right: 0;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px; }
    .carousel-image-arrows .flex-direction-nav .flex-next:before {
      content: "\f054";
      margin-right: -2px; }

.carousel-image-pagination .flex-control-paging {
  bottom: 30px;
  height: 12px; }
  .carousel-image-pagination .flex-control-paging li {
    margin: 0 4px;
    width: 12px;
    height: 12px; }
  .carousel-image-pagination .flex-control-paging a {
    display: inline-block;
    cursor: pointer;
    text-indent: -9999px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.8); }
    .carousel-image-pagination .flex-control-paging a:hover, .carousel-image-pagination .flex-control-paging a.flex-active {
      background-color: #e36c12;
    }


.black { color:#000!important; }
.gold { color:#002ea2!important; }
.gold_over:hover { color:#002ea2!important; }
.blue {color:#202020!important;}
.blue_over:hover {color:#202020!important;}

.img_33 { width:calc(33% - 2px); border:1px solid #302977;}
.img_33:hover { opacity:0.7; border:1px solid #000; cursor:pointer; }
.text-right { text-align: right;}
.padding_info { width:100%; padding:10px 15px 10px 0px!important; }
.gototop{position: fixed;bottom: 20px; right: 20px;background: rgba(0,0,0,0.5);padding: 10px;color: #fff; z-index:1000;}
.gototop i{line-height: 0.5em;}
.ui-datepicker table th span { color:#000!important}


.recensie_bck { background:#6ec1e4; color:#FFF; }
.recensie_bck h1 { color:#FFF; }

.j-loading {
    border: 4px solid #202020!important;
}

.mobile-only { display:none!important; margin:0px; padding:0px; }
iframe { max-width:100%!important;}

@media (max-width: 1440px){
    #ul_menu li a { font-size:15px; font-weight:normal; padding:3px; text-decoration:none; }
}
    
}



@media (max-width: 1200px) {
    #ul_menu li a { font-size:14px; font-weight:normal; padding:3px; text-decoration:none; }
     .info {padding:20px 5px}
}

@media (max-width: 1024px) {
    .js #menu { display:none; } 	
	.js .slicknav_menu { display:block; }
    #header span {margin:0px 40px;}
	body {	color:#000; height:100%; background-size:cover;  line-height: 35px; font:300 17px 'Century Gothic',Arial,Helvetica; -webkit-font-smoothing:antialiased; }
    .float-left { width:100%; text-align:center; margin-bottom:10px;}
    .float-right { width:100%; text-align:center;}
    .img_33 { width:50%;}
    #header { font-size: 15px; height:auto; }
    .space { margin: 0em 0px 4em 0px!important;}
    .mobile_hspace { padding-top:20px;}
    div#top { height:auto; position:relative; overflow:auto; padding-top:0px;}
    .bck_white { padding:20px!important;}
    
    #div_logo { padding:5px 0px;  position:relative; text-align:center; }
    #logo_pic { padding-top:10px;}
    
    .no_mob_dev { display:none; }
    .mobile-only { display:block!important; }
    input,
    select,
    textarea { max-width:100%!important; }
    

    h1{font:300 23px 'BebasNeue-Regular',Arial,Helvetica; padding-top:0px; margin: 15px 0px 15px 0px; font-weight:normal;   color:#3c3c3b; letter-spacing:2px;  }
    h2{font:300 20px 'BebasNeue-Regular',Arial,Helvetica; font-weight:normal; color:#3c3c3b; letter-spacing:2px; margin-bottom:20px; }
    h3{font:300 13px 'BebasNeue-Regular',Arial,Helvetica;margin:14px 0 10px 0; font-weight:normal; color:#3c3c3b; }
    h4{font:300 1.5em 'BebasNeue-Regular',Arial,Helvetica;margin-bottom: 1em; }
    h4 i{margin-right: 0.5em;}
    h5.binnenkijken {font:16px 'Century Gothic',Arial,Helvetica;  padding:15px 0px; margin: 0px; font-weight:normal; font-style:italic!important;   letter-spacing:1px;  }
    
    .full { position:relative; overflow:hidden; padding-top:0px; }
    .mobile_full { padding-top:0px; width:100%; padding-left:10px; padding-right:10px; }
    .mobile_phone { display:block; }
    .no-mobile {display:none!important;}
    .row { padding-bottom:0px;}
    img.img_hover { transition:opacity 0.5s ease-in-out; margin-top:0px; margin-bottom:80px;}
    #home_a { display:none; }
   table td { display:block; }
    
    #footer { padding-top:40px; text-align:center;}
    #footer table { margin:0px auto; width:200px!important }
    #footer table td { display: table-cell; text-align:left; }
    #footer div { padding-bottom:20px;}
    .slide_txt { width:100%; text-align:center; }
    .slide_txt_cnt2 {  font-size: 1.1em; color:#FFF; line-height:1.3em; padding:10px; text-shadow: 0px 0px 5px #000; font-family: 'Century Gothic';}
    .slide_txt_cnt {  font-size: 0.8em; color:#FFF; line-height:1em; padding:10px; font-family: 'Century Gothic';}
    .slide_txt_cnt a { border:1px solid #b3d0b0; border-radius:2px; background-color:#b3d0b0; padding:7px 10px; color:#FFF;}
    .slide_txt_cnt a:hover { background-color:#202020;}
    .next_btn { top:50%; right:5px; padding:0px; font-size:10px!important; }
    .prev_btn { top:50%; left:5px;  padding:0px; font-size:10px!important;}
    .owl-next, .owl-prev { padding:10px!important;}
    .fa-3x { font-size:1em;}
    
    .border-bottom-mob { border-bottom: 1px dotted #202020; padding-bottom:5px; display:block }
    .padding_info { padding:10px!important;}
   
    .white { color:#FFF!important} 
    .mob_center { text-align:center!important }
    .mob_left { text-align:left!important }
    .pad_mob_lr { padding-left: 2px; padding-right: 2px;}
    
    .item { padding-top:0px;}
    .gototop { display:none; }
    .no_mobile,
    .no-mobile { display:none; }
    .mobile-only { display:block!important; visibility:visible!important; }
    
    .btn { background-color:#202020; border:#202020 1px solid;  text-transform:uppercase; border-radius:2px; color:#FFF; border-radius:4px; font-family: 'Century Gothic'; font-size:20px; }
 .btn_orange { word-break:keep-all; display:inline-block; background-color:#dedede; margin-right:10px; margin-bottom:10px; border:#dedede 1px solid; padding:15px 25px; color:#000!important; border-radius:4px; font-family: 'Century Gothic'; font-size:15px; line-height:15px; }

    #footer span.mob { width:100%; display:block; margin:10px 0px;}
    
    .delay-one,
    .delay-one-half,
    .delay-two{-webkit-animation-delay:0s;animation-delay:0s}
    img { max-width:100%}
    .owl-nav { display:none!important;}
    #backgroundPopup			{ display:none!important; }
    #popupContact  { max-width:calc(100% - 5%); position:absolute; }
    iframe {max-width:100%}
    
    .menu_item { display:none; }
    
    .btn_top { background-color:#fcc429; position:absolute; font-size: 15px; width:120px; height:50px; border:2px solid #FFF; border-right:none; z-index:10000; right:0px; top:30px; padding:15px 5px 10px 15px; border-top-left-radius:25px 50%; border-bottom-left-radius:25px 50% ; color:#000; font-family: 'Century Gothic'; font-style:italic; }
    .btn_top:hover { background-color:#fde6a8; cursor:pointer; }
    .link_txt { font-size: 15px; margin-top: 70px; padding-top:6px; }
    .link_txt2 { font-size: 15px; margin-top: 140px; padding-top:6px; }
    .link_txt2 a {color:#000;}
    .link_txt2 a:hover {color:#202020; text-decoration:none; }
    
     .nieuws_block { width:100%; display:inline-block; }
     .img_personeel { margin-bottom:10px; max-width:150px;}
    /* personeel */
.grid-sizer,
.grid-item { width: 50%; }
/* 2 columns */
.grid-item--width2 { width: 50%; }
    
    .float_img_right { float:none; width:calc(100vw - 30px)!important; display:block; padding-bottom:30px; text-align:left!important; }
    
    .delay-half,
    .delay-one,
    .delay-one-half,
    .delay-two,
    .delay-two-half{-webkit-animation-delay:0s;animation-delay:0s}
    img.scale_img { animation: normal; }
    
    table.menu_table td { width:100%;}
     
    .padding_btm_80 {padding-bottom:20px!important;}
    .padding_btm_60 {padding-bottom:20px!important;}
    .padding_btm_40 {padding-bottom:20px!important;}
    .padding_btm_20 {padding-bottom:20px!important;}
    .padding_btm_10 {padding-bottom:10px!important;}
    .padding_btm_5 {padding-bottom:5px!important;}
    
    .padding_top_80 {padding-top:20px!important;}
    .padding_top_60 {padding-top:20px!important;}
    .padding_top_50 {padding-top:20px!important;}
    .padding_top_40 {padding-top:20px!important;}
    .padding_top_25 {padding-top:20px!important;}
    .padding_top_20 {padding-top:20px!important;}
    .padding_top_10 {padding-top:10px!important;}
    
    .margin_btm_10 {margin-bottom:10px!important;}
    .margin_btm_20 {margin-bottom:20px!important;}
    .margin_btm_30 {margin-bottom:20px!important;}
    .margin_btm_40 {margin-bottom:20px!important;}
    .margin_btm_50 {margin-bottom:20px!important;}
    .margin_btm_60 {margin-bottom:20px!important;}
    .margin_btm_70 {margin-bottom:20px!important;}
    .margin_btm_80 {margin-bottom:20px!important;}
    
    .margin_top_10 {margin-top:10px!important;}
    .margin_top_20 {margin-top:20px!important;}
    .margin_top_30 {margin-top:20px!important;}
    .margin_top_40 {margin-top:20px!important;}
    .margin_top_50 {margin-top:20px!important;}
    .margin_top_80 {margin-top:20px!important;}
    
    .margin_5_lr { margin-left:10px!important; margin-left:10px!important;}
    .margin_10_left { margin-left:10px!important;}
    .margin_10_right { margin-right:10px!important;}
    .margin_right_10 { margin-right:10px;}
    .padding_l_30 { padding-left:10px; }
    
    .padding_60 {padding:10px!important;}
    .padding_50 {padding:10px!important;}
    .padding_40 {padding:10px!important;}
    .padding_20 {padding:10px!important;}
    .padding_10 {padding:10px!important;}
    .padding_5 {padding:5px!important;}
    
    .margin_left_kolom { padding-left:10px}
    
    .pics_fotoboek li				{ float:left; width:50% }
    
    .padding_mob_top_20 { padding-top:20px; }
    .padding_mob_top_40 { padding-top:40px; }
    
    .padding_mob_btm_20 { padding-bottom:20px; }
    .padding_mob_btm_40 { padding-bottom:40px; }    
    .no_pad__mob_lr {padding-left:0px!important; padding-right:0px!important}
    
    .white{ color:#000!important;}
    
    #videoBG {
    position:relative;
    left:0px;
    top:0px;
    width:100vw;
    height: auto;
    z-index: -1;
}

    
    
    #callbook a { font-size:15px!important;}
    [class^=callbook-icona-],[class*=" callbook-icona-"]{font-family:'FontAwesome';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.callbook-icona-calendario:before{content:"\f073"}.callbook-icona-busta-lettera:before{content:"\f003"}.callbook-icona-telefono:before{content:"\f095"}.callbook-icona-gallery:before{content:"\e90d"}.callbook-icona-offerte:before{content:"\e936"}.callbook-icona-acquista:before{content:"\e93a"}.callbook-icona-mappa-localita:before{content:"\e947"}.callbook-icona-info:before{content:"\ea0c"}#callbook{background:none repeat scroll 0 0 #fff;bottom:0;height:48px;left:0;position:fixed;display:none;right:0;z-index:100;-webkit-box-shadow:0 2px 15px 0 #333;-moz-box-shadow:0 2px 15px 0 #333;box-shadow:0 2px 15px 0 #333}#callbook>a{z-index:300;float:left;height:48px;line-height:50px;text-align:center;width:50%;text-decoration:none;font-size:1.2em;text-transform:capitalize}.actioncall{box-sizing:border-box;padding-right:20px}.actionbook{box-sizing:border-box;padding-left:20px}.callbook_logo{background-size:100%;bottom:-24px;height:72px!important;left:50%;margin-left:-23px;position:absolute;width:72px!important;z-index:2}#callbook>a>span.callbook-align{text-transform:uppercase}.callbook_under{background:#fff;bottom:-15px;height:78px;left:50%;margin-left:-39px;position:absolute;width:78px;border-radius:5000px;-webkit-border-radius:5000px;z-index:1;-webkit-box-shadow:0 2px 15px 0 #333;-moz-box-shadow:0 2px 15px 0 #333;box-shadow:0 2px 15px 0 #333}.callbook-icona-telefono,.callbook-icona-gallery,.callbook-icona-offerte,.callbook-icona-acquista,.callbook-icona-mappa-localit,.callbook-icona-info,.callbook-icona-calendario{font-size:25px}.callbook-icona-busta-lettera{font-size:46px!important;vertical-align:middle;padding-right:5px}.cb_powered a{display:none}@media only screen and (min-device-width:320px) and (max-device-width:736px){#callbook{display:inline!important}.cb_powered a{bottom:0;position:fixed;z-index:300;font-size:10px;display:inline!important;background-color:#fff;width:100%;text-align:center;height:20px;padding-top:5px;color:#000}.cb_powered a:hover{color:#ec7a5c!important;text-decoration:none}.actioncall{box-sizing:border-box;padding-right:35px}.actionbook{box-sizing:border-box;padding-left:38px}m:0;position:fixed;z-index:300;font-size:10px;display:inline!important;background-color:#fff;width:100%;text-align:center;height:20px;padding-top:5px;color:#000}.cb_powered a:hover{color:#ec7a5c!important;text-decoration:none}.actioncall{box-sizing:border-box;padding-right:35px}.actionbook{box-sizing:border-box;padding-left:38px}m:0;position:fixed;z-index:300;font-size:10px;display:inline!important;background-color:#fff;width:100%;text-align:center;height:20px;padding-top:5px;color:#000}.cb_powered a:hover{color:#ec7a5c!important;text-decoration:none}.actioncall{box-sizing:border-box;padding-right:35px}.actionbook{box-sizing:border-box;padding-left:38px}m:0;position:fixed;z-index:300;font-size:10px;display:inline!important;background-color:#fff;width:100%;text-align:center;height:20px;padding-top:5px;color:#000}.cb_powered a:hover{color:#ec7a5c!important;text-decoration:none}.actioncall{box-sizing:border-box;padding-right:35px}.actionbook{box-sizing:border-box;padding-left:38px}
   
    
}
@media (max-width: 400px) {    
    
}