<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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: 'Candara';
  src: local('Candara'), local('Candara'), url(cg.woff2) format('woff2'),url(cg.woff) format('woff');
}

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


@font-face {
  font-family: 'Candara';
  font-style: normal;
  font-weight: 400;
  src: local('Candara'), local('Candara'), url(Candara.woff2) format('woff2'),url(Candara.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 'Candara',Arial,Helvetica; -webkit-font-smoothing:antialiased; }

span.glyphicon-chevron-left,
span.glyphicon-chevron-right,
a.carousel-control span { border:none!important}
a{color:#000; 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 33px 'SpecialElite Regular',Arial,Helvetica; padding:30px 0px; margin: 30px 0px 30px 0px; font-weight:bold;   text-transform:uppercase;  color:#000;   }
h2{font:300 23px 'SpecialElite Regular',Arial,Helvetica;  font-weight:bold;  color:#516c52; margin-bottom:20px;  text-transform:uppercase; }
h3{font:300 17px 'SpecialElite Regular',Arial,Helvetica;margin:14px 0 10px 0; font-weight:normal;  color:#516c52; }
h4{font:300 24px 'SpecialElite 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 'Candara',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}

.padding_percent_left { padding-left:8.33%!important;}
.padding_percent_right { padding-right:8.33%!important;}

iframe { max-width:100%!important; width:100%; }
figure { padding-bottom:30px; }
.pics_fotoboek				{ width:100%;overflow:auto; margin-top:20px;}
 .pics_fotoboek ul				{ width:100%; overflow:auto; list-style:none; margin:0px; padding:0px; }
 .pics_fotoboek li				{ float:left; width:calc(25% - 15px); color:#FFF; margin:0px 15px 15px 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%;
}

.margin_first_top { margin-top:30vh!important; margin-left:8.33%!important; margin-right:8.33%!important;  }
.margin_rest_top { margin-top:150px!important; margin-left:8.33%!important; margin-right:8.33%!important;  }
.margin_shop_top { margin-top:150px; margin-left:8.33%!important; margin-right:8.33%!important;  }
.bck_curve_top {  padding:20px 0px!important; background:#FFF;  }
.bck_curve_grey { padding:20px 0px!important;background:#b4c3d4; }
.bck_grey { background: #FFF}




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

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

.top_50 { margin-top: 20vh;}

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

.full { width:100%; overflow:auto; position:relative;}

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


.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; padding-bottom:0px!important; height:auto; margin-top:0px!important; margin-bottom:0px!important; }
/* header */
div#top { width:100%; z-index:10000; }
#div_logo { padding:50px 0px 0px 10px; position:fixed; left:10px; top:10px; text-align:left;  }
#div_logo_intro { width:100%; position:fixed; left:10px; top:10px; text-align:left;  }

#bck { background:#fff; width:100%; height:100%; position:fixed; z-index:-1!important; top:0px; background-size:contain;}

.pic_cat { transition:opacity 0.5s ease-in-out; }
.pic_cat:hover { opacity:0.7; }
.url_cat_pic { position:absolute; left:10px; bottom: 10px; background:#000; padding:10px; color:#FFF; border-radius: 5px;}
.url_cat_pic:hover { color:#FFF; background:#000;}


.btn_intro { width:300px; height:108px; padding:30px 0px; background:url('/img/btn_intro.png'); font-size:20px; margin:0px auto; transition:opacity 0.5s ease-in-out; }
.btn_intro { font-size:25px;}
.btn_intro:hover { opacity:0.9;  } 
.btn_intro:hover a { color:#FFF; opacity:1!important; }
.h1_intro { font-size:40px;}

#logo_pic { width:150px;}

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

div#menu_intro { position:absolute; top:5px; right:5px; z-index:10000!important; }
div#menu { position:absolute; top:0px; right:5px; z-index:10000!important;  transition: 0.2s ease-in-out padding; }
#ul_menu { list-style:none; padding:0px 0px 3px 0px; margin:0px; z-index:10000!important;  }
#ul_menu li { margin:0px 0px 0px 0px; width:200px; height:72px; background:url('/img/btn.png'); display:inline-block; font-family: 'Candara',Arial,Helvetica; text-align:center; padding:30px 15px 10px 0px; position:relative; }
#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:#000; font-family: 'Candara',Arial,Helvetica!important; padding:30px 10px; font-size:17px; letter-spacing:1px; font-weight:bold;  text-decoration:none; }
#ul_menu li a:hover { color:#202020; text-decoration:underline   }
#ul_menu li a.selected {  color:#FFF;}
#ul_menu li ul                   { display: none; position: absolute; left:0px; top:70px; margin:0px; padding:3px 0px 5px 5px!important; }
#ul_menu li ul li                { float:left;  border:none!important; list-style: none; padding:30px 15px 10px 20px; width: 200px; margin:0px; color:#40748e; border: none; text-align:left; }
#ul_menu li ul li:first-child     { padding-left:20px!important;}  
#ul_menu li ul li a              { color:#000;  font-size:17px; letter-spacing:1px; font-weight:bold;  text-decoration:none; padding:30px 10px; 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; }

@media (max-width: 1400px){
    #ul_menu li { margin:0px 0px 0px 0px; width:140px; height:50px; background:url('/img/btn_sm.png'); display:inline-block; font-family: 'Candara',Arial,Helvetica; text-align:center; padding:15px 10px 10px 3px; position:relative; }
    #ul_menu li a { color:#000; font-family: 'Candara',Arial,Helvetica!important; padding:20px 2px; font-size:14px; letter-spacing:0px; font-weight:bold;  text-decoration:none; }
    #ul_menu li ul                   { display: none; position: absolute; left:0px; top:40px; margin:0px; padding:3px 0px 5px 5px!important; }
    #ul_menu li ul li                { float:left;  border:none!important; list-style: none; padding:15px 5px 10px 5px; width: 140px; margin:0px; color:#40748e; border: none; text-align:left; }
    #ul_menu li ul li:first-child     { padding-left:5px!important;}
    #ul_menu li ul li a              { color:#000;  font-size:14px; letter-spacing:1px; font-weight:bold;  text-decoration:none; padding:30px 4px; margin: 0px; letter-spacing:1px; }
    #ul_menu li ul li:hover a        { color:#FFF; text-decoration: underline; padding:30px 4px; }
}

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

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

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

.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: 'Candara'}

.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: 'Candara';}
.slide_txt_cnt {  font-size: 1.2em; color:#FFF; line-height:1.5em; padding:7px 5px; font-family: 'Candara';}
.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:#FFF; padding:30px 60px 60px 60px; 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; }

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

 ul.pic_slide   { margin: 20px 0px; padding: 0px; width:100%; list-style: none; overflow: auto; background: #516c52; }
 ul.pic_slide li { width:25%; margin:0 4%; float:left; padding: 10px 0px; }
 ul.pic_slide li img { max-width: 100%; }

/* Ervaringen */
 a.link_uitgebreid      { padding:8px 15px; border:1px solid #FFF; color:#FFF; background-color: #516c52; text-decoration: none; border-radius: 4px; }
 a.link_uitgebreid:hover     { background-color: #000; color:#FFF;}
 .guestbook				{ width:97%; border:1px dotted #516c52; padding:1% 1%; }
 .guestbook_txt				{ padding:0px 5px 20px 5px; font-family: arial; }
 .guestbook_top				{ border:1px solid #516c52; width:calc(50% - 6px); padding:3px 3px; background-color:#516c52; color:#FFFFFF; }
 .guestbook_top a                       { color:#FFF; }
 .guestbook_top a:hover                 { color:#FFF; }
 .guestbook_edit			{ border-left:1px solid #516c52; border-right:1px solid #007caa; border-bottom:1px solid #516c52; }
 .guestbook_quote			{ text-align:left; border:dotted 1px #516c52; background-color:#f6fbfd;	padding:5px; }
 .guestbook_comment			{ font-family: arial; border-left:1px solid #516c52; border-right:1px solid #516c52; border-bottom:1px solid #516c52; background-color:#516c52; width:75%; }
 .guestbook_table_topper                { width:95%; border:1px solid #007caa; background-color:#66177d; }
 .guestbook_topper			{ border:1px solid #66177d;	background-color:#ffffff; }
 .guestbook_txt_topper                  { background-color:#66177d;	border-top:1px solid #007caa; color:#FFFFFF; font-weight:bold; }

 /* faq */
 span.faq { color:#FFF; }
 div.faq_titel        { background:#516c52; 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; }
 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; }
  

/* producten */
ul.producten { list-style:none; margin:0px; padding:0px; }
ul.producten li { width:calc(33% - 20px); margin:10px; float:left; text-align:center; padding-bottom:10px; border:1px solid transparent; }
ul.producten li:hover { background:#dcdcdc; border:1px solid #000;}
ul.producten li a { font-size:25px; font-weight:bold; }
ul.producten li img { max-width:100%; padding-bottom:10px; transition:opacity 0.5s ease-in-out; }
ul.producten li:hover img { opacity:0.7;}

.owl-dot { border:none!important; background:transparent; }
.owl-dot span { background:#000!important }
.active span { background:#202020!important }
/* footer */

.fixed_btm { }

.footer_img { background:#FFF; }
#footer { background:#516c52; width:100%; font-size: 18px; color:#FFF; position:relative; z-index:1; overflow:auto; padding:40px 0px 60px 0px; margin:0px 0px 0px 0px; }
#footer span { margin:0px 10px; }
#footer a { color:#FFF; text-decoration:none; }
#footer h3 { color:#000; font-size:24px; margin:20px 0px 20px 0px; padding:3px 0px 0px 0px; font-weight:bold; }
#footer a:hover { text-decoration:underline; color:#FFF; }
#footer .btn { color:#FFF; background:#000; text-decoration:none }
#footer .btn span {color:#FFF!important; }
#footer .btn:hover { color:#000; background:#FFF; text-decoration:none }
#footer .btn:hover span {color:#000!important; }
.marg_left { margin-left:40px; }
.footer_small { font-size:10px;  }
.footer_small a { font-size:10px;}
.footer_small .fa { font-size:25px; }
.thumb_img { width:100px; margin-right:10px;}
.thumb_img:hover { opacity:0.7;}

img#whatsapp { position: fixed; bottom:10px; z-index:100; right:10px; }

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

.mobile-only { display:none; }

.ondertitel { font-family:'Candara'; 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;}

.ui-datepicker-prev-hover span.ui-icon,
.ui-datepicker-next-hover span.ui-icon { color:#FFF!important}

.intro_titel { font-size:50px; font-weight:bold;}

input,
select,
textarea { margin:5px 0px; padding:10px 15px;  border:1px solid #202020;  }
.input input,
.input textarea  {width:400px; }
.contact_div input,
.contact_div select,
.contact_div textarea { width:500px;}

textarea { height:150px; }

.txtarea { height:100px;}

.sm,
.input_c_sm { width:80px} 


table td { padding:5px;}


.hover:hover { background-color:#f2f2f2; cursor:default;}
.standard_btn,
.btn { background-color:#FFF; border:#000 2px solid; margin-bottom:10px; border-radius:0px; text-transform:uppercase; color:#000; font-family: 'Candara'; font-size:23px; }
.standard_btn:hover,
.btn:hover { color:#FFF; background-color:#000;}


.btn_whatsapp { word-break:keep-all; display:inline-block; background-color:#37b50b; color:#FFF!important; }
.btn_whatsapp:hover{
    color:#000!important; background-color:#227505;   
}
.green {color:#37b50b!important;}

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



.bck_green { background-color:#516c52!important; }

img.zoom:hover {animation:scale 0.5s ease-in-out; }
.ref_ .item img{ transition: transform .5s ease;}
.ref_ .item img:hover{ transform:scale(1.5);}
.item .txt_img {position:absolute; top:0px; left:0px; background:#000; color:#FFF; padding:10px;} 
/* 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; }

div.info_block_pro { border:2px solid #516c52; padding:20px; border-radius:10px; text-align:left; }

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

.search { width: 60%; border:#F0F0F0 2px solid; margin:0px!important; font-size:23px;}

/* 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); top:10%; 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: #526c53;
}
/* 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:#526c53;  
    padding:5px;
    
}
.slicknav_nav {
    
    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 15px;    
}
.slicknav_nav .slicknav_row {
    padding:5px 10px 5px 5px;
    margin:2px 5px;
    opacity:1;
    
    
}
.slicknav_parent ul{
    background:#7f9780;
}
.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;
}

.white { color:#FFF!important;}
#video_id { width:100%!important}
#videoBG {
    position:fixed;
    left:0px;
    top:0px;
    width:100vw;
    height: 100vh;    
    background-size:contain;
    z-index: -1;
}

.back_home { padding: 10px; background:#000;}

/* Cart */
 div#shop_top               { position:absolute; right:10px; top:0px;}
 div#cart                       { float:right; position:relative; color:#FFF; border-top-left-radius:20px; border-bottom-left-radius:20px; text-align: center; right:0px; top:20px; width:200px; padding:10px; background-color:#516c52; font-size:12px}
 div#inhoud                     { padding-top:10px; margin-bottom: 4px; }
 a.cart_links                   { font-weight: normal!important; font-size:13px!important; color:#FFF; }
 div#cart_nr                    { position: absolute; left:30px; top:10px; width:25px; height:25px; color:#FFF; text-align: center; font-size: 12px; background-color: #f4c01c; border-radius:50%; padding: 5px; }
 div.sublinks a:hover { color:#7c878e;}
 
 
  ul#usp { list-style:none; padding:0px; margin:0px;}
 ul#usp li { color: #5c6d7d; text-align:right; }
 ul#usp li .fa { color: #2ac54d }  
 .no_underline { text-decoration:none}
 .hidden                             { display: none; } 
 
 img.zoom_img { transition: transform .5s ease; z-index:0}
 img.zoom_img:hover { transform: scale(1.5); }
 
 /* categorie */
 img.cat_header_img                  { float:left; margin-right: 20px; } 
 div.cat_header iframe               { float:right; width: 480px; margin:0px 20px 20px 0px;} 
 div.cat_block                       { width:100%; height: auto;  padding:20px 0px 5px 20px; font-size:20px;}
 div.pic_shop { width:100%; text-align:center; overflow: hidden; }
 div.pic_shop img { transition: transform .5s ease; z-index:0}
 div.pic_shop img:hover { transform: scale(1.5); }
 div.cat { padding:10px; }
 div.cat h2 { color:#7f7f7f; }
 div.cat ul { list-style:none; overflow:auto; margin:0px; padding:0px; }
 div.cat ul li { background:#526c53; color:#FFF; float:left; margin:10px; padding:8px; border-radius:10px; transition:0.5s ease-in-out background-color; }
 div.cat ul li a { color:#FFF; }
 div.cat ul li:hover { background:#000; color:#FFF; }
 
 
 div.cat_block h1   { padding:0px; margin:0px; line-height: normal; color:#000;}
 div.cat_block a { font-size: 15px; font-weight: normal; color:#7f7f7f;}
 .home_url  { text-decoration: none; font-weight: normal; }
 .item_box  { overflow: auto;}
 div.cat_cont                        { position:relative; width:calc(20% - 20px); height:400px; padding:30px 10px 80px 10px; border:1px solid #d7d7d7; background-color:#FFF; margin:0px; overflow:hidden; vertical-align: bottom; font-size: 15px; float:left; }
 div.cat_cont:hover                  { border: 1px solid #000; cursor: pointer; background-color: #fafafa; }
 
 .back_top3                      { background: url('/img/bck_shoptop3.jpg') no-repeat bottom #c1e8f7!important; background-size:contain!important; padding:40px; padding-left:calc(50% - 30px) }
 div.cat_cont_spec                   { position:relative; display:inline-block!important; width:calc(20% - 20px); height:430px; padding:30px 10px 120px 10px; border:1px solid #d7d7d7; background-color:#FFF; margin:0px 10px; overflow:hidden; vertical-align: bottom; font-size: 15px; float:none!important }
 div.cat_cont_spec:hover             { border: 1px solid #000; cursor: pointer; background-color: #fafafa; }
 
 @media (max-width: 1400px){
        div.cat_cont_spec                   { position:relative; display:inline-block!important; width:calc(20% - 20px); height:330px; padding:30px 10px 120px 10px; border:1px solid #d7d7d7; background-color:#FFF; margin:0px 10px; overflow:hidden; vertical-align: bottom; font-size: 15px; float:none!important }
 }
 @media (max-width: 800px){
    .back_top3 { padding-left:10px;}
    div.cat_cont_spec { width:calc(100% - 20px); }
 }
 
 
 div.bigone:hover,
 div.bigone_fb:hover           { cursor:default!important; border:2px solid #c2c2c2; background-color: #FFF; }
 .padding-20 { padding:20px;}
 div.cat_cont img.img_cat            { max-width:100%; }
 div.cat_cont h2                     { font-size:18px; color:#000; font-weight:bold;  }
 div.cat_cont a                   { text-decoration: none; font-size:16px; color:#000;font-weight:bold; }
 div.cat_cont a:hover               { text-decoration: underline; } 
 div.cat_prijs  { position: absolute; bottom:5px; padding-bottom:10px; right:10px; font-size:12px; color:#000; }
 .pro_cat_actieprijs { font-size:15px; font-weight:bold; }
 div.add_tocart    { position: absolute; bottom:3px; left:3px; font-size:12px; color:#f4c01c;  }
 div.add_tocart a  { color:#526c53; font-weight: bold; }
 div.add_tocart img { vertical-align: middle; }
 img.img_pro                         { margin-right: 10px; padding: 2px; display:block  }
 div.cat_cont h2 a:hover             { text-decoration: underline; }
 ul.usp_pro                          { max-width: 520px; margin:15px 0px 0px 20px; padding: 0px 0px 0px 20px; overflow: auto; }
 ul.usp_pro li                       { float:left; width:100px; margin:5px 5px 0px 5px; list-style-image: url('/img/select.png');}	
 .desc { font-size: 10px; color:#d7d7d7; font-weight:normal }
 .levertijd { color:#526c53 }
 /* productie */
 div.con_txt                        {  width:500px; float:right; padding-right: 20px; margin-bottom: 50px;}
 div.nieuw                          { position: absolute; top:0px; left:0px; z-index: 10; width:65px; height:65px; background: url('/img/nieuw.png') no-repeat;}
 div.pro_cont                        { position:relative; width:940px; min-height:130px; padding:10px 20px 10px 20px; margin-bottom:10px; overflow:hidden; }
 div.pro_cont_fam                        { position:relative; width:900px; padding:10px 20px 10px 20px; border:1px solid #526c53; margin-bottom:10px; overflow:hidden; color:#c2c2c2; }
 div.pro_cont h1,
 div.cat_cont h1                     { font-size:20px; color:#d7d7d7; margin-top:20px; padding-top:0px;  }
 .img_pro                    { max-width:100%; margin-right: 10px; transition: opacity 1.0s; }
 .img_pro:hover              { opacity: 0.5; } 
 .stripe { font-style:italic; color:#565656 }
 .right {text-align:right; }
.left {text-align:left; }



.extra_kleur { width:100%; margin:15px 0px;}
.omschrijving table { border:none!important; }
.omschrijving table td { border:none!important; padding:3px; font-size: 14px; } 
.omschrijving table tr:hover { background-color:#ededed; cursor:default;}

ul#colors { list-style:none; margin:0px 0px 10px 0px; overflow:auto }
ul#colors li { float:right; padding:0px; margin-left:4px; }
ul#colors li.left { float:left; padding:0px; margin-left:4px; }
.color_pic { width:20px; height:20px; border-radius:10px; border:1px solid #c2c2c2;}
.selected_col { border:2px solid #000;}

 ul.pic_thumbs      { list-style: none; margin:5px 0px 0px 0px; padding:0px; width:400px; overflow:auto;}
 ul.pic_thumbs li   { float:left; margin:0px; padding:0px;} 
 .img_pro_thumb                   { float: left; transition: opacity 1.0s; border:1px solid #d7d7d7; width:98px; }
 .img_pro_thumb:hover              { opacity: 0.5; } 
 
	 div.pro_prijs				{ float:right; width:100%; padding:10px 0px 10px 0px; font-weight:bold; }
	 	div.pro_prijs label		{ float:right; }
	 div.pro_vanprijs				{ float:right; width:100%; padding:0px 0px 0px 0px; height:20px; font-weight:bold; }
	 	div.pro_vanprijs label		{ float:right; text-decoration:line-through dotted 1px red; }
	 div.pro_actieprijs				{ float:right; width:100%; padding:0px 0px 0px 0px; height:20px; font-weight:bold; color:#000;}
	 	div.pro_actieprijs label	{ float:right; }	
	 div.pro_aantal				{ float:right; width:100%; padding:10px 0px 0px 0px; text-align:right; margin-bottom:10px; }
		div.pro_aantal input.bestel		{ background-color: #000; color: #FFF; border:1px solid #000; padding: 8px 15px; }
		div.pro_aantal input.bestel:hover	{ background-color: #d7d7d7; color: #000; border:1px solid #d7d7d7;  cursor:pointer; }
	 
 #info  { height:50px!important; padding-bottom: 5px; font-style: italic; color:#c2c2c2}
 
 ul#usp { list-style:none; padding:0px; margin:0px;}
 ul#usp li { color: #526c53; text-align:right; }
 ul#usp li .fa { color: #2ac54d }     
     
 .div_les { border:2px #516c52 solid; background:url('/img/bck_foilles.jpg') no-repeat; background-size:cover; transition:background-color ease-in-out 0.5s; border-radius:5px; text-align:center; color:#000;}
 .div_les:hover { background:#516c52; color:#FFF}
  .div_les ul { padding:0px; margin:5px 0px;}
 .div_les ul li { list-style:none; padding:0px; border-bottom: 1px dotted #516c52; margin:5px 0px;}    
 .div_les h2 { color:#516c52; padding:10px 3px; min-height:60px; background:#FFF; }
 .div_les:hover h2 { color:#000; }
 .div_les .btn { }
 .div_les:last-child { margin-bottom:40px;}
                
 /* winkelwagen */
 .winkelwagen { margin-bottom:80px;}
 .winkelwagen table { width:100%; }
 .winkelwagen table input { width:60px;}
 div#block_left_winkel				{ width:905px; padding:20px; float:left; }
 div#winkel_progress				{ width:905px; padding:10px; float:left; }
 div#winkel_inhoud 					{ position:relative; width:905px; padding:0px; float:left; line-height:22px; min-height:448px; }
 	div#winkel_inhoud h1			{ margin:10px 0px; }
	div#winkel_inhoud table			{ width:900px; }
	.winkelwagen table input								{ text-align:right; }
	input.submit 			{ margin:0px 0px 0px 4px; border:none; border-radius:3px!important; text-align:center!important; width:70px!important; padding:4px 4px; color:#FFF; font-weight:bold; cursor:pointer; text-align:center; margin-top:10px; background-color:#3c3c3b; }
	input.submit:hover	{ cursor:pointer; background-color:#526c53; }
	table tr.table_top	{ background-color:#3c3c3b; color:#FFF; }
	.td_product			{ width:180px; padding-left:5px; font-size: 15px; }
    .td_product a			{ font-size: 15px; font-weight: normal; }
	.td_aantal			{ width:100px; }
	.td_prijs				{ width:110px; }
	.td_totaal			{ width:95px; text-align:right!important; }
	.td_totaal div	{ float:left; padding-left:30px; }		
	.td_tot_prod			{ text-align:right!important; }
	.td_tot_bezorg		{ width:90px; text-align:right!important; }
	.td_tot_bezorg_prijs			{ text-align:right; }
	.td_tot_bezorg_prijs div	{ float:left; padding-left:30px; padding-top:3px;  }
	.td_tot_totaaltxt		{ padding-top:10px; text-align:right!important; font-size:20px; font-weight:bold;  }
	.td_totaal_prijs 		{ padding-top:10px; text-align:right!important; font-size:20px; font-weight:bold;  }
	.td_totaal_prijs div	{ float:left; padding-left:30px;}
	div#winkel_inhoud sup.transport			{ font-size:10px; font-weight:bold; color: #526c53; }
	div#winkel_inhoud hr.sm					{ border:none; border-bottom:1px solid #CCC; width:100%; margin-bottom:2px; }
	div#winkel_inhoud hr					{ border:none; border-bottom:2px solid #efefef; width:100%; margin:15px 0px; }
	div#winkel_control 						{ width:100%; overflow:auto; }
	.btn_next			{ background-color:#000; padding:8px 15px; color:#FFF; font-weight:bold; text-decoration:none; float:right; border:1px solid #000; }
	.btn_next:hover		{ color:#FFF; background: #526c53; cursor:pointer; }
    .btn_back			{ background-color:#000; padding:8px 15px; color:#FFF; font-weight:bold; text-decoration:none; float:left;  border:1px solid #000; }
	.btn_back:hover		{ color:#FFF; cursor:pointer; }
	div#winkel_control span.verzendinfo		{ font-style:italic; font-size:10px; }
 div#block_right_winkel				{ width:180px; float:left; font-size:11px; line-height:normal;  padding:40px 0px 0px 10px; border-left:1px solid #efefef; }
 	div#block_right_winkel strong	{ font-size:12px;  }
 ul.step 							{ list-style:none; width:650px; border:1px solid #d2d2d2; margin:10px 0px; height:34px; padding:0px;}
 ul.step a 							{ text-decoration:none; color:#434343;}
 ul.step a:hover					{ text-decoration:underline;}
 ul.step li 						{ line-height: 35px; margin:0px 20px 0px 0px; padding:0px 20px; float:left;font-weight:bold; font-size:14px;}
 ul.step li.step_current 			{ line-height:35px; border:none; font-weight:bold; color:#7b6853;}
 ul.step li.step_current a			{ color:#526c53; }
 ul.step li.step_todo 				{ color:#CCC;}
 ul.step li#step_end 				{ width: 137px; }
 ul.step li#step_end.step_current 	{  height:34px; color:#3366CC}
 ul#order_step 						{ background-color: white;  }
 
  /* korting */
 fieldset.korting					{ border:1px solid #CCC!important; padding:5px; width:350px!important;}
 .mobile-only { display:none; }
 
 /* account */
 div#winkel_inhoud form.float 			{ float:left; width:600px; margin-right:20px; }
 div#winkel_inhoud form h3 				{ color:#434343; border-bottom:1px solid #526c53; font-size:1em; font-weight:bold; text-align:left; padding: 0.5em 0 0.5em 0; margin: 0 0 10px 0;}
 div#winkel_inhoud fieldset				{ border: none; width:400px; clear:left; margin-bottom: 1em;}
 div#winkel_inhoud fieldset legend 		{ padding:0.3em 0.6em; margin:1em 0 1em 0.5em; font-size:1.6em; font-weight:100; border:#e8e6e6 solid 1px;}
 div#winkel_inhoud div.account			{ width:800px; }
 div#winkel_inhoud div.account a		{ font-size:10px; }
 fieldset.xl 							{ width:600px; }
 div.account div.account_info			{ width:200px; text-align:left; float:left; }
 div.account div.account_adres,
 div.account div#account_factuur		{ width:800px; }
 div.account input						{ width:250px; margin-bottom:3px; border:1px solid #526c53; }
 div.account select						{ width:250px; margin-bottom:3px; border:1px solid #526c53;}
 div.account input.submit_account		{ width:auto; background-color:#526c53; padding:8px 15px; border:1px #526c53 solid; color:#FFF; font-weight:bold; }
 div.account input.submit_account:hover	{ color:#000; cursor:pointer; }
 div#winkel_inhoud span					{ color: #526c53; }
 textarea.account_info					{ width:100%; height:150px; border:1px solid #526c53; margin-bottom:10px; overflow:hidden;}
 
 .sm_no_border { width:40px!important; transform: scale(1.5)!important; padding:0px 20px!important;}
 
 span.error								{ color:#ae0c0c!important; font-weight:bold; }
 ul.error li							{ list-style:disc; color:#F00!important; font-weight:bold; }
 
 /* adresgegevens */
 .naam_ophalen { width:100%; padding:15px 0px; }
 div#winkel_inhoud div.account_adres	{ width:100%; float:left; margin-right:40px; }
 div#xtr_info							{ margin-top:40px; float:left; width:830px; background:url(../img/comment.png) top left no-repeat; padding-top:10px; }

 /* verzending */
 div#winkel_inhoud .condition 		{ width:830px; /*background:url(../img/texture.gif);*/ border:1px solid #EFEFEF; margin-top:15px; padding:10px 0 10px 10px; margin-bottom:2em;}
 div#winkel_inhoud .condition h3 	{ margin:0; padding:0; color:#526c53; margin-bottom:0.5em; border:none; }
 div#winkel_inhoud .condition a 	{ color:#526c53; font-weight:bold; }
 
 /* betaling */ 
 .payment_module img 		{vertical-align: middle; margin-right: 1em;}
 .payment_module a 			{display: block; padding:0.6em 0.6em 1.5em 0.6em; text-decoration: none; height:70px; width:530px; border-bottom:1px solid #E6E6E6; float: left;}
 .payment_module a:hover, .payment_module a:focus, .payment_module a:active {background-color:#F9F5F5; color:#374853;}
 
 /* account inloggen */
 fieldset.account						{ border:1px solid #526c53; padding:15px;  }
 fieldset.account legend				{ color:#526c53; } 
 fieldset.account input					{ text-align:left; width:200px; padding:8px 10px; }	
 fieldset.account a						{ font-size:10px; color:#526c53; }
 fieldset.account input.btn				{ width:auto!important; background-color:#526c53; padding:8px 10px; border:1px #526c53 solid; color:#FFF; }
 fieldset.account input.btn:hover		{ color:#526c53; cursor:pointer; background-color:#FFF; }
 fieldset.account input.sm				{ width:auto!important; border:none; padding:8px 10px; }
 ul#menu_account						{ margin:5px 0px 47px 0px; padding:0px; }
 ul#menu_account li						{ float:left; list-style:none; margin:0px 20px 0px 0px; }
 ul#menu_account li a					{ color: #526c53; text-decoration:none; }
 ul#menu_account li a:hover				{ text-decoration:underline; }
 div#account_cnt						{ width:500px; padding-top:20px; margin-top:20px;}
 div#account_cnt a						{ color: #526c53; text-decoration:none; }
 div#account_cnt a:hover				{ text-decoration:underline; }


.ratings .br-widget             { height: 52px; }
.ratings .br-widget a           { display: block; width: 35px; height: 35px; float: left; margin: 1px; text-decoration: none; font-size: 16px; font-weight: normal;line-height: 2.2; text-align: center; color: #b6b6b6!important; }
.br-theme-fontawesome-stars .br-widget { height: 28px; white-space: nowrap; }
.br-theme-fontawesome-stars .br-widget a { font: normal normal normal 20px/1 FontAwesome; text-rendering: auto;-webkit-font-smoothing: antialiased; text-decoration: none; margin-right: 2px;}
.br-theme-fontawesome-stars .br-widget a:after {  content: '\f005';  color: #d2d2d2;}
.br-theme-fontawesome-stars .br-widget a.br-active:after { color: #000;}
.br-theme-fontawesome-stars .br-widget a.br-selected:after { color: #000;}
.br-theme-fontawesome-stars .br-widget .br-current-rating { display: none;}
.br-theme-fontawesome-stars .br-readonly a {  cursor: default;}
@media print {
  .br-theme-fontawesome-stars .br-widget a:after { content: '\f006';color: #000;}
  .br-theme-fontawesome-stars .br-widget a.br-active:after,
  .br-theme-fontawesome-stars .br-widget a.br-selected:after { content: '\f005'; color: #000;}
}
.sterren_black { color:#000;}

.black { color:#000!important; }
.gold { color:#000!important; }
.gold_over:hover { color:#000!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: 10px; right: 10px;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}
.border_img { border: 2px solid #516c52; border-radius:4px; }

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

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

.vak { background: url('/img/holiday.jpg') no-repeat!important; }
.vak span.ui-state-default { background-color:transparent!important; background: url('/img/holiday.jpg') no-repeat!important; color:transparent!important }
.mobile-only { display:none!important; margin:0px; padding:0px; }
iframe { max-width:100%!important;}

.js #menu { display:none; }
.js #menu_intro { display:none; }  	
.slicknav_nav { z-index:100000!important; position:relative; padding-top:40px!important; }
.js .slicknav_menu { display:block; z-index:100000!important; position:relative; }

.mob_logo { display:none}

@media (max-width: 1024px) {
    
	
    #header span {margin:0px 40px;}
	body {	color:#000; height:100%; background-size:cover;  line-height: 35px; font:300 17px 'Candara',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; z-index:100!important;}
    .nav {display:none }
    .bck_white { padding:20px!important;}
    
    .mob_logo { display:block}
    #div_logo { display:none; }
    .mob_logo { width:100%; text-align:center; position:absolute; top:0px; z-index:1!important; }
    
    .no_mob_dev { display:none; }
    .mobile-only { display:block!important; }
    input,
    select,
    textarea { max-width:100%!important; }
   
    .margin_first_top { margin-top:25vh!important; margin-left:10px!important; margin-right:10px!important;  }
    .margin_rest_top { margin-top:40px!important; margin-left:10px!important; margin-right:10px!important;  }
    .h1_intro { font-size:25px;}
    .table_intro td { display:block;}
   
    .footer_span {display:block; color:#000}
    #logo_pic { width:100px!important; }

    h1{font:300 23px 'SpecialElite Regular',Arial,Helvetica; padding-top:30px; margin: 15px 0px 15px 0px; font-weight:normal; text-transform:uppercase; color:#000; letter-spacing:2px;  }
    h2{font:300 20px 'SpecialElite Regular',Arial,Helvetica; font-weight:normal; color:#000; letter-spacing:2px; margin-bottom:20px; text-transform:uppercase ;  }
    h3{font:300 13px 'SpecialElite Regular',Arial,Helvetica;margin:14px 0 10px 0; font-weight:normal; color:#3c3c3b; }
    h4{font:300 1.5em 'SpecialElite Regular',Arial,Helvetica;margin-bottom: 1em; }
    h4 i{margin-right: 0.5em;}
    h5.binnenkijken {font:16px 'Candara',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; }
    
    #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: 'Candara';}
    .slide_txt_cnt {  font-size: 0.8em; color:#FFF; line-height:1em; padding:10px; font-family: 'Candara';}
    .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; }
    
    /* webshop */
        .winkelwagen table td { display:block; width:100%; }
   div.cat_cont  { position:relative; border-radius:5px; width:calc(100% - 20px); height:auto; padding:10px 10px 10px 10px; background-color:#FFF; margin:5px 5px 5px 5px; overflow:hidden; vertical-align: bottom; color:#7493b9; font-size: 15px; float:left; }
   
   div.cat_cont_spec                   { position:relative; display:inline-block!important; width:calc(50% - 10px); height:auto; padding:30px 10px 80px 10px; border:1px solid #d7d7d7; background-color:#FFF; margin:0px 10px 10px 10px; overflow:hidden; vertical-align: bottom; font-size: 15px; float:none!important }
   div.cat_cont_spec:hover             { border: 1px solid #000; cursor: pointer; background-color: #fafafa; }
 
 div.pro_aantal				{ float:right; width:100%; padding:10px 0px 0px 0px; height:auto!important; text-align:right; margin-bottom:10px; }
 .full h2 { padding-top:40px!important;}

   div.pro_cont { max-width:calc(100% - 40px) }
   div.pic_con { max-width:100%; margin-bottom:20px; }
   div.con_txt { max-width:100%; float:left;}
   input.bestel { width:200px; }
   div.cat_prijs  { position: relative; width:100%; text-align:right; font-size:12px; color:#000; }
   .omschrijving table td { border:none!important; padding:3px; font-size: 12px; }
  .display { display:inline;}
   .mobile-only { padding-bottom:20px; display:block; }
   ul.step { display:none; }
   div#xtr_info { max-width:100%; }
   textarea.account_info { max-width:90%!important; }
   div#winkel_control 						{ max-width:100%; text-align:center;  }
   div.account div.account_adres,
    div.account div#account_factuur		{ max-width:100%; }
     form.float 			{ max-width:100% }
      fieldset				{ max-width:100%}
      div.account			{ max-width:100% }
     fieldset.xl 							{ max-width:100% }
     .btn_next { float:none!important; margin-bottom:30px; display:inline-block;}
     .btn_back {  float:none!important; margin-bottom:30px; display:inline-block; }
     
     .margin_shop_top {
    margin-top: 40px!important;
    margin-left: 0px!important;
    margin-right: 0px!important;
}
     div#cart   { position:relative; right:0px; top:0px; z-index:10!important; color:#FFF; border-top-left-radius:20px; border-bottom-left-radius:20px; text-align: center; width:200px; padding:10px; background-color:#516c52; font-size:12px}
 

    #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%);   }
    #popupContact { top:130px!important; }
    #popupContact h1 { font-size:22px;}
    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: 'Candara'; 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; }
    
    .guestbook_top	{ border:1px dotted #516c52; width:calc(100% - 6px); padding:3px 3px; background-color:#516c52; color:#FFFFFF; }
    
     .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%; }
    
    tr.mob_center_tr td { text-align:center!important; }
    
    .border_mobile { border-bottom:2px dotted #000;padding-bottom:20px!important; margin-bottom:20px!important;}
    
    .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; }
    
    ul.producten li { width:calc(100% - 20px); margin:10px; float:left; text-align:center; padding-bottom:10px; border:1px solid transparent; }
    
    .search { width: 60%; border:#F0F0F0 2px solid; margin:0px!important; font-size:15px;}
    .btn { font-size:19px;  }
    table.menu_table td { width:100%;}
    
    table.mobile_table td { width:100%; display:block}
     
    .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;}
    
    .pics_fotoboek li				{ float:left; width:calc(50% - 15px); color:#FFF; margin:0px 15px 15px 0px;}
    
    .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}
    
    #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&gt;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&gt;a&gt;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}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}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) {    
    
}</pre></body></html>