@charset "utf-8";/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

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

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

.animated.hinge {
  animation-duration: 2s;
}

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

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

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

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

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

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

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

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

.flash {
  animation-name: flash;
}

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

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

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

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

.pulse {
  animation-name: pulse;
}

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

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

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

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

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

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

.rubberBand {
  animation-name: rubberBand;
}

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

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

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

.shake {
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
  animation-name: tada;
}

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

@keyframes wobble {
  from {
    transform: none;
  }

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

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

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

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

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

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

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

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

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

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

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

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

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

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

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

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

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

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

  40% {
    transform: scale3d(.9, .9, .9);
  }

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

  80% {
    transform: scale3d(.97, .97, .97);
  }

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

.bounceIn {
  animation-name: bounceIn;
}

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

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

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

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

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

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

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

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

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

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

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

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

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

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

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

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

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

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

.bounceOutDown {
  animation-name: bounceOutDown;
}

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

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

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

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

.bounceOutRight {
  animation-name: bounceOutRight;
}

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

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

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

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

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

.fadeInDown {
  animation-name: fadeInDown;
}

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

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

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

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

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

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

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

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

.fadeInRight {
  animation-name: fadeInRight;
}

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

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

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

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

.fadeInUp {
  animation-name: fadeInUp;
}

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

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

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

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

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

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

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

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

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

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

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

.rotateOut {
  animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

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

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

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

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

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

.hinge {
  animation-name: hinge;
}

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

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

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

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

.jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

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

.rollIn {
  animation-name: rollIn;
}

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

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

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

.zoomInDown {
  animation-name: zoomInDown;
}

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

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

.zoomInLeft {
  animation-name: zoomInLeft;
}

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

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

.zoomInRight {
  animation-name: zoomInRight;
}

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

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

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

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

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

.zoomOutDown {
  animation-name: zoomOutDown;
}

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

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

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

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

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

.zoomOutRight {
  animation-name: zoomOutRight;
}

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

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

.zoomOutUp {
  animation-name: zoomOutUp;
}

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

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

.slideInDown {
  animation-name: slideInDown;
}

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

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

.slideInLeft {
  animation-name: slideInLeft;
}

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

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

.slideInRight {
  animation-name: slideInRight;
}

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

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

.slideInUp {
  animation-name: slideInUp;
}

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

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

.slideOutDown {
  animation-name: slideOutDown;
}

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

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

.slideOutLeft {
  animation-name: slideOutLeft;
}

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

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

.slideOutRight {
  animation-name: slideOutRight;
}

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

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

.slideOutUp {
  animation-name: slideOutUp;
}
/**
 * @author Design & Accessible Team (Epulz reclame)
 */
@font-face {
	font-family: 'MyriadPro-Cond';
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Cond.eot");
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Cond.eot#iefix") format("embedded-opentype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Cond.woff") format("woff"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Cond.ttf") format("truetype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Cond.svg") format("svg");
	font-weight: normal;
	font-style: normal;font-display:swap;}
@font-face {
	font-family: 'MyriadPro-CondIt';
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-CondIt.eot");
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-CondIt.eot#iefix") format("embedded-opentype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-CondIt.woff") format("woff"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-CondIt.ttf") format("truetype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-CondIt.svg") format("svg");
	font-weight: normal;
	font-style: normal;font-display:swap;}
@font-face {
	font-family: 'MyriadPro-BoldCond';
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCond.eot");
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCond.eot#iefix") format("embedded-opentype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCond.woff") format("woff"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCond.ttf") format("truetype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCond.svg") format("svg");
	font-weight: normal;
	font-style: normal;font-display:swap;}
@font-face {
	font-family: 'MyriadPro-CondIt';
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCondIt.eot");
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCondIt.eot#iefix") format("embedded-opentype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCondIt.woff") format("woff"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCondIt.ttf") format("truetype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-BoldCondIt.svg") format("svg");
	font-weight: normal;
	font-style: normal;font-display:swap;}
@font-face {
	font-family: 'MyriadPro-Regular';
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Regular.eot");
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Regular.eot#iefix") format("embedded-opentype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Regular.woff") format("woff"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Regular.ttf") format("truetype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Regular.svg") format("svg");
	font-weight: normal;
	font-style: normal;font-display:swap;}
@font-face {
	font-family: 'MyriadPro-Light';
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.eot");
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.eot#iefix") format("embedded-opentype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.woff") format("woff"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.ttf") format("truetype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.svg") format("svg");
	font-weight: normal;
	font-style: normal;font-display:swap;}
@font-face {
	font-family: 'MyriadPro-Light';
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.eot");
	src: url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.eot#iefix") format("embedded-opentype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.woff") format("woff"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.ttf") format("truetype"),
	url("https://www.voltindustries.eu/templates/countries/fonts/MyriadPro-Light.svg") format("svg");
	font-weight: normal;
	font-style: normal;font-display:swap;}
@font-face {
    font-family: 'BebasNeueRegular';
    src: url('https://www.voltindustries.eu/templates/countries/fonts/BebasNeue-webfont.eot');
    src: url('https://www.voltindustries.eu/templates/countries/fonts/BebasNeue-webfont.eot#iefix') format('embedded-opentype'),
         url('https://www.voltindustries.eu/templates/countries/fonts/BebasNeue-webfont.woff') format('woff'),
         url('https://www.voltindustries.eu/templates/countries/fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('https://www.voltindustries.eu/templates/countries/fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;font-display:swap;}
body {
  background: #000;
  color: #fff;
  font-size: 20px;
  line-height:150%;
  margin:0;
  padding: 0 0 0 0;
  text-align:center;
  font-family: 'MyriadPro-Regular', Arial, Helvetica, Verdana, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight:normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  width:100%;
  height:100%;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img { border: 0 none; }

.clr{
  clear:both;
  display:block;
  width:auto;
  height:0;
  overflow:hidden;
}
p{
  padding:0;
  margin:0 0 15px 0;
}
p:last-child, .block p:last-child{
  margin:0 !important;
}
a{
  color:#444;
  font-style:normal;
  text-decoration:none;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
a:hover{
  color:#444;
  text-decoration:underline;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.overlay a, .overlay a:hover{
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
h1, h2, h3, h4, h5, h6{
  color:#fff;
  padding:0;
  margin:0 0 10px 0;
  font-weight:normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size:180%;
  line-height:100%;
  font-family: 'BebasNeueRegular';
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
  color:#fff;
  font-family: 'BebasNeueRegular';
}
legend, label{
  font-weight:bold;
}
input:focus, textarea:focus {
   border-color: fade(@inputBorderFocus, 100%);
  @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px fade(@inputBorderFocus, 80%);
  .box-shadow(@shadow);
  outline: 0;
  outline: thin dotted \9; /* IE6-9 */
}
input, textarea{
  border:none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border:1px solid #ccc;
  background:none;
  color:#333;
  padding:8px;
  line-height:25px;
  height:25px;
  line-height:25px;
  background-color:#f9f9f9; 
  margin-bottom:3px;
  width:auto;
  font-size:12px;
}
fieldset{
  border:0px;
  padding:0px;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}
bold, strong{
  letter-spacing:0;
}

/* =Header
-------------------------------------------------------------- */
header {
  display:block;
  width: 100%;
  margin:0;
  height: auto;
  padding:0;
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: none;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
  background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}
header .logo{
  position:relative;
  display: block;
  width:35%;
  max-width:300px;
  height: auto;
  float: right;
  
  margin-top:0px;
  clear:both;
}
header nav {
  display: inline-block;
  float: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin:0px;
  width:65%;
  text-align:left;
  margin-top:20px;
}
nav ul, nav ul li{
  list-style:none !important;
  display:inline !important;
  margin:0;
  padding:0;
}
header nav a {
  font-family: 'BebasNeueRegular';
  text-transform:uppercase;
  line-height: 80px;
  margin-left: 25px;
  font-size:200%;
  color: #fff;
  font-weight: normal;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration:none;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.8);
}

header nav li:first-child a {
  margin-left:0 !important;
}
header nav a:hover, header.smaller nav a:hover {
  color: #d10019;
  text-decoration:none;
}
header nav li.current a, header nav li.active a {
  color:#d10019;
}
header.smaller {
  height: auto;
  top:0;
  width:100%;
  margin:0;
  background:#000;
  -moz-box-shadow: 0px 0px 20px #000;
  -webkit-box-shadow: 0px 0px 30px #000;
  -o-box-shadow: 0px 0px 20px #000;
  -khtml-box-shadow: 0px 0px 20px #000;
  box-shadow: 0px 0px 20px #000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-image:url(https://www.voltindustries.eu/templates/countries/images/topmenu.jpg);
  background-repeat:no-repeat;
  background-size:100% auto;
  -webkit-background-size: 100% auto;
  background-position:100% 0%;
}
header.smaller nav .maximenuckh {
  margin-top:5px;
}
header.smaller .logo{
  width: 120px;
  height: auto;
  margin-top:6px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;  
}
header.smaller nav {
  margin-top:0;
}
header.smaller nav a{
  color:#fff;
  line-height:60px;
}
header.smaller nav a:hover{
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
header .container, .content .inner{
  position:relative;
  display:block;
  width:94%;
  margin:0 auto;
  padding:0;
}
header.smaller .telnr{
  width:160px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; 
  display:none !important;
}
header.smaller .socialicon{
  display:none !important;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s; 
}
.telnr{
  position:relative;
  display:block;
  float:left;
  width:290px;
  height:auto;
}
.telnr img{
  display:block;
  width:100%;
  height:auto;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  opacity: 0.85;
}
.blockSpacer{
  position:relative;
  display:block;
  visibility:hidden;
  width:100%;
  height:auto;
  min-height:200px;
  float:none;
  margin:0 auto;
  padding:27% 0 23% 0;
  -moz-box-shadow: inset 0 0 40px #000000;
  -webkit-box-shadow: inset 0 0 40px #000000;
  box-shadow: inset 0 0 40px #000000;
  -o-box-shadow:inset 0 0 40px #000000;
  -khtml-box-shadow:inset 0 0 40px #000000;
}
.picture{
  -moz-box-shadow: inset 0 0 40px #000000;
  -webkit-box-shadow: inset 0 0 40px #000000;
  box-shadow: inset 0 0 40px #000000;
  -o-box-shadow:inset 0 0 40px #000000;
  -khtml-box-shadow:inset 0 0 40px #000000;
}
.content{
  position:relative;
  display:block;
  clear:both;
  min-height:200px;
  background:none;
  color:#fff;
  background-image:url(https://www.voltindustries.eu/templates/countries/images/black-50.png);
  background-repeat:repeat;
  background-size:10px 10px;
  -webkit-background-size: 10px 10px;
  background-position:0% 0%;
}
.content .inner{
  position:relative;
  display:block;
  height:auto;
  padding:0 0 40px 0;
  padding-top:0 !important;
}
.logoFooter{
  position:relative;
  display:block;
  margin:0 auto;
  padding:30px 0 20px 0;
  width:50%;
  max-width:240px;
  height:auto;
}
div.social{
  position:relative;
  display:block;
  width:94%;
  margin:20px auto;
  border-top:1px solid #646566;
  padding-top:20px;
  text-align:center;
}
div.social img{
  display:inline;
  width:auto;
  height:40px;
  margin:0 3px;
}
.social a{
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  -khtml-opacity: 1.0;
  opacity: 1.0;
}
.social a:hover{
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: .5;
  -khtml-opacity: 0.5;
  opacity: .5;
}
.copyright {
  font-size:80%;
  line-height:100%;
  color:#ccc;
  padding:0 0 15px 0;
}
.content .subtitle{
  padding:0 0 8px 0;
  margin:-10px 0 2% 0 !important;
  color:#fff;
  border-bottom:1px solid #fff;
}
.white{
  background:none;
  color:#fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
.white h1, .white h2, .white .subtitle{
  color:#fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
.white .subtitle{
  border-bottom:1px solid #fff;
}
.red{
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
.team .newsflashItem, .contact .newsflashItem{
  margin-bottom:3%;
  width:48%;
  float:left;
}
.team .newsflashItem{
  width:33.333%;
}
.team .newsflashItemInner{
  padding:0 17px;
}
.team .newsflashItem:first-child, .contact .newsflashItem:first-child{
  float:left;
}
.team .newsflashItem:last-child, .contact .newsflashItem:first-child{
  float:right;
}
.team .newsflashItem h2, .contact .newsflashItem h2 , .producten .newsflashItem h2 {
  margin-bottom:0;
  font-size:165%;
}
.prijzen .newsflashItem{
  position:relative;
  display:block;
  width:33.333%;
  float:left;
}
.prijzen .newsflashItemInner{
  margin:12px;
  padding:12px 0;
  background:#a9001d;
  font-family: 'BebasNeueRegular';
}
.prijzen .newsflashItemInner p, .prijzen .newsflashItemInner h3{
  font-size:165% !important;
}
div.links{
  position:relative;
  display:block;
  width:50%;
  float:left;
  text-align:left;
}
div.rechts{
  position:relative;
  display:block;
  width:50%;
  float:right;
}
.links h3.newsflash-title, .rechts h3{
  font-size:165%;
  color:#a9001d;
  text-align:left;
}
.newsflashItem img{
  display:block;
  width:75%;
  max-width:250px;
  height:auto;
  margin-left:auto;
  margin-right:auto;
}
.producten .newsflashItem img{
  max-width:400px;
  margin-top:15px;
}
.custom {
  clear:both;
}
.prijzenBottom{
  padding-top:30px;
}
.visforms-form{
  position:relative;
  display:block;
  width:95%;
  max-width:100%;
  float:none;
  margin:0 auto;
}
.visforms-form label{
  display:block;
  clear:both;
  float:left;
  width:40%;
  text-align:left;
  font-size:96%;
  margin-bottom:5px;
}
.visforms-form input, textarea{
  display:block;
  float:none;
  width:95%;
  resize:none;
  background:#333 !important;
  padding:5px;
  min-height:35px;
  line-height:35px;
  font-size:13px;
  margin:0 auto;
}
label.vis_mandatory{
  float:none;
  width:100%;
  font-size:85%;
  font-weight:normal;
}
.vis_mandatory, form#mod-visform1 div.required > label:after, form#mod-visform1 div.required > label.checkbox.asterix-ancor:after, form#mod-visform1 div.required > span.asterix-ancor:after, form#mod-visform1 div.required > div.asterix-ancor > div:after{
  color:#999;
}
.visform textarea{
  background:#f9f9f9;
  height:150px !important;
  clear:both;
  width:95%;
  margin-bottom:20px;
  resize: vertical;
}
input#field3{
  margin-top:15px;
  margin-bottom:15px;
}
input.btn{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background:#646567;
  color:#fff;
  font-size:110%;
  font-weight:normal;
  padding:5px 0;
  height:auto;
  line-height:30px;
  cursor:pointer;
  font-family: 'BebasNeueRegular';
  width:95%;
}
input.btn:hover{
  background:#222;
}
.form-actions{
  position:relative;
  clear:both;
  display:block;
  width:100%;
  border-top:1px dotted #ddd;
  padding-top:20px;
}
label.error{
  font-size:12px !important;
  width:auto;
}
.formulier h3{
  color:#333;
  border-bottom:1px solid #333;
}
iframe{
  margin-bottom:20px;
}
img.logoProducten{
  width:75%;
  max-width:300px;
  height:auto;
  margin-top:15px;
}
.producten .newsflashItem{
  position:relative;
  display:block;
  float:left;
  width:33.333%;
  height:auto;
}
.footnote{
  display:block;
  clear:both;
  padding-top:25px;
}
.socialicon{
  display:block;
  width:40px;
  height:auto;
  float:left;
  margin-left:1px;
  background:#000;
}
.socialicon:hover{
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.50;
  -khtml-opacity: 0.50;
  opacity: 0.50;
  -webkit-transition: opacity .15s ease-in-out;
  -moz-transition: opacity .15s ease-in-out;
  -ms-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
}
.telnr img:hover{
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  -khtml-opacity: 1.0;
  opacity: 1.0;
  -webkit-transition: opacity .15s ease-in-out;
  -moz-transition: opacity .15s ease-in-out;
  -ms-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
}
.blockSpacer h1{
  background:#d10019;
  padding:10px 20px 8px 20px;
  -ms-transform: rotate(-2deg);
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  display:none !important;
}
.blockSpacer h1.h1-second{
  margin-top:-13px;
}
.blockSpacer h4{
  clear:both;
  background:none;
  font-family: 'MyriadPro-Regular';
  font-size:150%;
  margin:0 0 0 0;
  text-shadow:1px 1px #666;
  -ms-transform: rotate(-2deg);
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}
.balk-white{
  position:relative;
  display:block;
  background:none;
  background-image:url(https://www.voltindustries.eu/templates/countries/images/balk-white.png);
  background-repeat:no-repeat;
  background-size:100% 100%;
  -webkit-background-size: 100% 100%;
  background-position:100% 50%;
  height:56px;
  width:100%;
  margin-top:-56px;
}
.balk-red{
  position:relative;
  display:block;
  background:none;
  background-image:url(https://www.voltindustries.eu/templates/countries/images/balk-red.png);
  background-repeat:no-repeat;
  background-size:100% 100%;
  -webkit-background-size: 100% 100%;
  background-position:100% 50%;
  height:56px;
  width:100%;
  margin-top:-56px;
}
.balk-volt{
  position:relative;
  display:block;
  background:none;
  background-image:url(https://www.voltindustries.eu/templates/countries/images/bg-black-50.png);
  background-repeat:no-repeat;
  background-size:100% 100%;
  -webkit-background-size: 100% 100%;
  background-position:100% 50%;
  height:56px;
  width:100%;
  margin-top:-56px;
}
.balk-volt-bottom{
  position:relative;
  display:block;
  background:none;
  background-image:url(https://www.voltindustries.eu/templates/countries/images/bg-black-50-bottom.png);
  background-repeat:no-repeat;
  background-size:100% 100%;
  -webkit-background-size: 100% 100%;
  background-position:100% 50%;
  height:56px;
  width:100%;
  margin-top:0;
}
blockquote{
  position:relative;
  display:block;
  width:75%;
  text-align:center;
  margin:25px auto;
}
blockquote p:first-child{
  position:relative;
  display:block;
  background:#e5e5e5;
  padding:20px;
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  -khtml-border-radius: 12px;
  margin-bottom:0;
  color:#d10019;
  font-size:125%;
  font-style:italic;
}
blockquote p:last-child{
  background:none;
  background-image:url(https://www.voltindustries.eu/templates/countries/images/quote.png);
  background-repeat:no-repeat;
  background-size:auto 100%;
  -webkit-background-size: auto 100%;
  background-position:25px 0;
  margin-top:0;
  padding-left:60px;
  text-align:left;
}
.blocktitle h1{
  color:#fff;
  padding-top:0;
  margin-top:0;
}
.blocktitle h2{
  font-family: 'MyriadPro-Regular';
  font-weight:bold;
  font-size:100%;
}
.moduletable.blocktitle{
  border-bottom:1px solid #fff;
  margin-bottom:30px;
}
.red .blocktitle h1{
  color:#fff;
  padding-top:0;
  margin-top:0;
}
.red .blocktitle h2{
  font-family: 'MyriadPro-Regular';
  font-weight:bold;
  font-size:100%;
  color:#fff;
  line-height:125%;
}
.red .moduletable.blocktitle{
  border-bottom:1px solid #fff;
  margin-bottom:30px;
}
.newsItemBlock{
  position:relative;
  display:block;
  width:33.333%;
  float:left;
  height:auto;
}
.newsItemBlock img, .newsItemBlockImage img, .pull-left img{
  width:100%;
  height:auto;
}
.newsItemBlock a{
  display:block;
  width:100%;
  height:auto;
  text-decoration:none;
  cursor:pointer;
}
.newsItemBlockInner{
  position:relative;
  display:block;
  margin:15px;
  padding:20px;
  background:#fff;
  color: #646567;
  -moz-box-shadow: 0px 0px 20px #333;
  -webkit-box-shadow: 0px 0px 20px #333;
  -o-box-shadow: 0px 0px 20px #333;
  -khtml-box-shadow: 0px 0px 20px #333;
  box-shadow: 0px 0px 20px #333;
}
.newsflash-title{
  color: #646567;
  font-size:150%;
  padding:0;
  margin:20px 0; 
}
.newsItemBlockImage{
  display:block;
  width:46%;
  height:auto;
  float:right;
}
.newsItemBlockInnerHighlight{
  display:block;
  width:47%;
  height:auto;
  float:left;
  text-align:left;
}

.right .newsItemBlockImage, .pull-left{
  display:block;
  width:46%;
  height:auto;
  float:left;
}
.right .newsItemBlockInnerHighlight, .bodytext{
  display:block;
  width:47%;
  height:auto;
  float:right;
  text-align:left;
}
.newsItemBlockInnerHighlight .spacer{
  padding:20px;
}
.asterix-ancor {
  height:8px;
}
.links h3, .rechts h3, .route h3{
  color:#fff;
  font-size:150%;
}
.links .moduletable{
  padding-right:35px;
}
.newsItemBlockInner .readmore{
  display:block;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  position:relative;
  bottom:0;
  width:100%;
  height:80px;
  line-height:30px;
  margin-top:-80px;
  padding-top:90px;
  z-index:3;
  margin-bottom:30px;
  font-family: 'BebasNeueRegular';
}
.visforms-form h1{
  font-size:150%;
  text-align:center;
}
.blocktitle h3{
  font-size:160%;
  margin-top:25px;
}
.route, .bt-googlemaps{
    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}
.route{
  border-top:1px solid #fff;
  margin:25px 0;
  padding-top:35px;
}
ul.usp li{
  position:relative;
  display:inline-block;
  background:#d10019;
  color:#fff;
  clear:both;
  font-family: 'BebasNeueRegular';
  margin-bottom:14px;
  font-size:150%;
  line-height:100%;
  padding:7px 7px 2px 7px;
  -ms-transform: rotate(-2deg);
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  -moz-box-shadow: 2px 2px 0px #646567;
  -webkit-box-shadow: 2px 2px 0px #646567;
  -o-box-shadow: 2px 2px 0px #646567;
  -khtml-box-shadow: 2px 2px 0px #646567;
  box-shadow: 2px 2px 0px #646567;
}
ul.usp li.grey{
  background:#646567;
}
h5{
  font-size:150%;
  color:#d10019;
  margin-top:30px;
  margin-bottom:25px;
}
.btn_balk{
  position:relative;
  display:inline-block;
  background:#d10019;
  color:#fff;
  clear:both;
  font-family: 'BebasNeueRegular';
  margin-top:15p;
  margin-bottom:14px;
  font-size:150%;
  line-height:100%;
  padding:7px 7px 2px 7px;
  -ms-transform: rotate(-1deg);
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
  -moz-box-shadow: 2px 2px 0px #646567;
  -webkit-box-shadow: 2px 2px 0px #646567;
  -o-box-shadow: 2px 2px 0px #646567;
  -khtml-box-shadow: 2px 2px 0px #646567;
  box-shadow: 2px 2px 0px #646567;
  text-decoration:none;
}
.btn_balk:hover{
  background:#646567;
  color:#fff;
  text-decoration:none;
}
a.link1, a.link2{
  display:block;
  width:49%;
  color:#fff;
  display:block;
  float:left;
  text-align:center;
  background:#d10019;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
}
a.link2{
  float:right;
}
a.link1:hover, a.link2:hover{
  color:#fff;
  text-decoration:none;
  background:#646567;
}
.moduletable.collecties{
  margin-top:35px;
}
.collecties h4{
  color:#d10019;
}
.newsItemBlock:nth-child(3n+4) {  
  clear:both;
}
.newsItemBlock img{
  width:85%;
}
ul.usp{
  margin:30px 0;
  padding:0;
}
.vuurwerkcollectie .item-page{
  text-align:left;
  padding:20px;
}
.pull-left{
  margin-top:-20px;
}
.route {
  color:#000;
}
.jpanelHandle{
 padding:0 !important;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  left:-34px !important;
  -moz-box-shadow: 0px 0px 10px #000;
  -webkit-box-shadow: 0px 0px 10px #000;
  -o-box-shadow: 0px 0px 10px #000;
  -khtml-box-shadow: 0px 0px 10px #000;
  box-shadow: 0px 0px 10px #000;
}
.jpanelContent{
  -moz-box-shadow: 0px 0px 10px #000;
  -webkit-box-shadow: 0px 0px 10px #000;
  -o-box-shadow: 0px 0px 10px #000;
  -khtml-box-shadow: 0px 0px 10px #000;
  box-shadow: 0px 0px 10px #000;
}
.jpanelContent h2{
  font-size:120%;
  margin-top:15px;
}
.rechts .bt-googlemaps{
  margin-bottom:35px;
}
input#field16_0, input#field16_1{
  display:block;
  float:left;
  clear:both;
  width:18px;
  vertical-align:middle;
}
#modvisform112vuurwerkshowlbl_0, #modvisform112vuurwerkshowlbl_1{
  display:block;
  width:85%;
  float:left;
  clear:none !important;
  margin-top:-1px;
}
.visCSSmargLeft{
  margin-left:15px;
}
form#mod-visform1 div.required > label.visCSSlabel.asterix-ancor:after, form#mod-visform1 div.required > label.visCSSlabel:after, form#mod-visform2 div.required > label.visCSSlabel.asterix-ancor:after, form#mod-visform2 div.required > label.visCSSlabel:after, form#mod-visform3 div.required > label.visCSSlabel.asterix-ancor:after, form#mod-visform3 div.required > label.visCSSlabel:after{
  color:#999;
}
.links.vuurwerkshow h1{
  text-align:left;
}
.footer{
  background:#000;
}
.itemBackToTop{
  display:none;
}
.itemImage, .innerItemContainer{
  display:block;
  background:#000;
  padding:12px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  background: -moz-linear-gradient(-45deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
background: -webkit-linear-gradient(-45deg, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
background: linear-gradient(135deg, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 );
  color:#fff;
}
.itemImage img{
  display:block;
  max-width:600px !important;
  width:50% !important;
  height:auto;
  float:none;
  margin:10px auto;
}
.itemContainer{
  position:relative;
  display:block;
  width:33.333%;
  float:left;
  height:auto;
}
.innerItemContainer{
  color:#fff;
  margin:15px;
  text-align:left;
}
.innerItemContainer h2{
  color:#fff;
  font-family: 'MyriadPro-BoldCond';
  font-size:170%;
  margin:15px 0 0 0;
  text-align:center;
}
.introtekst{
  color:#ccc;
  text-align:center;
  margin-bottom:12px;
  border-bottom:1px dotted #444;
  font-size:95%;
}
.moduleItemIntrotext{
  text-align:center;
}
div.k2LatestCommentsBlock ul, div.k2TopCommentersBlock ul, div.k2ItemsBlock ul, div.k2LoginBlock ul, div.k2UserBlock ul.k2UserBlockActions, div.k2UserBlock ul.k2UserBlockRenderedMenu, div.k2ArchivesBlock ul, div.k2AuthorsListBlock ul, div.k2CategoriesListBlock ul, div.k2UsersBlock ul{
  margin:0;
  padding:0;
}
div.k2LatestCommentsBlock ul li, div.k2TopCommentersBlock ul li, div.k2ItemsBlock ul li, div.k2LoginBlock ul li, div.k2ArchivesBlock ul li, div.k2AuthorsListBlock ul li, div.k2CategoriesListBlock ul li, div.k2UsersBlock ul li{
  margin:0 0 1px 0;
  padding:0;
}
.moduleItemExtraFields{
  font-size:95%;
  line-height:125%;
}
.moduleItemIntrotext img{
  width:auto;
  height:145px;
  margin-top:5px;
}
.moduleItemVideo iframe, .moduleItemVideo{
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  overflow:hidden;
}
.brand{
  width:50%;
  max-width:300px;
  height:auto;
  display:block;
  margin:5px auto 15px auto;
}
.visforms-form input, textarea{
  color:#FFF !important;
}
label.vis_mandatory{
  display:none !important;
}
.thumbvideo{
  position:relative;
  clear:both;
  width:100%;
  padding:0 10%;
  background:#000;
  height:auto;
  display:block;
  float:none;
  margin:12px auto 0 auto;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  overflow:hidden;
}
.playbtn{
  position:absolute;
  top:50%;
  left:50%;
  margin-left:-17px;
  margin-top:-12px;
}
.playvideo{
  position:relative;
  clear:both;
  display:block;
  width:100%;
  height:auto;
}
.playbtn:hover{
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.50;
  -khtml-opacity: 0.50;
  opacity: 0.50;
  -webkit-transition: opacity .15s ease-in-out;
  -moz-transition: opacity .15s ease-in-out;
  -ms-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
}
.intro-footer {
    position: absolute;
    display: block;
    bottom: 0;
    float: none;
    margin: 0 auto;
    width: 800px;
    float: left;
    left: 50%;
    margin-left: -400px;
    height: auto;
}
moreinfo.hide{
  display:none !important;
}
.fotopand{
  position:relative;
  display:inline-block;
  width:30%;
  height:auto;
  float:left;
  margin:0 35px 30px 0;
}
.contactinfo{
  position:relative;
  display:block;
  width:100%;
  height:auto;
  float:none;
  margin:0;
  text-align:left;
  padding:0 2.5%;
}
.fotopand img{
  position:relative;
  display:block;
  width:100%;
  height:auto;
}
.moduletable.blocktitle.contact{
  border:none !important;
}
.moduletable.blocktitle.contact h1{
  border-bottom: 1px solid #fff !important;
  margin-bottom: 30px;
}
.countriesImage{
  position:relative;
  display:block;
  width:100%;
  max-width:920px;
  height:auto;
  margin:0 auto;
  visibility:hidden;
}
@media all and (max-width:1400px){
  header nav {width:65%;}
}
@media all and (max-width:1300px){
  body {font-size: 18px;}
}
@media all and (max-width:1240px){
  body {font-size: 16px;}
  .blockSpacer{padding:25% 0;}
  header nav a {line-height: 75px;}
  .balk-white, .balk-red{height:36px; margin-top:-36px;}
}
@media all and (max-width:1100px){
  body {font-size: 15px;}
  .blockSpacer{padding:26% 0;}
  .prijzen .newsflashItemInner{margin:10px;}
  .newsItemBlockInnerHighlight, .right .newsItemBlockInnerHighlight, .bodytext{width:53%;}
  .newsItemBlockImage, .right .newsItemBlockImage, .pull-left {width:44%;}
  .fotopand{width:40%;}
}
@media (max-width: 1007px){
  .intro-footer{width:100%;left:0;height:auto;margin-left: 0;}
}
@media all and (max-width:975px){
  .prijzen .newsflashItemInner{margin:8px;}
}
@media all and (max-width:930px){
  body {font-size: 14px;}
  .blockSpacer h1{font-size:200%;}
  .blockSpacer h4{font-size:135%;}
}
@media all and (max-width:890px){
  body {font-size: 14px;}
  .prijzen .newsflashItem{width:50%;}
  div.links, div.rechts{width:100%;float:none;clear:both;}
  .team .newsflashItem {float:none !important; width:100% !important;clear:both;}
  header nav a {line-height:40px;margin-left:10px;}
  .collecties .newsItemBlock{width:50%;}
  .collecties .newsItemBlock:nth-child(3n+4) {clear:none;}
  .collecties .newsItemBlock:nth-child(2n+3) {clear:both;}
}
@media all and (max-width:750px){
  header .logo{width:30%;margin-top:15px;}
  header nav {width:70%;}
  header nav a{font-size:165%;}
  .blockSpacer h1{font-size:180%;padding:5px 8px 3px 8px;}
  .blockSpacer h4{font-size:135%;}
  .balk-white, .balk-red{height:28px; margin-top:-28px;}
  .fotopand{width:50%;}
}
@media all and (max-width:660px){
  header .logo{width:30%;}
  header.smaller .logo{width:20%;}
  header nav {width:70%;}
  .blockSpacer{padding:30% 0;}
  .telnr {width:200px;}
  .socialicon{width:28px;}
  .itemContainer{width:50%;}
}
@media all and (max-width:640px){
  header nav a {margin-left:10px;font-size:140%;line-height:35px;}
  header .logo{margin-top:0;}
  .blockSpacer{padding:39% 0;}
  .content .inner{padding:30px 0;width:100%;}
  .logoFooter{margin:30px auto;}
  header .container{width:92%;}
  .logoFooter{width:60%;max-width:270px;padding-top:25px;}
  .producten .newsflashItem{clear:both;margin-bottom:10px;float:none;width:100%;}
  .collecties .newsItemBlock:nth-child(2n+3) {clear:none;}
  .collecties .newsItemBlock {width:100%;clear:both;float:none;}
  .visforms-form{width:100%;}
  .links .moduletable{padding-right:0;}
  .newsItemBlockInnerHighlight, .right .newsItemBlockInnerHighlight, .bodytext {width:100%;float:none;}
  .newsItemBlockImage, .right .newsItemBlockImage, .pull-left {width:75%;float:none;margin:0 auto 15px auto;}
  .vuurwerkcollectie .item-page{padding:0 0 20px 0;}
  .white{text-shadow: 1px 1px 2px rgba(0,0,0,0.3);}
  .white h1, .white h2, .white .subtitle{text-shadow: 1px 1px 2px rgba(0,0,0,0.3);}
  .red{text-shadow: 1px 1px 2px rgba(0,0,0,0.3);}
}
@media all and (max-width:540px){
  body {font-size: 13px;}
  header nav a {margin-left:6px;font-size:160%;line-height: 35px;}
  .blockSpacer{padding:40% 0;}
  div.social img{width:auto;height:32px;}
  .telnr {width:180px;}
  .socialicon{width:25px;}
  header.smaller .logo{width:25%;}
  header.smaller nav a{line-height:50px;}
  header.smaller .telnr{width:130px;}
  .newsItemBlock {width:100%;clear:both;float:none;margin-bottom:25px;}
  .newsItemBlockInnerHighlight .spacer{padding:0 12px 12px 12px;}
  .blocktitle h2{font-size:110%;line-height:110%;letter-spacing:0;}
  header nav {width:70%;margin-top:10px;}
  .thumbvideo{padding:0;}
  .moduleItemIntrotext img{height:140px;}
  .balk-volt{height:36px;margin-top:-36px;}
  .balk-volt-bottom{height:36px;}
  .fotopand{width:74%;display:block;float:none;margin:10px auto 20px auto;}
}
@media all and (max-width:360px){
  body {font-size: 12px;}
  .newsItemBlockInnerHighlight .spacer{padding:0 10px 10px 10px;}
  .moduleItemIntrotext img{height:130px;}
  header.smaller nav a{line-height:40px;}
}
@media all and (max-width:320px){
  header nav a{font-size:130%;margin-left:8px;}
  header.smaller .logo{width:23%;}
}
@media all and (orientation:landscape) and (max-width:540px) {
   .blockSpacer{padding:40% 0;}
}
@media all and (orientation:portrait) and (max-width:540px) {
   .blockSpacer{padding:40% 0;}
}
