@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
@mixin animate {
  :root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
  }
  .wb-anim-animated {
        animation-duration: 1s;
        animation-duration: var(--animate-duration);
        animation-fill-mode: both;
  }
  .wb-anim-animated.wb-anim-infinite {
        animation-iteration-count: infinite;
  }
  .wb-anim-animated.wb-anim-repeat-1 {
        animation-iteration-count: 1;
        animation-iteration-count: var(--animate-repeat);
  }
  .wb-anim-animated.wb-anim-repeat-2 {
        animation-iteration-count: calc(1 * 2);
        animation-iteration-count: calc(var(--animate-repeat) * 2);
  }
  .wb-anim-animated.wb-anim-repeat-3 {
        animation-iteration-count: calc(1 * 3);
        animation-iteration-count: calc(var(--animate-repeat) * 3);
  }
  .wb-anim-animated.wb-anim-delay-1s {
        animation-delay: 1s;
        animation-delay: var(--animate-delay);
  }
  .wb-anim-animated.wb-anim-delay-2s {
        animation-delay: calc(1s * 2);
        animation-delay: calc(var(--animate-delay) * 2);
  }
  .wb-anim-animated.wb-anim-delay-3s {
        animation-delay: calc(1s * 3);
        animation-delay: calc(var(--animate-delay) * 3);
  }
  .wb-anim-animated.wb-anim-delay-4s {
        animation-delay: calc(1s * 4);
        animation-delay: calc(var(--animate-delay) * 4);
  }
  .wb-anim-animated.wb-anim-delay-5s {
        animation-delay: calc(1s * 5);
        animation-delay: calc(var(--animate-delay) * 5);
  }
  .wb-anim-animated.wb-anim-faster {
        animation-duration: calc(1s / 2);
        animation-duration: calc(var(--animate-duration) / 2);
  }
  .wb-anim-animated.wb-anim-fast {
        animation-duration: calc(1s * 0.8);
        animation-duration: calc(var(--animate-duration) * 0.8);
  }
  .wb-anim-animated.wb-anim-slow {
        animation-duration: calc(1s * 2);
        animation-duration: calc(var(--animate-duration) * 2);
  }
  .wb-anim-animated.wb-anim-slower {
        animation-duration: calc(1s * 3);
        animation-duration: calc(var(--animate-duration) * 3);
  }
  @media print, (prefers-reduced-motion: reduce) {
    .wb-anim-animated {
            animation-duration: 1ms !important;
            transition-duration: 1ms !important;
            animation-iteration-count: 1 !important;
    }

    .wb-anim-animated[class*='Out'] {
      opacity: 0;
    }
  }
  /* Attention seekers  */
  @keyframes wb-bounce {
    from,
    20%,
    53%,
    to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            transform: translate3d(0, -30px, 0) scaleY(1.1);
    }

    70% {
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            transform: translate3d(0, -15px, 0) scaleY(1.05);
    }

    80% {
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transform: translate3d(0, 0, 0) scaleY(0.95);
    }

    90% {
            transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
  }
  .wb-anim-bounce {
        animation-name: wb-bounce;
        transform-origin: center bottom;
  }
  @keyframes wb-flash {
    from,
    50%,
    to {
      opacity: 1;
    }

    25%,
    75% {
      opacity: 0;
    }
  }
  .wb-anim-flash {
        animation-name: wb-flash;
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  @keyframes wb-pulse {
    from {
            transform: scale3d(1, 1, 1);
    }

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

    to {
            transform: scale3d(1, 1, 1);
    }
  }
  .wb-anim-pulse {
        animation-name: wb-pulse;
        animation-timing-function: ease-in-out;
  }
  @keyframes wb-rubberBand {
    from {
            transform: scale3d(1, 1, 1);
    }

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

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

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

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

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

    to {
            transform: scale3d(1, 1, 1);
    }
  }
  .wb-anim-rubberBand {
        animation-name: wb-rubberBand;
  }
  @keyframes wb-shakeX {
    from,
    to {
            transform: translate3d(0, 0, 0);
    }

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

    20%,
    40%,
    60%,
    80% {
            transform: translate3d(10px, 0, 0);
    }
  }
  .wb-anim-shakeX {
        animation-name: wb-shakeX;
  }
  @keyframes wb-shakeY {
    from,
    to {
            transform: translate3d(0, 0, 0);
    }

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

    20%,
    40%,
    60%,
    80% {
            transform: translate3d(0, 10px, 0);
    }
  }
  .wb-anim-shakeY {
        animation-name: wb-shakeY;
  }
  @keyframes wb-headShake {
    0% {
            transform: translateX(0);
    }

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

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

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

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

    50% {
            transform: translateX(0);
    }
  }
  .wb-anim-headShake {
        animation-timing-function: ease-in-out;
        animation-name: wb-headShake;
  }
  @keyframes wb-swing {
    20% {
            transform: rotate3d(0, 0, 1, 15deg);
    }

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

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

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

    to {
            transform: rotate3d(0, 0, 1, 0deg);
    }
  }
  .wb-anim-swing {
        transform-origin: top center;
        animation-name: wb-swing;
  }
  @keyframes wb-tada {
    from {
            transform: scale3d(1, 1, 1);
    }

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

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

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

    to {
            transform: scale3d(1, 1, 1);
    }
  }
  .wb-anim-tada {
        animation-name: wb-tada;
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  @keyframes wb-wobble {
    from {
            transform: translate3d(0, 0, 0);
    }

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

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

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

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

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

    to {
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-wobble {
        animation-name: wb-wobble;
  }
  @keyframes wb-jello {
    from,
    11.1%,
    to {
            transform: translate3d(0, 0, 0);
    }

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

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

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

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

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

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

    88.8% {
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
  }
  .wb-anim-jello {
        animation-name: wb-jello;
        transform-origin: center;
  }
  @keyframes wb-heartBeat {
    0% {
            transform: scale(1);
    }

    14% {
            transform: scale(1.3);
    }

    28% {
            transform: scale(1);
    }

    42% {
            transform: scale(1.3);
    }

    70% {
            transform: scale(1);
    }
  }
  .wb-anim-heartBeat {
        animation-name: wb-heartBeat;
        animation-duration: calc(1s * 1.3);
        animation-duration: calc(var(--animate-duration) * 1.3);
        animation-timing-function: ease-in-out;
  }
  /* Back entrances */
  @keyframes wb-backInDown {
    0% {
            transform: translateY(-1200px) scale(0.7);
      opacity: 0.7;
    }

    80% {
            transform: translateY(0px) scale(0.7);
      opacity: 0.7;
    }

    100% {
            transform: scale(1);
      opacity: 1;
    }
  }
  .wb-anim-backInDown {
        animation-name: wb-backInDown;
  }
  @keyframes wb-backInLeft {
    0% {
            transform: translateX(-2000px) scale(0.7);
      opacity: 0.7;
    }

    80% {
            transform: translateX(0px) scale(0.7);
      opacity: 0.7;
    }

    100% {
            transform: scale(1);
      opacity: 1;
    }
  }
  .wb-anim-backInLeft {
        animation-name: wb-backInLeft;
  }
  @keyframes wb-backInRight {
    0% {
            transform: translateX(2000px) scale(0.7);
      opacity: 0.7;
    }

    80% {
            transform: translateX(0px) scale(0.7);
      opacity: 0.7;
    }

    100% {
            transform: scale(1);
      opacity: 1;
    }
  }
  .wb-anim-backInRight {
        animation-name: wb-backInRight;
  }
  @keyframes wb-backInUp {
    0% {
            transform: translateY(1200px) scale(0.7);
      opacity: 0.7;
    }

    80% {
            transform: translateY(0px) scale(0.7);
      opacity: 0.7;
    }

    100% {
            transform: scale(1);
      opacity: 1;
    }
  }
  .wb-anim-backInUp {
        animation-name: wb-backInUp;
  }
  /* Back exits */
  @keyframes wb-backOutDown {
    0% {
            transform: scale(1);
      opacity: 1;
    }

    20% {
            transform: translateY(0px) scale(0.7);
      opacity: 0.7;
    }

    100% {
            transform: translateY(700px) scale(0.7);
      opacity: 0.7;
    }
  }
  .wb-anim-backOutDown {
        animation-name: wb-backOutDown;
  }
  @keyframes wb-backOutLeft {
    0% {
            transform: scale(1);
      opacity: 1;
    }

    20% {
            transform: translateX(0px) scale(0.7);
      opacity: 0.7;
    }

    100% {
            transform: translateX(-2000px) scale(0.7);
      opacity: 0.7;
    }
  }
  .wb-anim-backOutLeft {
        animation-name: wb-backOutLeft;
  }
  @keyframes wb-backOutRight {
    0% {
            transform: scale(1);
      opacity: 1;
    }

    20% {
            transform: translateX(0px) scale(0.7);
      opacity: 0.7;
    }

    100% {
            transform: translateX(2000px) scale(0.7);
      opacity: 0.7;
    }
  }
  .wb-anim-backOutRight {
        animation-name: wb-backOutRight;
  }
  @keyframes wb-backOutUp {
    0% {
            transform: scale(1);
      opacity: 1;
    }

    20% {
            transform: translateY(0px) scale(0.7);
      opacity: 0.7;
    }

    100% {
            transform: translateY(-700px) scale(0.7);
      opacity: 0.7;
    }
  }
  .wb-anim-backOutUp {
        animation-name: wb-backOutUp;
  }
  /* Bouncing entrances  */
  @keyframes wb-bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

    40% {
            transform: scale3d(0.9, 0.9, 0.9);
    }

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

    80% {
            transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
      opacity: 1;
            transform: scale3d(1, 1, 1);
    }
  }
  .wb-anim-bounceIn {
        animation-duration: calc(1s * 0.75);
        animation-duration: calc(var(--animate-duration) * 0.75);
        animation-name: wb-bounceIn;
  }
  @keyframes wb-bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

    to {
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-bounceInDown {
        animation-name: wb-bounceInDown;
  }
  @keyframes wb-bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

    to {
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-bounceInLeft {
        animation-name: wb-bounceInLeft;
  }
  @keyframes wb-bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

    to {
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-bounceInRight {
        animation-name: wb-bounceInRight;
  }
  @keyframes wb-bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

    to {
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-bounceInUp {
        animation-name: wb-bounceInUp;
  }
  /* Bouncing exits  */
  @keyframes wb-bounceOut {
    20% {
            transform: scale3d(0.9, 0.9, 0.9);
    }

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

    to {
      opacity: 0;
            transform: scale3d(0.3, 0.3, 0.3);
    }
  }
  .wb-anim-bounceOut {
        animation-duration: calc(1s * 0.75);
        animation-duration: calc(var(--animate-duration) * 0.75);
        animation-name: wb-bounceOut;
  }
  @keyframes wb-bounceOutDown {
    20% {
            transform: translate3d(0, 10px, 0) scaleY(0.985);
    }

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

    to {
      opacity: 0;
            transform: translate3d(0, 2000px, 0) scaleY(3);
    }
  }
  .wb-anim-bounceOutDown {
        animation-name: wb-bounceOutDown;
  }
  @keyframes wb-bounceOutLeft {
    20% {
      opacity: 1;
            transform: translate3d(20px, 0, 0) scaleX(0.9);
    }

    to {
      opacity: 0;
            transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
  }
  .wb-anim-bounceOutLeft {
        animation-name: wb-bounceOutLeft;
  }
  @keyframes wb-bounceOutRight {
    20% {
      opacity: 1;
            transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }

    to {
      opacity: 0;
            transform: translate3d(2000px, 0, 0) scaleX(2);
    }
  }
  .wb-anim-bounceOutRight {
        animation-name: wb-bounceOutRight;
  }
  @keyframes wb-bounceOutUp {
    20% {
            transform: translate3d(0, -10px, 0) scaleY(0.985);
    }

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

    to {
      opacity: 0;
            transform: translate3d(0, -2000px, 0) scaleY(3);
    }
  }
  .wb-anim-bounceOutUp {
        animation-name: wb-bounceOutUp;
  }
  /* Fading entrances  */
  @keyframes wb-fadeIn {
    from {
      opacity: 0;
    }

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

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

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

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

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

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

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

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

    to {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-fadeInUpBig {
        animation-name: wb-fadeInUpBig;
  }
  @keyframes wb-fadeInTopLeft {
    from {
      opacity: 0;
            transform: translate3d(-100%, -100%, 0);
    }
    to {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-fadeInTopLeft {
        animation-name: wb-fadeInTopLeft;
  }
  @keyframes wb-fadeInTopRight {
    from {
      opacity: 0;
            transform: translate3d(100%, -100%, 0);
    }
    to {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-fadeInTopRight {
        animation-name: wb-fadeInTopRight;
  }
  @keyframes wb-fadeInBottomLeft {
    from {
      opacity: 0;
            transform: translate3d(-100%, 100%, 0);
    }
    to {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-fadeInBottomLeft {
        animation-name: wb-fadeInBottomLeft;
  }
  @keyframes wb-fadeInBottomRight {
    from {
      opacity: 0;
            transform: translate3d(100%, 100%, 0);
    }
    to {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-fadeInBottomRight {
        animation-name: wb-fadeInBottomRight;
  }
  /* Fading exits */
  @keyframes wb-fadeOut {
    from {
      opacity: 1;
    }

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

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

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

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

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

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

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

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

    to {
      opacity: 0;
            transform: translate3d(0, -2000px, 0);
    }
  }
  .wb-anim-fadeOutUpBig {
        animation-name: wb-fadeOutUpBig;
  }
  @keyframes wb-fadeOutTopLeft {
    from {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
    to {
      opacity: 0;
            transform: translate3d(-100%, -100%, 0);
    }
  }
  .wb-anim-fadeOutTopLeft {
        animation-name: wb-fadeOutTopLeft;
  }
  @keyframes wb-fadeOutTopRight {
    from {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
    to {
      opacity: 0;
            transform: translate3d(100%, -100%, 0);
    }
  }
  .wb-anim-fadeOutTopRight {
        animation-name: wb-fadeOutTopRight;
  }
  @keyframes wb-fadeOutBottomRight {
    from {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
    to {
      opacity: 0;
            transform: translate3d(100%, 100%, 0);
    }
  }
  .wb-anim-fadeOutBottomRight {
        animation-name: wb-fadeOutBottomRight;
  }
  @keyframes wb-fadeOutBottomLeft {
    from {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
    to {
      opacity: 0;
            transform: translate3d(-100%, 100%, 0);
    }
  }
  .wb-anim-fadeOutBottomLeft {
        animation-name: wb-fadeOutBottomLeft;
  }
  /* Flippers */
  @keyframes wb-flip {
    from {
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
            animation-timing-function: ease-out;
    }

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

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

    80% {
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
        rotate3d(0, 1, 0, 0deg);
            animation-timing-function: ease-in;
    }

    to {
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            animation-timing-function: ease-in;
    }
  }
  .wb-anim-animated.wb-anim-flip {
        backface-visibility: visible;
        animation-name: wb-flip;
  }
  @keyframes wb-flipInX {
    from {
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            animation-timing-function: ease-in;
      opacity: 0;
    }

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

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

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

    to {
            transform: perspective(400px);
    }
  }
  .wb-anim-flipInX {
        backface-visibility: visible !important;
        animation-name: wb-flipInX;
  }
  @keyframes wb-flipInY {
    from {
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            animation-timing-function: ease-in;
      opacity: 0;
    }

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

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

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

    to {
            transform: perspective(400px);
    }
  }
  .wb-anim-flipInY {
        backface-visibility: visible !important;
        animation-name: wb-flipInY;
  }
  @keyframes wb-flipOutX {
    from {
            transform: perspective(400px);
    }

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

    to {
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
      opacity: 0;
    }
  }
  .wb-anim-flipOutX {
        animation-duration: calc(1s * 0.75);
        animation-duration: calc(var(--animate-duration) * 0.75);
        animation-name: wb-flipOutX;
        backface-visibility: visible !important;
  }
  @keyframes wb-flipOutY {
    from {
            transform: perspective(400px);
    }

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

    to {
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
      opacity: 0;
    }
  }
  .wb-anim-flipOutY {
        animation-duration: calc(1s * 0.75);
        animation-duration: calc(var(--animate-duration) * 0.75);
        backface-visibility: visible !important;
        animation-name: wb-flipOutY;
  }
  /* Lightspeed */
  @keyframes wb-lightSpeedInRight {
    from {
            transform: translate3d(100%, 0, 0) skewX(-30deg);
      opacity: 0;
    }

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

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

    to {
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-lightSpeedInRight {
        animation-name: wb-lightSpeedInRight;
        animation-timing-function: ease-out;
  }
  @keyframes wb-lightSpeedInLeft {
    from {
            transform: translate3d(-100%, 0, 0) skewX(30deg);
      opacity: 0;
    }

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

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

    to {
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-lightSpeedInLeft {
        animation-name: wb-lightSpeedInLeft;
        animation-timing-function: ease-out;
  }
  @keyframes wb-lightSpeedOutRight {
    from {
      opacity: 1;
    }

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

    to {
            transform: translate3d(-100%, 0, 0) skewX(-30deg);
      opacity: 0;
    }
  }
  .wb-anim-lightSpeedOutLeft {
        animation-name: wb-lightSpeedOutLeft;
        animation-timing-function: ease-in;
  }
  /* Rotating entrances */
  @keyframes wb-rotateIn {
    from {
            transform: rotate3d(0, 0, 1, -200deg);
      opacity: 0;
    }

    to {
            transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  .wb-anim-rotateIn {
        animation-name: wb-rotateIn;
        transform-origin: center;
  }
  @keyframes wb-rotateInDownLeft {
    from {
            transform: rotate3d(0, 0, 1, -45deg);
      opacity: 0;
    }

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

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

    to {
            transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  .wb-anim-rotateInUpLeft {
        animation-name: wb-rotateInUpLeft;
        transform-origin: left bottom;
  }
  @keyframes wb-rotateInUpRight {
    from {
            transform: rotate3d(0, 0, 1, -90deg);
      opacity: 0;
    }

    to {
            transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  .wb-anim-rotateInUpRight {
        animation-name: wb-rotateInUpRight;
        transform-origin: right bottom;
  }
  /* Rotating exits */
  @keyframes wb-rotateOut {
    from {
      opacity: 1;
    }

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

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

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

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

    to {
            transform: rotate3d(0, 0, 1, 90deg);
      opacity: 0;
    }
  }
  .wb-anim-rotateOutUpRight {
        animation-name: wb-rotateOutUpRight;
        transform-origin: right bottom;
  }
  /* Specials */
  @keyframes wb-hinge {
    0% {
            animation-timing-function: ease-in-out;
    }

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

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

    to {
            transform: translate3d(0, 700px, 0);
      opacity: 0;
    }
  }
  .wb-anim-hinge {
        animation-duration: calc(1s * 2);
        animation-duration: calc(var(--animate-duration) * 2);
        animation-name: wb-hinge;
        transform-origin: top left;
  }
  @keyframes wb-jackInTheBox {
    from {
      opacity: 0;
            transform: scale(0.1) rotate(30deg);
            transform-origin: center bottom;
    }

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

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

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

    to {
      opacity: 1;
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-rollIn {
        animation-name: wb-rollIn;
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  @keyframes wb-rollOut {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
  }
  .wb-anim-rollOut {
        animation-name: wb-rollOut;
  }
  /* Zooming entrances */
  @keyframes wb-zoomIn {
    from {
      opacity: 0;
            transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
      opacity: 1;
    }
  }
  .wb-anim-zoomIn {
        animation-name: wb-zoomIn;
  }
  @keyframes wb-zoomInDown {
    from {
      opacity: 0;
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

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

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

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

    60% {
      opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
  }
  .wb-anim-zoomInUp {
        animation-name: wb-zoomInUp;
  }
  /* Zooming exits */
  @keyframes wb-zoomOut {
    from {
      opacity: 1;
    }

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

    to {
      opacity: 0;
    }
  }
  .wb-anim-zoomOut {
        animation-name: wb-zoomOut;
  }
  @keyframes wb-zoomOutDown {
    40% {
      opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
      opacity: 0;
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
  }
  .wb-anim-zoomOutDown {
        animation-name: wb-zoomOutDown;
        transform-origin: center bottom;
  }
  @keyframes wb-zoomOutLeft {
    40% {
      opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

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

    to {
      opacity: 0;
            transform: scale(0.1) translate3d(2000px, 0, 0);
    }
  }
  .wb-anim-zoomOutRight {
        animation-name: wb-zoomOutRight;
        transform-origin: right center;
  }
  @keyframes wb-zoomOutUp {
    40% {
      opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
      opacity: 0;
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
  }
  .wb-anim-zoomOutUp {
        animation-name: wb-zoomOutUp;
        transform-origin: center bottom;
  }
  /* Sliding entrances */
  @keyframes wb-slideInDown {
    from {
            transform: translate3d(0, -100%, 0);
      visibility: visible;
    }

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

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

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

    to {
            transform: translate3d(0, 0, 0);
    }
  }
  .wb-anim-slideInUp {
        animation-name: wb-slideInUp;
  }
  /* Sliding exits */
  @keyframes wb-slideOutDown {
    from {
            transform: translate3d(0, 0, 0);
    }

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

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

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

    to {
      visibility: hidden;
            transform: translate3d(0, -100%, 0);
    }
  }
  .wb-anim-slideOutUp {
        animation-name: wb-slideOutUp;
  }
}