/* CSS Animations - Overwrite VC animations */

.wpb_start_animation.wpb_top-to-bottom {
  -webkit-animation: wpb_ttb 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Safari 4+ */
  -moz-animation: wpb_ttb 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Fx 5+ */
  -o-animation: wpb_ttb 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Opera 12+ */
  animation: wpb_ttb 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* IE 10+ */
  opacity: 1;
}
.wpb_start_animation.wpb_bottom-to-top {
  -webkit-animation: wpb_btt 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Safari 4+ */
  -moz-animation: wpb_btt 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Fx 5+ */
  -o-animation: wpb_btt 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Opera 12+ */
  animation: wpb_btt 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* IE 10+ */
  opacity: 1;
}
.wpb_start_animation.wpb_left-to-right {
  -webkit-animation: wpb_ltr 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Safari 4+ */
  -moz-animation: wpb_ltr 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Fx 5+ */
  -o-animation: wpb_ltr 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Opera 12+ */
  animation: wpb_ltr 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* IE 10+ */
  opacity: 1;
}
.wpb_start_animation.wpb_right-to-left {
  -webkit-animation: wpb_rtl 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Safari 4+ */
  -moz-animation: wpb_rtl 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Fx 5+ */
  -o-animation: wpb_rtl 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Opera 12+ */
  animation: wpb_rtl 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* IE 10+ */
  opacity: 1;
}
.wpb_start_animation.wpb_appear {
  -webkit-animation: wpb_appear 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Safari 4+ */
  -moz-animation: wpb_appear 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Fx 5+ */
  -o-animation: wpb_appear 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* Opera 12+ */
  animation: wpb_appear 1s 1 cubic-bezier(0.175, 0.885, 0.32, 0.885);
  /* IE 10+ */
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/* Top to bottom keyframes */
@-webkit-keyframes wpb_ttb {
  0% {
    -webkit-transform: translate(0, -30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes wpb_ttb {
  0% {
    -moz-transform: translate(0, -30%);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes wpb_ttb {
  0% {
    -o-transform: translate(0, -30%);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes wpb_ttb {
  0% {
    transform: translate(0, -30%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Bottom to top keyframes */
@-webkit-keyframes wpb_btt {
  0% {
    -webkit-transform: translate(0, 30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes wpb_btt {
  0% {
    -moz-transform: translate(0, 30%);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes wpb_btt {
  0% {
    -o-transform: translate(0, 30%);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes wpb_btt {
  0% {
    transform: translate(0, 30%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Left to right keyframes */
@-webkit-keyframes wpb_ltr {
  0% {
    -webkit-transform: translate(-30%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes wpb_ltr {
  0% {
    -moz-transform: translate(-30%, 0);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes wpb_ltr {
  0% {
    -o-transform: translate(-30%, 0);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes wpb_ltr {
  0% {
    transform: translate(-30%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Right to left keyframes */
@-webkit-keyframes wpb_rtl {
  0% {
    -webkit-transform: translate(30%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes wpb_rtl {
  0% {
    -moz-transform: translate(30%, 0);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes wpb_rtl {
  0% {
    -o-transform: translate(30%, 0);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes wpb_rtl {
  0% {
    transform: translate(30%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Appear from center keyframes */
@-webkit-keyframes wpb_appear {
  0% {
    -webkit-transform: scale(0.5);
    opacity: 0.1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-moz-keyframes wpb_appear {
  0% {
    -moz-transform: scale(0.5);
    opacity: 0.1;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}
@-o-keyframes wpb_appear {
  0% {
    -o-transform: scale(0.5);
    opacity: 0.1;
  }
  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}
@keyframes wpb_appear {
  0% {
    transform: scale(0.5);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}