/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.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.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%,20%,53%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%,43%,70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -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 {
  0%,20%,53%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%,43%,70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -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;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%,50%,to {
    opacity: 1;
  }
  25%,75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,50%,to {
    opacity: 1;
  }
  25%,75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%,to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,50%,70%,90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,60%,80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,50%,70%,90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,60%,80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%,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.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  0%,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.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%,20%,40%,60%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%,20%,40%,60%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -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: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-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 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    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 {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%,40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%,80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%,40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%,80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  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 {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-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 {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-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 {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -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);
  }
  60%,80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -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);
  }
  60%,80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  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 {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    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 {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center;
  }
  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 {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  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 {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  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 {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  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 {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  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 {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  0%,20%,60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  40%,80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    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;
  }
  0%,20%,60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  40%,80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%,to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%,to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}


/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */

html.swipebox-html.swipebox-touch{overflow:hidden!important}#swipebox-overlay img{border:none!important}#swipebox-overlay{width:100%;height:100%;position:fixed;top:0;left:0;z-index:99999!important;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#swipebox-container{position:relative;width:100%;height:100%}#swipebox-slider{-webkit-transition:-webkit-transform .4s ease;transition:transform .4s ease;height:100%;left:0;top:0;width:100%;white-space:nowrap;position:absolute;display:none;cursor:pointer}#swipebox-slider .slide{height:100%;width:100%;line-height:1px;text-align:center;display:inline-block}#swipebox-slider .slide:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}#swipebox-slider .slide .swipebox-inline-container,#swipebox-slider .slide .swipebox-video-container,#swipebox-slider .slide img{display:inline-block;max-height:100%;max-width:100%;margin:0;padding:0;width:auto;height:auto;vertical-align:middle}#swipebox-slider .slide .swipebox-video-container{background:0 0;max-width:1140px;max-height:100%;width:100%;padding:5%;-webkit-box-sizing:border-box;box-sizing:border-box}#swipebox-slider .slide .swipebox-video-container .swipebox-video{width:100%;height:0;padding-bottom:56.25%;overflow:hidden;position:relative}#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe{width:100%!important;height:100%!important;position:absolute;top:0;left:0}#swipebox-slider .slide-loading{background:url(../img/loader.gif) center center no-repeat}#swipebox-bottom-bar,#swipebox-top-bar{-webkit-transition:.5s;transition:.5s;position:absolute;left:0;z-index:999;height:50px;width:100%}#swipebox-bottom-bar{bottom:-50px}#swipebox-bottom-bar.visible-bars{-webkit-transform:translate3d(0,-50px,0);transform:translate3d(0,-50px,0)}#swipebox-top-bar{top:-50px}#swipebox-top-bar.visible-bars{-webkit-transform:translate3d(0,50px,0);transform:translate3d(0,50px,0)}#swipebox-title{display:block;width:100%;text-align:center}#swipebox-close,#swipebox-next,#swipebox-prev{background-image:url(../img/icons.png);background-repeat:no-repeat;border:none!important;text-decoration:none!important;cursor:pointer;width:50px;height:50px;top:0}#swipebox-arrows{display:block;margin:0 auto;width:100%;height:50px}#swipebox-prev{background-position:-32px 13px;float:left}#swipebox-next{background-position:-78px 13px;float:right}#swipebox-close{top:0;right:0;position:absolute;z-index:9999;background-position:15px 12px}.swipebox-no-close-button #swipebox-close{display:none}#swipebox-next.disabled,#swipebox-prev.disabled{opacity:.3}.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider{-webkit-animation:rightSpring .3s;animation:rightSpring .3s}.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider{-webkit-animation:leftSpring .3s;animation:leftSpring .3s}.swipebox-touch #swipebox-container:after,.swipebox-touch #swipebox-container:before{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:all .3s ease;transition:all .3s ease;content:' ';position:absolute;z-index:999;top:0;height:100%;width:20px;opacity:0}.swipebox-touch #swipebox-container:before{left:0;-webkit-box-shadow:inset 10px 0 10px -8px #656565;box-shadow:inset 10px 0 10px -8px #656565}.swipebox-touch #swipebox-container:after{right:0;-webkit-box-shadow:inset -10px 0 10px -8px #656565;box-shadow:inset -10px 0 10px -8px #656565}.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before,.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after{opacity:1}@-webkit-keyframes rightSpring{0%{left:0}50%{left:-30px}100%{left:0}}@keyframes rightSpring{0%{left:0}50%{left:-30px}100%{left:0}}@-webkit-keyframes leftSpring{0%{left:0}50%{left:30px}100%{left:0}}@keyframes leftSpring{0%{left:0}50%{left:30px}100%{left:0}}@media screen and (min-width:800px){#swipebox-close{right:10px}#swipebox-arrows{width:92%;max-width:800px}}#swipebox-overlay{background:#0d0d0d}#swipebox-bottom-bar,#swipebox-top-bar{text-shadow:1px 1px 1px #000;background:#000;opacity:.95}#swipebox-top-bar{color:#fff!important;font-size:15px;line-height:43px;font-family:Helvetica,Arial,sans-serif}

/* website */
input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]), [type="submit"], [type="button"], textarea {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

input:invalid, textarea:invalid {
  box-shadow: none;
  border-color: #7c9a21;
}

body {
  line-height: 120%;
  color: #333326;
}

body, h1, h2, h3, h4, h5 {
  font-family: 'Roboto Slab';
}

h1, h2, h3, h4, h5 {
  color: inherit;
}

a {
  color: #A5CC2C;
}

a:hover, a:focus {
  color: #7c9a21;
}

p, li {
  font-size: 1em;
}

@media (min-width: 105em) {
  html {
    font-size: 16px;
  }

  .app {
    font-size: 16px;
  }
}
@media (max-width: 104.9375em) and (min-width: 64em) {
  html {
    font-size: 14px;
  }

  .app {
    font-size: 14px;
  }
}
@media (max-width: 63.9375em) and (min-width: 40em) {
  html {
    font-size: 13px;
  }

  .app {
    font-size: 13px;
  }
}
@media (max-width: 39.9375em) {
  html {
    font-size: 12px;
  }

  .app {
    font-size: 12px;
  }
}
.app {
  overflow: hidden;
  position: relative;
}

.page {
  background-color: #fff;
  min-height: 30vh;
}

body:not(.template-home):not(.template-category):not(.template-sort):not(.template-product) .page {
  background-color: #F4F9E9;
}

.row {
  max-width: 73.125rem;
}

.row .row {
  max-width: none !important;
}

.text {
  font-family: Lato;
  font-size: 1.25em;
  margin-bottom: 2rem;
}
.text:before, .text:after {
  content: '';
  display: table;
  clear: both;
}
.text > :first-child {
  margin-top: 0 !important;
}
.text > :last-child {
  margin-bottom: 0 !important;
}
.text h1, .text h2, .text h3, .text h4, .text h5, .text p {
  font-family: inherit;
  color: inherit;
}
.text a {
  color: inherit;
}
.text:before, .text:after {
  content: '';
  display: table;
  clear: both;
}
.text > :first-child {
  margin-top: 0 !important;
}
.text > :last-child {
  margin-bottom: 0 !important;
}

.text.big {
  font-size: 1.75em;
}

.text p, .text li {
  font-weight: 300;
  line-height: 148%;
}

.text li {
  font-size: 0.85em;
}

.text.big p, .text.big li {
  line-height: 175%;
}

.text p {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.text h2 {
  font-size: 1.875em;
}

.text h3 {
  font-size: 1.5833em;
}

.text h4 {
  font-size: 1.5em;
}

.text h5 {
  font-size: 1.25em;
}

.text.big h2 {
  font-size: 1.40625em;
}

.text.big h3 {
  font-size: 1.18748em;
}

.text.big h4 {
  font-size: 1.125em;
}

.text.big h5 {
  font-size: 0.9375em;
}

.text ul {
  margin-left: 1em;
}

.text.fancy h1, .text.fancy h2, .text.fancy h3, .text.fancy h4, .text.fancy h5 {
  font-family: Roboto Slab;
  font-weight: 300;
  margin-top: 0.7894em;
  margin-bottom: 0.7894em;
}
.text.fancy p, .text.fancy li {
  font-family: Lato;
  font-size: 0.833em;
  font-weight: 400;
}

.text .head {
  color: #A5CC2C;
  font-size: 1.5833em;
  line-height: 120%;
  margin-top: 0.7894736842105263em;
  margin-bottom: 0.7894736842105263em;
}

.text .head.fancy {
  font-style: italic;
}

.text table {
  font-size: 1em;
  font-weight: 300;
  text-align: left;
  line-height: 120%;
  width: 100%;
  border-collapse: collapse;
}
.text table, .text table tbody, .text table tr, .text table tr th, .text table tr td {
  background-color: transparent;
  border: none;
}
.text table tr th, .text table tr td {
  padding: 0.6rem;
}
.text table tr th {
  font-weight: 400;
}
.text table tr > :first-child {
  padding-left: 0;
}
.text table tr > :last-child {
  padding-right: 0;
}

.button {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5em;
  text-decoration: none;
}
.button i {
  font-size: 1.142857142857143em;
  position: relative;
  top: 0.07143em;
  margin-right: 0.625rem;
  margin-left: 0.625rem;
}

.button i {
  font-size: 1.5em;
  display: inline-block;
  margin-right: -1rem;
  margin-left: 1rem;
}

.button:not(.tiny):not(.small):not(.medium):not(.large) {
  padding: 0.9rem 2.1875rem;
}

.callout {
    font-size: 1.5em;
    border-radius: 0;
    padding: 1em 1rem;
}

.button:not(.secondary):not(.success):not(.warning):not(.alert), .button.success, .callout:not(.secondary):not(.success):not(.warning):not(.alert), .callout.success, .badge:not(.secondary):not(.success):not(.warning):not(.alert), .badge.success, .label:not(.secondary):not(.success):not(.warning):not(.alert), .label.success {
  color: #fff;
  background-color: #A5CC2C;
  border-color: #A5CC2C;
}

*.secondary, .button.secondary, .callout.secondary, .badge.secondary, .label.secondary {
  color: #333;
  background-color: #E1F5C4;
  border-color: #E1F5C4;
}
*.warning, .button.warning, .callout.warning, .badge.warning, .label.warning {
  color: #333;
  background-color: #f4fbe9;
  border-color: #f4fbe9;
}
*.alert, .button.alert, .callout.alert, .badge.alert, .label.alert {
  color: #fff;
  background-color: red;
  border-color: red;
}

a:hover.button:not(.secondary):not(.success):not(.warning):not(.alert), a:hover.success, a:focus.button:not(.secondary):not(.success):not(.warning):not(.alert), a:focus.success, button:hover.button:not(.secondary):not(.success):not(.warning):not(.alert), button:hover.success, button:focus.button:not(.secondary):not(.success):not(.warning):not(.alert), button:focus.success {
  color: #fff;
  background-color: #94b727;
  border-color: #94b727;
}
a:hover.secondary, a:focus.secondary, button:hover.secondary, button:focus.secondary {
  color: #333;
  background-color: #E1F5C4;
  border-color: #E1F5C4;
}
a:hover.warning, a:focus.warning, button:hover.warning, button:focus.warning {
  color: #333;
  background-color: #e9f7d3;
  border-color: #e9f7d3;
}
a:hover.alert, a:focus.alert, button:hover.alert, button:focus.alert {
  color: #fff;
  background-color: #e60000;
  border-color: #e60000;
}

.header {
  background-color: #FFFFFF;
  position: relative;
  z-index: 50;
}

.navigation-top {
  background-color: rgba(225, 245, 196, 0.38);
  box-shadow: -1000px 0 0 0 rgba(225, 245, 196, 0.38), 1000px 0 0 0 rgba(225, 245, 196, 0.38);
}

@media (max-width: 75em) {
  .navigation-top {
    box-shadow: -500px 0 0 0 rgba(225, 245, 196, 0.38), 500px 0 0 0 rgba(225, 245, 196, 0.38);
  }
}
/*
@media (max-width: 63.9375em) {
    .navigation-top {
        background-color: rgba(#E1F5C4, 0.38);
        box-shadow: -500px 0 0 0 rgba(#E1F5C4, 0.38), 500px 0 0 0 rgba(#E1F5C4, 0.38);
    }
}
*/
.navigation-top {
  margin: 0;
  padding: 0;
  min-height: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header .navigation-top {
  position: relative;
  z-index: 10;
}

.navigation-top > li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation-button {
  font-size: 1rem;
  font-weight: 300;
  color: #343426;
  background-color: #fff;
  padding: 0 0.625rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.navigation-ultra {
  position: relative;
}

.navigation .notification-button {
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 64em) {
  body.close-notification .navigation-ultra.desktop {
    padding-right: 6.25em;
    padding-left: 6.25em;
  }

  .navigation-ultra.mobile .notification-button {
    display: none;
  }
}
@media (max-width: 63.9375em) {
  .navigation-ultra.mobile .navigation-top {
    height: 6.25em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .close-notification .navigation-ultra.mobile .navigation-top {
    padding-right: 6.25em;
  }

  .navigation-ultra.desktop .notification-button {
    display: none;
  }
}
.navigation-button:hover, .navigation-button:focus {
  background-color: #E1F5C4;
}

.navigation-button {
  background-color: #f4fbe9;
}

.navigation-button i {
  margin-left: 3px;
}

.language {
  font-size: 1rem;
  font-weight: 700;
  color: #8A8A7B;
  background-color: rgba(225, 245, 196, 0.6);
  padding: 0 0.625rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border: none;
  box-shadow: none;
  cursor: pointer;
  position: relative;
}

.language:hover {
  background-color: #E1F5C4;
}

.language:after {
  content: "\eaa6";
  font: normal normal normal 0.75em/1 'Nucleo Glyph';
}

.languages {
  background-color: #fff;
  margin: 0;
  padding: 0;
  margin-top: -1px;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
  border: solid 1px rgba(244, 251, 233, 0.8);
  min-width: 10vw;
  display: none;
}

.language.toggled ~ .languages {
  display: block;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.languages > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.languages > li > a {
  font-size: 1rem;
  font-weight: 700;
  color: #333326;
  background-color: #fff;
  display: block;
  padding: 0.5rem 1rem;
  -webkit-transition: background-color 400ms ease;
          transition: background-color 400ms ease;
}
.languages > li > a:hover {
  color: #333326;
  background-color: #E7F5D1;
}

.languages > li.is-active > a {
  color: #fff;
  background-color: #A5CC2C;
}

.navigation-top > li > .languages {
  position: absolute;
  top: 100%;
  right: 0;
}

.logo {
  font-size: 7.5625em;
  margin: 0;
  padding: 0;
  width: 3.099173553719008em;
  height: 1em;
  position: relative;
  background: url("../img/hetwilgenbroeklogo.png") no-repeat top left/100%;
}

.navigation-bottom .logo {
  top: -1.5rem;
}

.close-notification .navigation-bottom .logo {
  font-size: 5em;
  top: 0 !important;
}

.navigation-top .logo {
  font-size: 5em;
  margin-right: 1rem;
}

.logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-size:1px;
}

.navigation {
  position: relative;
  color: #333326;
  margin: 0;
  padding: 0;
}

.navigation .cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.navigation .cols > .col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 6.24em;
}

.navigation .cols > .col:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1%;
      -ms-flex: 0 0 1%;
          flex: 0 0 1%;
  margin-left: -1px;
}

.navigation .cols > .col:first-child {
  -webkit-flex: 0 0 20.5em;
      -ms-flex: 0 0 20.5em;
          flex: 0 0 20.5em;
}

.navigation .cols > .col:last-child {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navigation-list {
  margin: 0;
  padding: 0;
}

.navigation-list > li {
  margin: 0;
  padding: 0 1em;
  list-style: none;
  position: relative;
  display: inline-block;
}

.navigation-list > li:last-child{
  padding-right: 0;
}

.navigation-list > li > a {
  font-size: 1.35em;
  text-decoration: none;
  color: inherit;
  padding: 0;
  display: block;
  height: 4.166666666666667em;
  line-height: 4.166666666666667em;
  position: relative;
}

.navigation-list > .has-dropdown > a:after {
  content: "\eaa6";
  font-family: 'Nucleo Glyph';
  font-weight: normal;
  margin-left: 0.32rem;
  font-size: 0.74em;
}

.navigation-list > li.is-active > a {
  color: #A5CC2C;
}

.navigation-list > li > a:before {
  content: '';
  background-color: currentColor;
  display: block;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.navigation-list > li:not(.is-active) > a:before {
  opacity: 0;
}

.navigation-list > li.is-active > a {
  color: #A5CC2C;
}

.navigation-list > li:hover > a,
.navigation-list > li:focus > a {
  color: #7c9a21;
}

.navigation-dropdown {
  background-color: #fff;
  margin: 0;
  padding: 0;
  min-width: 18rem;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: -1px;
  display: none;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
}

li:hover > .navigation-dropdown,
.navigation-dropdown:hover {
  display: block;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
  animation-function: ease-in;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.navigation-dropdown > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation-dropdown > li > a {
  font-size: 1.25em;
  font-weight: 400;
  text-decoration: none;
  background-color: #fff;
  color: inherit;
  padding: 0.32em 1rem;
  display: block;
}

.navigation-dropdown > li > a:hover, .navigation-dropdown > li > a:focus {
  color: #7c9a21;
}

.navigation-dropdown > .is-active > a {
  color: #fff;
  background-color: #A5CC2C;
}
.navigation-dropdown > .is-active > a:hover, .navigation-dropdown > .is-active > a:focus {
  color: #fff;
  background-color: #7c9a21;
}

.notification {
  color: #fff;
  background: -webkit-linear-gradient(left, #A7CD2C, #50C8C6);
  background: linear-gradient(to right, #A7CD2C, #50C8C6);
  height: 6.25em;
  padding-left: 0.9375em;
  padding-right: 6.25em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.notification:not(.close).animate {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 400ms;
          animation-duration: 400ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.notification.close:not(.animate) {
  display: none;
}

.notification.close.animate {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-duration: 400ms;
          animation-duration: 400ms;
  animation-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.notification.close.gone {
  display: none;
}

.notification-body {
  max-width: 73.125rem;
  -webkit-transition: all 400ms ease;
          transition: all 400ms ease;
}

.notification-body:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.show-on-close-notification {
  display: none !important;
}

.close-notification .notification {
  display: none !important;
}
.close-notification .show-on-close-notification {
  display: initial;
}

.notification-body a {
  font-size: 1.5em;
  line-height: 1.16em;
  color: inherit;
  position: relative;
  padding-right: 1.875em;
  display: inline-block;
}

.notification-body a:after {
  content: "\ea4a";
  font-family: 'Nucleo Outline';
  font-size: 1.16em;
  font-weight: normal;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.notification-body a:hover:after {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}

.notification-close {
  font: normal 2em 'Nucleo Outline';
  text-align: center;
  color: inherit;
  width: 1em;
  height: 1em;
  line-height: 1em;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 1.1em;
  right: 1em;
  cursor: pointer;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 400ms ease;
          transition: transform 400ms ease;
}

.notification-close:before {
  content: "\e676";
}

.notification-close:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.navigation-mobile {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.navigation-mobile > li {
  text-align: center;
  margin: 0;
  padding: 0 3em;
  list-style: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 6.25em;
}

.navigation-mobile > li:first-child {
  text-align: left;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -1px;
}


.navigation-mobile > li.last,
.navigation-mobile > li:last-child {
  text-align: right;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.navigation-mobile > li.last {

  -webkit-box-flex: 0;
  -webkit-flex: 0;
      -ms-flex: 0;
          flex: 0;
}

.navigation-mobile > li:last-child {
  padding-right: 0;
}


.navigation-link {
    text-align: center;
    width: 3em;
    height: 3em;
    line-height: 3em;
    padding: 0;
}
.navigation-mobile > li.first,
.navigation-mobile > li.last {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 4.75rem;
      -ms-flex: 0 0 4.75rem;
          flex: 0 0 4.75rem;
  max-width: 4.75rem;
}

.navigation-mobile > li.reset {
    padding-right: 0;
    padding-left: 0;
  -webkit-flex: 0 0 6.25em;
      -ms-flex: 0 0 6.25em;
          flex: 0 0 6.25em;
          max-width: 6.25em;


}

.navigation-mobile > li > a {
  font-size: 2.25em;
  font-weight: 700;
  color: inherit;
}
.navigation-mobile > li > a:hover, .navigation-mobile > li > a:focus {
  color: #7c9a21;
}

.navigation-mobile > .is-active > a {
  color: #A5CC2C;
}

.notification-button {
  font-size: 1.5em;
  line-height: 120%;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 0;
  display: block;
  height: 4.166666666666667em;
  height: 4.166666666666667em;
  width: 4.166666666666667em;
  line-height: 4.166666666666667em;
  position: relative;
  color: #fff;
  border: none;
  background: -webkit-linear-gradient(left, #A7CD2C, #50C8C6);
  background: linear-gradient(to right, #A7CD2C, #50C8C6);
}
.notification-button:hover, .notification-button:focus {
  color: #fff;
  background: -webkit-linear-gradient(left, #96b827, #3dc2bf);
  background: linear-gradient(to right, #96b827, #3dc2bf);
}

body:not(.close-notification) .notification-button {
  display: none !important;
}

.notification-button.animate {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
  animation-function: ease-in;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.menu-pop {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.menu-pop-shadow {
  background-color: rgba(0, 0, 0, 0.84);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.84);
}

.menu-pop .navigation-mobile {
  color: #fff;
}

.menu-pop-body {
  padding: 0 1rem 1rem 1em;
  position: relative;
  z-index: 3;
  width: 100%;
}

.menu-pop-body h3 {
  font-size: 2.375em;
  font-weight: 700;
  margin: 5px 0;
}

.menu-pop-body a {
  color: inherit;
}
.menu-pop-body a:hover, .menu-pop-body a:focus {
  color: #fff;
  text-decoration: underline;
}
.menu-pop-body a:hover u, .menu-pop-body a:focus u {
  text-decoration: none;
}

.menu-pop-body p {
  font-size: 1.75em;
  font-weight: 300;
  margin: 0.5em 0 1.9375em 0;
}

.menu-pop-body h3, .menu-pop-body p {
  text-align: center;
}

.menu-pop-body .notification {
  font-size: 0.75em;
}

.menu-list {
  color: #666666;
  margin: 0 0 1em;
  padding: 0;
}

.menu-list > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list > li > a {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 120%;
  color: currentColor;
  background-color: #fff;
  padding: 1.25rem 2rem;
  display: block;
  position: relative;
  border-bottom: solid 1px rgba(102, 102, 102, 0.16);
}
.menu-list > li > a:hover, .menu-list > li > a:focus {
  text-decoration: none;
  color: #7c9a21;
}

.menu-list > .is-active > a {
  color: #fff;
  background-color: #A5CC2C;
}

.main-menu-toggle {
  padding-left: 0 !important;
  margin-left: -0.90625em !important;
}

.simple-menu-toggle {
  font-size: 1.5em;
  font-weight: normal;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}

.main-menu-toggle {
  color: #fff;
  text-align: center;
  background-color: #333326;
  border: none;
  border-radius: 0;
  padding: 0;
  height: 6.25em;
  line-height: 6.25em;
  width: 6.25em;
  min-width: 6.25em;
  max-width: 6.25em;
  display: block;
  position: relative;
}

.main-menu-toggle label {
  font-family: Lato;
  font-size: 1em;
  text-align: center;
  color: inherit;
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 100%;
  opacity: 1;
  -webkit-transition: opacity 300ms ease-in;
          transition: opacity 300ms ease-in;
}

.main-menu-toggle .addon {
  position: absolute;
  display: block;
  width: 3rem;
  height: 2px;
  background: currentColor;
  top: 65%;
  margin-top: -1px;
  left: 50%;
  margin-left: -1.5rem;
  -webkit-transition: top 500ms linear 500ms background 300ms ease 0s;
          transition: top 500ms linear 500ms background 300ms ease 0s;
}

.main-menu-toggle .addon:before,
.main-menu-toggle .addon:after {
  content: "";
  position: absolute;
  left: 0px;
  background: currentColor;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s ease 0s, background 0s ease 0s;
          transition: transform 0.3s ease 0s, background 0s ease 0s;
}

.main-menu-toggle .addon:before {
  top: -6px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.main-menu-toggle .addon:after {
  bottom: -6px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.main-menu-toggle:hover,
.main-menu-toggle:focus,
.toggle-main-menu .main-menu-toggle {
  background-color: black;
}

.toggle-main-menu .main-menu-toggle .addon {
  background-color: transparent;
}

.toggle-main-menu .main-menu-toggle label {
  opacity: 0;
}

.toggle-main-menu .main-menu-toggle .addon {
  top: 50%;
}

.toggle-main-menu .main-menu-toggle .addon:before {
  top: 0px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.toggle-main-menu .main-menu-toggle .addon:after {
  bottom: 0px;
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}

.main-menu-toggle.transparent {
  background-color: transparent !important;
}

@media (min-width: 64em) {
  .navigation-top, .navigation-bottom {
    max-width: 73.125rem;
    margin: 0 auto;
  }

  .navigation-top .has-logo {
    display: none;
  }

  .menu-pop, .navigation-mobile {
    display: none !important;
  }
}
@media (max-width: 63.9375em) {
  .header .notification {
    display: none !important;
  }

  .navigation-top {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 3px;
  }

  .language, .navigation-button {
    font-size: 1.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
  }

  .navigation .cols > .col:first-child {
    font-size: 0.7em;
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .navigation .cols > .col-logo {
    display: none;
  }

  .navigation-list {
    display: none !important;
  }

  body.toggle-main-menu, .toggle-main-menu body {
    overflow: hidden;
  }

  .toggle-main-menu .menu-pop {
    display: block;
  }

  .toggle-main-menu .menu-pop-shadow {
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-duration: 500ms;
            animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
}
@media (max-width: 39.9375em) {
  .navigation .logo {
    display: none;
  }

  .navigation .cols > .col {
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 100% !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 27.9375em) {
  .navigation-top > .has-logo {
    display: none;
  }

  .language, .navigation-button {
    font-size: 1.125rem;
  }
}
.banner {
  color: #fff;
  min-height: 25vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  margin-top: -1.5em;
  margin: -1.5em -0.9375em 0 -0.9375em;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-body {
  text-align: center;
  background-color: rgba(113, 136, 30, 0.38);
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 5;
  padding: 3.625em 0.9375em 3.9375em;
}

.banner-text:before, .banner-text:after {
  content: '';
  display: table;
  clear: both;
}
.banner-text > :first-child {
  margin-top: 0 !important;
}
.banner-text > :last-child {
  margin-bottom: 0 !important;
}
.banner-text h1, .banner-text h2, .banner-text h3, .banner-text h4, .banner-text h5, .banner-text p {
  font-family: inherit;
  color: inherit;
}
.banner-text a {
  color: inherit;
}
.banner-text:before, .banner-text:after {
  content: '';
  display: table;
  clear: both;
}
.banner-text > :first-child {
  margin-top: 0 !important;
}
.banner-text > :last-child {
  margin-bottom: 0 !important;
}

.banner-text h1, .banner-text h2, .banner-text h3, .banner-text h4, .banner-text h5 {
  font-weight: 300;
  font-family: Lato;
  font-style: italic;
}
.banner-text h1 b, .banner-text h1 strong, .banner-text h2 b, .banner-text h2 strong, .banner-text h3 b, .banner-text h3 strong, .banner-text h4 b, .banner-text h4 strong, .banner-text h5 b, .banner-text h5 strong {
  font-weight: 400;
}

.banner-text h2, .banner-text p {
  margin: 0.68em 0;
}

.banner-tex h2 {
  font-size: 2.75em;
}

.banner-text p a {
  font-weight: 700;
}

.banner-text p {
  font-size: 1.75em;
  line-height: 175%;
}

.banner-text p a {
  color: inherit;
  text-decoration: none;
  border:1px solid #fff;
  display: inline-block;
  padding:0 .25em;
  background: none;
  transition:background .35s ease;
}

.banner-text p a:hover{
    background:#fff;
    color:#353526;
}

.banner-text .banner-desc {
  font-size: 1.25em;
  margin: 2.125em 0;
}

.page {
  padding-top: 1.5em;
}

body.template-contact .page,
body.template-aboutus .page,
body.template-textpage .page,
body.template-tekstpagina .page,
body.template-helleborus .page,
body.template-helleborus-subpage .page,
body.template-links .page,
body.template-wholesalers .page,
body.template-newsitem .page
{
  padding-right: 1.875em;
  padding-left: 1.875em;
}

.page-head {
  font-size: 2.375em;
  font-weight: 300;
  color: #A5CC2C;
  margin: 0.78947em 0 0.60526em;
  line-height: 100%;
}

.page-head small {
  font-size: 0.6em;
}

.page-breadcrumb {
  color: #333326;
}
.page-breadcrumb:before, .page-breadcrumb:after {
  content: '';
  display: table;
  clear: both;
}

.page-breadcrumb a {
  font-family: Lato;
  font-size: 1.25em;
  line-height: 1em;
  color: inherit;
  font-weight: normal;
  display: block;
  float: left;
  margin-bottom: 4px;
}
.page-breadcrumb a:hover {
  color: #A5CC2C;
}

.page-breadcrumb a:not(:last-child) {
  position: relative;
  padding-right: 1.75rem;
}
.page-breadcrumb a:not(:last-child):after {
  content: "\ea6a";
  font-family: 'Nucleo Glyph';
  font-size: 0.6em;
  font-weight: normal;
  text-align: center;
  color: #8A8A7A;
  width: 1.75rem;
  position: absolute;
  top: 0.1em;
  right: 0;
}

.page-breadcrumb a:last-child {
  font-weight: 300;
}

.page-footer {
  text-align: center;
  color: #8A8A79;
  margin: 4.875em 0;
}
.page-footer label, .page-footer a {
  font-size: 1.25em;
  color: inherit;
  display: inline-block;
}

.page-footer a {
  margin-right: 1.125rem;
  margin-left: 1.125rem;
  cursor: pointer;
}

.page-footer a.return {
  font-family: Lato, sans-serif;
  margin-right: 0.9375rem;
  margin-left: 0.9375rem;
}

.page-footer a.has-tip {
  border: none;
}

.page-footer a:hover {
  color: #545449;
}

.text {
  font-family: Lato;
  font-size: 1.75em;
  font-weight: 300;
}
.text:before, .text:after {
  content: '';
  display: table;
  clear: both;
}
.text > :first-child {
  margin-top: 0 !important;
}
.text > :last-child {
  margin-bottom: 0 !important;
}
.text h1, .text h2, .text h3, .text h4, .text h5, .text p {
  font-family: inherit;
  color: inherit;
}
.text a {
  color: inherit;
}
.text:before, .text:after {
  content: '';
  display: table;
  clear: both;
}
.text > :first-child {
  margin-top: 0 !important;
}
.text > :last-child {
  margin-bottom: 0 !important;
}

.container {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.875em;
  padding-left: 1.875em;
}
.container:before, .container:after {
  content: '';
  display: table;
  clear: both;
}
.container > :first-child {
  margin-top: 0 !important;
}
.container > :last-child {
  margin-bottom: 0 !important;
}

.container.no-padding {
  padding-right: 0;
  padding-left: 0;
}

.container .cols {
  margin: 0 -0.9375em 0 -0.9375em;
}

.container:not(.info-container):not(.no-offset) .cols {
  margin-bottom: 4.3125em;
}

.container .cols > .col {
  margin: 0;
  padding: 0 0.9375em;
  display: block;
  position: relative;
}

.container .cols .col-figure {
  min-height: 20em;
}

.container .cols .col-figure img {
  width: 100%;
  height: auto;
  margin-top: 0.65em;
  vertical-align: top;
}

.container .cols .col-figure[style*="background-image"] {
  min-height: 15em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.container > .cols > .col-text:before, .container > .cols > .col-text:after {
  content: '';
  display: table;
  clear: both;
}
.container > .cols > .col-text > :first-child {
  margin-top: 0 !important;
}
.container > .cols > .col-text > :last-child {
  margin-bottom: 0 !important;
}
.container > .cols > .col-text h1, .container > .cols > .col-text h2, .container > .cols > .col-text h3, .container > .cols > .col-text h4, .container > .cols > .col-text h5, .container > .cols > .col-text p {
  font-family: inherit;
  color: inherit;
}
.container > .cols > .col-text a {
  color: inherit;
}
.container > .cols > .col-text:before, .container > .cols > .col-text:after {
  content: '';
  display: table;
  clear: both;
}
.container > .cols > .col-text > :first-child {
  margin-top: 0 !important;
}
.container > .cols > .col-text > :last-child {
  margin-bottom: 0 !important;
}

.container .cols > .col.fancy {
  background-color: #F5FAE9;
  padding: 2.0625em 1.875em;
}

.container .cols > .col.product {
  background-color: #F5FAE9;
  padding: 2.625em 2.1875em;
}

.container.with-gap > .cols {
  margin-top: 4.5em;
  margin-bottom: 4.5em;
}

@media (min-width: 1921px) {
  .container {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}
@media (min-width: 64em) {
  .container .cols {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .container > .cols > .col {
    -webkit-box-flex: 50%;
    -webkit-flex: 50% 0 0 0;
        -ms-flex: 50% 0 0 0;
            flex: 50% 0 0 0;
    width: 50%;
    float: left;
  }

  .container > .cols:not(.reversed):nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .container > .cols:not(.reversed):nth-child(odd) .col-text {
    float: left;
  }
  .container > .cols:not(.reversed):nth-child(odd) .col-figure {
    float: right;
  }

  .container > .cols.reversed:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .container > .cols.reversed:nth-child(even) .col-text {
    float: right;
  }
  .container > .cols.reversed:nth-child(even) .col-figure {
    float: left;
  }
}
@media (max-width: 63.9375em) {
  .container .cols .col-text {
    font-size: 0.85em;
  }
}
@media (max-width: 39.9375em) {
  .banner {
    min-height: none;
    padding-top: 0;
  }
}
.info {
  color: #353526;
  background-color: #fff;
}

.container .cols.info > .col-text {
  padding: 3.5625em 7em 4.5em 3.6875em;
  position: relative;
}
.container .cols.info > .col-text h2, .container .cols.info > .col-text h3, .container .cols.info > .col-text p {
  position: relative;
  z-index: 2;
}

.info .col-text:before {
  content: '';
  background: url("../img/flower.svg") no-repeat top center/auto 100%;
  opacity: 0.69;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info h3 {
  font-size: 2.375em;
  margin: 0.95em 0;
}

.info p {
  font-family: Lato;
  font-weight: 300;
  font-size: 1.5em;
  margin: 0.75em 0;
}

.container > .cols.info a:hover, .container > .cols.info a:focus {
  color: #7c9a21;
}

.info p a {
  text-decoration: underline;
}

.sharebuttons{
    position: fixed;
    right:10px;
    top:50%;
    z-index: 9999;
    font-size:1.25em;
}

@media(max-width:479px){
    .sharebuttons{
        display: none;
    }
}

.sharebuttons a{
    display: block;
    margin-bottom: 4px;
}

body{position: relative;}

.info-button{
  font-family: 'Nucleo Outline';
  font-size: 3.75em;
  font-weight: normal;
  text-align: center;
  background-color: #fff;
  color: #A5CC2C;
  width: 1em;
  height: 1em;
  line-height: 1em;
  padding: 0;
  border-radius: 50%;
  box-shadow: none;
  display: inline-block;
  -webkit-transition: background 400ms ease;
          transition: background 400ms ease;
}
.info-button:before {
  content: "\e6ab";
  -webkit-transform: scale(0.4);
      -ms-transform: scale(0.4);
          transform: scale(0.4);
  display: inline-block;
}
.info-button:hover, .info-button:focus, .leesmeer:hover i {
  background-color: #A5CC2C !important;
  color: #fff !important;
}

.leesmeer{
    position: absolute;
    right: 1.8125rem;
    bottom: 2.125rem;
    z-index: 10;
    font-size:1.4em;
    color: #A5CC2C;
}

.leesmeer i, .sharebuttons i{
    font-size:.75em;
    background-color: #fff;
    height:3em;
    text-align: center;
    line-height: 3em;
    border-radius: 50%;
    width:3em;
    -webkit-transition: background 400ms ease;
            transition: background 400ms ease;

}

.info .info-button {
  position: absolute;
  right: 1.8125rem;
  bottom: 2.125rem;
  z-index: 10;
}

.info-container {
  padding-right: 0;
  padding-left: 0;
}

.info-container .info{
  background-color: #E1F5C4;
}

.info-container > .info:nth-child(even) {
  background-color: #fff;
}
.info-container > .info:nth-child(even) .col-text:before {
  background-image: url("../img/flower-lighter.svg");
}
.info-container > .info:nth-child(even) .info-button, .info-container > .info:nth-child(even) .leesmeer i {
  background-color: #E1F5C4;
  color: #A5CC2C;
}

.social-block {
  font-family: Roboto Slab;
  text-align: center;
  color: #fff;
  background: -webkit-linear-gradient(left, #A7CD2C, #50C8C6);
  background: linear-gradient(to right, #A7CD2C, #50C8C6);
  padding: 3.9375em 0.9375em 3.75em 0.9375em;
}

.social-block.alternate{
  color:#333;
  background: #E1F5C4;
  padding: 3.9375em 0.9375em;
}

.social-block.alternate p{
  margin-bottom: .5em;
}

.social-block h3 {
  font-size: 2.375em;
  font-weight: 700;
  margin: 5px 0;
}

.social-block a {
  color: inherit;
  font-size:1.75em;
  margin:0 5px;
}
.social-block a:hover, .social-block a:focus {
  color: #fff;
  text-decoration: underline;
}
.social-block a:hover u, .social-block a:focus u {
  text-decoration: none;
}

.social-block p {
  font-size: 1.75em;
  font-weight: 300;
  margin: 5px 0 1.9375em 0;
}

.input-group {
  font-family: Roboto Slab;
  font-size: 1rem;
  max-width: 100%;
  width: 37.375rem;
}

.input-group input, .search-submit {
  height: 3.5625rem;
  line-height: 3.5625rem;
  padding: 0 1.75rem;
  margin: 0;
}



.input-group input {
  font-size: 1.25em;
  font-weight: 600;
  color: #353526;
  background-color: #e5f4e4;
}

.search-submit {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  color: #353526;
  background-color: #fff;
  border: none;
}

.search-submit:hover, .search-submit:focus {
  color: #fff;
  background-color: #353526;
}

.search-submit.alt {
  color: #fff;
  background-color: #353526;
}

.search-submit.alt:hover,.search-submit.alt:focus {
  color: #fff;
  background-color: #010101;
}

.search-submit.expanded {
    width: 100%;
}

.form-group {
  margin: 1.75rem 0 3.5em 0;
}
.form-group > :first-child {
  margin-top: 0 !important;
}
.form-group > :last-child {
  margin-bottom: 0 !important;
}

.form-row {
  position: relative;
}
.form-row:before, .form-row:after {
  content: '';
  display: table;
  clear: both;
}

.form-row input,
.form-row textarea {
  font-size: 1.5rem;
  min-height: 3.5625rem;
  margin: 0;
}
.form-row input:focus ~ label,
.form-row textarea:focus ~ label {
  width: 100%;
  opacity: 1;
}

.form-row {
  margin: 1.875rem 0;
  border-bottom: solid 1px #A5CC2C;
}

.form-row input,
.form-row textarea {
  width: 100%;
  background-color: transparent;
}
.form-row input:focus,
.form-row textarea:focus {
  box-shadow: none;
  outline: none;
  border: none;
  background-color: transparent;
}

.form-row input {
  color: #50503c;
  padding: 0;
}

.form-row textarea {
  line-height: 148%;
  padding: 0.2rem 0;
  resize: none;
  overflow: auto;
  overflow-style: none;
}

.form-row label {
  padding: 0;
  background-color: #7c9a21;
  height: 1px;
  width: 0%;
  position: absolute;
  opacity: 0;
  -webkit-transition: width 500ms ease-out, opacity 200ms ease;
          transition: width 500ms ease-out, opacity 200ms ease;
}

.checkboxlabel{
    opacity: 1;
    position: relative;
    height: auto;
    width:auto;
}

.form-row label:focus:after {
  content: '';
  top: 100%;
  left: 0;
}

.form-row input::-moz-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row input::-webkit-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row input::-ms-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row input::-webkit-input-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row input::-moz-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row input:-ms-input-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row input::placeholder {
  color: #333326;
  opacity: 1;
}
.form-row textarea::-moz-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row textarea::-webkit-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row textarea::-ms-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row textarea::-webkit-input-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row textarea::-moz-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row textarea:-ms-input-placeholder {
  color: #333326;
  opacity: 1;
}
.form-row textarea::placeholder {
  color: #333326;
  opacity: 1;
}




select {

    border-radius: 0;
    outline: none;
    padding: 0 1.5rem;
}

.form-row select {
    margin: 0;
    height: 3.5625rem;
    border-style: solid;
    border-width: 1px 1px 0 1px;
    border-color: #A5CC2C;
}


select:focus::-moz-value {
    color: #333326 !important;
    background-color: transparent;
    outline: none;
    border: none;
}
select:focus::-webkit-value {
    color: #333326 !important;
    background-color: transparent;
    outline: none;
    border: none;
}
select:focus::-ms-value {

    color: #333326 !important;
    background-color: transparent;
    outline: none;
    border: none;
}
select:focus::value {
    color: #333326 !important;
    background-color: transparent;
    outline: none;
    border: none;
}

select:-moz-focusring {
    color: transparent !important;
    -webkit-text-shadow: 0 0 0 #333326 !important;
    -moz-text-shadow: 0 0 0 #333326 !important;
    text-shadow: 0 0 0 #333326 !important;
}

.footer {
  color: #333326;
  background-color: #FFFFFF;
}
.footer:before, .footer:after {
  content: '';
  display: table;
  clear: both;
}

.footer-info {
  padding: 4.25em 3.875em 3.5em;
}

.footer-map {
  min-height: 30em;
  position: relative;
}

.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.footer-switch {
  position: relative;
}
.footer-switch:before, .footer-switch:after {
  content: '';
  display: table;
  clear: both;
}

.footer-switch.reversed {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (min-width: 85em) {
  .footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }

  .footer-map, .footer-info {
    width: 50%;
    float: left;
  }
}
@media (min-width: 64em) {
  .input-group {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (max-width: 63.9375em) {
    .input-group {
        display: block;
    }

    .input-group input,
    .input-group .search-submit {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }


}
.contact {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.5em;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.contact > li {
  margin: 0;
  padding: 0 0 1.5rem 1.583333333333333em;
  list-style: none;
  position: relative;
}
.contact > li > :first-child {
  margin-top: 0 !important;
}
.contact > li > :last-child {
  margin-bottom: 0 !important;
}

.contact > li:not(:first-child) {
  margin-top: 1.4rem;
}

.contact > li:not(:last-child):after {
  content: '';
  background-color: #A5CC2C;
  height: 1px;
  width: 5.25rem;
  position: absolute;
  top: 100%;
  left: 0;
}

.contact a {
  color: inherit;
}

.contact a:hover, .contact a:focus {
  color: #A5CC2C;
}

.contact .nc-icon-outline,
.contact .nc-icon-glyph {
  position: absolute;
  top: 0.25em;
  left: 0;
}

.contact p {
  font-size: inherit;
  font-weight: 300;
  margin: 1.05em 0 1.05em -1.583333333333333em;
}

.footer-bottom {
  font-size: 0.875em;
  font-weight: 300;
  text-align: center;
  color: #343426;
  background-color: #F0FAE2;
  padding: 1.5rem 0.9375rem;
  min-height: 6.25em;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom a:hover, .footer-bottom a:focus {
  color: #A5CC2C;
}

@media (min-width: 40em) {
  .footer-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 39.9375em) {
  .footer-bottom .fl {
    display: block;
  }
}
.bull {
  font-size: 0.5714285714285714em;
  font-weight: normal;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  display: inline-block;
  background-color: #A5CC2C;
  margin-right: 1.5em;
  margin-left: 1.5em;
}

.search-results {
    color: #343426;
    margin: 2em 0;
    padding: 0;
    border: solid 1px #E5F4E4;
}

.search-results > li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.search-results > li > a {
    font-size: 1.25em;
    line-height: 148%;
    display: block;
    padding: 0.75em 1.5em;
    background-color: #FFFFFF;
    color: inherit;
}

.search-results > li > a:hover,
.search-results > li > a:focus {
    color: #7c9a21;
}

.search-results > li + li:not(:last-child) {
    border-top: solid 1px #E5F4E4;
}

.search {
  text-align: center;
  color: #fff;
  background-color: #CEE891;
  padding: 0.375em 7.5em 0.375em 7em;
  position: relative;
  max-width: 73.125rem;
  margin: 0 auto;
  box-shadow: 1020px 0 0 0 #CEE891, -1020px 0 0 0 #CEE891;
}

.search + .search {

    border-top: solid 1px #A5CC2C;
}

.page .search {
    margin-top: -1.5em;
}

.search > :first-child {
  margin-left: 0 !important;
}
.search > :last-child {
  margin-right: 0 !important;
}

.search-label {
  font-family: Roboto Slab;
  font-size: 1.75em;
  font-weight: 400;
  line-height: 120%;
  color: #fff;
}

.search-wrapper {
    overflow: hidden;
    padding-top: 1.5em;
    margin-top: -1.5em;
    background-color: #CEE891;
}

.search-advanced {
    overflow: hidden;
    position: relative;
    z-index: 0;
    max-height: 0;
    background-color: #F4F9E9;

    -webkit-transition: max-height 400ms linear;
    transition: max-height 400ms linear;
}
.search-advanced .form-group {
    border-top: solid 1px #A5CC2C;
    border-bottom: solid 1px #A5CC2C;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1.5em;
    padding-bottom: 3em;
    -webkit-animation-name: fadeOutUp;
    -webkit-animation-duration: 400ms;
    -webkit-animation-fill-mode: both;
    animation-name: fadeOutUp;
    animation-duration: 400ms;
    animation-fill-mode: both;
}

.search-wrapper .search {
    position: relative;
    z-index: 10;
}

.toggle-advanced .search-advanced {
    max-height: 300vh;
    -webkit-transition: max-height 400ms linear 0ms;
    transition: max-height 400ms linear 0ms;
}

.toggle-advanced .search-advanced .form-group {
    -webkit-animation-name: fadeInDown;
    -webkit-animation-duration: 800ms;
    -webkit-animation-fill-mode: forwards;
    animation-name: fadeInDown;
    animation-duration: 800ms;
    animation-fill-mode: forwards;
}

.search .search-label,
.search .input-group {
  margin: 1rem 1.75rem;
}

.search-reset, .search-filter {
  font-family: 'Nucleo Outline';
  font-weight: normal;
  font-size: 1.75em;
  color: #343426;
  opacity: 0.24;
  background-color: transparent;
  text-align: center;
  width: 1em;
  height: 1em;
  line-height: 1em;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.search-reset {
  opacity: 0.24;
}
.search-filter {
  opacity: 0.35;
}

.search-button.abs {

  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -0.5em;
}
.search-button:not(.abs) {
    margin: 1.5rem 0.5em;
}

.search-button.abs  + .search-button.abs  {
    right: 3em;
}

.search-reset:before {
  content: "\e6ad";
}

.search-filter:before {
  content: "\e6e4";
}

.search-reset:hover,
.search-reset:focus
{
  opacity: 1;
  text-shadow: 4px rgba(52, 52, 38, 0.24);
}

.search-filter:hover,
.search-filter:focus
{
  opacity: 0.6;
  text-shadow: 4px rgba(52, 52, 38, 0.24);
}

.toggle-advanced .search-filter {
    opacity: 0.6;
    color: #333326;
}

.search-body {
  padding-top: 2em;
  padding-bottom: 2em;
}

.search-advanced .search-body {
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 64em) {
  .search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .search.mobile {
      display: none !important;
  }
}
@media (max-width: 63.9375em) {
    .search-button.desktop {
        display: none !important;
    }
    .search .search-label {
        margin-right: 0;
    }
    .search-button + .search-button  {
        right: 2.5em;
    }

    .search .input-group,
    .input-group {
        margin: 2em 0;
        width: 100%;
    }

    .search-reset {
        right: 0.5em;
    }
}

@media (max-width: 39.9375em) {
  .search {
      font-size: 0.75em;
  }
}
.products {
  background-color: #fff;
  max-width: 105em;
  margin: 0 auto;
  overflow: hidden;
}
.products:before, .products:after {
  content: '';
  display: table;
  clear: both;
}

.products > .product-article {
  width: 25%;
  box-shadow: 0 0 0 4px #fff;
  float: left;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.products > .product-article:after {
  content: '';
  position: absolute;
  top: -4px;
  left: 100%;
  bottom: 0;
  margin-left: -4px;
  width: 1680px;
  background-color: #fff;
}

/*

.products > .product-article:nth-child(4n+5) {
    clear: left;
}

*/
.product-article {
  height: 17.5em;
  position: relative;
  z-index: 2;
}

.product-article a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.product-title {
  font-family: 'Roboto Slab';
  font-size: 1.5em;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: #fff;
  background-color: rgba(53, 53, 38, 0.38);
  padding: 0.916em 1em 0.83em 1em;
  margin-top: 2em;
  margin-bottom: 2em;
}

.product-article .product-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
}

.product-image {
  height: 15em;
  margin: 0 0 2em 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-image-label {
  font-size: 1.75em;
  color: #FFF;
  padding: 0 0.75862em 0;
  height: 2.8571em;
  line-height: 2.8571em;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1.42855em;
  right: 0;
  background-color: rgba(165, 204, 44, 0.9);
}

@media (max-width: 63.9375em) {
  .products > .product-article {
    width: 33.33333%;
  }
}
@media (max-width: 39.9375em) {
  .products > .product-article {
    width: 50%;
  }
}
.label-option {
  font-family: Roboto Slab;
  font-size: 1em;
  font-weight: 400;
  line-height: 120%;
  display: inline-block;
}

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

.dropdown.menu .is-dropdown-submenu-parent > a {
  font-family: Lato;
  font-size: 1.25rem;
  font-weight: 400;
  white-space: nowrap;
  color: #333326;
  background-color: #F5FAE9;
  border-color: #F5FAE9;
  padding: 0.875rem 2.5rem 0.875rem 1.1875rem !important;
}

.dropdown.menu .is-dropdown-submenu-parent.is-up-arrow > a:after,
.dropdown.menu .is-dropdown-submenu-parent.is-down-arrow > a:after {
  content: '';
  font-family: 'Nucleo Glyph';
  font-size: 1rem;
  height: 1em;
  line-height: 1em;
  background-color: transparent !important;
  border: none !important;
  position: absolute;
  top: 50%;
  right: 2rem;
  float: none;
  margin: -0.5em 0 0 0;
}

.dropdown.menu .is-dropdown-submenu-parent.is-down-arrow > a:after {
  content: "\eaa6";
}

.dropdown.menu .is-dropdown-submenu-parent.is-up-arrow > a:after {
  content: "\eaa9";
}

.label-option, .dropdown.dropdown-option {
  margin: 0 0.625rem;
}

.dropdown.dropdown-option + .label-option {
  margin-left: 1.85rem;
}

.options {
  margin: 1.875em 0 3.75em 0;
  padding: 0 0.9375em;
}

.options.fancy {
  margin-top: 3em;
}

.categories + .options {
  margin-top: 0.9375em;
}

.options-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 64em) {
  .options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .options > .options-col:first-child {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: -1px;
  }

  .options > .options-col:last-child {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 63.9375em) {
  .options > .options-col {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .options .go-page {
    margin-top: 0.32rem;
    margin-bottom: 0.32rem;
  }
}
.categories {
  font-family: Roboto Slab;
  font-weight: 400;
  text-align: center;
  margin: 0 -1.875em 3em;
  padding: 0 0.9375em;
}
.categories:before, .categories:after {
  content: '';
  display: table;
  clear: both;
}

.options + .categories {
  margin-top: -2.5rem;
}

.categories > li {
  margin: 0;
  padding: 0.9375em 1.875em;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.categories > li > a {
  font-size: 1.75em;
  display: block;
  min-height: 4.75rem;
  color: #A7CD2C;
  border: solid 2px #A5CC2C;
  padding: 0.7857142857142857em 2.357142857142857em;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.categories > li > a:hover, .categories > li > a:focus {
  color: #fff;
  background-color: #A5CC2C;
  border-color: #A5CC2C;
  background-image: url("../img/flower-primary.svg");
  background-repeat: no-repeat;
  background-size: auto 103%;
  background-position: 1.5rem 0;
}

.menu > li:not(.menu-text) > a {
  font-size: 1rem;
  color: #333326;
}

.menu > li:not(.menu-text):hover > a, .menu > li:not(.menu-text):focus > a {
  color: #fff;
  background-color: #A5CC2C;
}

.go-back {
  font-family: Lato;
  font-size: 1.25em;
  font-weight: 400;
  color: #8A8A79;
  display: inline-block;
  padding: 2px 2.5em;
  position: relative;
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
}

.go-back:after {
  content: "\ea3f";
  font-family: 'Nucleo Outline';
  font-weight: normal;
  font-size: 1.4em;
  position: absolute;
  top: 4px;
  right: 0;
}

.go-back:hover, .go-back:hover {
  color: #545449;
}

.go-page {
  font-family: Lato;
  font-size: 1.25em;
  font-weight: 400;
  color: #A5CC2C;
  display: inline-block;
  padding: 2px 2.5em;
  position: relative;
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
}

.go-page:after {
  font-family: 'Nucleo Outline';
  font-weight: normal;
  font-size: 1.4em;
  position: absolute;
  top: 4px;
}

.go-page.prev:after {
  content: "\ea8c";
  left: 0;
}

.go-page.next:after {
  content: "\ea8d";
  right: 0;
}

.go-page:hover, .go-back:hover {
  color: #7c9a21;
}

@media (max-width: 87.9375em) {
  .header, .options {
    font-size: 0.85em;
  }
}
@media (min-width: 64em) {
  .categories > li {
    width: 33.33333333333333%;
    max-width: 33.33333333333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333333333333%;
        -ms-flex: 0 0 33.33333333333333%;
            flex: 0 0 33.33333333333333%;
  }
}
@media (max-width: 63.9375em) and (min-width: 40em) {
  .categories > li {
    width: 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (min-width: 40em) {
  .categories {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
@media (max-width: 39.9375em) {
  .categories > li {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 1;
        -ms-flex: 0 0 1;
            flex: 0 0 1;
  }

  .page-head {
    font-size: 2em;
  }

  .text {
    font-size: 1.5em;
  }

  .page-footer, .social-block {
    font-size: 0.85em;
  }
}
.google-maps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
@media (min-width: 64em) {
    .info-container > :nth-child(odd) {
        .col-text { float: left; }
        .col-figure { float: right; }
    }
}
*/

.images-grid {
    position: relative;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
    opacity: 0;
    min-height: 50vh;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-animation-delay: 1500ms;
    animation-delay: 1500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.images-grid:before, .images-grid:after {
    content: '';
    display: table;
    clear: both;
}

/*
.images-grid.ready {
}
*/
.image-grid {
    width: 16.66666666666667%;
    padding: 0.5rem;
    float: left;
}

.image-grid-figure {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.image-grid-figure:before {
    content: '';
    padding-top: 75%;
    display: block;
}

.image-grid-figure:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    -webkit-transition: background 400ms ease;
    transition: background 400ms ease;
}

:hover > .image-grid-figure:after {
    background-color: rgba(0,0,0,0.2);
}

@media (max-width: 39.9375em) {
    .image-grid {
        width: 25%;
    }
}

.product-article .product-image-label{
  top:0;
  margin-top:0;
  font-size:1em;
}

.products > .product-article.noimage{
    background: #e1ecc8 url('../img/hetwilgenbroeklogo.png') no-repeat top 20% left 20%;
    background-size: 80%;
}

.container .cols .col-figure.noimage{
  background: #e1ecc8 url('../img/hetwilgenbroeklogo.png') no-repeat top 40% left 20%;
  background-size: 80%;
}
.product-article small{
  display: block;
  line-height: 1.4em;
}

.sociallink i{
    margin-right:.5em;
}
/* .image-grid img { max-width: 100%; } */


.categorycontainer{
  display: flex;
  width:100%;
  flex-wrap: wrap;
}

.categoryitem{
  background: no-repeat center center / cover;
  width:25%;
  box-sizing: border-box;
  display: block;
  position: relative;
}

.categoryitem:before{
  position: relative;
  width:100%;
  padding-top:60%;
  content:"";
  display: block;
  z-index: 1;
}

.categoryitem  .content{
    position: absolute;
    z-index: 2;
    left:0;
    top:0;
    height:100%;
    width:100%;
    color:#fff;
    background: rgba(0,0,0,.5);
}











.cookienotice {
  position: fixed;
  right: 1em;
  bottom: 1em;
  width: 90%;
  max-width: 370px;
  padding: 1em;
  color: #000;
  border: 2px solid #000;
  background: #fff;
  z-index: 9999;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
}
.cookienotice.hidden {
  display: none;
}
.cookienotice .text {
  padding-right: 0.75em;
  font-size: 1em;
  width: 100%;
  margin-bottom: 0;
}
.cookienotice .text p a{
  text-decoration: underline;
}
.cookienotice .text p a:hover{
  color:#A5CC2C;
}
@media (max-width: 400px) {
  .cookienotice {
    left: 1em;
    width: 100%;
  }
}
.cookienotice .cookiebtn {
  background: #000;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 0.5em 0.75em;
  font-weight: 700;
  margin-right: 1em;
}
.cookienotice .cookiebtn:hover {
  background: #A5CC2C;
  color: #fff;
}
.cookienotice .cookiedeny {
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875em;
}
.cookienotice .cookiedeny:hover {
  color: #A5CC2C;
}

[data-role=showcookienotice] {
  cursor: pointer;
}




.text.privacytext table {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 1em;
  width: 100%;
  max-width: 100%;
}
.text.privacytext table tr td, .text.privacytext table tr th {
  font-size: 12px;
  padding: 1em;
}
.text.privacytext table tr td p, .text.privacytext table tr th p {
  font-size: 1em;
}
@media (min-width: 769px) {
  .text.privacytext table tr td:nth-child(odd), .text.privacytext table tr th:nth-child(odd) {
    background: rgba(0, 0, 0, 0.1);
  }
}
.text.privacytext table tr th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .text.privacytext table thead {
    display: none;
  }
  .text.privacytext table tbody {
    display: block;
  }
  .text.privacytext table tr {
    display: block;
  }
  .text.privacytext table tr:nth-child(odd) td {
    background: rgba(0, 0, 0, 0.1);
  }
  .text.privacytext table tr td {
    display: block;
    position: relative;
    padding-left: 14em;
  }
  .text.privacytext table tr td:before {
    content: attr(data-title);
    font-size: inherit;
    font-weight: 700;
    padding-right: 1em;
    width: 14em;
    position: absolute;
    left: 1em;
    top: 1em;
  }
}




.privacylabel{
  color:#fff;
}
.privacylabel a{
  font-size:1em;
  margin:0;
  padding:0;
  text-decoration: underline;
}

