/* Main CSS file for Trendbureau theme */
/* Made by Jos Dalhuisen */
/* Import the fontfamilies from Google */
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,500,600");
/* Animate.css */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * 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.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

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

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

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

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

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

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* Import all the css files */
/* Global css lines e.g. header, footer, font styling, etc. */
* {
  margin: 0px;
  padding: 0px;
  outline: none;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-y: scroll;
  overflow-x: hidden;
}

body.fixed {
  overflow-y: hidden;
  overflow-x: hidden;
}

body, html {
  width: 100%;
  position: relative;
  z-index: -3;
  font-family: "Montserrat", sans-serif;
  color: #272d33;
  font-size: 16px;
  background: #272d33;
}

.hidden {
  overflow-y: hidden;
  overflow-x: hidden;
}

a, p, li {
  line-height: 1.8;
  font-weight: 300;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

a {
  text-decoration: none;
  color: #272d33;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.website-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 90;
  position: absolute;
  display: none;
}

.website-overlay-open {
  display: block !important;
}

.main-container {
  background: white;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: auto;
  position: relative;
}

@media (max-width: 1350px) {
  .content-content-container {
    padding: 0 35px;
  }
}

.default-page {
  padding: 80px 0px;
}

.bigger-text, .bigger-text p {
  font-size: 16px;
}

.bigger-text a {
  font-size: 16px;
  color: #f8b605;
}

.divider {
  margin: 25px auto;
  height: 2px;
  width: 60px;
  background: #f8b605;
}

.button {
  height: 52px;
  padding: 0px 40px;
  background: #0077c3;
  color: white;
  font-weight: 500;
  display: inline-block;
  font-size: 16px;
  line-height: 52px;
  -webkit-appearance: none;
  transition: all 0.2s ease-in-out;
}

.button:hover {
  box-shadow: inset 100vw 10px rgba(0, 0, 0, 0.15);
}

.banner {
  height: 103px;
  min-height: 103px;
  background-size: cover;
  background-position: right calc(50% + 25px), 50% calc(50% + 25px);
  position: relative;
}

.banner .container {
  color: white;
  text-align: center;
  top: calc(50% + 25px);
  transform: translateY(calc(-50% + 50px));
}

.banner.banner-small {
  height: 250px;
}

.banner.banner-smallest {
  height: 103px;
  min-height: 103px;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 153px;
  z-index: 999;
}

p img.alignleft {
  float: left;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
}
p img.alignright {
  float: right;
  padding-left: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
}
p img.aligncenter {
  margin: 0 auto;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
}

.header-top {
  display: none;
  background: #ecf3f8;
  width: 100%;
  height: 50px;
  position: fixed;
  z-index: 100;
  overflow: auto;
  overflow: hidden;
  top: 42px;
}
.header-top .mobile-logo {
  padding: 10px 0 5px 10px;
  height: 100%;
  display: inline-block;
}
.header-top .mobile-logo__img {
  width: 27px;
  height: auto;
}
.header-top .multi-site-menu {
  display: none;
}

.header-top .icons-right li {
  cursor: pointer;
  float: right;
  list-style: none;
  border-left: 1px solid #d4dadf;
}

.header-top .icons-right .search-icon {
  padding: 0;
}

.header-top .icons-right li:first-child {
  padding: 10px 12.5px;
  height: 30px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* cross browser fix*/
.header-top .icons-right li:last-child img {
  width: 17px;
}

.header-top .icons-right li:last-child .second {
  right: 66px;
}

.header-top .icons-right .second {
  position: absolute;
  top: 10px;
  opacity: 1;
  z-index: -1;
}

.header-top .icons-right li:last-child {
  padding: 10px 16px;
  opacity: 1;
  height: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.header-top .icons-right li:hover img:first-child {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.header-top .multi-site-menu li {
  float: left;
  border-right: 1px solid #d4dadf;
  list-style: none;
}

.header-top .multi-site-menu li a {
  padding: 10px;
  display: block;
  height: 30px;
}

.header-top .multi-site-menu li a img {
  opacity: 0.15;
  transition: all 0.2s ease-in-out;
  width: auto;
  height: 100%;
}

.header-top .multi-site-menu li.active a img {
  opacity: 1;
}

.header-top .multi-site-menu li:hover a img {
  opacity: 1;
}

.header-top .search-icon {
  float: right;
  padding: 13px;
  cursor: pointer;
}

.header-top .mobile-menu-icon {
  float: right;
  cursor: pointer;
  list-style: none;
  vertical-align: middle;
  border-left: 1px solid #d4dadf;
  height: 50px;
  width: 50px;
  background: url(../images/icons/menu.png);
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.header-top .mobile-menu-icon {
  display: none;
}

.header-top .mobile-menu-icon-open {
  background: url(../images/icons/close-menu.png) !important;
  background-size: 16px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.header-top .mobile-menu-drop {
  position: relative;
  z-index: 999;
  background: white;
  top: 0px;
}

.header-top .mobile-menu {
  position: absolute;
  width: 100%;
  right: 0px;
  top: 0px;
  height: auto;
  display: none;
  overflow: auto;
  max-height: calc(100vh - 50px);
}

.header-top .mobile-menu-open {
  display: block;
}

.header-top .mobile-nav {
  position: relative;
  background: white;
  display: none;
}
.header-top .extra-buttons {
  height: auto;
  line-height: 35px;
  box-sizing: border-box;
  padding: 15px;
  border-bottom: 1px solid #d4dadf;
}
.header-top .extra-buttons .button {
  height: unset;
  padding: 0;
  line-height: unset;
  display: flex;
  align-items: center;
  background-color: transparent;
  color: #272d33;
  line-height: 1.8;
  font-weight: 300;
  font-size: 14px;
}
.header-top .extra-buttons .button:hover {
  box-shadow: none;
}
.header-top .extra-buttons .button img {
  margin-right: 5px;
  filter: invert(0%) sepia(97%) saturate(22%) hue-rotate(203deg) brightness(89%) contrast(100%);
}

.header-top .mobile-nav-open {
  display: block !important;
}

.header-top .mobile-nav li {
  height: auto;
  line-height: 35px;
  box-sizing: border-box;
  padding: 15px;
  border-bottom: 1px solid #d4dadf;
}

ul .sub-menu li {
  border-bottom: none !important;
}

.mobile-search-field {
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-search-field input {
  border: none;
  height: 60px;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 50px 0px 15px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  background: #ecf3f8;
}

.mobile-search-field .mobile-button {
  height: 50px;
  width: 50px;
  background: #ecf3f8;
  color: white;
  font-weight: 500;
  position: absolute;
  top: 50%;
  right: 15px;
  cursor: pointer;
  padding: 15px;
  transform: translateY(-50%);
  -webkit-appearance: none;
}

.social-icons-adviseur {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start;
}
.social-icons-adviseur .cnss-social-icon {
  position: relative !important;
  top: 0 !important;
  right: 0 !important;
}

.header-bottom {
  width: 100%;
  position: absolute;
  padding: 0px 25px;
  top: 40px;
  box-sizing: border-box;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header-bottom .button-container {
  min-width: 343px;
  width: 343px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .header-bottom .button-container {
    min-width: 170px;
    width: 170px;
  }
  .header-bottom .button-container .offerte-aanvragen {
    display: none;
  }
}
.header-bottom .button-container .offerte-aanvragen {
  margin-right: 10px;
  background-color: #15135f !important;
}
.header-bottom .button-container .offerte-aanvragen img {
  max-width: 23px;
}
.header-bottom .button {
  position: relative;
  z-index: 15;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 20px;
}
.header-bottom .button img {
  max-width: 15px;
  margin-right: 10px;
}
.header-bottom__bar {
  box-sizing: border-box !important;
  width: 100%;
  height: 42px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 25px;
}
.header-bottom__bar .menu {
  display: flex;
  padding-left: 0;
  list-style-type: none;
}
.header-bottom__bar .menu li {
  margin-right: 47px;
}
.header-bottom__bar .menu li a:hover {
  text-decoration: underline;
}
.header-bottom__bar .language-switcher {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  box-sizing: border-box !important;
}
.header-bottom__bar .language-switcher li {
  text-transform: uppercase;
  box-sizing: border-box !important;
}
.header-bottom__bar .language-switcher li a {
  font-size: 14px;
}
.header-bottom__bar .language-switcher li:last-of-type:after {
  display: none;
}
.header-bottom__bar .language-switcher li:after {
  content: "/";
  margin: 0 4px;
}
.header-bottom__bar .language-switcher li.current-lang a {
  font-weight: bold;
  border-bottom: 1px solid #ff7900;
}

.sticky .header-bottom {
  position: fixed;
  padding: 20px 25px;
  background: white;
  top: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.sticky-logo {
  height: 50px;
}

.header-bottom .sticky-logo, .sticky .header-bottom .normal-logo {
  display: none;
  pointer-events: auto;
}

.sticky .header-bottom .sticky-logo, .header-bottom .normal-logo {
  min-width: 225px;
  display: inline-block;
  pointer-events: auto;
}
@media (max-width: 1100px) {
  .sticky .header-bottom .sticky-logo, .header-bottom .normal-logo {
    min-width: 170px;
  }
}

.header-bottom .menu li:not(.sub-menu li) {
  margin-left: 15px;
}
.header-bottom .menu li {
  display: inline-block;
  list-style: none;
  position: relative;
}

.page-contact .menu-header-menu-container li > a {
  color: #fff;
}

.page-contact .menu-header-menu-container li a + ul li a {
  color: #000;
}

.sticky .menu-header-menu-container li {
  margin-top: 10px;
}

.sticky .menu-header-menu-container .sub-menu li {
  margin-top: 0px;
}

.menu-header-menu-container li a {
  color: #000;
  position: relative;
  padding: 10px 10px;
  display: block;
  z-index: 1;
  pointer-events: auto;
  transition: all 0.2s ease-in-out;
}

.menu-header-menu-container li.current-menu-item > a {
  color: #fff;
}

/* .menu-header-menu-container li.current-menu-item a{
	color: #fff;
} */
.menu-header-menu-container li a:hover {
  text-decoration: underline;
}

.sticky .menu-header-menu-container li a {
  color: #272d33;
}

.menu-header-menu-container li:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0px;
  width: 0%;
  height: calc(100% - 20px);
  background: #d0004d;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.menu-header-menu-container li.current-menu-item:after {
  width: 100%;
}

.sticky .menu-header-menu-container li.current-menu-item a {
  color: white;
}

.sub-menu {
  position: absolute;
  background: #ecf3f8;
  left: -10px;
  top: 50px;
  display: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.sub-menu.toggle {
  display: block;
}

.sub-menu li {
  margin-left: 0px;
  width: 200px;
  padding: 0px !important;
  box-sizing: border-box;
}

.sub-menu li a {
  padding: 15px 20px;
  color: #272d33;
}

.sub-menu .sub-menu {
  left: 180px;
  top: 0px;
}

.sub-menu li:hover, .sub-menu li.current-menu-item {
  background: #d0004d;
}

.sub-menu li.current-menu-item:after {
  display: none !important;
}

.sub-menu li:hover a {
  color: white !important;
}

.sub-menu li:hover .sub-menu li a {
  color: #272d33 !important;
}

.sub-menu li.current_page_parent > .sub-menu li.current-menu-item a {
  color: white !important;
}

.sub-menu li:hover .sub-menu li a {
  color: #272d33;
}

.sub-menu li .sub-menu li:hover a {
  color: white !important;
}

.breadcrumbs {
  position: absolute;
  top: 270px;
  left: 35px;
  font-weight: 300;
  font-size: 14px;
}

.breadcrumbs a {
  color: #d0004d;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs img {
  margin: 0px 5px;
}

.banner .breadcrumbs {
  color: #9CA6B0;
  top: inherit;
  bottom: 20px;
}

.news-letter {
  padding: 50px 0px;
}
@media (max-width: 1350px) {
  .news-letter {
    padding: 50px 30px;
  }
}

.news-letter .news-half {
  width: calc(50% - 20px);
  display: inline-block;
  vertical-align: top;
}

.news-letter .news-half h2 {
  margin: 25px 0px;
}

.news-letter .gfield_label {
  display: none !important;
}

.news-letter input {
  background: #f7fafd;
  border: 0px;
  height: 60px;
  padding: 0px 20px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
  font-size: 16px !important;
}

.news-letter input.button {
  height: 60px;
  padding: 0px 40px !important;
  background: #0077c3;
  color: white;
  font-weight: 500;
  display: inline-block;
  font-size: 16px;
  line-height: 60px;
  cursor: pointer;
  margin: 0px !important;
  -webkit-appearance: none;
}

.news-letter input.medium {
  width: 100% !important;
  padding: 0px 135px 0px 20px !important;
}

.news-letter .gform_footer {
  width: auto !important;
  display: inline-block !important;
  position: absolute !important;
  top: 0px !important;
  right: 0px !important;
  margin: 0px !important;
}

.news-letter .gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  padding: 0px !important;
  margin: 0px !important;
  border: 0px !important;
  background: none !important;
}

.news-letter .gform_wrapper .field_description_below .gfield_description {
  padding-top: 0px !important;
}

/* Floating menu */
.floating-menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.floating-menu ul {
  list-style: none;
}

.floating-menu .floating-list {
  position: absolute;
  display: inline-block;
  vertical-align: bottom;
  right: 30px;
  bottom: 20px;
}
@media (max-width: 768px) {
  .floating-menu .floating-list {
    right: 10px;
    bottom: 10px;
  }
}

.floating-menu .share-menu {
  width: 50px;
}

.floating-menu .share-menu ul.cnss-social-icon {
  position: relative;
  top: 0px;
  transform: none;
}

.floating-menu .share-menu ul.cnss-social-icon li {
  margin: 15px 0px !important;
  display: none;
}

.floating-menu .share-menu ul.cnss-social-icon li a {
  height: 40px !important;
  width: 40px !important;
  padding: 9px !important;
  margin: auto !important;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2) !important;
}

.floating-menu .share-menu ul.cnss-social-icon li a:hover {
  height: 50px !important;
  width: 50px !important;
  padding: 14px !important;
}

.floating-menu ul.cnss-social-icon li.cn-fa-linkedin a {
  background: #007bb6 !important;
}

.floating-menu ul.cnss-social-icon li.cn-fa-twitter a {
  background: #4099FF !important;
}

.floating-menu ul.cnss-social-icon li.cn-fa-facebook a {
  background: #3b5998 !important;
}

.floating-menu ul.cnss-social-icon li.cn-fa-google-plus a {
  background: #d34836 !important;
}

.floating-menu .float-button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  background-color: white;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
  pointer-events: visible;
}

.floating-menu .share-button {
  background-image: url("../images/icons/share.png");
}

.floating-menu .share-button:hover, .floating-menu .share-menu.active .share-button {
  background-image: url("../images/icons/share-white.png");
  background-color: #a8b5be;
}

.floating-menu .contact-button {
  background-image: url("../images/icons/phone.png");
}

.floating-menu .contact-button:hover, .floating-menu .contact-menu.active .contact-button {
  background-image: url("../images/icons/phone-white.png");
  background-color: #a8b5be;
}

.floating-menu .form-block {
  right: -501px;
  bottom: 0;
  display: inline-block;
  position: absolute;
  width: 500px;
  vertical-align: top;
  padding: 40px !important;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease-in-out;
  pointer-events: visible;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .floating-menu .form-block {
    bottom: unset;
    top: 0;
    width: 100vw;
    height: 100%;
    right: -100vw;
    overflow-y: scroll;
  }
}
.floating-menu .form-block .close {
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .floating-menu .form-block .close {
    right: 15px;
  }
}
.floating-menu .form-block .close img {
  width: 20px;
}

.floating-menu .form-block.shown {
  right: 0px;
}

.floating-menu .form-block a {
  text-decoration: underline;
  color: #d0004d;
}

.floating-menu .form-block p {
  font-size: 16px;
}

.floating-menu .gform_wrapper {
  margin: 0px !important;
}

.floating-menu .form-block .gform_wrapper .top_label input {
  height: 40px;
  line-height: 40px !important;
  font-size: 14px !important;
}

.floating-menu .form-block .gform_wrapper .top_label textarea {
  font-size: 14px !important;
}

.floating-menu .close-form-block {
  height: 15px;
  width: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: url(../images/icons/close.png);
  background-size: cover;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #F8F8F8;
}

.footer-top {
  padding: 35px 0px;
  background-color: #F8F8F8 !important;
}

.menu-footer-menu-container {
  display: inline-block;
  margin-left: 20px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.menu-footer-menu-container li {
  display: inline-block;
  margin-left: 30px;
  list-style: none;
}

.menu-footer-menu-container li a {
  transition: all 0.2s ease-in-out;
}

.menu-footer-menu-container li a:hover {
  text-decoration: underline;
}

#content-content .posts > * {
  padding-top: 1em;
}

ul.cnss-social-icon {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}

.post-bottom .cnss-social-icon {
  position: relative;
  display: block;
  top: 0;
  right: 0;
  transform: none;
}

.post-bottom {
  text-align: center;
}

ul.cnss-social-icon li {
  display: inline-block;
}

ul.cnss-social-icon li.cn-fa-icon a {
  width: 30px !important;
  height: 30px !important;
}

ul.cnss-social-icon li.cn-fa-youtube a:hover {
  background: #b31217 !important;
}

ul.cnss-social-icon li.cn-fa-linkedin a:hover {
  background: #007bb6 !important;
}

ul.cnss-social-icon li.cn-fa-twitter a:hover {
  background: #4099FF !important;
}

ul.cnss-social-icon li.cn-fa-facebook a:hover {
  background: #3b5998 !important;
}

ul.cnss-social-icon li.cn-fa-google-plus a:hover {
  background: #d34836 !important;
}

.footer-bottom {
  background: #a8b5be;
  padding: 20px 0px;
  color: white;
}

.footer-bottom p {
  display: inline-block;
  color: white;
}

.menu-footer-copyright-menu-container {
  display: inline-block;
  float: right;
}

.menu-footer-copyright-menu-container li {
  display: inline-block;
  margin-left: 30px;
  list-style: none;
}

.menu-footer-copyright-menu-container li a {
  color: white;
  transition: all 0.2s ease-in-out;
}

.menu-footer-copyright-menu-container li a:hover {
  text-decoration: underline;
}

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

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

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

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

.mobile-menu-arrow {
  position: absolute;
  right: 15px;
  margin-top: 4px;
  font-size: 24px;
  color: #be1152;
  display: none;
  cursor: pointer;
  background-image: url("../images/icons/arrow-down-red.png");
  background-size: 11px;
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
}

.header-top .mobile-nav li a {
  display: block;
}

.header-top .mobile-nav .menu-item-has-children a {
  padding-right: 50px;
}

.spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 10000000;
  background: white;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.back-button-container {
  display: flex;
  justify-content: flex-end;
}
.back-button-container .button {
  margin: unset !important;
}

.page-title-container {
  text-align: left;
  margin-top: 80px;
  margin-bottom: 40px;
}
.page-title-container .divider {
  margin: 25px 0 0 0;
}
.page-title-container .tag-card {
  background-color: #fff;
  font-size: 12px;
  padding: 5px 8px 5px 7px;
  margin-top: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  display: inline-block;
  text-transform: capitalize;
}
.page-title-container .tag-card .cross {
  margin-right: 4px;
  display: inline-block;
}

.page-image-container {
  margin-top: 0px;
}
.page-image-container img {
  width: 100%;
}

.has-header .page-title-container {
  margin-top: 20px;
}
.has-header .page-image-container {
  margin-top: 80px;
}

.banner.contact-banner {
  height: 450px;
}

.breadcrumbs {
  position: relative;
  top: 0;
  left: 0;
  max-width: 750px;
  margin: 0 auto;
}

.header-banner {
  height: 153px !important;
  min-height: 153px !important;
  background-color: #fff !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1100px) {
  .header-banner {
    height: 119px !important;
    min-height: 119px !important;
  }
}
@media (max-width: 920px) {
  .header-banner {
    height: 91px !important;
    min-height: 50px !important;
  }
}

.loggedin-container {
  position: relative;
  display: flex;
  padding-bottom: 10px;
  margin-bottom: -10px;
}
.loggedin-container:hover .loggedin-container__menu {
  display: block;
  opacity: 1;
}
.loggedin-container__image {
  width: 38px;
  height: 38px;
  background-color: #ff7900;
  border-radius: 38px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loggedin-container__info {
  display: flex;
  flex-direction: column;
}
.loggedin-container__info .name {
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.loggedin-container__info .name img {
  margin-left: 5px;
}
.loggedin-container__info .company {
  font-weight: 100;
  font-size: 12px;
}
.loggedin-container__menu {
  display: none;
  position: absolute;
  bottom: 0px;
  right: 0;
  transform: translateY(100%);
  background-color: #ecf3f7;
  list-style-type: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}
.loggedin-container__menu li {
  height: 54px;
  width: 200px;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  justify-content: center;
}
.loggedin-container__menu li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
}
.loggedin-container__menu li a svg {
  margin-right: 19px;
}
.loggedin-container__menu li a svg .cogwheel, .loggedin-container__menu li a svg .exit, .loggedin-container__menu li a svg .dashboard {
  filter: brightness(0) invert(1);
}
.loggedin-container__menu li a:hover {
  background-color: #ff7900;
  color: #fff !important;
}
.loggedin-container__menu li a:hover .cogwheel, .loggedin-container__menu li a:hover .exit, .loggedin-container__menu li a:hover .dashboard {
  filter: brightness(0) invert(1);
}

.arrow-link {
  color: #ff7900;
  font-size: 12px;
}
.arrow-link.left-arrow:before {
  content: "";
  position: relative;
  background-image: url(../../assets/images/arrow-orange-left.svg);
  width: 6px;
  height: 10px;
  display: inline-block;
  margin-right: 7px;
}
.arrow-link.right-arrow:after {
  content: "";
  position: relative;
  background-image: url(../../assets/images/arrow-orange-right.svg);
  width: 6px;
  height: 10px;
  display: inline-block;
  margin-left: 7px;
}

.menu-icon a:not(.sub-menu a) {
  display: flex;
  align-items: center;
}
.menu-icon a:not(.sub-menu a):before {
  content: "";
  position: relative;
  height: 26px;
  margin-right: 22px;
}
.menu-icon--dashboard a:not(.sub-menu a):before {
  content: url(../images/dashboard.svg);
}
.menu-icon--project a:not(.sub-menu a):before {
  content: url(../images/calendar.svg);
}
.menu-icon--offers a:not(.sub-menu a):before {
  content: url(../images/calculator.svg);
}
.menu-icon--documents a:not(.sub-menu a):before {
  content: url(../images/paper.svg);
}
.menu-icon--settings a:not(.sub-menu a):before {
  content: url(../images/settings.svg);
}
.menu-icon--exit a:not(.sub-menu a):before {
  content: url(../images/exit.svg);
}
.menu-icon--make-offer a:not(.sub-menu a):before {
  content: url(../images/percentages.svg);
}

#main-cases .page-title-container, #main-news .page-title-container {
  text-align: center !important;
  margin-top: 0;
}

.single-page.has-image .page-title-container {
  margin-top: 30px;
  margin-bottom: 0;
}
.single-page.has-image .page-image-container {
  margin-top: 0px;
}
.single-page .tag-container {
  margin-bottom: 15px;
}
.single-page .tag-container .tag-card {
  color: #000;
  margin-right: 5px;
  transform-origin: center center;
  transition: 0.1s ease;
}
.single-page .tag-container .tag-card:hover {
  transform: scale(1.05);
  text-decoration: none;
}
.single-page .content-block {
  text-align: left !important;
}
.single-page .breadcrumbs {
  margin-top: 20px;
}
.single-page__content {
  padding-top: 20px !important;
  padding-bottom: 0px !important;
}

#main-evenementen .page-title-container {
  text-align: center;
  margin-bottom: 25px;
  margin-top: 0 !important;
}
#main-evenementen .page-title-container .divider {
  margin: 25px auto;
}
#main-evenementen .post-content {
  color: #292929 !important;
}
#main-evenementen .post-item .time p {
  background-color: #fff;
}
#main-evenementen .titel-container h2 {
  margin-bottom: 15px;
}
#main-evenementen .search-date {
  background-color: #8a898b;
  color: #fff;
}
#main-evenementen .search-date p {
  font-weight: bold;
}
#main-evenementen .search-date svg, #main-evenementen .search-date img {
  filter: brightness(0) invert(1);
}

#main-team .page-title-container {
  text-align: center !important;
}

#single-team .content-team {
  width: 100%;
  max-width: 1260px;
  margin: auto;
  box-sizing: border-box !important;
  display: flex;
}
#single-team .content-team .left {
  text-align: left;
  box-sizing: border-box !important;
  padding: 68px 122px 67px 0;
}
@media (max-width: 1350px) {
  #single-team .content-team .left {
    padding: 68px 122px 67px 30px;
  }
}
#single-team .content-team .left h2 {
  color: #000;
}
#single-team .content-team .left .bigger-text {
  font-size: unset !important;
}
#single-team .content-team .left .bigger-text p {
  font-size: 14px !important;
}
#single-team .content-team .right {
  position: relative;
  width: 600px;
  box-sizing: border-box;
  padding: 68px 0px 60px 106px;
  color: #fff;
}
@media (max-width: 1350px) {
  #single-team .content-team .right {
    padding: 68px 30px 0 106px;
  }
}
#single-team .content-team .right:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: calc(100vw - 600px);
  height: 100%;
  background-color: #15135f;
}
#single-team .content-team .right:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: calc(100vw - 600px);
  height: 100%;
  background-image: url("../../assets/images/pattern-overlay.png");
}
#single-team .content-team .right * {
  box-sizing: border-box !important;
}
#single-team .content-team .right .related-items {
  background-color: transparent !important;
  position: relative;
  z-index: 3;
}
#single-team .content-team .right .bigger-text {
  margin-top: 0;
  position: relative;
  z-index: 3;
}
#single-team .content-team .right .post-items {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  box-sizing: border-box !important;
}
#single-team .content-team .right .post-items .post-content {
  height: unset !important;
  width: auto;
  padding: 0 !important;
}
#single-team .content-team .right .post-items .button {
  margin: 0 !important;
}
#single-team .content-team .right .post-items .post-item {
  margin: 0;
  margin-bottom: 18px;
  height: 109px;
  width: 100%;
  display: flex;
}
#single-team .content-team .right .post-items .post-item .category-label {
  position: relative;
  display: inline-block;
  top: 0;
  right: 0;
  font-size: 12px;
}
#single-team .content-team .right .post-items .post-item .post-content {
  position: relative;
  display: inline-block;
  width: calc(100% - 109px);
  padding: 14px 21px 0 21px !important;
}
#single-team .content-team .right .post-items .post-item .post-content h3 {
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 34px;
}
#single-team .content-team .right .post-items .post-item .post-content .orange-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
#single-team .content-team .right .post-items .post-item .post-item-img {
  max-height: 109px;
  height: 109px;
  display: inline-block;
  flex: 0 0 109px;
}
#single-team .content-team .right .post-items .post-item .post-item-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 950px) {
  #single-team .content-team {
    flex-direction: column;
  }
  #single-team .content-team .left {
    width: 100%;
    padding: 68px 30px;
  }
  #single-team .content-team .right {
    width: 100%;
    padding: 68px 30px;
  }
  #single-team .content-team .right:after, #single-team .content-team .right:before {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1350px) {
  #main {
    padding: 40px 30px;
  }
}

@media (max-width: 1350px) {
  #main-single {
    padding: 0 30px;
  }
}

@media (max-width: 1350px) {
  #main-team {
    padding: 0 30px;
  }
}

@media (max-width: 1350px) {
  #main-news .nieuws {
    padding: 80px 30px;
  }
}

@media (max-width: 1350px) {
  #main-evenementen .evenementen {
    padding: 80px 30px;
  }
}

@media (max-width: 1350px) {
  #main-cases .cases {
    padding: 80px 30px;
  }
}

#main-content-page .tekst-block {
  padding: 0;
}
@media (max-width: 1350px) {
  #main-content-page {
    padding: 40px 30px;
  }
}

/* CSS files per page/sections */
.home-banner {
  height: 100vh;
  min-height: 600px;
  max-height: calc(100vh - 200px);
  background-size: cover;
  background-position: right calc(50% + 25px), 50% calc(50% + 25px);
  position: relative;
}

.home-banner .container {
  transform: translate(-50%, calc(-50% + 25px));
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
}

.home-banner h1, .home-banner h3 {
  color: white;
}

.home-banner h3 {
  margin-bottom: 40px;
}

.engagement-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.search-field {
  max-width: 800px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.search-field input {
  border: none;
  height: 60px;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 190px 0px 20px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.search-field .button {
  height: 60px;
  width: 150px;
  background: #0077c3;
  color: white;
  font-weight: 500;
  padding: 0px 40px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}

.header-arrow {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  position: absolute;
  bottom: -22.5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}

.header-arrow:hover {
  bottom: -15px;
}

.header-arrow img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.content-block {
  text-align: center;
  padding: 40px 0px;
  margin: auto;
}

.content-block .container {
  max-width: 750px;
}

.content-block h2 {
  margin-bottom: 10px;
}

.contact-block {
  position: relative;
  box-sizing: border-box !important;
  background-size: cover;
  padding: 72px 0px;
  color: white;
  line-height: 60px;
  height: 205px;
  background-color: #15135f;
  overflow: hidden;
}
.contact-block .container {
  box-sizing: border-box !important;
  position: unset;
  padding-right: 219px;
}
.contact-block .arrows {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.contact-block .arrows svg {
  height: 100% !important;
}
.contact-block .arrows svg:first-of-type {
  transform: translateX(75px);
}
.contact-block .arrows svg:last-of-type {
  transform: translateX(30px);
}
@media (max-width: 1160px) {
  .contact-block {
    padding: unset 0px;
    height: auto;
  }
  .contact-block .arrows {
    display: none;
  }
  .contact-block .container {
    text-align: center;
    padding-right: 0px;
  }
  .contact-block .button {
    float: none;
    margin: 5px 10px !important;
  }
  .contact-block .button-holder {
    margin: 10px 0px;
    float: none !important;
  }
}

.contact-block h2 {
  max-width: 640px;
  line-height: 1;
  display: inline-block;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.contact-block .button-holder {
  float: right;
}

.contact-block .button {
  height: 60px;
  padding: 0px 40px;
  background: #0077c3;
  color: white;
  font-weight: 500;
  line-height: 60px;
  cursor: pointer;
}

.content-blocks {
  overflow: auto;
}

.home-block {
  position: relative;
  width: 100%;
  text-align: center;
  color: white;
  margin: 93px 0;
  display: flex;
  flex-direction: row-reverse;
}
.home-block .big-block {
  width: calc(100% - 424px);
  height: 100%;
  position: relative;
  height: auto;
}
.home-block .small-block {
  max-width: 424px;
  width: 100%;
  padding: 35px 50px;
  background: #15135f !important;
  position: relative;
  box-sizing: border-box !important;
  text-align: left !important;
}
.home-block .small-block .divider {
  margin: 25px 0;
}
.home-block .small-block .wrap a {
  font-weight: 500;
  color: white;
  margin-top: 20px;
  display: inline-block;
}
.home-block .small-block .wrap a img {
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 10px;
  border-radius: 50%;
  position: relative;
  margin-left: 10px;
  top: 9px;
  transition: all 0.2s ease-in-out;
}
.home-block .small-block .wrap a:hover img {
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 900px) {
  .home-block {
    flex-direction: column;
  }
  .home-block .big-block {
    width: 100% !important;
    height: 379px;
  }
  .home-block .small-block {
    max-width: unset !important;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .home-block .big-block {
    width: 100% !important;
    height: 215px;
  }
}

.video-block .video iframe {
  border: 0px;
  height: 100%;
  width: 100%;
}

.image-block .image {
  display: block;
  position: relative;
  overflow: hidden;
}

.image-block .image img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-block {
  background-color: rgba(33, 40, 64, 0.5);
  text-align: center;
  padding: 80px 0px;
  color: white;
  position: relative;
}

.block-grid .block {
  background: #f2f2f2;
  padding: 30px 20px;
  width: calc(20% - 12px);
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  margin: 15px 7.5px 0px 7.5px;
  vertical-align: top;
  transition: all 0.2s ease-in-out;
}

.block-grid .block * {
  transition: all 0.2s ease-in-out;
}

.block-grid .block:first-child {
  margin: 15px 7.5px 0px 0px;
}

.block-grid .block:last-child {
  margin: 15px 0px 0px 7.5px;
}

.block-grid .block .image {
  height: 60px;
  width: 60px;
  margin: auto;
  background-color: #ff7900;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35px;
  border-radius: 50%;
  margin-bottom: 30px;
}

.block-grid .block .image.recycle {
  background-image: url("../../images/icons/recycle.png");
}

.block-grid .block .image.box {
  background-image: url("../../images/icons/box.png");
}

.block-grid .block .image.coating {
  background-image: url("../../images/icons/coating.png");
}

.block-grid .block .image.sensor {
  background-image: url("../../images/icons/sensor.png");
}

.block-grid .block .image.support {
  background-image: url("../../images/icons/support.png");
}

.block-grid .block .image.lab {
  background-image: url("../../images/icons/lab.png");
}

.block-grid .block .image.automation {
  background-image: url("../../images/icons/automation.png");
}

.block-grid .block .image.heart {
  background-image: url("../../images/icons/heart.png");
}

.block-grid .block h3 {
  height: 50px;
  line-height: 1.2;
}

.block-grid .block p {
  color: #8a898b;
}

.block-grid .block:hover {
  background: #15135f;
}

.block-grid .block:hover p, .block-grid .block:hover h3 {
  color: white;
}

.block-grid .block:hover .image, .block-grid.four .block:hover .image {
  background-color: white;
}

.block-grid .block:hover .image.recycle {
  background-image: url("../../images/icons/recycle-orange.png");
}

.block-grid .block:hover .image.box {
  background-image: url("../../images/icons/box-orange.png");
}

.block-grid .block:hover .image.coating {
  background-image: url("../../images/icons/coating-orange.png");
}

.block-grid .block:hover .image.sensor {
  background-image: url("../../images/icons/sensor-orange.png");
}

.block-grid .block:hover .image.support {
  background-image: url("../../images/icons/support-orange.png");
}

.block-grid .block:hover .image.lab {
  background-image: url("../../images/icons/lab-green.png");
}

.block-grid .block:hover .image.automation {
  background-image: url("../../images/icons/automation-green.png");
}

.block-grid .block:hover .image.heart {
  background-image: url("../../images/icons/heart-green.png");
}

.block-grid.four .block {
  width: calc(25% - 11.5px);
}

.block-grid.four .block .image {
  background-color: #97ad45;
}

.block-grid.four .block:hover {
  background: #14676c;
}

.block-grid.four .block:hover .image.recycle {
  background-image: url("../../images/icons/recycle-green.png");
}

.team-block h2 {
  margin-bottom: 10px;
}

.team-carrousel {
  width: 100%;
  position: relative;
  margin: auto;
}

.team-carrousel-outer {
  padding: 80px 0px;
  overflow: hidden;
}

.team-carrousel-inner {
  position: relative;
  margin: auto;
}

.carrousel-nav {
  width: calc(100% + 25px);
  position: absolute;
  left: -12.5px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.carrousel-nav .arrow {
  width: 35px;
  height: 35px;
  background: white;
  top: 0px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
}

.carrousel-nav .arrow:hover {
  top: -5px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.carrousel-nav .arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carrousel-nav .carrousel-left {
  transform: rotate(180deg);
  float: left;
  display: none;
}

.carrousel-nav .carrousel-right {
  float: right;
}

.team-block .button {
  background: #d0004d;
}

.team-background {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.network-block {
  background-color: #f8f8f8;
}
.network-block h2 {
  margin-bottom: 25px !important;
}
.network-block .post-items {
  position: relative;
}
.network-block .post-items__inner {
  position: relative;
  display: flex;
  height: 197px !important;
}
.network-block .slick-track {
  height: 100%;
  height: 197px;
}
.network-block .slick-list {
  margin: 0 -7px !important;
  padding: 20px 0;
}
.network-block .slick-slider {
  height: 100%;
}
.network-block .prev, .network-block .next {
  position: absolute;
  width: 43px;
  height: 43px;
  background-color: #ff7900;
  border-radius: 43px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 91;
  box-shadow: none;
  background-size: auto 11px !important;
}
.network-block .prev:hover, .network-block .next:hover {
  transform: translateY(-50%) scale(1.1);
  background-color: #ff7900;
}
.network-block .prev {
  left: -30px !important;
  background-image: url("../images/icons/arrow-right-white.png");
  transform: translateY(-50%) scale(1) rotate(180deg);
}
.network-block .prev:hover {
  transform: translateY(-50%) scale(1.1) rotate(180deg);
  background-color: #ff7900;
}
.network-block .next {
  right: -30px !important;
  background-image: url("../images/icons/arrow-right-white.png");
}
.network-block__item {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  margin: 0 7px !important;
}
.network-block__item img {
  position: absolute;
  width: calc(100% - 60px);
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (max-width: 768px) {
  .network-block__item img {
    width: calc(100% - 19px);
  }
}
.network-block__button {
  display: flex;
  align-items: center;
}

.home-post-block {
  position: relative;
  background-color: #f2f2f2;
  padding: 93px 0 !important;
  min-height: 312px !important;
}
.home-post-block .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.2;
}
.home-post-block .container {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15) !important;
  box-sizing: border-box !important;
}
.home-post-block .container .left, .home-post-block .container .right {
  width: 50%;
  text-align: left;
  box-sizing: border-box !important;
}
.home-post-block .container .left img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-post-block .container .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 34px 43px;
}
.home-post-block .container .right .divider {
  margin: 0 0 15px 0;
}
.home-post-block .container .right .button {
  margin: 40px 0px 0px;
}
.home-post-block .container .right p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 76px;
  max-height: 76px !important;
}
.home-post-block.switch {
  background-color: #fff !important;
}
.home-post-block.switch .container {
  flex-direction: row-reverse;
  background-color: #15135f;
}
.home-post-block.switch .container .right {
  padding: 34px 43px 34px 34px;
}
.home-post-block.switch .container .right h2, .home-post-block.switch .container .right p {
  color: #fff;
}
@media (max-width: 900px) {
  .home-post-block {
    height: auto !important;
  }
  .home-post-block .container {
    flex-direction: column;
  }
  .home-post-block .container .left, .home-post-block .container .right {
    width: 100%;
  }
  .home-post-block .container .right .button {
    text-align: center;
  }
}

@media (max-width: 1350px) {
  #main-home .content-blocks {
    padding: 0 30px;
  }
}
@media (max-width: 1350px) {
  #main-home .post-block {
    padding: 93px 30px !important;
  }
}
@media (max-width: 1350px) {
  #main-home .contact-block {
    padding: 72px 30px;
  }
}

.team-member {
  width: 242px;
  height: 250px;
  background: rgba(235, 242, 249, 0.8);
  padding: 50px 30px;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0px 5px;
  display: inline-block;
  vertical-align: top;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}

.team-member:hover {
  background: #ebf2f9;
}

.team-member h3 {
  color: #272d33;
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.2;
}

.team-member p {
  color: #7f8e9b;
  line-height: 1.2;
}

.team-image {
  height: 140px;
  width: 140px;
  border: 2px solid white;
  border-radius: 50%;
  background: #132d48;
  margin: -75px auto 25px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
}

.team-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(1);
  /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1);
  /* Microsoft Edge and Firefox 35+ */
  transition: all 0.2s ease-in-out;
}

.team-member:hover .team-image {
  margin: -85px auto 35px;
  background: white;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.3);
}

.team-member:hover .team-image img {
  -webkit-filter: grayscale(0);
  filter: none;
  opacity: 1;
}

.adviseurs-main {
  background: #ebf2f9;
  padding-bottom: 80px;
}

.team-block.team-page {
  background: none;
  padding: 20px 0px 0px 0px;
}

.team-block.team-page .container {
  max-width: 790px;
}

.team-block.team-page .team-member {
  background: white;
  margin: 10px 10px;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
}

.content-team {
  text-align: left;
  color: #000000;
  padding-top: 0 !important;
}

.content-team .container {
  max-width: 790px;
}

.content-team h2 {
  margin-top: 0px;
  font-size: 20px;
  color: #fff;
}

.content-team .team-image {
  margin: 50px 0 25px;
  background: white;
}

.content-team .team-image img {
  opacity: 1;
  -webkit-filter: grayscale(0);
  filter: none;
  opacity: 1;
}

.content-team .bigger-text {
  margin: 30px 0px 50px;
}

.social-block {
  border-top: 1px solid #e5e8eb;
  position: relative;
  padding: 40px 0px 80px;
}
.social-block__contact img {
  max-width: 400px;
  margin-bottom: 10px;
}
.social-block ul {
  display: flex;
  flex-direction: column;
}
.social-block ul li {
  list-style: none;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  display: flex;
  align-items: center;
}
.social-block ul li span {
  display: inline-block;
  color: #000000;
  margin-left: 5px;
}
.social-block ul li a:hover {
  text-decoration: underline;
}
.social-block ul.cnss-social-icon {
  transform: none;
}

.quote-block {
  padding: 80px 0px 100px;
  background: #000000;
  color: white;
  text-align: center;
}

.quote-block .container {
  max-width: 790px;
}

.quote-block em {
  font-weight: 300;
  font-size: 24px;
}

.quote-block p {
  font-size: 16px;
}

.quote-nav {
  position: absolute;
  bottom: -100px;
  width: 100%;
}

.quote-image {
  height: 75px;
  width: 75px;
  border: 2px solid #ebf2f9;
  border-radius: 50%;
  background: #000000;
  margin: 0px 7.5px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform: translateY(50%);
  transition: all 0.2s ease-in-out;
}

.quote-image.active {
  height: 100px;
  width: 100px;
  background: white;
}

.quote-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  filter: gray;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: all 0.2s ease-in-out;
}

.quote-image.active img {
  opacity: 1;
  -webkit-filter: grayscale(0);
  filter: none;
  opacity: 1;
}

.related-items {
  text-align: left !important;
  padding: 0 !important;
}

.related-items .bigger-text {
  margin-bottom: 40px;
}

#content-content .financiering-blocks .container {
  background: #ebf2fa;
  padding: 0px;
  margin: 0px;
  width: 100%;
  max-width: inherit;
}

#content-content .content-block {
  text-align: left;
}

.content-content-container .container {
  max-width: 750px;
  margin-bottom: -40px;
}

.titel-container {
  max-width: 750px;
  margin: 0px auto 30px auto;
}

.titel-container .financiering-titel {
  width: calc(100% - 60px);
  margin: auto;
}

.tekst-block {
  padding: 40px 0px;
}

.afbeelding-block .content-afbeelding .container, .tekst-block .content-tekst .container {
  max-width: 750px;
}

.afbeelding-block {
  padding: 0px;
}

.afbeelding-block .content-afbeelding {
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.afbeelding-block img {
  max-width: 100%;
  margin: auto;
  display: block;
}

.overview-block {
  padding: 80px 0px !important;
}

.overview-block .block-hover {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.overview-block .block-hover:hover {
  opacity: 1;
}

.overview-block .block-hover p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  width: calc(100% - 30px);
  max-height: calc(100% - 20px);
  overflow: hidden;
}

.content-block ul, .content-block ol {
  margin: 10px 0px;
}

.content-block ul li, .content-block ol li {
  margin-left: 30px;
}

.content-block a {
  color: #0077c3;
}

.content-block a:hover {
  text-decoration: underline;
}

.content-block .gform_wrapper {
  font-family: "Montserrat", sans-serif;
}

.content-block .gform_wrapper label.gfield_label {
  font-weight: 300;
  font-style: italic;
}

.content-block .gform_wrapper h3.gform_title {
  margin-top: 0px;
  padding-top: 0px;
  border-top: 0px;
  font-size: 24px;
}

.content-block .gform_wrapper h3 {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ececec;
}

.content-block select {
  font-weight: 300 !important;
}

.content-block blockquote {
  padding-left: 15px;
  margin: 10px auto;
  border-left: 2px solid #ececec;
  width: calc(100% - 50px);
}

.content-block blockquote cite {
  margin-top: 10px;
  display: block;
}

.content-block input[type=text] {
  background: #ecf3f8;
  border: 0px;
  height: 60px;
  padding: 0px 20px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
  font-size: 16px !important;
}

.content-block input[type=checkbox] {
  height: auto !important;
  width: auto !important;
  display: inline-block;
  margin-top: 0px !important;
}

.content-block textarea {
  background: #ecf3f8;
  border: 0px !important;
  padding: 20px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
  font-size: 16px !important;
  width: 100% !important;
}

.content-block .screen-reader-text {
  display: block;
  font-size: 12px;
}

.content-block .gform_wrapper .gform_footer input[type=submit] {
  border: 0px;
  background: #0077c3;
  color: white;
  font-weight: 500;
  font-size: 16px;
  line-height: 60px;
  width: 100%;
  cursor: pointer;
}

@media only screen and (min-width: 641px) {
  .gform_wrapper ul.gform_fields li.gfield {
    padding-right: 0px !important;
  }
}
#map {
  height: 100%;
  width: 100%;
}

.mapboxgl-canvas-container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /*background: rgba(32,42,55,.6);*/
  background: url("../../images/header-overlay-dark.png");
  background-size: cover;
  background-position: 50% calc(50% + 25px);
}

.mapboxgl-marker {
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.map_info_box {
  position: absolute;
  width: 200px;
  background: white;
  border-radius: 5px;
  padding: 10px;
  margin-left: -90px;
  margin-top: -110px;
  text-align: center;
  box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.contact-banner {
  overflow: hidden;
}

.social-contact {
  display: block;
  margin: -50px auto;
  height: 100px;
}

.social-contact ul {
  position: relative !important;
}

.social-contact ul.cnss-social-icon li.cn-fa-icon a {
  height: 60px !important;
  width: 60px !important;
  padding: 17px !important;
  position: relative !important;
}

.social-contact ul.cnss-social-icon li.cn-fa-icon a i {
  font-size: 26px !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.social-contact ul.cnss-social-icon li.cn-fa-icon a:hover {
  height: 70px !important;
  width: 70px !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35) !important;
}

#main-contact .content-block {
  padding: 80px 0px 80px;
}

#main-contact .content-block p {
  font-size: 16px;
  color: #7f8e9b;
}

#main-contact .content-block a {
  font-size: 16px;
  text-decoration: underline;
  color: #d0004d;
}

.form-block {
  padding: 80px 0px;
  background: #ebf2f9;
  text-align: center;
}
@media (max-width: 1350px) {
  .form-block {
    padding: 80px 30px;
  }
}

.form-block .gform_wrapper form {
  text-align: center;
}

.form-block .gform_wrapper h3.gform_title {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 300;
}

.form-block .gform_wrapper span.gform_description {
  font-size: 16px;
  color: #7f8e9b;
  line-height: 1.8;
  font-weight: 300;
}

.form-block .gform_wrapper .top_label .gfield_label {
  display: none;
}

.form-block .gform_body, .form-block .gform_footer {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0px;
}

.form-block .gform_footer {
  margin: 0px auto;
}

.form-block .gform_wrapper ul.gform_fields li.gfield {
  padding: 0px !important;
}

.form-block .gform_wrapper .top_label input {
  background: white;
  border: 0px !important;
  height: 60px;
  padding: 0px 20px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
  font-size: 16px !important;
  width: 100% !important;
}

.form-block .gform_wrapper .top_label textarea {
  background: white;
  border: 0px !important;
  padding: 20px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
  font-size: 16px !important;
  width: 100% !important;
}

.form-block .gform_wrapper .top_label input.button {
  background: #0077c3;
  color: white;
  font-weight: 500;
  font-size: 16px;
  line-height: 60px;
  width: 100%;
  cursor: pointer;
}

.form-block .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

.gform_wrapper div.validation_error {
  display: none;
}

.content-partners {
  padding: 80px 0px;
  text-align: left;
}

.content-partners p {
  margin: 10px 0px;
}

.content-partners p, .content-partners li {
  color: #7f8e9b;
}

.content-partners ul {
  margin: 10px 0px;
}

.content-partners li {
  margin-left: 30px;
  list-style-type: circle;
}

.partners-block {
  padding: 73px 0px 80px;
  background: #ebf2f9;
  text-align: center;
}

.partners-block .container {
  max-width: 750px;
}

.partners-block .partner {
  width: calc(33.33% - 10px);
  height: calc(250px - 10px);
  background: white;
  position: relative;
  display: inline-block;
  margin: 7px 0px 0px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
}

.partners-block .partner:hover {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}

.partners-block a:nth-child(3n+2) .partner {
  margin: 7px 15px 0px;
}

.partners-block .partner img {
  position: absolute;
  max-width: 70%;
  max-height: 70%;
  height: auto;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content-onderwijs {
  background: #ebf2f9;
}

.content-onderwijs .container {
  max-width: 1260px;
}

.content-onderwijs #tablepress-1_wrapper {
  margin: 50px 0 100px;
}

.content-onderwijs table thead tr th {
  background: none !important;
  border: 0;
  font-size: 14px;
  padding: 40px 20px;
}

.content-onderwijs table tbody tr {
  padding: 15px 0;
}

.content-onderwijs table tbody tr td {
  background: white !important;
  font-size: 14px;
  font-weight: 300;
  position: relative;
  min-width: 100px;
  padding: 20px;
  border-top: 20px solid #ebf2f9;
}

.content-onderwijs table tbody tr td a {
  /*background: #80dde4;*/
  display: block;
  /*padding: calc(50% - 12px) 0;*/
  box-sizing: border-box;
  /*height: 100%;*/
  /*width: 100%;*/
  /*position: absolute;*/
  /*top: 0;*/
  font-weight: 500;
  /*left: 0;*/
  text-align: center;
  color: white;
  transition: all 0.2s ease-in-out;
  vertical-align: middle;
}

.tablepress .sorting:after, .tablepress .sorting_asc:after, .tablepress .sorting_desc:after {
  right: inherit;
  margin-left: 10px;
}

.column-7.sorting {
  opacity: 0;
}

.content-onderwijs table tbody tr td.column-7 {
  background: #80dde4 !important;
  padding: 10px !important;
  vertical-align: middle !important;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.content-onderwijs table tbody tr td.column-7:hover {
  box-shadow: inset 100vw 10px rgba(0, 0, 0, 0.15);
}

.dataTables_info {
  display: none;
}

.tablepress caption {
  display: none;
}

.illustrations {
  padding: 50px 0;
}

.illustration {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.illustration .half-page {
  width: calc(50% - 50px);
  display: inline-block;
}

.illustration .half-page.right {
  text-align: center;
}

.illustration .half-page img {
  max-width: 100%;
  max-height: 350px;
  height: auto;
}

.illustration .half-page p {
  margin: 30px 0;
}

.illustration:nth-child(odd) .half-page.right {
  float: left;
  margin-right: 50px;
}

.illustration:nth-child(odd) .half-page.left {
  margin-left: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.illustration:nth-child(even) .half-page.right {
  margin-left: 50px;
  float: right;
}

.illustration:nth-child(even) .half-page.left {
  margin-right: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.page-login, .page-register {
  height: 100%;
}
.page-login .main-container, .page-register .main-container {
  min-height: 100vh;
}

.gform_confirmation_message {
  color: #fff !important;
}
.gform_confirmation_message a {
  color: #fff !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
}

.main-login {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 103px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  /*Custom subscribe box for .register-form class*/
  /* checked mark aspect changes */
  /* disabled checkbox */
}
.main-login__center {
  position: relative;
  z-index: 3;
  padding: 153px 0;
}
.main-login__center h1 {
  color: #fff;
  text-align: center;
}
.main-login__center p {
  color: #fff;
}
.main-login__center__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0px auto;
  margin-top: 100px;
  max-width: 400px;
}
.main-login__center__bottom p {
  color: #fff;
  line-height: 17px;
  font-size: 12px;
}
.main-login__center__bottom a {
  color: #ff7900;
  font-size: 12px;
  text-decoration: underline;
}
.main-login:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url("./../images/pattern-login.png");
  background-position: bottom;
  background-size: cover;
}
.main-login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background-image: linear-gradient(to right, #15135f 0%, #604679 100%);
}
.main-login form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}
.main-login form p, .main-login form label, .main-login form input {
  color: #fff;
}
.main-login form input[type=password], .main-login form input[type=text] {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  display: block;
  width: 400px;
  height: 65px;
}
@media (max-width: 768px) {
  .main-login form input[type=password], .main-login form input[type=text] {
    width: 100%;
  }
}
.main-login form input[type=password]::placeholder, .main-login form input[type=text]::placeholder {
  color: #fff;
  opacity: 1;
}
.main-login form input[type=submit] {
  height: 44px;
  cursor: pointer;
}
.main-login form .button {
  line-height: unset;
  border: none;
}
.main-login .form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}
.main-login .form__bottom .forgetmenot {
  position: relative;
}
.main-login .form__bottom .forgetmenot input[type=checkbox] {
  position: absolute;
  display: none;
}
.main-login .form__bottom .forgetmenot input[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) scale(0);
}
.main-login .form__bottom .forgetmenot input[type=checkbox]:checked + label:after {
  opacity: 1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) scale(1);
}
.main-login .form__bottom .forgetmenot label {
  position: relative;
  z-index: 2;
  font-size: 12px;
  padding-left: 25px;
  font-weight: 300;
}
.main-login .form__bottom .forgetmenot label:after {
  position: absolute;
  content: "";
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transition: all 0.2s;
}
.main-login .form__bottom .forgetmenot label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-block;
  width: 15px !important;
  height: 15px !important;
  border: 1px solid #fff;
  border-radius: 3px;
  background: transparent;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.main-login .loginform {
  display: none;
}
.main-login .loginform.active {
  display: block;
}
.main-login .loginform .email-adres, .main-login .loginform .wp-pwd {
  display: flex;
  border-bottom: 1px solid #fff;
}
.main-login .loginform .email-adres img, .main-login .loginform .wp-pwd img {
  margin-right: 10px;
}
.main-login .loginform .email-adres input, .main-login .loginform .wp-pwd input {
  border-bottom: none;
}
.main-login .lostpasswordform {
  display: none;
}
.main-login .lostpasswordform.active {
  display: block;
}
.main-login .lostpasswordform p.submit {
  margin-top: 26px;
  display: inline-block;
  width: 100%;
}
.main-login .lostpasswordform .email-adres, .main-login .lostpasswordform .wp-pwd {
  display: flex;
  border-bottom: 1px solid #fff;
}
.main-login .lostpasswordform .email-adres img, .main-login .lostpasswordform .wp-pwd img {
  margin-right: 10px;
}
.main-login .lostpasswordform .email-adres input, .main-login .lostpasswordform .wp-pwd input {
  border-bottom: none;
}
.main-login .lostpasswordform .button {
  display: inline-block;
  padding: 0 20px;
  float: right;
}
.main-login .fake-link {
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}
.main-login .fake-link.orange {
  color: #ff7900;
}
.main-login .register-form_wrapper .gform_heading {
  display: none;
}
.main-login .register-form {
  max-width: unset;
}
.main-login .register-form fieldset {
  border: none;
}
.main-login .register-form .validation_message {
  margin-top: 5px;
  color: #d90202;
  font-size: 12px;
}
.main-login .register-form .gform_body .gfmc-column {
  display: flex;
  justify-content: space-between;
}
.main-login .register-form .gform_body .gfmc-column .gfield--width-half:nth-of-type(2) {
  display: inline-block;
  margin-left: 38px;
}
.main-login .register-form .gform_body label.gfield_label {
  visibility: hidden;
  display: none;
  height: 0;
}
.main-login .register-form .gform_body legend.gfield_label {
  visibility: hidden;
  height: 0;
}
.main-login .register-form .gform_body .ginput_container_name, .main-login .register-form .gform_body .ginput_container_password {
  display: flex;
  justify-content: space-between;
}
.main-login .register-form .gform_body .name_first, .main-login .register-form .gform_body .name_last, .main-login .register-form .gform_body .ginput_left, .main-login .register-form .gform_body .ginput_right {
  display: inline-block;
  width: 50%;
}
.main-login .register-form .gform_body .name_last, .main-login .register-form .gform_body .ginput_right {
  margin-left: 38px;
}
.main-login .register-form .gform_body .gfield_checkbox {
  position: relative;
}
.main-login .register-form .gform_body .gform_show_password {
  top: 50%;
  transform: translateY(-50%);
}
.main-login .register-form .dashicons-hidden {
  color: #fff;
}
.main-login .register-form .dashicons-hidden:before {
  content: url("../images/eye_closed.svg");
}
.main-login .register-form .dashicons-visibility {
  color: #fff;
}
.main-login .register-form .dashicons-visibility:before {
  content: url("../images/eye.svg");
}
.main-login .register-form .participant {
  display: inline-block;
  float: left;
  max-width: 300px;
  margin-top: 26px;
}
.main-login .register-form .participant label {
  display: block;
  font-size: 12px;
}
.main-login .register-form #field_submit {
  display: inline-block;
  float: right;
  width: calc(50% - 19px);
  margin-top: 26px;
}
.main-login .register-form #field_submit p {
  font-size: 12px;
  line-height: unset;
}
.main-login .register-form #field_submit input {
  float: right;
  padding: 0 20px;
}
.main-login .register-form .gform_editor_submit_container .left p {
  font-size: 12px !important;
}
.main-login .gform_validation_errors {
  padding: 1.0625rem 0;
  border: 1px solid #d90202;
}
.main-login .gform_validation_errors h2 {
  color: #fff;
}
.main-login .gform_validation_errors .gform_submission_error {
  padding-left: 20px;
  text-align: center;
}
.main-login .gform_validation_errors .gform_submission_error:before {
  display: none;
}
.main-login .register-form ul.gfield_checkbox li input[type=checkbox]:checked + label,
.main-login .register-form ul.gfield_checkbox li input[type=checkbox]:not(:checked) + label {
  margin-left: 19px;
  font-weight: 400;
  font-size: 12px;
}
.main-login .register-form input[type=checkbox]:not(:checked),
.main-login .register-form input[type=checkbox]:checked {
  position: absolute !important;
  left: -9999px;
}
.main-login .register-form input[type=checkbox]:not(:checked) + label,
.main-login .register-form input[type=checkbox]:checked + label {
  position: relative !important;
  padding-left: 25px !important;
  cursor: pointer !important;
  font-weight: 100;
}
.main-login .register-form input[type=checkbox]:not(:checked) + label:before,
.main-login .register-form input[type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  display: inline-block;
  width: 15px !important;
  height: 15px !important;
  border: 1px solid #fff;
  border-radius: 3px;
  background: transparent;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.main-login .register-form input[type=checkbox]:not(:checked) + label:after,
.main-login .register-form input[type=checkbox]:checked + label:after {
  position: absolute;
  content: "";
  left: 5px;
  top: 4px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transition: all 0.2s;
}
.main-login .register-form input[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) scale(0);
}
.main-login .register-form input[type=checkbox]:checked + label:after {
  opacity: 1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) scale(1);
}
.main-login .register-form input[type=checkbox]:disabled:not(:checked) + label:before,
.main-login input[type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.main-login .register-form input[type=checkbox]:disabled:checked + label:after {
  color: #999;
}
.main-login .register-form input[type=checkbox]:disabled + label {
  color: #aaa;
}

@media (max-width: 940px) {
  .main-login__center {
    padding: 153px 30px;
  }

  .register-form_wrapper {
    padding: 0 0px;
  }

  .register-form .ginput_container_name, .register-form .ginput_container_password, .register-form .gfmc-field {
    flex-direction: column;
  }
  .register-form .ginput_container_name .name_last, .register-form .ginput_container_name .ginput_right, .register-form .ginput_container_name .gfield--width-half:last-of-type, .register-form .ginput_container_password .name_last, .register-form .ginput_container_password .ginput_right, .register-form .ginput_container_password .gfield--width-half:last-of-type, .register-form .gfmc-field .name_last, .register-form .gfmc-field .ginput_right, .register-form .gfmc-field .gfield--width-half:last-of-type {
    margin-left: 0 !important;
  }
  .register-form .ginput_container_name .name_last, .register-form .ginput_container_name .name_first, .register-form .ginput_container_name .ginput_right, .register-form .ginput_container_name .ginput_left, .register-form .ginput_container_name .gfield--width-half, .register-form .ginput_container_password .name_last, .register-form .ginput_container_password .name_first, .register-form .ginput_container_password .ginput_right, .register-form .ginput_container_password .ginput_left, .register-form .ginput_container_password .gfield--width-half, .register-form .gfmc-field .name_last, .register-form .gfmc-field .name_first, .register-form .gfmc-field .ginput_right, .register-form .gfmc-field .ginput_left, .register-form .gfmc-field .gfield--width-half {
    width: 100% !important;
  }
  .register-form .ginput_container_name input, .register-form .ginput_container_password input, .register-form .gfmc-field input {
    width: 100% !important;
  }
  .register-form .ginput_container_password button {
    top: 50%;
    transform: translateY(-50%);
  }
  .register-form .participant {
    max-width: 100% !important;
  }

  .main-login .register-form #field_submit {
    width: 100% !important;
  }
}
@media (max-width: 920px) {
  .page-login .banner.header-banner, .page-register .banner.header-banner {
    height: 50px !important;
  }

  .main-login {
    min-height: calc(100vh - 50px);
  }
}
@media (max-width: 768px) {
  .main-login__center {
    width: 100%;
  }
  .main-login__center__bottom {
    max-width: 100%;
  }
  .main-login form {
    max-width: 100%;
  }
}
@media (max-width: 530px) {
  .main-login__center__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-login__center__bottom .right {
    margin-top: 10px;
  }
}
.page-dashboard .header-arrow {
  display: none !important;
}

.main-dashboard {
  display: flex;
  min-height: calc(100vh - 103px);
}
.main-dashboard__menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ecf3f7;
  min-width: 288px;
  padding: 37px 0;
}
.main-dashboard__menu.desktop {
  display: flex;
}
.main-dashboard__menu.mobile {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 10;
  padding: 0;
  min-width: unset;
  width: 100%;
}
.main-dashboard__menu.mobile:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: white;
  background: linear-gradient(0deg, white 50%, rgba(255, 255, 255, 0) 100%);
}
.main-dashboard__menu.mobile ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  height: 82px;
}
.main-dashboard__menu.mobile ul:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  width: 100px;
  height: 50px;
  background-color: #fff;
}
.main-dashboard__menu.mobile ul:before {
  content: url("../images/menu-curve.svg");
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 144px;
  height: 66px;
}
.main-dashboard__menu.mobile ul li {
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 20%;
  z-index: 5;
}
.main-dashboard__menu.mobile ul li:hover {
  background-color: transparent;
}
.main-dashboard__menu.mobile ul li a {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}
.main-dashboard__menu.mobile ul li a:before {
  margin-right: 0;
  margin-bottom: 8px;
}
.main-dashboard__menu.mobile ul li a.has-indicator {
  position: relative;
  padding-right: 0;
}
.main-dashboard__menu.mobile ul li a.has-indicator .indicator {
  position: absolute;
  right: 23px;
  top: 9px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: bold;
  color: white;
  border-radius: 10px;
  background-color: #ff7900;
}
.main-dashboard__menu.mobile ul li:after {
  display: none;
}
.main-dashboard__menu.mobile ul li.current-menu-item {
  background-color: inherit;
}
.main-dashboard__menu.mobile ul li.current-menu-item a {
  color: #ff7900;
}
.main-dashboard__menu.mobile ul li.current-menu-item a:before {
  filter: brightness(0) saturate(100%) invert(42%) sepia(90%) saturate(931%) hue-rotate(359deg) brightness(105%) contrast(108%);
}
.main-dashboard__menu.mobile ul li.current-menu-item:before {
  top: 0;
  left: unset;
  width: 100%;
  height: 3px;
  margin-right: 0;
}
.main-dashboard__menu.mobile ul li.always-active {
  background-color: transparent !important;
}
.main-dashboard__menu.mobile ul li.always-active:hover {
  background-color: transparent;
}
.main-dashboard__menu.mobile ul li.always-active a {
  color: #272d33 !important;
  position: relative;
  z-index: 5;
}
.main-dashboard__menu.mobile ul li.always-active a:before {
  content: "";
  margin-right: 0;
  margin-bottom: 8px;
  height: 26px;
  display: inline-block;
}
.main-dashboard__menu.mobile ul li.always-active a .plus-button {
  font-weight: 100;
  color: #fff;
  font-size: 52px;
  width: 52px;
  height: 52px;
  border-radius: 52px;
  background-color: #ff7900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -27px;
  z-index: 3;
}
.main-dashboard__menu.mobile ul li.always-active.current-menu-item {
  background-color: transparent !important;
}
.main-dashboard__menu.mobile ul li.always-active.current-menu-item a {
  color: #ff7900 !important;
}
.main-dashboard__menu.mobile ul .menu-icon--make-offer {
  display: none;
}
.main-dashboard__menu ul li {
  display: flex;
  align-items: center;
  height: 45px;
  font-size: 14px;
  margin-bottom: 30px;
}
.main-dashboard__menu ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 50px;
}
.main-dashboard__menu ul li a.has-indicator {
  position: relative;
  padding-right: 50px;
}
.main-dashboard__menu ul li a.has-indicator .indicator {
  position: absolute;
  right: 38px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: bold;
  color: white;
  border-radius: 10px;
  background-color: #ff7900;
}
.main-dashboard__menu ul li:hover {
  background-color: #fff;
}
.main-dashboard__menu ul li.always-active {
  background-color: #ff7900;
  color: #fff;
}
.main-dashboard__menu ul li.always-active a {
  color: #fff;
  font-weight: normal !important;
}
.main-dashboard__menu ul li.always-active.current-menu-item {
  background-color: #ff7900 !important;
  color: #fff !important;
}
.main-dashboard__menu ul li.always-active.current-menu-item a {
  color: #fff !important;
}
.main-dashboard__menu ul li.always-active.current-menu-item:after {
  display: none !important;
}
.main-dashboard__menu ul li.always-active.current-menu-item:before {
  display: none !important;
}
.main-dashboard__menu ul li.current-menu-item {
  position: relative;
  background-color: #fff;
}
.main-dashboard__menu ul li.current-menu-item a {
  color: #17135F;
  font-weight: bold;
}
.main-dashboard__menu ul li.current-menu-item:after {
  content: url("../images/blue-arrows.svg");
  position: absolute;
  right: 0;
  top: calc(50% + 3px);
  transform: translateY(-50%);
}
.main-dashboard__menu ul li.current-menu-item:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #ff7900;
  position: absolute;
  left: 0;
}
.main-dashboard__menu__bottom {
  padding-top: 37px;
  border-top: 1px solid rgba(171, 184, 195, 0.28);
}
.main-dashboard__menu__bottom h4 {
  font-weight: bold;
  padding-left: 50px;
  margin-bottom: 50px;
}
.main-dashboard__content {
  box-sizing: border-box;
  position: relative;
  width: calc(100% - 288px);
  padding: 37px 30px;
}
.main-dashboard__content h1 {
  font-size: 32px;
}
.main-dashboard__content h4 {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.main-dashboard__content__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 20px;
}
.main-dashboard__content__top h1 span {
  text-transform: capitalize;
}
.main-dashboard__content__top:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: #ff7900;
}
.main-dashboard__content__top .button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-dashboard__content__top .button img {
  margin-right: 7px;
  width: 14px;
  height: 14px;
}
.main-dashboard__content__projects {
  width: 100%;
  margin-top: 37px;
}
.main-dashboard__content__projects__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-dashboard__content__projects .slick-slider-dots {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 13px;
}
.main-dashboard__content__projects .slick-slider-dots .slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  border: 2px solid #ff7900;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.main-dashboard__content__projects .slick-slider-dots .slick-dots li.slick-active {
  background-color: #ff7900;
}
.main-dashboard__content__projects .slick-slider-dots .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 9px;
  height: 9px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.main-dashboard__content__documents ul, .main-dashboard__content__offertes ul {
  margin-top: 22px;
  padding-left: 0;
  list-style-type: none;
}
.main-dashboard__content__documents .bottom-link, .main-dashboard__content__offertes .bottom-link {
  display: inline-block;
  color: #ff7900;
  text-decoration: underline;
  font-size: 12px;
  margin-top: 22px;
  float: right;
}
.main-dashboard__content__documents .bottom-link img, .main-dashboard__content__offertes .bottom-link img {
  margin-left: 5px;
}
.main-dashboard__content__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 37px;
}
.main-dashboard__content__bottom.projects {
  margin-top: 45px;
  flex-direction: column;
}
.main-dashboard__content__bottom.documents ul {
  width: 100%;
}
.main-dashboard__content__bottom.documents ul li .info {
  max-width: 600px;
  justify-content: space-between;
}
.main-dashboard__content__bottom .card {
  box-shadow: 0 4px 20px 0 #ecf3f7;
  background-color: #fff;
  padding: 17px;
  width: calc(50% - 9px);
  box-sizing: border-box;
}
.main-dashboard__content__bottom .card h3 {
  font-weight: 500;
}
.main-dashboard__content__offertes .document-row .info .left {
  max-width: 150px;
}
.main-dashboard__content__offertes__links {
  display: flex;
  justify-content: space-between;
}
.main-dashboard__content__offertes__links .bottom-link {
  float: unset;
}
.main-dashboard__content__offertes__links .bottom-link:nth-of-type(1) {
  display: flex;
  flex-direction: row-reverse;
}
.main-dashboard__content__offertes__links .bottom-link:nth-of-type(1) img {
  margin-right: 5px;
  margin-left: 0px;
}
.main-dashboard__content__documents {
  background-color: #ecf3f7 !important;
}
.main-dashboard .button {
  height: 44px;
  padding: 0px 20px !important;
  line-height: 44px;
}

.project-container {
  width: 100%;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.project-container .slick-list {
  margin: 0 -9px;
}
.project-container .project-card {
  display: flex;
  box-sizing: border-box;
  width: calc(25% - 18px);
}
.project-container .project-card:first-of-type {
  margin-left: 0;
}
.project-container .project-card:last-of-type {
  margin-right: 0;
}
.project-container .project-card.slick-slide {
  margin: 0 9px !important;
}
.project-container.top-slider .project-card {
  width: 100%;
  margin: 0;
}
.project-container.finished-projects .project-card {
  width: 100%;
  margin: 0;
}
.project-container.finished-projects .project-card:first-of-type {
  margin-left: 0;
}
.project-container.finished-projects .project-card:last-of-type {
  margin-right: 0;
}
.project-container.finished-projects .project-card.hidden {
  display: none;
}

.no-projects {
  margin-top: 18px;
  font-weight: 100;
}

.no-documents {
  font-weight: 100;
  font-size: 14px;
}

.progress .circular-chart {
  display: block;
}
.progress .circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 1;
}
.progress .circle {
  fill: none;
  stroke-width: 1;
  animation: progress 1s ease-out forwards;
}
@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
.progress .circular-chart.green .circle {
  stroke: #ff7900;
}
.progress .percentage {
  fill: #fff;
  font-family: sans-serif;
  font-size: 11px;
  text-anchor: middle;
  transform: translateY(2px);
  font-weight: 100;
}

.project-card.small {
  box-sizing: border-box;
  height: 100px;
  background-color: #604679;
  position: relative;
  color: #fff !important;
  padding: 14px 17px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 4px 20px 0 #ecf3f7;
}
.project-card.small:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../images/pattern-small-card.png);
  background-size: cover;
}
.project-card.small div, .project-card.small a, .project-card.small h1, .project-card.small h2, .project-card.small h3, .project-card.small h4, .project-card.small h5, .project-card.small small, .project-card.small button {
  position: relative;
  z-index: 2;
  color: #fff;
}
.project-card.small a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.project-card.small h5 {
  font-weight: bold;
  font-size: 14px;
}
.project-card.small .left {
  padding-right: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 72px);
}
.project-card.small .left h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card.small .left p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card.small .left > div p {
  font-size: 12px;
  color: #abb8c3 !important;
}
.project-card.small .right {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(171, 184, 195, 0.28);
  width: 72px;
  padding-left: 17px;
}
.project-card.small.white {
  background-color: #fff;
  background-image: none;
}
.project-card.small.white h5, .project-card.small.white p {
  color: #272d33;
}
.project-card.small.white .progress svg .percentage {
  fill: #ff7900;
}
.project-card.progress {
  background-color: #604679;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.project-card.progress:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../images/pattern-small-card.png);
  background-size: cover;
}
.project-card.progress div, .project-card.progress a, .project-card.progress h1, .project-card.progress h2, .project-card.progress h3, .project-card.progress h4, .project-card.progress h5, .project-card.progress small, .project-card.progress button {
  position: relative;
  z-index: 2;
  color: #fff;
}
.project-card.documents {
  background-color: #604679;
  position: relative;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.project-card.documents:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../images/pattern-small-card.png);
  background-size: cover;
}
.project-card.documents div, .project-card.documents a, .project-card.documents h1, .project-card.documents h2, .project-card.documents h3, .project-card.documents h4, .project-card.documents h5, .project-card.documents small, .project-card.documents button {
  position: relative;
  z-index: 2;
  color: #fff;
}

.document-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(171, 184, 195, 0.28);
  padding-bottom: 22px;
  margin-top: 22px;
}
.document-row.hidden {
  display: none;
}
.document-row.active {
  font-weight: bold;
}
.document-row.active .info .left {
  position: relative;
}
.document-row.active .info .left:after {
  content: "";
  position: absolute;
  right: -7px;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #ff7900;
}
.document-row .info {
  display: flex;
  max-width: 400px;
  width: 100%;
}
.document-row .info .left {
  max-width: 285px;
  width: 100%;
  margin-right: 25px;
}
.document-row .info .center {
  max-width: 100px;
  width: 100%;
  text-align: center;
}
.document-row .info .right {
  max-width: 100px;
  width: 100%;
  text-align: center;
}

.icons {
  display: flex;
  align-items: center;
}
.icons a {
  margin-left: 15px;
}
.icons a:hover {
  transform: scale(1.2);
}

.circle-icon {
  background-color: #ff7900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 38px;
  margin-right: 10px;
}
.circle-icon img {
  padding: 10px;
  width: 20px;
  filter: brightness(0) invert(1);
}

.empty-space {
  display: block;
  flex-basis: 68px;
  flex-grow: 0;
  flex-shrink: 0;
}

button.show-more {
  background: none;
  border: none;
  color: #ff7900;
  width: 100%;
  text-align: center;
  margin-top: 36px;
  cursor: pointer;
  text-decoration: underline;
}

.wppb-user-forms ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: unset !important;
}
.wppb-user-forms ul li {
  display: flex;
  flex-direction: column;
  width: calc(50% - 9px);
  margin-bottom: 20px;
}
.wppb-user-forms ul li.wppb-default-about-yourself-heading, .wppb-user-forms ul li.wppb-default-name-heading {
  width: 100%;
  margin-top: 18px;
  font-size: 16px;
}
.wppb-user-forms ul li.wppb-default-about-yourself-heading {
  margin-top: 53px;
}
.wppb-user-forms ul li label {
  width: 100%;
  font-weight: 500;
  font-size: 12px;
}
.wppb-user-forms ul li.wppb-default-username {
  display: none;
}
.wppb-user-forms input {
  background-color: #fff;
  border: none !important;
  box-shadow: 0 4px 20px 0 #ecf3f7;
  height: 44px;
  padding-left: 18px !important;
  width: 100% !important;
  color: #272d33 !important;
}
.wppb-user-forms .form-submit {
  margin-top: 26px;
}
.wppb-user-forms .form-submit input {
  width: auto !important;
  background-color: #ff7900;
  padding-left: auto;
  color: #fff !important;
  cursor: pointer;
}

.wppb-required {
  color: #272d33;
}

.wppb-success {
  margin-top: 25px !important;
}

#wppb-edit-user input {
  font-family: "Montserrat", sans-serif;
}

#select_user_to_edit_form {
  display: none;
}

@media (max-width: 1350px) {
  .main-dashboard__content__bottom.projects .project-container .project-card {
    width: calc((100% / 3) - 18px);
    margin-bottom: 18px;
  }
  .main-dashboard__content__bottom.projects .project-container.finished-projects {
    grid-template-columns: repeat(3, 1fr);
  }
  .main-dashboard__content__bottom.projects .project-container.finished-projects .project-card {
    width: 100%;
    margin-bottom: 18px;
  }
}
@media (max-width: 1334px) {
  .document-row {
    flex-wrap: unset;
  }
  .document-row .info {
    max-width: 360px;
  }
  .document-row .info .left {
    max-width: 220px;
  }
}
@media (max-width: 1300px) {
  .main-dashboard__content__bottom {
    flex-direction: column;
  }
  .main-dashboard__content__bottom .card {
    width: 100%;
  }
  .main-dashboard__content__bottom .card:first-of-type {
    margin-bottom: 25px;
  }
}
@media (max-width: 1035px) {
  .main-dashboard__content {
    width: 100%;
  }
  .main-dashboard__content__top .button {
    display: none;
  }
  .main-dashboard__menu.desktop {
    display: none;
  }
  .main-dashboard__menu.mobile {
    display: block;
  }
}
@media (max-width: 921px) {
  .main-dashboard__content__bottom.projects .project-container .project-card {
    width: calc((100% / 2) - 18px);
    margin-bottom: 18px;
  }
  .main-dashboard__content__bottom.projects .project-container.finished-projects {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-dashboard__content__bottom.projects .project-container.finished-projects .project-card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .main-dashboard__content__bottom.documents ul li .info {
    max-width: unset;
  }

  .main-dashboard__content {
    padding: 30px 15px 100px 15px;
  }
  .main-dashboard__content__offertes__links {
    display: none;
  }
  .main-dashboard__content__documents .bottom-link, .main-dashboard__content__projects .bottom-link {
    display: none;
  }

  .main-dashboard__content__bottom.projects .project-container .project-card {
    width: 100%;
  }
  .main-dashboard__content__bottom.projects .project-container.finished-projects {
    grid-template-columns: repeat(1, 1fr);
  }
  .main-dashboard__content__bottom.projects .project-container.finished-projects .project-card {
    width: 100%;
  }

  .wppb-user-forms ul li {
    width: 100%;
  }
}
body.page-quotation {
  /* Bottom banners */
}
body.page-quotation h1 {
  position: relative;
  padding-bottom: 50px;
}
body.page-quotation h1:after {
  display: block;
  position: absolute;
  top: 60px;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #ff7900;
}
body.page-quotation .indication_send {
  position: absolute;
  display: flex;
  align-items: center;
  right: 30px;
  top: 37px;
}
body.page-quotation .indication-value {
  text-align: right;
  padding-right: 20px;
  font-size: 12px;
  font-weight: bold;
  color: #abb8c3;
}
body.page-quotation .indication-value .value {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.38;
  color: #272d33;
}
body.page-quotation .intro p {
  font-size: 16px;
  font-weight: 500;
}
body.page-quotation .quotation-item {
  position: relative;
  margin-top: 22px;
  background-color: white;
  box-shadow: 0 4px 20px 0 #ecf3f7;
}
body.page-quotation .quotation-item .title-price {
  padding: 13px 13px 13px 16px;
  font-size: 14px;
  font-weight: normal;
  line-height: 2.07;
  cursor: pointer;
  user-select: none;
}
body.page-quotation .quotation-item .title-price input[type=checkbox] {
  margin-right: 12px;
  width: 15px;
  height: 15px;
}
body.page-quotation .quotation-item .title-price span {
  padding: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #abb8c3;
}
body.page-quotation .quotation-item:after {
  content: "+";
  display: block;
  position: absolute;
  right: 14px;
  top: 4px;
  font-size: 36px;
  font-weight: 300;
  color: #abb8c3;
}
body.page-quotation .quotation-item:hover .title-price {
  background-color: #ecf3f7;
}
body.page-quotation .quotation-item .quotation-options {
  display: none;
  padding: 20px;
}
body.page-quotation .quotation-item .quotation-options .setting-item {
  margin-bottom: 20px;
}
body.page-quotation .quotation-item .quotation-options .setting-item label {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
body.page-quotation .quotation-item .quotation-options .setting-item input, body.page-quotation .quotation-item .quotation-options .setting-item textarea {
  width: calc(100% - 34px);
  margin: 2px 0 0 0;
  padding: 13px 17px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #abb8c3;
  border: solid 1px #abb8c3;
}
body.page-quotation .quotation-item .quotation-options .setting-item input::placeholder, body.page-quotation .quotation-item .quotation-options .setting-item textarea::placeholder {
  color: #abb8c3;
}
body.page-quotation .quotation-item .quotation-options .setting-item textarea {
  height: 104px;
}
body.page-quotation .quotation-item .quotation-options .setting-item .notice {
  display: none;
  padding-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #ff7900;
}
body.page-quotation .quotation-item .quotation-options .custom-select .placeholder,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .placeholder {
  position: relative;
  margin-top: 2px;
  padding: 13px 17px;
  font-size: 14px;
  color: #abb8c3;
  cursor: pointer;
  user-select: none;
  border: solid 1px #abb8c3;
}
body.page-quotation .quotation-item .quotation-options .custom-select .placeholder:after,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .placeholder:after {
  content: "";
  display: block;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 8px;
  background-image: url("../images/arrow-down.svg");
  background-size: 16px 8px;
  filter: invert(80%) sepia(22%) saturate(153%) hue-rotate(166deg) brightness(88%) contrast(90%);
}
body.page-quotation .quotation-item .quotation-options .custom-select .placeholder input,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .placeholder input {
  width: auto;
  margin: 0;
  padding: 0 10px;
  border: none;
  background: transparent;
  pointer-events: none;
}
body.page-quotation .quotation-item .quotation-options .custom-select .options,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options {
  display: none;
  border-left: solid 1px #f2f2f2;
  border-right: solid 1px #f2f2f2;
}
body.page-quotation .quotation-item .quotation-options .custom-select .options .option,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options .option {
  padding: 13px 17px;
  font-size: 14px;
  border-bottom: solid 1px #f2f2f2;
}
body.page-quotation .quotation-item .quotation-options .custom-select .options .option:hover, body.page-quotation .quotation-item .quotation-options .custom-select .options .option.selected,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options .option:hover,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options .option.selected {
  color: white;
  font-weight: 600;
  background-color: #ff7900;
}
body.page-quotation .quotation-item .quotation-options .custom-select .options .option:hover input, body.page-quotation .quotation-item .quotation-options .custom-select .options .option.selected input,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options .option:hover input,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options .option.selected input {
  color: white;
}
body.page-quotation .quotation-item .quotation-options .custom-select .options .option:hover input::placeholder, body.page-quotation .quotation-item .quotation-options .custom-select .options .option.selected input::placeholder,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options .option:hover input::placeholder,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options .option.selected input::placeholder {
  color: white;
}
body.page-quotation .quotation-item .quotation-options .custom-select .options .option input,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options .option input {
  width: auto;
  margin: 0;
  padding: 0 10px;
  border: none;
  background: transparent;
}
body.page-quotation .quotation-item .quotation-options .custom-select .options .option.diff input[type=text],
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes .options .option.diff input[type=text] {
  width: calc(100% - 200px);
}
body.page-quotation .quotation-item .quotation-options .custom-select.custom-select-checkboxes .options label,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes.custom-select-checkboxes .options label {
  display: initial;
  font-size: 14px;
  font-weight: 400;
}
body.page-quotation .quotation-item .quotation-options .custom-select.custom-select-checkboxes .options .option:hover,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes.custom-select-checkboxes .options .option:hover {
  color: #272d33;
  font-weight: 500;
  background-color: transparent;
}
body.page-quotation .quotation-item .quotation-options .custom-select.custom-select-checkboxes .options .option:hover input,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes.custom-select-checkboxes .options .option:hover input {
  color: #abb8c3;
}
body.page-quotation .quotation-item .quotation-options .custom-select.custom-select-checkboxes .options .option:hover input::placeholder,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes.custom-select-checkboxes .options .option:hover input::placeholder {
  color: #abb8c3;
}
body.page-quotation .quotation-item .quotation-options .custom-select.open .placeholder:after,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes.open .placeholder:after {
  transform: translateY(-50%) rotate(180deg);
}
body.page-quotation .quotation-item .quotation-options .custom-select.open .options,
body.page-quotation .quotation-item .quotation-options .custom-select-checkboxes.open .options {
  display: block;
}
body.page-quotation .quotation-item .quotation-options .test-config-item {
  position: relative;
}
body.page-quotation .quotation-item .quotation-options .test-config-item .delete {
  position: absolute;
  top: -3px;
  right: 0;
  color: #abb8c3;
  cursor: pointer;
}
body.page-quotation .quotation-item .quotation-options .test-config-item .delete:hover {
  color: black;
}
body.page-quotation .quotation-item .quotation-options .test-config-item .sample-code {
  position: relative;
  margin-top: 2px;
  padding: 13px 17px;
  font-size: 14px;
  color: #abb8c3;
  cursor: pointer;
  border: solid 1px #abb8c3;
}
body.page-quotation .quotation-item .quotation-options .test-config-item .sample-code:after {
  content: "";
  display: block;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 8px;
  background-image: url("../images/arrow-down.svg");
  background-size: 16px 8px;
  filter: invert(80%) sepia(22%) saturate(153%) hue-rotate(166deg) brightness(88%) contrast(90%);
}
body.page-quotation .quotation-item .quotation-options .test-config-item .sample-code input {
  width: auto;
  min-width: 260px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
body.page-quotation .quotation-item .quotation-options .test-config-item .sample-config {
  display: none;
  padding: 20px;
  border: solid 1px #f2f2f2;
  border-top: 0;
}
body.page-quotation .quotation-item .quotation-options .test-config-item .sample-config.open {
  display: block;
}
body.page-quotation .quotation-item.open .title-price {
  background-color: #ecf3f7;
}
body.page-quotation .quotation-item.open .quotation-options {
  display: block;
}
body.page-quotation .quotation-item.open:after {
  content: "";
  width: 16px;
  height: 8px;
  top: 22px;
  right: 16px;
  background-image: url("../images/arrow-down.svg");
  background-size: 16px 8px;
  filter: invert(80%) sepia(22%) saturate(153%) hue-rotate(166deg) brightness(88%) contrast(90%);
  transform: rotate(180deg);
}
body.page-quotation .total-test-overview {
  display: none;
  margin: 10px 20px 20px 0;
  font-size: 12px;
}
body.page-quotation .total-test-overview .title {
  font-weight: 600;
  color: #ff7900;
}
body.page-quotation .total-test-overview .test-list {
  line-height: 18px;
}
body.page-quotation .total-test-overview .test-list .delete {
  margin-right: 10px;
  font-size: 18px;
  color: #abb8c3;
  cursor: pointer;
}
body.page-quotation .total-test-overview .test-list .delete:hover {
  color: black;
}
body.page-quotation .total-test-overview .test-list .error {
  color: red;
}
body.page-quotation .total-test-overview .test-list .spacing {
  padding-right: 20px;
}
body.page-quotation .form-submit-indication {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
body.page-quotation .send-quotation {
  padding: 10px 27px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.86;
  text-align: center;
  color: white;
  border: none;
  cursor: pointer;
  background-color: #ff7900;
}
body.page-quotation .send-quotation:disabled {
  cursor: default;
  background-color: rgba(255, 121, 0, 0.3);
}
body.page-quotation .banners {
  margin-top: 80px;
}
body.page-quotation .banners .banner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  margin-bottom: 20px;
  height: auto;
  min-height: auto;
}
body.page-quotation .banners .banner div, body.page-quotation .banners .banner p {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
}
body.page-quotation .banners .banner a {
  font-weight: 600;
  color: #ff7900;
}
body.page-quotation .banners .banner.purple {
  background-color: #604679;
}
body.page-quotation .banners .banner.blue {
  background-color: #15135f;
}
body.page-quotation .banners .banner .btn {
  padding: 14px 27px;
  color: white;
  background-color: #ff7900;
}
body.page-quotation .banners .banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url("../images/pattern-small-card.png");
  background-size: 390px 151px;
}

/* Quotation received page */
.page-quotation_received .content {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.86;
}
.page-quotation_received .content strong {
  font-size: 16px;
}
.page-quotation_received .content a {
  color: #ff7900;
}
.page-quotation_received .buttons {
  position: absolute;
  bottom: 30px;
}
.page-quotation_received .buttons .btn {
  position: relative;
  margin-right: 10px;
  padding: 14px 34px 14px 67px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  background-color: #ff7900;
}
.page-quotation_received .buttons .btn:first-child:before {
  position: absolute;
  left: 34px;
  top: 14px;
  content: "";
  display: block;
  width: 19px;
  height: 20px;
  background-image: url("../images/search.svg");
  filter: brightness(0) invert(1);
}
.page-quotation_received .buttons .btn:last-child:before {
  position: absolute;
  left: 34px;
  top: 16px;
  content: "";
  display: block;
  width: 19px;
  height: 16px;
  background-image: url("../images/download.svg");
  filter: brightness(0) invert(1);
}

/* Quotations overview page */
.main-dashboard .quotations-overview {
  padding: 40px 0;
}
.main-dashboard .quotations-overview .row {
  display: flex;
}
.main-dashboard .quotations-overview .row.header {
  font-size: 12px;
  font-weight: 600;
}
.main-dashboard .quotations-overview .row > div {
  width: 30%;
  padding: 20px 0;
  font-size: 14px;
  border-bottom: 1px solid #ecf3f7;
}
.main-dashboard .quotations-overview .row > div:last-child {
  width: 10%;
}
.main-dashboard .quotations-overview .row > div.icons {
  justify-content: flex-end;
}
.main-dashboard .quotations-overview .row a {
  font-weight: 400;
}
.main-dashboard .quotations-overview .row a:hover {
  color: #ff7900;
}

/* Quotation detail page */
.quotation-details .date {
  text-align: right;
}
.quotation-details .date div {
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  color: #abb8c3;
}
.quotation-details .left {
  width: calc(100% - 367px);
}
.quotation-details .left .detail-table {
  margin-top: 34px;
}
.quotation-details .left .detail-table .row {
  display: flex;
  justify-content: space-between;
}
.quotation-details .left .detail-table .row.header > div {
  font-size: 12px;
  font-weight: 600;
  border-bottom: 2px solid #abb8c3;
}
.quotation-details .left .detail-table .row.totals > div {
  font-weight: 600;
  border-top: 2px solid #abb8c3;
}
.quotation-details .left .detail-table .row > div {
  width: 25%;
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #ecf3f7;
}
.quotation-details .left .detail-table .row > div:first-child {
  text-align: left;
}
.quotation-details .left .detail-table .row > div:last-child {
  text-align: right;
}
.quotation-details .right {
  width: 327px;
}
.quotation-details .right h4 {
  margin-bottom: 16px;
}

/* Responsive */
@media screen and (max-width: 570px) {
  .main-dashboard .document-row .price {
    display: none;
  }
  .main-dashboard .quotations-overview .row > div {
    width: 45%;
  }
  .main-dashboard .quotations-overview .price {
    display: none;
  }

  .quotation-details .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .quotation-details .right {
    width: 100%;
  }

  body.page-quotation .indication_send {
    position: initial;
    margin-bottom: 40px;
  }
  body.page-quotation .quotation-item .title-price span {
    display: block;
    padding: 0 28px;
  }
}
.single-project .main-dashboard__content__bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.single-project .main-dashboard__content__bottom .left {
  width: calc(100% - 367px);
}
.single-project .main-dashboard__content__bottom .right {
  width: 327px;
}
.single-project .main-dashboard__content__bottom .right .project-card.progress {
  padding: 80px 0;
  margin-bottom: 36px;
}
.single-project .main-dashboard__content__bottom .right h4 {
  margin-bottom: 16px;
}
.single-project .back-button {
  background: unset;
  text-decoration: underline;
  color: #ff7900;
}
.single-project .notes ul {
  list-style-type: none;
  padding-left: 0;
}
.single-project .notes .note {
  padding: 23px 0;
  border-bottom: 1px solid rgba(171, 184, 195, 0.28);
  display: flex;
}
.single-project .notes .note--top {
  border-bottom: 1px solid #abb8c3;
}
.single-project .notes .note--top .left, .single-project .notes .note--top .right {
  font-weight: bold;
}
.single-project .notes .note .left {
  width: 100px;
  margin-right: 50px;
}

.progress-mobile {
  display: none;
}

@media (max-width: 1300px) {
  .single-project .main-dashboard__content__bottom .left {
    width: 100%;
  }

  .single-project .main-dashboard__content__bottom .right {
    width: 100%;
  }

  .progress-mobile {
    display: block;
    margin-bottom: 40px;
  }
  .progress-mobile .project-card.progress {
    padding: 18px 0;
  }
  .progress-mobile h4 {
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .progress-desktop {
    display: none;
  }

  .single-project .main-dashboard__content__bottom .right h4 {
    margin-top: 40px;
  }

  .single-project .notes .note .left {
    width: 140px;
  }
}
#network-content .content-block {
  text-align: left;
}
#network-content .network-sliders {
  text-align: center;
}
#network-content .network-sliders__slider {
  padding: 88px 0 98px;
}
#network-content .network-sliders__slider:first-of-type {
  margin-top: 50px;
}
#network-content .network-sliders__slider.blue {
  background-color: #15135f;
}
#network-content .network-sliders__slider.blue h2 {
  color: #fff;
}
#network-content .network-sliders__slider.grey {
  background-color: #f8f8f8;
}
#network-content .network-sliders__slider.grey h2 {
  color: #292929;
}
#network-content .network-sliders__slider .slider-items .container {
  display: flex;
  margin-top: 30px;
}
@media (max-width: 1350px) {
  #network-content .network-sliders__slider {
    padding: 88px 40px 98px;
  }
}

.event_tickets {
  padding: 10px;
  background: #ebf2f9;
  width: 100%;
}

.event_tickets th {
  color: #272d33;
  font-size: 18px;
  padding-bottom: 5px;
}

.event_tickets td, .event_tickets th {
  font-weight: 100;
  width: 33%;
}

.event_tickets span {
  color: inherit !important;
}

.tickera-checkout {
  font-family: "Montserrat", sans-serif !important;
}

.tickera-checkout {
  text-align: left;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.tickera-checkout tr th {
  color: #272d33;
  font-size: 18px !important;
  font-weight: 100 !important;
  text-align: left !important;
  padding: 0;
  width: 25%;
}

.tickera-checkout tr td {
  color: #7f8e9b;
  font-weight: 100 !important;
  text-align: left !important;
}

.tickera-checkout .last-table-row td, .tickera-checkout tbody tr td {
  padding: 20px 0px;
}

.tickera-checkout tr td.ticket-total-all {
  text-align: right !important;
}

.tickera-button {
  border: none !important;
  height: 60px;
  padding: 0 40px;
  background: #0077c3;
  color: white;
  font-weight: 500;
  line-height: 60px;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  -webkit-appearance: none;
}

.tickera_checkout:hover, .tickera-button:hover {
  background-color: #0077c3;
  box-shadow: inset 100vw 10px rgba(0, 0, 0, 0.15);
}

.tickera_checkout {
  margin-top: -20px;
}

.tickera_buyer_info {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.tickera_owner_info {
  margin-bottom: 40px;
}

.info_section * {
  width: 100%;
}

.info_section h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.fields-wrap label, .info_section h5 {
  text-align: left;
}

.info_section h5 {
  display: block;
  margin-top: 10px;
}

.tickera_additional_info label input {
  background: #ecf3f8;
  border: 0;
  height: 60px;
  padding: 0 20px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
  font-size: 16px !important;
  box-sizing: border-box;
  margin-left: 0;
}

.tc_cart_errors {
  list-style: none;
  display: block;
  margin: 0 0 30px;
}

.ticket-quantity .quantity {
  font-family: "Montserrat", sans-serif;
}

.tc-container .tickera label {
  text-align: left;
  display: block;
}

.tc-container .tickera hr {
  opacity: 0;
  margin-bottom: 20px;
}

.tc-container .tickera h2 {
  margin-top: 50px;
  margin-bottom: 20px;
}

.tc-container .tickera table {
  width: 100%;
  background: #f6f6f6;
  padding: 20px;
  font-weight: 300;
}

.search {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
}

.main-container {
  transition: transform 0.6s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  background: white;
  position: relative;
  z-index: -2;
  -webkit-box-shadow: 0px 0px 81px 0px rgba(0, 0, 0, 0.58);
  -moz-box-shadow: 0px 0px 81px 0px rgba(0, 0, 0, 0.58);
  box-shadow: 0px 0px 81px 0px rgba(0, 0, 0, 0.58);
  position: relative;
  z-index: 999;
}

.main-container--move {
  transform: perspective(1000px) translate3d(0, 40vh, 0) rotate3d(1, 0, 0, 30deg);
  height: 100vh;
  width: 100vw;
  position: fixed;
  overflow: hidden;
}

.search {
  pointer-events: none;
  transition: opacity 0.6s;
  position: fixed;
  height: 600px;
  opacity: 0;
}

.search--open {
  pointer-events: auto;
}

/* Close button */
.btn--search-close {
  opacity: 0;
  transform: scale3d(0.8, 0.8, 1);
  transition: opacity 0.6s, transform 0.6s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  position: absolute;
  right: 12px;
  top: 12px;
}

.search--open .btn--search-close {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* Search form with input and description */
.search__form {
  opacity: 0;
  transform: scale3d(0.7, 0.7, 1);
  transition: opacity 0.6s, transform 0.6s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.search--open .search__form {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.icon--cross {
  width: 25px;
  height: 25px;
  background-position: center;
  background-size: cover;
  display: block;
  cursor: pointer;
}

@media screen and (max-width: 40em) {
  .btn--search-close {
    font-size: 1.25em;
  }
}
.screen-reader-text {
  display: none;
}

#searchform {
  text-align: center;
  padding-top: 300px;
}

/* Search page */
.search-results-meta {
  padding: 80px 0px;
}

.search-results-meta h3, .search-results-meta img {
  display: inline-block;
}

.search-results-meta h3.search-text {
  color: #7f8e9b;
}

.search-results-meta h3.search-text::first-letter {
  text-transform: capitalize;
}

.search-results-meta img {
  margin: 0px 10px;
  height: 18px;
}

.search-hits-per-term {
  display: block;
  margin-bottom: 40px;
}

.search-popular {
  margin-top: 30px;
  font-weight: 300;
}

.search-popular a {
  color: #7f8e9b;
}

.search-popular a:hover {
  text-decoration: underline;
}

.search-hit {
  line-height: normal;
  font-weight: normal;
  margin: 30px 5px;
  padding: 7.5px 15px;
  font-size: 24px;
  color: white;
  display: inline-block;
  cursor: pointer;
  background: #056eb2;
}

#rlv_cat {
  display: inline-block;
}

.toon-alles-filter {
  margin: 30px 5px;
  padding: 7.5px 15px;
  font-size: 24px;
  color: white;
  display: inline-block;
  cursor: pointer;
  background: #ccc;
  font-weight: normal;
  line-height: normal;
}

.post-block {
  background: #ebf2f9;
  text-align: center;
  padding: 80px 0px;
}

.post-block h2 {
  margin-bottom: 10px;
}

.post-filter {
  margin: 30px 5px;
  padding: 7.5px 15px;
  font-size: 24px;
  color: white;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.post-filter:hover {
  box-shadow: inset 100vw 10px rgba(0, 0, 0, 0.15);
}

.post-item {
  width: calc(33.33% - 10px);
  height: 400px;
  background: white;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 15px 0px 0px;
  text-align: left;
  font-size: 14px;
  color: #7f8e9b;
  cursor: pointer;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
}

.post-item:nth-child(3n+2) {
  margin: 15px 15px 0px;
}

.post-item:hover {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}

.post-item:hover .post-item-img {
  height: 168px;
}

.post-item:hover .post-content {
  height: 50%;
}

.post-item .post-item-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.post-item .post-item-img .post-arrow {
  position: absolute;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background-image: url("../images/icons/arrow-right-lblue.png");
  background-color: white;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto 15px;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 50%);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease-in-out;
}

.post-item:hover .post-item-img .post-arrow {
  height: 45px;
  width: 45px;
  background-image: url("../images/icons/arrow-right-white.png");
  transform: translate(-50%, 50%) rotate(-90deg);
}

.post-item .category-label {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0px 10px;
  color: white;
  font-weight: 500;
  z-index: 9;
}

.post-item .post-content {
  width: 100%;
  height: 45%;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.post-item .post-content h3 {
  color: #292929;
  max-height: 50px;
  overflow: hidden;
  line-height: 1.2;
  margin: 5px 0px;
}

.post-item .post-content span {
  color: #c4c9d7;
  position: absolute;
  bottom: 15px;
}

.post-item p {
  max-height: 75px;
  overflow: hidden;
  margin: 5px 0px;
}

.post-item .time {
  color: #292929;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
}

.post-item .time p {
  background: #ebf2f9;
  padding: 0px 8px;
  margin-bottom: 4px;
  margin-top: 0px;
  display: table;
}

.post-block .button {
  background: #f8b605;
  display: inline-block;
  margin: 40px auto 0px;
  cursor: pointer;
}

.post-block.evenementen .button {
  background: #d0004d;
}

.post-block.nieuws .button {
  background: #f8b605;
}

.post-block.cases .button {
  background: #7fa500;
}

.post-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 10000;
  background: rgba(39, 45, 51, 0.8);
  display: none;
}

.post-page {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 0px;
  text-align: left;
  font-size: 14px;
  color: #7f8e9b;
  width: 700px;
  height: auto;
  max-height: calc(100% - 100px);
  max-width: calc(100% - 200px);
  box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.4);
}

.post-page.single-page {
  position: static;
  transform: none;
  max-width: 100%;
  margin: auto;
}

.post-page-inner {
  position: relative;
  overflow: auto;
  width: 100%;
  height: 100%;
}

.post-page .post-item-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}

.post-page .category-label {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 10px;
  font-size: 18px;
  color: white;
  font-weight: 500;
  z-index: 9;
}

.post-page .time {
  color: #292929;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
}

.post-page .time p {
  background: #ebf2f9;
  padding: 0px 8px;
  font-size: 18px;
  margin-bottom: 3px;
  display: table;
}

.post-page .post-title {
  padding: 20px 30px;
  color: white;
  position: relative;
}

.post-page .post-title h3 {
  max-width: calc(100% - 90px);
}

.post-page .post-title .close-post {
  right: 30px;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  position: absolute;
  font-weight: 300;
  cursor: pointer;
}

.post-page .post-title .close-post img {
  position: relative;
  margin-left: 5px;
  top: 3px;
}

.post-page .post-title a {
  color: white;
}

.post-page .post-content {
  width: 100%;
  height: auto;
  padding: 20px 30px;
  box-sizing: border-box;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.post-page .post-content p {
  margin: 10px 0px;
}

.post-page .post-content h3 {
  color: #292929;
}

.post-page .post-content ul, .post-page .post-content ol {
  margin: 10px 0px;
}

.post-page .post-content ul li, .post-page .post-content ol li {
  margin-left: 30px;
}

.post-page .post-content span {
  color: #c4c9d7;
}

.post-page .post-content a {
  color: #0077c3;
}

.post-page .post-content a:hover {
  text-decoration: underline;
}

.post-page .post-bottom {
  padding: 0px 30px 30px 30px;
  height: 20px;
}

.post-page .post-bottom span {
  font-weight: 300;
}

.post-page .post-bottom .share {
  float: right;
  position: relative;
  top: -4px;
}

.post-page .post-bottom .share * {
  display: inline-block;
}

.post-page .post-bottom .share .cnss-social-icon {
  text-align: center;
  position: relative;
  transform: none;
  top: 0px;
  display: inline-block;
  margin-left: 5px;
}

.post-page .post-bottom .share ul.cnss-social-icon li.cn-fa-icon a {
  width: 24px !important;
  height: 24px !important;
  margin: 2px !important;
  padding: 0px !important;
}

.post-page .post-bottom .share ul.cnss-social-icon li.cn-fa-icon a i {
  font-size: 14px !important;
}

.post-page .post-bottom .share ul.cnss-social-icon li.cn-fa-linkedin a {
  background: #007bb6 !important;
}

.post-page .post-bottom .share ul.cnss-social-icon li.cn-fa-twitter a {
  background: #4099FF !important;
}

.post-page .post-bottom .share ul.cnss-social-icon li.cn-fa-facebook a {
  background: #3b5998 !important;
}

.post-page .post-bottom .share ul.cnss-social-icon li.cn-fa-google-plus a {
  background: #d34836 !important;
}

.post-info {
  height: auto;
  padding: 20px 0;
  box-sizing: border-box;
  position: relative;
  transition: all 0.2s ease-in-out;
  margin: 0 auto;
  border-bottom: 1px solid #e5e8eb;
}

.post-info-event {
  height: 100%;
  display: inline-block;
  position: relative;
  color: #292929;
  font-size: 18px;
  font-weight: 100;
  margin: 10px 50px 10px 0;
}

.programma-block {
  margin-top: 30px;
}

.programma-block-title {
  color: #292929;
  font-size: 18px;
  font-weight: 100;
}

.programma-block-information {
  height: auto;
  font-weight: 300;
  border-bottom: 1px solid #e5e8eb;
  padding: 20px 0px;
}

.block-time {
  display: inline-block;
  width: 30%;
  position: relative;
  color: #7f8e9b !important;
  vertical-align: middle;
}

.block-text {
  display: inline-block;
  width: 70%;
  position: relative;
  color: #7f8e9b !important;
  vertical-align: middle;
  height: auto;
}

.arrow-left {
  position: absolute;
  height: 35px;
  width: 35px;
  top: 15%;
  left: -80px;
  border-radius: 50%;
  background-image: url(../images/icons/arrow-right-lblue.png);
  background-color: white;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto 15px;
  transform: rotate(180deg);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.arrow-left:hover {
  background-image: url(../images/icons/arrow-right-white.png);
  transform: scale(1.2) rotate(180deg);
}

.arrow-right {
  position: absolute;
  height: 35px;
  width: 35px;
  top: 15%;
  right: -80px;
  border-radius: 50%;
  background-image: url(../images/icons/arrow-right-lblue.png);
  background-color: white;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto 15px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.arrow-right:hover {
  background-image: url(../images/icons/arrow-right-white.png);
  background-color: #f8b605;
  transform: scale(1.2);
}

/* Events */
.controls {
  display: inline-block;
  width: 100%;
}

.search-date {
  background: #d5dfe9;
  display: block;
  padding: 0px 20px;
  float: right;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.search-date:hover {
  background: #a8b5be;
}

.search-date p {
  line-height: 50px;
}

.search-date p img {
  margin-right: 10px;
  vertical-align: text-bottom;
}

.date-picker-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(39, 45, 51, 0.8);
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}

.date-picker-wrapper-inner {
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.4);
}

.date-picker-wrapper-inner .button {
  display: block;
  text-align: center;
  cursor: pointer;
  background: #ccc;
}

.date-picker-wrapper-inner .button:hover {
  box-shadow: none;
}

.date-picker-wrapper-inner .button.active {
  background: #0077c3;
}

.date-picker-wrapper-inner .button.active:hover {
  box-shadow: inset 100vw 10px rgba(0, 0, 0, 0.15);
}

.date-picker-wrapper-inner .info {
  max-width: 350px;
  font-size: 11px;
  padding: 0px 20px 20px;
  box-sizing: border-box;
}

#date-picker-head {
  background: #d0004d;
  color: white;
  padding: 20px;
}

#date-picker-head p {
  font-weight: 400;
  font-size: 16px;
}

#date-picker-head p img {
  position: relative;
  top: 3px;
  margin-right: 15px;
}

.close-date-picker {
  padding: 25px;
  right: 0px;
  top: 0px;
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

#date-picker {
  padding: 20px;
  text-align: center;
  font-size: 16px;
}

.ui-datepicker-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.ui-datepicker-title {
  font-weight: 400;
  text-transform: lowercase;
}

.ui-datepicker-calendar th {
  font-weight: 100;
  color: #a8b5be;
  text-transform: uppercase;
}

.ui-datepicker-calendar th, .ui-datepicker-calendar td {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin: 5px;
  line-height: 40px;
  font-size: 16px;
}

.ui-datepicker-calendar a {
  display: block;
  height: 100%;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
}

.ui-datepicker-calendar span {
  font-weight: 100;
}

.ui-datepicker-calendar .ui-state-highlight a {
  background: #0077c3 !important;
}

.ui-datepicker-calendar .ui-datepicker-today {
  background: #efefef;
}

.ui-datepicker-prev, .ui-datepicker-next {
  width: 25px;
  height: 25px;
  background-color: #a8b5be;
  background-image: url("../images/icons/arrow-right-white.png");
  background-size: 5px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
  background-color: #0077c3;
}

.ui-datepicker-prev {
  float: left;
  transform: rotate(-180deg);
}

.ui-datepicker-next {
  float: right;
}

.iframe-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 100;
  background: rgba(39, 45, 51, 0.8);
  display: none;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 0px;
  width: 700px;
  height: 900px;
  max-height: calc(100% - 100px);
  max-width: calc(100% - 200px);
  box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.4);
}

/* Responsive css file */
@media screen and (max-height: 900px) {
  #searchform {
    padding-top: 200px;
  }
}
@media screen and (max-height: 650px) {
  #searchform {
    padding-top: 150px;
  }
}
@media screen and (max-width: 1340px) {
  .team-carrousel {
    width: 1010px;
  }
}
@media screen and (max-width: 1240px) {
  .block-grid .block {
    width: calc(33.33% - 10px);
    margin: 15px 0px 0px 0px !important;
  }

  .block-grid.four .block {
    width: calc(50% - 7.5px);
    margin: 15px 0px 0px 0px !important;
  }

  .block-grid.four .block:nth-child(even) {
    margin: 15px 0px 0px 15px !important;
  }

  .block-grid .block:nth-child(3n+2) {
    margin: 15px 15px 0px 15px !important;
  }
}
@media screen and (max-width: 1100px) {
  .team-carrousel {
    width: 755px;
  }

  .news-letter .news-half {
    width: calc(100%);
    text-align: center;
  }

  .news-letter .gform_footer {
    display: block !important;
    position: relative !important;
  }

  .news-letter input.medium {
    padding: 0px 20px 0px 20px !important;
  }

  .gform_footer {
    text-align: center;
  }

  .post-filter {
    display: table;
    margin: 10px auto;
    padding: 7.5px 15px;
  }

  .post-item {
    width: calc(50% - 30px);
    margin: 15px 7.5px 0px 0px;
  }

  .post-item:nth-child(3n+2) {
    margin: 15px 7.5px 0px;
  }

  .post-item:nth-child(even) {
    margin: 15px 0px 0px 7.5px;
  }

  .home-block {
    position: relative;
    height: auto;
  }
}
@media screen and (max-width: 990px) {
  .menu-footer-menu-container {
    display: block;
    position: relative;
    margin-left: 0px;
    margin-top: 10px;
    transform: translateY(0px);
    top: 0px;
  }

  .footer-top .container {
    text-align: center;
  }

  ul.cnss-social-icon {
    position: relative;
    top: 20px;
    right: 0px;
    transform: translateY(0px);
  }

  .menu-footer-menu-container li {
    margin: 10px;
  }

  .post-item {
    width: 100%;
    margin: 0px;
    margin: 7.5px 0px;
  }

  .post-item:nth-child(3n+2) {
    margin: 7.5px 0px;
  }

  .post-item:nth-child(even) {
    margin: 7.5px 0px;
  }
}
@media screen and (max-width: 920px) {
  .header-top .mobile-menu-icon {
    display: block;
  }

  .header-top .icons-right li:last-child .second {
    right: 67px;
  }

  .header-top .icons-right {
    display: none;
  }

  .header-top .mobile-menu {
    top: 50px;
  }

  .header-bottom {
    display: none;
  }

  .search-field input {
    padding: 0px 20px 0px 20px;
  }

  .search-field .button {
    position: relative;
    width: auto;
    margin-top: 10px;
  }

  .home-banner .container {
    top: 45%;
  }

  .header-top {
    display: block;
    overflow: visible;
    position: relative;
    top: 0;
  }

  header.sticky .header-top {
    display: block;
    overflow: visible;
    position: fixed !important;
    top: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  }

  ul .sub-menu {
    position: relative;
    top: 15px;
    left: -15px;
    list-style: none;
    width: calc(100% + 30px);
    box-shadow: none;
  }

  ul .sub-menu li {
    width: 100%;
    color: #272d33;
  }

  .mobile-menu-arrow {
    display: inline-block;
  }
}
@media screen and (max-width: 850px) {
  .team-carrousel {
    width: 502.5px;
  }

  .contact-block {
    line-height: 40px;
  }

  .social-block ul li {
    width: 100%;
    margin: 10px 0px;
  }

  .illustration .half-page {
    width: 100% !important;
    position: static !important;
    float: none !important;
    margin: 30px 0 !important;
    transform: none !important;
    text-align: center;
  }
}
@media screen and (max-width: 720px) {
  .post-page .post-bottom .share {
    float: none;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .post-page .post-bottom .share .cnss-social-icon {
    display: block;
    margin-left: 0px;
    text-align: left !important;
  }

  .post-page {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
  }

  .post-title h3 {
    max-width: calc(100% - 40px);
    overflow: hidden;
    word-wrap: break-word;
  }

  .close-post {
    color: transparent;
  }

  .arrow-left, .arrow-right {
    display: none;
  }

  .block-grid .block, .block-grid.four .block {
    width: 100%;
    margin: 15px 0px 0px 0px !important;
    min-height: inherit;
    height: auto !important;
  }

  .block-grid.four .block:nth-child(even) {
    margin: 15px 0px 0px 0px !important;
  }

  .block-grid .block:nth-child(3n+2) {
    margin: 15px 0px 0px 0px !important;
  }

  .block-grid .block h3 {
    height: auto;
  }
}
@media only screen and (max-width: 650px) {
  .tickera-checkout tbody tr td, .event_tickets th, .event_tickets td {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .search-field .button {
    position: relative;
    width: 100%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 570px) {
  .home-banner {
    max-height: none;
  }

  .team-carrousel {
    width: 251px;
  }

  .post-block .button {
    width: 100%;
    text-align: center;
  }

  .menu-footer-copyright-menu-container {
    display: block;
    float: none;
  }

  .footer-bottom .container p {
    display: block;
    text-align: center;
    margin-top: 10px;
  }

  .menu-footer-copyright-menu-container li:first-child {
    margin-left: 0px;
  }

  #menu-footer-copyright-menu {
    text-align: center;
  }

  h1 {
    font-size: 32px;
  }

  .partners-block .partner {
    width: calc(50% - 15px);
    height: calc(150px - 10px);
  }

  .breadcrumbs {
    display: none;
  }

  .overview-block .block-hover p {
    font-size: 12px;
  }

  .quote-image {
    height: 40px;
    width: 40px;
  }

  .quote-image.active {
    height: 70px;
    width: 70px;
  }

  .social-contact ul.cnss-social-icon li.cn-fa-icon a {
    height: 40px !important;
    width: 40px !important;
  }

  .social-contact ul.cnss-social-icon li.cn-fa-icon a i {
    font-size: 18px !important;
  }

  .tickera-checkout tr th {
    font-size: 14px !important;
  }

  .tickera-checkout tbody tr td, .event_tickets th, .event_tickets td {
    font-size: 14px;
  }

  .ticket-quantity .tickera_button {
    width: inherit !important;
  }

  .ticket-quantity .quantity {
    width: 20px;
  }

  .tickera-checkout tr th {
    width: auto;
  }
}
@media screen and (max-width: 400px) {
  .header-top .multi-site-menu li a {
    padding: 10px 2.5px;
  }
}
/* layout.css */
body {
  background: #1c1b40;
}

.divider {
  background: #ff7900;
}

.button {
  background: #ff7900;
}

.news-letter input.button {
  background: #ff7900;
}

.news-letter input {
  background: #fff;
}

.menu-header-menu-container li:after {
  background: #252069;
}

.footer-top {
  border-top: 1px solid #f1f1f1;
  background: #ffffff;
}

.footer-bottom {
  background: #c0c0c0;
}

.breadcrumbs a {
  color: #ff7900;
}

.sub-menu li:hover, .sub-menu li.current-menu-item {
  background: #ff7900;
  color: #fff;
}

.floating-menu .share-button:hover, .floating-menu .share-menu.active .share-button, .floating-menu .contact-button:hover, .floating-menu .contact-menu.active .contact-button {
  background-color: #15135f;
}

.floating-menu .form-block a {
  color: #ff7900;
}

.mobile-menu-arrow {
  background-image: url("../images/icons/arrow-down-dblue.png");
}

/* home.css */
.normal-logo .header-logo {
  position: relative;
  z-index: 10;
  top: 0px;
  padding: 15px 0;
  /* background: #ecf3f8; */
  width: 200px;
}

@media screen and (max-width: 1100px) {
  .normal-logo .header-logo {
    width: 130px;
  }
}
@media screen and (max-width: 920px) {
  .normal-logo .header-logo {
    display: none;
  }
}
.search-field .button {
  background: #ff7900;
}

.contact-block .button {
  background: #ff7900;
}

.team-block .button {
  background: #ff7900;
}

.team-block {
  background-color: rgba(17, 24, 49, 0.5);
}

.home-block .small-block .wrap a img {
  margin-left: 10px;
  top: 0px;
  background: none !important;
  border-radius: 0px;
  padding: 0px;
}

/* posts.css */
.post-block {
  background: #f2f2f2;
}

.post-block .button {
  background: #ff7900;
}

.post-item .time p, .post-page .time p {
  background: #f2f2f2;
}

#date-picker-head {
  background: #15135f;
}

.date-picker-wrapper-inner .button.active {
  background: #ff7900;
}

.ui-datepicker-calendar .ui-state-highlight a {
  background: #ff7900 !important;
}

.ui-datepicker-prev, .ui-datepicker-next {
  background-color: #ccc;
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
  background-color: #ff7900;
}

.search-date {
  background: #ccc;
}

.search-date:hover {
  background: #bbb;
}

.post-block.evenementen .button {
  background: #15135f;
}

.post-block.cases .button {
  background: #ff7900;
}

.post-block.nieuws .button {
  background: #15135f;
}

.post-page .post-content a {
  color: #ff7900;
}

.post-item .post-item-img .post-arrow {
  background-image: url("../images/icons/arrow-right-grey.png");
  background-size: 14px;
}

.post-item:hover .post-item-img .post-arrow {
  background-image: url(../images/icons/arrow-right-white.png);
  background-size: 18px;
}

.ui-datepicker-prev, .ui-datepicker-next {
  background-image: url(../images/icons/arrow-right-white.png);
  background-size: 12px;
}

/* team.css */
.team-member {
  background: rgba(255, 255, 255, 0.8);
}

.team-member:hover {
  background: white;
}

.team-image {
  background: #121931;
}

/* contact.css */
.form-block .gform_wrapper .top_label input.button {
  background: #ff7900;
}

#main-contact .content-block a {
  color: #ff7900;
}

.form-block {
  background: #f2f2f2;
}

.mapboxgl-canvas-container:after {
  background: url(../images/header-overlay.png);
}

/* adviseurs.css */
.adviseurs-main {
  background: #f2f2f2;
  padding-bottom: 80px;
}

.quote-image {
  background: #121931;
}

.quote-block {
  background: #17135F;
}
@media (max-width: 1350px) {
  .quote-block {
    padding: 80px 30px 100px;
  }
}

/* content.css */
.content-block a {
  color: #ff7900;
}

/* partners.css */
.partners-block {
  background: #f2f2f2;
}

.content-partners p, .content-partners li {
  color: #a9a9a9;
}

/* search.css */
.search-hit {
  background: #ccc;
}

/* tickera.css */
.event_tickets {
  background: #f1f1f1;
}

.tickera_additional_info label input {
  background: #f1f1f1;
}

.tickera-button {
  background: #ff7900;
}

.tickera_checkout:hover, .tickera-button:hover {
  background-color: #ff7900;
  box-shadow: inset 100vw 10px rgba(0, 0, 0, 0.15);
}

.ticket-quantity .tickera_button {
  color: #ff7900;
}

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