/*
Theme Name: BigBoom
*/
.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;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    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 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    -ms-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    -ms-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    -ms-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    -ms-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
/*
 * LESS VARIABLES
 */
/* Colors
----------------------------------------------------------*/
/* Body
----------------------------------------------------------*/
/* Typography
----------------------------------------------------------*/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
 a, .page-title {
  color: #0060a9;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* Wordpress default styles
----------------------------------------------------------*/
.alignnone {
  margin: 0;
}
.aligncenter,
div.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.wp-caption {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  padding: 5px;
  max-width: 100%;
  text-align: center;
}
.wp-caption img {
  display: block;
  margin: 0;
}
.sticky {
  display: block;
}
.wp-caption-text {
  font-size: 12px;
  margin: 0;
  padding: 5px 0 0;
}
.gallery-caption {
  display: block;
}
.bypostauthor {
  display: block;
}
/* Body
----------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
body {
  color: #444444;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
  background: #ffffff;
  overflow-x: hidden;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:focus {
  outline: none;
}
/* Typography
----------------------------------------------------------*/
a {
  -webkit-transition: 0.5s;
          transition: 0.5s;
  color: #555555;
  text-decoration: none;
}
a:hover {
  color: #555555;
  text-decoration:none;
}
a img {
  border: none;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444444;
  font-weight: normal;
  
  line-height: 1.2;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 13px;
}
h6 {
  font-size: 12px;
}
/* Elements
----------------------------------------------------------*/
img {
  max-width: 100%;
}
input[type=text],
textarea {
  border: 1px solid #e7e7e7;
  background-color: #ffffff;
  padding: 7px;
}
blockquote {
  font-style: italic;
  border-left: #da4b52;
  margin-left: 30px;
  margin-right: 30px;
  padding: 20px;
}
select {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #e7e7e7;
  color: #666;
  background-color: #ffffff;
}
select::-ms-expand {
  display: none;
}
ul,li{padding: 0;margin: 0;}

/* Layout
----------------------------------------------------------*/
.container {
  padding-left: 0;
  padding-right: 0;
}
.vc_row.vc_row-fluid.vc_row-fluid.container {
  margin: 0 auto;
}

.breadcrumbs{background-color: #f0f0f0;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .8rem;margin-top: 52px;
}
.breadcrumbs,.breadcrumbs a{color: #0060a9;}
.home .breadcrumbs{display: none;}
/* Clearfix
----------------------------------------------------------*/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* Tabs
----------------------------------------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs .tabs-nav {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}
.tabs .tabs-nav li {
  float: left;
}
.tabs .tabs-nav a {
  display: block;
}
.tabs .tabs-panel {
  clear: both;
  display: none;
}
.tabs .tabs-panel.active {
  -webkit-animation: fadeIn 1 1s ease;
          animation: fadeIn 1 1s ease;
  display: block;
}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding: 0;
  width: 20%;
  float: left;
}
.bb-col-9 {
  position: relative;
  min-height: 1px;
  padding: 0;
  width: 76% !important;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}
.bb-col-7 {
  position: relative;
  min-height: 1px;
  padding: 0;
  width: 54% !important;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}
.bb-col-6 {
  position: relative;
  min-height: 1px;
  padding: 0;
  width: 52% !important;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}
.bb-col-3 {
  position: relative;
  min-height: 1px;
  padding: 0;
  width: 24% !important;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}
.bb-col-2 {
  position: relative;
  min-height: 1px;
  padding: 0;
  width: 22% !important;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}
/**
 * Bootstrap modal
 */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background: rgba(0, 0, 0, 0.75);
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
  border: none;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  min-height: 40px;
  text-align: center;
  position: absolute;
  z-index: 99;
  right: 0px;
  border: none;
  padding: 0;
}
.modal-header .close {
  height: 40px;
  width: 40px;
  color: #444444;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  min-height: 40px;
  padding: 20px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  font-size: 21px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 70%;
    margin: 32px auto;
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
/**
 * jQuery UI Auto Complete
 */

.topbar {
  color: #888;
  min-height:30px;
  position: relative;
  padding: 0;
  background-color: #f0f0f0;
  z-index: 10;border-bottom: 1px solid #CCC;
}
.topbar a{display: block;line-height: 30px;}

.site-header {
  padding: 15px 0;
  background-color: #fff;
}
.site-header .logo {
  display: inline-block;width: 160px;
}
.site-header .site-title {
  margin: 0;
  height: 0;
  text-indent: -9999px;
}
.header-light .topbar {
  background-color: #f5f5f5;
}
.header-light .topbar-left .widget:before,
.header-light .topbar-sidebar li:before {
  background-color: #ccc;
}
.header-light .site-header {
  background-color: #ffffff;
}
.header-light .site-header .header-sidebar .ta-product-search-widget form {
  border-width: 1px;
}
.header-light .ta-mini-cart-widget .cart-contents {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #eee;
}
.header-light .ta-mini-cart-widget .cart-contents .arrow {
  color: #ffffff;
}
.page-template-template-homepage .site-content {
  padding:0;
}
.menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.menu li {
  display: inline-block;
  position: relative;
  list-style-type: none;
}
.menu li:hover > ul {
  visibility: visible;
  opacity: 1;
  z-index: 2000;
  top: 100%;width:240px;border: 1px solid #999;
  border-width: 1px 0 0 1px;
}
.menu li ul {
  -webkit-transition: top 0.3s ease 0s, opacity 0.3s;
          transition: top 0.3s ease 0s, opacity 0.3s;
  position: absolute;
  top: 130%;
  left: 0;
  width: 160px;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
.menu li ul ul {
  left: 100%;
}
.menu li li {
  display: block;
  float: none;
}
.menu li li:hover > ul {
  top: 0;
}
.menu a {
  display: block;
  position: relative;
}
.menu a i {
  margin-right: 10px;font-size: 24px;
}
.menu .menu-item-mega {
  position: static;
}
.menu .menu-item-mega:hover .mega-menu-container {
  opacity: 1;
  top: 100%;
  z-index: 1000;
}
.menu .mega-menu-container,
.menu .mega-menu-container.container {
  -webkit-transition: top 0.3s ease 0s, opacity 0.3s;
          transition: top 0.3s ease 0s, opacity 0.3s;
  position: absolute;
  top: 130%;
  left: 0;
  padding: 15px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  z-index: -1;
  opacity: 0;
}
.menu ul.sub-menu li a {
  position: relative;
  padding-left: 25px;
}

.menu .mega-sub-menu a {
  display: inline;
  padding: 10px 0;
}
.menu .mega-sub-menu a:hover {
  background-color: transparent;
}
.menu .mega-sub-menu > a {
  font-weight: 700;
  text-transform: uppercase;
}
.menu .mega-sub-menu ul {
  width: auto;
  border-width: 0;
  position: static;
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.menu .mega-sub-menu ul ul {
  margin-left: 30px;
}
.menu .mega-sub-menu li {
  padding: 8px 0;
}
.menu .mega-sub-menu li.menu-item-has-icon:before {
  display: none;
}
.menu .mega-sub-menu li:last-child {
  border-bottom-width: 0;
}
.menu .mega-sub-menu li:before {
  content: "\f111";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  color: #e7e7e7;
  font-size: 5px;
  vertical-align: top;
  margin-top: 7px;
  margin-right: 10px;
}
.menu .mega-sub-menu .sub-menu li a:before {
  display: none;
}
.menu .mega-sub-menu .sub-menu li:hover > a {
  margin-left: 0;
}
.menu .mega-sub-menu.right {
  float: right;
}
.menu .mega-sub-menu .wpb_row,
.menu .mega-sub-menu .wpb_content_element,
.menu .mega-sub-menu ul.wpb_thumbnails-fluid > li,
.menu .mega-sub-menu .last_toggle_el_margin,
.menu .mega-sub-menu .wpb_button {
  margin-bottom: 0;
}
.main-navigation {background-color: #606770;box-shadow: 0 5px 5px #ccc;}
.title_bar {
  margin-bottom: 30px;
  width: 100%;
  position: absolute;
  z-index: 3;
  left: 0;
}
.main-navigation .menu > li {
  float: left;border-left: 1px solid rgba(255,255,255,.3);
}
.main-navigation .menu > li > a {
  color: #fff;
  padding: 10px 25px;
}
.main-navigation .menu > li > a > i{margin-right: 0 !important;}

.main-navigation .menu > li:hover > a,
.main-navigation .menu > li.current-menu-item > a {
  background-color:#30638d;
  text-decoration: none;color: #FFF;
}
.main-navigation .menu > li.menu-item-has-children > a:after {
  margin-left: 10px;
  content: "\f107";
  display: inline-block;
  font-family:FontAwesome;font-size: 18px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-navigation .menu > li.menu-item-has-children .menu-item-has-children > a:after {
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 18px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: right;
}
.main-navigation .menu > li.menu-item-has-children .menu-item-has-children.mega-sub-menu > a:after {
  display: none;
}
.main-navigation .menu .sub-menu li a {background-color: #606770;
  padding: 10px 10px 10px 25px;color: #FFF;
}
.main-navigation .menu .sub-menu li a:hover {text-decoration: none;
  background-color:#30638d;
}
.main-navigation .menu .mega-menu-container li:hover {
  cursor: pointer;
}
.main-navigation .menu .mega-menu-container li:hover > a {
  color: #eee;
}
.main-navigation .menu .mega-sub-menu li a {
  padding: 0;
}
.main-navigation .menu .mega-sub-menu li a:hover {
  padding-left: 5px;
}

.main-navigation li ul,.main-navigation li li {border: 1px solid #999; border-width: 0 1px 1px 0;}
.main-navigation li li:hover ul {
  top: -1px;
}
.main-navigation li a:hover {
  background-color: #eeeeee;color: #333;
}
.main-navigation a {
  line-height: 32px;
  padding: 0 25px;box-sizing: border-box;color: #fff;font-size: 15px;
}
.numeric-navigation {
  text-align: center;
}
.numeric-navigation .prev,
.numeric-navigation .next {
  overflow: hidden;
  width: 30px;
  padding: 0 10px 0 8px;
}
.numeric-navigation .prev:before,
.numeric-navigation .next:before {
  font-family: FontAwesome;
  content: "\f104";
}
.numeric-navigation .next {
  padding: 0 10px;
}
.numeric-navigation .next:before {
  content: "\f105";
}
.numeric-navigation a,
.numeric-navigation span {
  color: #ffffff;
  padding: 0 12px;
  height: 30px;
  line-height: 30px;
  margin: 0 0 0 4px;
  background: #aaa;
  text-align: center;
  float: left;
  display: block;
}
.numeric-navigation a:hover,
.numeric-navigation span.current {
  background: #333333;
}
#mobile-menu.mobile-menu {
  display: none;
}

.banner{margin: 0 15px;}
/* REV */
.tp-bullets.simplebullets.square-old .bullet {
  width: 20px;
  height: 7px;
  background: #d7d4d4;
  margin-left: 7px;
}
.tp-bullets.simplebullets.square-old .bullet.selected {
  background: #da4b52;
}
.tp-leftarrow.square-old,
.tp-rightarrow.square-old {
  background-image: none;
  width: 48px;
  height: 57px;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.5s;
          transition: 0.5s;
}
.tp-leftarrow.square-old:before,
.tp-rightarrow.square-old:before {
  font-family: FontAwesome;
  font-size: 28px;
  line-height: 57px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tp-leftarrow.square-old:hover,
.tp-rightarrow.square-old:hover {
  color: #da4b52;
}
.tp-leftarrow.square-old:before {
  content: "\f104";
}
.tp-rightarrow.square-old:before {
  content: "\f105";
}

.custom.tp-bullets .tp-bullet {
  width: 20px;
  height: 7px;
  background: #d7d4d4;
  margin-left: 7px;
}
.custom.tp-bullets .tp-bullet.selected {
  background: #da4b52;
}
.site-main .article {
  margin: 30px 0;clear: both;
}
.site-main .article:after{content:"";clear: both;display: block;}
.site-main .numeric-navigation {
  float: right;
}
.site-main .results-navigation {
  float: left;
  line-height: 30px;
}
.site-main .pagination {
  border-top: 1px solid #e7e7e7;
  padding-top: 12px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
}
h2.entry-title {margin: 0 0 10px;font-size:24px;}
.entry-author,.entry-date,.entry-comments {margin-right: 20px;
  color: #aaaaaa;
  font-size: 12px;display: block;margin-bottom:10px}
.entry-author i,
.entry-date i {
  margin-right: 4px;
  color: #444444;
}
 .entry-author a,
 .entry-date a{
  color: #aaaaaa;
}
.entry-author a:hover,
.entry-date a:hover{
  text-decoration: underline;
}
.entry-author a {
  color: #444444;
}
.entry-date i {
  margin-right: 8px;
}
 .tags-links {
  display: block;
  padding: 10px 0;
  font-size: 12px;
}
.tags-links a {
  color: #aaaaaa;
}
 .tags-links a:hover {
  text-decoration: underline;
}
.entry-format {
  margin-bottom: 20px;
}
.entry-format img {
  display: block;margin: 10px auto;
}
.entry-format iframe {
  width: 100%;
}
.entry-format blockquote,
.entry-format .link-block {
  color: #ffffff;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  position: relative;
  display: block;
  margin: 0;
  padding: 30px 30px 30px 80px;
  background-color: #27282b;
  line-height: 1.1;
}
.entry-format blockquote:before,
.entry-format .link-block:before {
  position: absolute;
  left: 30px;
  top: 33px;
  color: #ffffff;
}
.entry-format blockquote:before {
  font-family: FontAwesome;
  content: "\f10d";
}
.entry-format blockquote cite {
  font-style: italic;
  font-size: 13px;
  display: block;
  margin-top: 10px;
}
.entry-format blockquote a {
  color: #da4b52;
}
.entry-format blockquote a:hover {
  text-decoration: underline;
}
.entry-format .link-block:before {
  font-family: FontAwesome;
  content: "\f0c1";
  -webkit-transition: 0.3s;
          transition: 0.3s;
}
.entry-format .link-block:hover {
  background-color: #da4b52;
  text-decoration: none;
}
.entry-format .link-block:hover:before {
  color: #ffffff;
}

.format-audio .entry-format iframe {
  height: auto;
}
.format-audio .entry-format .audio-player {
  background-color: #222;
  padding: 10px 0;
}
.post{padding: 24px 0;} 

.bb-post {
  padding: 0;margin-bottom: 15px;background-color: #FFF;
}
.bb-post::after{content: "";clear: both;display: block;}
.bb-post .post-thumb {
  float: left;
  margin-right: 15px;
  display: block;
}
.hd .bb-post .post-thumb{float: none;display: block;margin:0}
.bb-post .post-thumb img {
  display: block;margin: 0 auto 5px;
}
.bb-post .post-text {
  padding: 15px;
  position: relative;font-size: 16px;
}
.bb-post .post-text .post-title {
  font-size:18px;color: #0060a9;
  font-weight: 500;
  padding-bottom: 5px;
  display: block;
  line-height: 1.3;
}

.bb-post.no-thumb .post-text {
  margin-left: 0;
}
.sidebar-content .content-area {
  float: right;
}
.page-header {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}
.page-header .page-title {
  font-size: 20px;
  margin: 0 0 15px;
}
.error404 .page-header {
  border: none;
  text-align: center;
}
.error404 .page-header .page-title {
  letter-spacing: 15px;
  font-size: 85px;
}
.error404 .page-content p {
  margin: 25px 0;
}
.owl-carousel {
  margin: 0;
  padding: 0;
  list-style: none;
}
.owl-carousel .owl-buttons .owl-prev,
.owl-carousel .owl-buttons .owl-next {
  -webkit-transition: 0.5s;
          transition: 0.5s;
}
.flexslider .owl-carousel {
  overflow: hidden;
}
.flexslider .owl-carousel:hover .owl-buttons .owl-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider .owl-carousel:hover .owl-buttons .owl-prev:hover {
  opacity: 1;
}
.flexslider .owl-carousel:hover .owl-buttons .owl-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider .owl-carousel:hover .owl-buttons .owl-next:hover {
  opacity: 1;
}
.widget {
  margin-bottom: 25px;
}
.widget .widget-title {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
}
.widget ul {
  margin: 0;
  padding: 0;
}
.widget ul li {
  list-style: none;
}
.widget table,
.widget select {
  width: 100%;
}
.widget select {
  border: 1px solid #e7e7e7;
  height: 30px;
  background-color: transparent;
}
.widget select option {
  color: #555555;
}
.widget table {
  text-align: left;
  width: 100%;
}
.widget table caption {
  border: 1px solid #e7e7e7;
  border-bottom-width: 0;
  text-align: center;
}
.widget table tr {
  border: 1px solid #e7e7e7;
  border-bottom-width: 0;
  padding: 3px 0;
}
.widget table tr td,
.widget table tr th {
  padding: 0 5px;
  border-bottom: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}
.widget_calendar {
  line-height: 26px;
}
.widget_categories li,
.widget_recent_comments li,
.widget_rss li,
.widget_pages li,
.widget_archive li,
.widget_nav_menu li,
.widget_recent_entries li,
.widget_meta li,
.widget-recent-comments li {
  border-bottom: solid 1px #e7e7e7;
  padding: 8px 0;
}
.widget_categories li:first-child,
.widget_recent_comments li:first-child,
.widget_rss li:first-child,
.widget_pages li:first-child,
.widget_archive li:first-child,
.widget_nav_menu li:first-child,
.widget_recent_entries li:first-child,
.widget_meta li:first-child,
.widget-recent-comments li:first-child {
  padding-top: 0;
}
.widget_categories .children,
.widget_recent_comments .children,
.widget_rss .children,
.widget_pages .children,
.widget_archive .children,
.widget_nav_menu .children,
.widget_recent_entries .children,
.widget_meta .children,
.widget-recent-comments .children {
  border-top: 1px solid #e7e7e7;
  margin-top: 10px;
  margin-left: 15px;
}
.widget_categories .children li a,
.widget_recent_comments .children li a,
.widget_rss .children li a,
.widget_pages .children li a,
.widget_archive .children li a,
.widget_nav_menu .children li a,
.widget_recent_entries .children li a,
.widget_meta .children li a,
.widget-recent-comments .children li a {
  padding-left: 10px;
}
.widget_categories .children li .children li a,
.widget_recent_comments .children li .children li a,
.widget_rss .children li .children li a,
.widget_pages .children li .children li a,
.widget_archive .children li .children li a,
.widget_nav_menu .children li .children li a,
.widget_recent_entries .children li .children li a,
.widget_meta .children li .children li a,
.widget-recent-comments .children li .children li a {
  padding-left: 20px;
}
.widget_categories .children li .children li:last-child,
.widget_recent_comments .children li .children li:last-child,
.widget_rss .children li .children li:last-child,
.widget_pages .children li .children li:last-child,
.widget_archive .children li .children li:last-child,
.widget_nav_menu .children li .children li:last-child,
.widget_recent_entries .children li .children li:last-child,
.widget_meta .children li .children li:last-child,
.widget-recent-comments .children li .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_categories .children li .children .children li a,
.widget_recent_comments .children li .children .children li a,
.widget_rss .children li .children .children li a,
.widget_pages .children li .children .children li a,
.widget_archive .children li .children .children li a,
.widget_nav_menu .children li .children .children li a,
.widget_recent_entries .children li .children .children li a,
.widget_meta .children li .children .children li a,
.widget-recent-comments .children li .children .children li a {
  padding-left: 30px;
}
.widget_categories .children li .children .children li:last-child,
.widget_recent_comments .children li .children .children li:last-child,
.widget_rss .children li .children .children li:last-child,
.widget_pages .children li .children .children li:last-child,
.widget_archive .children li .children .children li:last-child,
.widget_nav_menu .children li .children .children li:last-child,
.widget_recent_entries .children li .children .children li:last-child,
.widget_meta .children li .children .children li:last-child,
.widget-recent-comments .children li .children .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_categories .children li:last-child,
.widget_recent_comments .children li:last-child,
.widget_rss .children li:last-child,
.widget_pages .children li:last-child,
.widget_archive .children li:last-child,
.widget_nav_menu .children li:last-child,
.widget_recent_entries .children li:last-child,
.widget_meta .children li:last-child,
.widget-recent-comments .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_tag_cloud a {
  padding: 8px 10px;
  margin: 0 3px 6px 0;
  display: inline-block;
  font-size: 11px !important;
  font-weight: 400;
  background-color: #eeeeee;
}
.widget_tag_cloud a:hover {
  background-color: #333333;
  color: #ffffff;
}
.tabs-widget .tabs-nav li {
  width: 33%;
  border-bottom: none;
  padding-bottom: 0;
}
.tabs-widget .tabs-nav li:last-child {
  width: 34%;
}
.tabs-widget .tabs-nav li:before {
  display: none;
}
.tabs-widget .tabs-nav li a {
  background: #eeeeee;
  border: 1px solid #e7e7e7;
  color: #646464;
  padding: 8px 0;
  text-align: center;
}
.tabs-widget .tabs-nav li a.active {
  color: #ffffff;
  text-decoration: none;
  border-color: transparent;
  background: #333333;
}
.tabs-widget .tabs-panel {
  margin-top: -1px;
  padding: 15px 0 20px;
}
.tabs-widget .tab-comments .comment {
  border-bottom: solid 1px #e7e7e7;
  padding: 10px 0;
  overflow: hidden;
}
.tabs-widget .tab-comments .comment-summary {
  font-style: italic;
  margin-bottom: 5px;
}
.recent-post,
.popular-post {
  border-bottom: solid 1px #e7e7e7;
  padding: 10px 0;
  overflow: hidden;
}
.recent-post:last-child,
.popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.recent-post .widget-thumb,
.popular-post .widget-thumb {
  text-align: center;
  width: 100%;
  display: inline-block;
}
.recent-post .post-text,
.popular-post .post-text {
  margin-top: 10px;
}
.recent-post .post-text .post-title,
.popular-post .post-text .post-title {
  display: block;
  font-size: 14px;
  padding-bottom: 5px;
}
.recent-post .post-text .post-date,
.popular-post .post-text .post-date {
  color: #aaaaaa;
}
.recent-post .post-text .post-comments,
.popular-post .post-text .post-comments {
  display: block;
  color: #aaaaaa;
}
.recent-post .post-text .read-more,
.popular-post .post-text .read-more {
  float: right;
  line-height: 2;
}
.recent-post.thumb-left .widget-thumb,
.popular-post.thumb-left .widget-thumb {
  float: left;
  width: auto;
  margin-right: 10px;
}
.recent-post.thumb-left .post-text,
.popular-post.thumb-left .post-text {
  margin-top: 0;
}
.widget-recent-comments li {
  padding: 20px 0;
  color: #aaaaaa;
}
.widget-recent-comments li a,
.widget-recent-comments li p {
  color: #555555;
}
.search-form {
  position: relative;width: 300px;max-width: 100%;
}
.search-form:before {
  content: '\f002';
  font-family: FontAwesome;
  color: #005099;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  width: 33px;
  height: 33px;
  line-height: 39px;
  text-align: center;
  cursor: pointer;
}
.search-form .screen-reader-text {
  display: none;
}
.search-form label {
  width: 100%;
}
.search-form .search-field {
  border: 1px solid #e7e7e7;
  padding: 8px 5px;
  width: 100%;
  background-color: transparent;
  font-weight: 400;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.search-form ::-webkit-input-placeholder {
  color: #aaaaaa;
}
.search-form :-moz-placeholder {
  color: #aaaaaa;
}
.search-form ::-moz-placeholder {
  color: #aaaaaa;
}
.search-form :-ms-input-placeholder {
  color: #aaaaaa;
}
.search-form .search-submit {
  width: 40px;
  height: 40px;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-indent: -9999px;
}
.widget_nav_menu .menu {
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}
.widget_nav_menu .menu .sub-menu a:before {
  top: 24px;
}
.widget_nav_menu li {
  display: block;
  padding: 0;
}
.widget_nav_menu li a {
  font-size: 16px;
  padding: 15.5px 15px;
}
.widget_nav_menu li i {
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
}
.widget_nav_menu li ul {
  -webkit-transition: left 0.3s ease 0s, opacity 0.3s;
          transition: left 0.3s ease 0s, opacity 0.3s;
  left: 130%;
  top: -1px;
  width: 200px;
  border: 1px solid #eeeeee;
  background-color: #ffffff;
}
.widget_nav_menu li li:last-child {
  border-bottom-width: 0;
}
.widget_nav_menu li:hover > ul {
  top: -1px;
  left: 100%;
}
.widget_nav_menu li.menu-item-has-children > a:after {
  content: "\f0da";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  font-size: 12px;
  color: #bbb;
  float: right;
  margin-top: 5px;
}
.widget_nav_menu:first-child {
  margin-top: -90px;
}
.widget_nav_menu:first-child .widget-title {
  color: #ffffff;
  padding: 17px 15px;
  margin-bottom: 0;
  background-color: #181818;
  line-height: 1.15;
}
.widget_nav_menu:first-child .widget-title:after {
  content: "\f0c9";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  float: right;
  margin-top: 2px;
}
.wpb_content_element .menu .menu-item-mega,
.primary-sidebar .menu .menu-item-mega {
  position: relative;
}
.wpb_content_element .menu .menu-item-mega:hover,
.primary-sidebar .menu .menu-item-mega:hover {
  z-index: 1000;
}
.wpb_content_element .menu .menu-item-mega:hover .mega-menu-container,
.primary-sidebar .menu .menu-item-mega:hover .mega-menu-container {
  left: 100%;
  top: 0;
}

.wpb_content_element .menu > li:hover > a,
.primary-sidebar .menu > li:hover > a,
.wpb_content_element .menu > li:hover > a:after,
.primary-sidebar .menu > li:hover > a:after {
  color: #ffffff;
  text-decoration: none;
}
.wpb_content_element .menu .mega-menu-container,
.primary-sidebar .menu .mega-menu-container {
  -webkit-transition: left 0.3s ease 0s, opacity 0.3s;
          transition: left 0.3s ease 0s, opacity 0.3s;
  top: -1px;
  left: 130%;
}
.wpb_content_element .menu .mega-sub-menu li,
.primary-sidebar .menu .mega-sub-menu li {
  padding: 0;
}
.wpb_content_element .menu .mega-sub-menu li:before,
.primary-sidebar .menu .mega-sub-menu li:before {
  margin-top: 17px;
}
.wpb_content_element .menu .mega-sub-menu li a,
.primary-sidebar .menu .mega-sub-menu li a {
  font-size: 13px;
  line-height: 38px;
  padding: 0;
  -webkit-transition: 0.5s;
          transition: 0.5s;
}
.wpb_content_element .menu .mega-sub-menu li:hover,
.primary-sidebar .menu .mega-sub-menu li:hover {
  cursor: pointer;
}
.wpb_content_element .menu .mega-sub-menu li:hover a,
.primary-sidebar .menu .mega-sub-menu li:hover a {
  padding-left: 5px;
  color: #555555;
  text-decoration: underline;
}
.content-sidebar .primary-sidebar .widget_nav_menu li ul,
.wpb_content_element.right-side .widget_nav_menu li ul {
  -webkit-transition: right 0.3s ease 0s, opacity 0.3s;
          transition: right 0.3s ease 0s, opacity 0.3s;
  left: auto;
  right: 130%;
}
.content-sidebar .primary-sidebar .widget_nav_menu li a:after,
.wpb_content_element.right-side .widget_nav_menu li a:after {
  display: none;
}
.content-sidebar .primary-sidebar .widget_nav_menu li:hover > ul,
.wpb_content_element.right-side .widget_nav_menu li:hover > ul {
  left: auto;
  right: 100%;
}
.content-sidebar .primary-sidebar .widget_nav_menu .menu .menu-item-mega:hover .mega-menu-container,
.wpb_content_element.right-side .widget_nav_menu .menu .menu-item-mega:hover .mega-menu-container {
  left: auto;
  right: 100%;
}
.content-sidebar .primary-sidebar .widget_nav_menu .menu .mega-menu-container,
.wpb_content_element.right-side .widget_nav_menu .menu .mega-menu-container {
  -webkit-transition: right 0.3s ease 0s, opacity 0.3s;
          transition: right 0.3s ease 0s, opacity 0.3s;
  left: auto;
  right: 130%;
}
.wpb_content_element{margin-bottom: 0 !important;}

.topbar-sidebar select {
  height: 20px;
  border-width: 0;
  background: transparent;
}
.topbar-sidebar ul,
.topbar-sidebar ol {
  margin: 0;
  padding: 0;
  list-style-type: none;border: 1px solid #CCC;display: flex;align-items: center;
}
.topbar-sidebar li {
  line-height:30px;
  list-style-type: none;
  display: inline-block;
  margin: 0;
  position: relative;
}
.topbar-sidebar li:before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
}
.topbar-sidebar li:first-child:before {
  display: none;
}
.topbar-sidebar li a {display: block;
  color: #888;
}
.topbar-sidebar li a:hover {
  color: #fff;background-color: #0060a9;
}
.topbar-sidebar .widget {
  margin-bottom: 0;
}
.topbar-sidebar .menu {
  border-width: 0;
}
.topbar-sidebar .menu li {}
.topbar-sidebar .menu li:hover ul {
  top: 100%;
}
.topbar-sidebar .menu li a {
  font-size:14px;
  display: inline-block;
  padding: 0 15px;
}
.topbar-sidebar .menu li a:hover{background-color: #0060a9;color: #FFF;}
.topbar-sidebar .menu li a:after {
  display: none;
}
.topbar-sidebar .menu li ul {
  left: 0;
  width: 150px;
  padding-top: 10px;
  border-width: 0;
  background-color: transparent;
}
.topbar-sidebar .menu li ul ul {
  padding-top: 0;
  top: 7px;
}
.topbar-sidebar .menu li li {
  display: block;
  padding: 0;
  line-height: 25px;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
}
.topbar-sidebar .menu li li:before {
  display: none;
}
.topbar-sidebar .menu li li a {
  display: block;
  padding: 0 15px;
}
.topbar-sidebar .menu li li a:hover {
  padding-left: 15px;
  background-color: #eeeeee;
}
.topbar-sidebar .menu li li a:before {
  display: none;
}
.topbar-sidebar .widget_icl_lang_sel_widget {
  height: 20px;
}
.topbar-sidebar #lang_sel {
  height: 20px;
  font-family:  Arial, sans-serif;
}
.topbar-sidebar #lang_sel > ul > li {
  width: auto;
}
.topbar-sidebar #lang_sel a.lang_sel_sel {
  position: relative;
  padding-left: 0;
  background: transparent;
  border-width: 0;
  line-height: 20px;
  font-size: 14px;
  color: #888;
}
.topbar-sidebar #lang_sel a.lang_sel_sel:hover {
  color: #888;
  text-decoration: underline;
}
.topbar-sidebar #lang_sel a.lang_sel_sel:after {
  margin-left: 7px;
  content: "\f0d7";
  font: normal normal normal 12px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.topbar-sidebar #lang_sel ul ul {
  -webkit-transition: 0.3s;
          transition: 0.3s;
  width: auto;
  width: 130px;
  top: 30px;
}
.topbar-sidebar #lang_sel ul ul li {
  float: none;
  display: block;
  width: auto;
  width: 130px;
  border-bottom-width: 0;
}
.topbar-sidebar #lang_sel ul ul li:before {
  display: none;
}
.topbar-sidebar #lang_sel ul ul a {
  font-size: 13px;
  line-height: 25px;
  padding: 0 10px;
  border-width: 0;
  border-top: 1px solid #eeeeee;
}
.topbar-sidebar .widget_currency_sel_widget:after {
  margin-left: 7px;
  content: "\f0d7";
  font: normal normal normal 12px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.topbar-sidebar .widget_currency_sel_widget select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: auto;
  height: 40px;
  margin: -10px 0;
  cursor: pointer;
}
.topbar-left .widget {
  float: left;
  margin: 0 0 0 15px;
  padding: 0 0 0 15px;
  position: relative;
}
.topbar-left .widget:before {
  content: "";
  display: block;
  width: 1px;
  height: 8px;
  background-color: #333333;
  position: absolute;
  left: 0;
  top: 7px;
}
.topbar-left .widget:first-child {
  margin-left: 0;
  padding-left: 0;
}
.topbar-left .widget:first-child:before {
  display: none;
}
.topbar-right .widget {
  float: right;
  margin: 0 0 0 15px;
  padding: 0 0 0 15px;
  position: relative;
}
.topbar-right .widget:before {
  content: "";
  display: block;
  width: 1px;
  height: 8px;
  background-color: #333333;
  position: absolute;
  left: 0;
  top: 7px;
}
.topbar-right .widget:first-child {
  margin-left: 0;
  padding-left: 0;
}
.topbar-right .widget:first-child:before {
  display: none;
}
.header-sidebar .widget {
  float: right;
  margin-right: 30px;
  margin-bottom: 0;
}
.header-sidebar .widget:first-child {
  margin-right: 0;
}
.header-sidebar .ta-product-search-widget form {
  border-width: 0;
  width: 570px;
}
.header-sidebar .ta-product-search-widget .search-field {
  width: 65%;
}
.header-sidebar .ta-mini-cart-widget + .ta-product-search-widget {
  margin-right: 65px;
}
.widget-area .ta-product-search-widget form {
  overflow: hidden;
  border: none;
}
.widget-area .ta-product-search-widget .product-cat {
  width: 100%;
  border: 1px solid #eeeeee;
}
.widget-area .ta-product-search-widget .product-cat select {
  width: 90%;
}
.widget-area .search-field {
  width: 100%;
  border: 1px solid #eeeeee;
  padding: 10px 15px;
}
.widget-area .search-submit {
  float: left;
}
.footer-sidebar {
  color: #888;
}
.footer-sidebar a {
  color: #888;
}
.footer-sidebar a:hover {
  color: #eeeeee;
}
.footer-sidebar li {
  -webkit-transition: 0.3s;
          transition: 0.3s;
  padding: 0 0 10px;
  border-bottom-width: 0;
}
.footer-sidebar li:before {
  content: "\f0da";
  margin-right: 10px;
  color: #bababa;
  font-family: FontAwesome;
  font-size: 12px;
  line-height: 1;
}
.footer-sidebar li:hover {
  padding-left: 10px;
}
.footer-sidebar li:hover:before {
  color: #eeeeee;
}
.footer-sidebar li:last-child {
  padding-bottom: 0;
}
.footer-sidebar .widget:last-child {
  margin-bottom: 0;
}
.footer-sidebar .widget-title {
  color: #eeeeee;
}
.footer-sidebar .widget_nav_menu .widget-title {
  padding: 0;
  background-color: transparent;
  margin-bottom: 20px;
}
.footer-sidebar .widget_nav_menu:first-child {
  margin-top: 0;
}
.footer-sidebar .widget_nav_menu:first-child .widget-title:after {
  display: none;
}
.footer-sidebar .widget_nav_menu .menu {
  border: none;
}
.footer-sidebar .widget_nav_menu .menu li.menu-item-has-children > a:after {
  display: none;
}
.footer-sidebar .widget_nav_menu .menu li li a {
  padding-left: 0;
}
.footer-sidebar .widget_nav_menu .menu li li a:before {
  display: none;
}
.footer-sidebar .widget_nav_menu .menu ul {
  position: static;
  border-width: 0;
  margin: 5px 0 0 30px;
  opacity: 1;
  z-index: 1;
  visibility: visible;
  background-color: transparent;
}
.footer-sidebar .widget_nav_menu li a {
  padding: 0;
  display: inline;
  font-size: 13px;
}
.footer-sidebar .widget_categories .children,
.footer-sidebar .widget_recent_comments .children,
.footer-sidebar .widget_rss .children,
.footer-sidebar .widget_pages .children,
.footer-sidebar .widget_archive .children,
.footer-sidebar .widget_nav_menu .children,
.footer-sidebar .widget_recent_entries .children,
.footer-sidebar .widget_meta .children,
.footer-sidebar .widget-recent-comments .children {
  border-top-width: 0;
}
.footer-sidebar .widget_wysija {
  margin-top: -10px;
}
.vc_wp_custommenu .widget_nav_menu {
  margin-bottom: 0;
}
.site-footer {
  background: #eee;
}
.footer-widgets {
  padding: 40px 0 20px;
}
.site-info {
  color: #888;
  padding: 0 0 20px 0;
}
.site-info hr {
  margin: 0 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-info a {
  color: #888;
}
.site-info a:hover {
  color: #eeeeee;
}
.footer-menu li {
  padding: 0 10px;
  margin-right: -4px;
  border-right: 1px solid #444;
}
.footer-menu li:first-child {
  padding-left: 0;
}
.footer-menu li:last-child {
  padding-right: 0;
  border-right-width: 0;
}
.footer-menu li ul {
  display: none;
}
.footer-menu a {
  line-height: 15px;
}
.social-icons {
  position: fixed;
  right: -120px;
  top: 150px;
  z-index: 999;
  width: 160px;
}
.social-icons a {
  -webkit-transition: 0.6s ease;
          transition: 0.6s ease;
  color: #ffffff;
  margin-bottom: 1px;
  display: block;
  overflow: hidden;
  position: relative;
  height: 40px;
}
.social-icons a .fa {
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
}
.social-icons a span {
  font-size: 11px;
  font-family:  Arial, sans-serif;
  white-space: nowrap;
  position: relative;
  top: -3px;
}
.social-icons a:hover {
  margin-left: -120px;
}
.social-icons .bb-facebook {
  background-color: #39599f;
}
.social-icons .bb-twitter {
  background-color: #45b0e3;
}
.social-icons .bb-pinterest {
  background-color: #cd2026;
}
.social-icons .bb-google,
.social-icons .bb-google-plus {
  background-color: #df5138;
}
.social-icons .bb-flickr {
  background-color: #ff0086;
}
.social-icons .bb-vimeo-square {
  background-color: #45afe1;
}
.social-icons .bb-linkedin {
  background-color: #0175b2;
}
.social-icons .bb-youtube {
  background-color: #e52d27;
}
.social-icons .bb-dribbble {
  background-color: #e84c89;
}
.social-icons .bb-behance {
  background-color: #329dd5;
}
.social-icons .bb-tumblr {
  background-color: #2a445d;
}
.social-icons .bb-soundcloud {
  background-color: #f65d0d;
}
.social-icons .bb-spotify {
  background-color: #7eb615;
}
.social-icons .bb-github {
  background-color: #60b044;
}
.social-icons .bb-instagram {
  background-color: #5280a4;
}
.social-icons .bb-foursquare {
  background-color: #ef4b78;
}
.social-icons .bb-picasa {
  background-color: #8e68a3;
}
.social-icons .bb-lastfm {
  background-color: #d7000e;
}
.social-icons .bb-envelope {
  background-color: #2a056f;
}
.backtotop {
  bottom: 135px;
  display: none;
  height: 40px;
  position: fixed;
  right: 0;
  width: 40px;
  z-index: 9999;
  cursor: pointer;
  font-size: 22px;
  font-weight: normal;
  text-align: center;
  line-height: 38px;
  background-color: #da4b52;
  color: #ffffff;
}
.backtotop:hover {
  background-color: #333333;
  color: #ffffff;
}
/*
 * OwlCarousel
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-controls {
  text-align: center;
}
/* Styling Next and Prev buttons */
.owl-controls .owl-buttons div {
  margin-top: -20px;
  height: 50px;
  width: 50px;
  display: inline-block;
  position: absolute;
  top: 50%;
  z-index: 999;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  font-size: 26px;
  background-color: #da4b52;
}
.owl-controls .owl-buttons div:hover {
  background-color: #333333;
}
.owl-controls .owl-prev {
  left: -60px;
}
.owl-controls .owl-next {
  right: -60px;
}
/* Styling Pagination*/
.owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-controls .owl-page span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 7px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.owl-controls .owl-page.active span,
.owl-controls.clickable .owl-page:hover span {
  background-color: #ffffff;
}
/* If PaginationNumbers is true */
.owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}

.vc_row .container {
  padding-left: 0;
  padding-right: 0;}
.vc_row .container .vc_inner .container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.vc_row .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.vc_row .container-fluid > .vc_col-sm-12 {
  padding-left: 0;
  padding-right: 0;
}
.btn-primary,.btn {
  padding: 12px 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  color: #0060a9;
  -webkit-border-radius: 0;
          border-radius: 0;
  font-weight: 400;
  border: none;
  font-size: 16px;
}

.section-products .section-heading,
.bb-posts-owl-carousel .section-heading,
.bb-images-owl-carousel .section-heading {
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  margin-top: 4px;
}
.section-products .owl-carousel .col-product,
.bb-posts-owl-carousel .owl-carousel .col-product,
.bb-images-owl-carousel .owl-carousel .col-product {
  width: 100%;
}
.bb-owl-list {}
.bb-images-owl-carousel .bb-owl-list {
  margin-right: -5px;
  margin-left: -5px;
}
.bb-images-owl-carousel .owl-item {
  padding: 0 5px;
}


.products-carousel,
.bb-posts-owl-carousel,
.bb-images-owl-carousel,
.products-carousel-3 {
  position: relative;
}
.products-carousel .col-product,
.bb-posts-owl-carousel .col-product,
.bb-images-owl-carousel .col-product,
.products-carousel-3 .col-product {
  width: 100%;
}
.products-carousel .owl-controls .owl-buttons .owl-prev,
.bb-posts-owl-carousel .owl-controls .owl-buttons .owl-prev,
.bb-images-owl-carousel .owl-controls .owl-buttons .owl-prev,
.products-carousel-3 .owl-controls .owl-buttons .owl-prev,
.products-carousel .owl-controls .owl-buttons .owl-next,
.bb-posts-owl-carousel .owl-controls .owl-buttons .owl-next,
.bb-images-owl-carousel .owl-controls .owl-buttons .owl-next,
.products-carousel-3 .owl-controls .owl-buttons .owl-next {
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 26px;
  font-size: 16px;
  background-color: #efefef;
  color: #666666;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-transition: 0.5s;
          transition: 0.5s;
  margin-top: 0;
  position: absolute;
  text-align: center;
}
.products-carousel .owl-controls .owl-buttons .owl-prev:hover,
.bb-posts-owl-carousel .owl-controls .owl-buttons .owl-prev:hover,
.bb-images-owl-carousel .owl-controls .owl-buttons .owl-prev:hover,
.products-carousel-3 .owl-controls .owl-buttons .owl-prev:hover,
.products-carousel .owl-controls .owl-buttons .owl-next:hover,
.bb-posts-owl-carousel .owl-controls .owl-buttons .owl-next:hover,
.bb-images-owl-carousel .owl-controls .owl-buttons .owl-next:hover,
.products-carousel-3 .owl-controls .owl-buttons .owl-next:hover {
  background-color: #666666;
  color: #ffffff;
}
.products-carousel .owl-controls .owl-buttons .owl-prev,
.bb-posts-owl-carousel .owl-controls .owl-buttons .owl-prev,
.bb-images-owl-carousel .owl-controls .owl-buttons .owl-prev,
.products-carousel-3 .owl-controls .owl-buttons .owl-prev {
  right: 32px;
  left: inherit;
}
.products-carousel .owl-controls .owl-buttons .owl-next,
.bb-posts-owl-carousel .owl-controls .owl-buttons .owl-next,
.bb-images-owl-carousel .owl-controls .owl-buttons .owl-next,
.products-carousel-3 .owl-controls .owl-buttons .owl-next {
  right: 0px;
}
.products-carousel .section-heading,
.bb-posts-owl-carousel .section-heading,
.bb-images-owl-carousel .section-heading,
.products-carousel-3 .section-heading {
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  line-height: 26px;
}
.products-carousel ul.products,
.bb-posts-owl-carousel ul.products,
.bb-images-owl-carousel ul.products,
.products-carousel-3 ul.products,
.products-carousel .owl-carousel,
.bb-posts-owl-carousel .owl-carousel,
.bb-images-owl-carousel .owl-carousel,
.products-carousel-3 .owl-carousel {
  position: initial;
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
}
.products-carousel div[itemprop="description"],
.bb-posts-owl-carousel div[itemprop="description"],
.bb-images-owl-carousel div[itemprop="description"],
.products-carousel-3 div[itemprop="description"] {
  display: none;
}
.products-carousel.no-title .owl-carousel,
.bb-posts-owl-carousel.no-title .owl-carousel,
.bb-images-owl-carousel.no-title .owl-carousel,
.products-carousel-3.no-title .owl-carousel {
  padding-top: 46px;
}
.products-carousel.no-title.no-owl-controls .owl-carousel,
.bb-posts-owl-carousel.no-title.no-owl-controls .owl-carousel,
.bb-images-owl-carousel.no-title.no-owl-controls .owl-carousel,
.products-carousel-3.no-title.no-owl-controls .owl-carousel {
  padding-top: 0;
}
.products-carousel.no-spacing .product-inner,
.bb-posts-owl-carousel.no-spacing .product-inner,
.bb-images-owl-carousel.no-spacing .product-inner,
.products-carousel-3.no-spacing .product-inner {
  margin-right: -1px;
}
.products-carousel.no-spacing.woocommerce .ribbons,
.bb-posts-owl-carousel.no-spacing.woocommerce .ribbons,
.bb-images-owl-carousel.no-spacing.woocommerce .ribbons,
.products-carousel-3.no-spacing.woocommerce .ribbons {
  right: 0;
}
.products-carousel .owl-wrapper-outer,
.bb-posts-owl-carousel .owl-wrapper-outer,
.bb-images-owl-carousel .owl-wrapper-outer,
.products-carousel-3 .owl-wrapper-outer {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%;
  padding-right: 1px;
}
.products-carousel-2 {
  margin: 0 10px;
}
.products-carousel-2 div[itemprop="description"] {
  display: none;
}
.products-carousel-2 ul.products {
  margin: 0 -12px;
  padding-left: 0;
}
.products-carousel-2 ul.products .col-product {
  padding-left: 12px;
  padding-right: 12px;
}
.products-carousel-2 ul.products li.product .product-inner {
  padding: 0;
  border: none;
}
.products-carousel-2 ul.products li.product h3 {
  padding-top: 17px;
}
.products-carousel-2 ul.products li.product .bb-product-thumbnails img {
  width: 135px;
  height: auto;
  float: left;
}
.products-carousel-2 ul.products li.product .price,
.products-carousel-2 ul.products li.product h3,
.products-carousel-2 ul.products li.product .star-rating {
  margin-left: 145px;
}
.products-carousel-2 ul.products li.product .button,
.products-carousel-2 ul.products li.product .ribbons,
.products-carousel-2 ul.products li.product .yith-wcwl-add-to-wishlist,
.products-carousel-2 ul.products li.product .compare-button,
.products-carousel-2 ul.products li.product .sep {
  display: none;
}
.products-carousel-2 ul.products li.product .bb-product-thumbnails {
  float: left;
}
.products-carousel-2 .owl-controls .owl-buttons .owl-prev,
.products-carousel-2 .owl-controls .owl-buttons .owl-next {
  top: 50%;
  font-size: 16px;
  color: #aaaaaa;
  -webkit-transition: 0.5s;
          transition: 0.5s;
  margin-top: -8px;
  line-height: 16px;
  width: 16px;
  height: 16px;
  background-color: transparent;
}
.products-carousel-2 .owl-controls .owl-buttons .owl-prev:hover,
.products-carousel-2 .owl-controls .owl-buttons .owl-next:hover {
  color: #666;
}
.products-carousel-2 .owl-controls .owl-buttons .owl-prev {
  left: 0;
}
.products-carousel-2 .owl-controls .owl-buttons .owl-prev .fa:before {
  content: "\f053";
}
.products-carousel-2 .owl-controls .owl-buttons .owl-next {
  right: 0px;
}
.products-carousel-2 .owl-controls .owl-buttons .owl-next .fa:before {
  content: "\f054";
}
.products-carousel-2 .owl-controls .owl-buttons .owl-prev {
  left: -10px;
  background-color: transparent !important;
}
.products-carousel-2 .owl-controls .owl-buttons .owl-next {
  right: -10px;
  background-color: transparent !important;
}
.products-carousel-3 ul.products li.product {
  overflow: hidden;
  margin: 0;
  position: relative;
}
.products-carousel-3 ul.products li.product .product-inner {
  border-bottom: none;
  border-top: none;
  overflow: hidden;
  padding: 20px 10px;
}
.products-carousel-3 ul.products li.product:after {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  background-color: #eeeeee;
  display: block;
  content: "";
  width: 92%;
  height: 1px;
}
.products-carousel-3 ul.products li.product:first-child .product-inner {
  border-top: 1px solid #eeeeee;
}
.products-carousel-3 ul.products li.product:last-child .product-inner {
  border-bottom: 1px solid #eeeeee;
}
.products-carousel-3 ul.products li.product:last-child .product-inner:after {
  display: none;
}
.products-carousel-3 ul.products li.product h3 {
  padding-top: 0;
  min-height: 36px;
}
.products-carousel-3 ul.products li.product .bb-product-thumbnails {
  width: 102px;
  float: left;
}
.products-carousel-3 ul.products li.product .attachment-shop_catalog {
  width: 102px;
  height: auto;
}
.products-carousel-3 ul.products li.product .price,
.products-carousel-3 ul.products li.product h3,
.products-carousel-3 ul.products li.product .star-rating {
  margin-left: 111px;
}
.products-carousel-3 ul.products li.product .sep {
  margin: 12px 0 12px 111px;
  width: 80px;
}
.products-carousel-3 ul.products li.product .button,
.products-carousel-3 ul.products li.product .added_to_cart {
  margin-left: 111px;
  display: block;
}
.products-carousel-3 ul.products li.product .ribbons {
  display: none;
}
.hot-deal-products .section-heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 3px 0 24px;
}
.hot-deal-products ul.products {
  padding-left: 0;
  margin-left: -15px;
  margin-right: -15px;
}
.hot-deal-products ul.products li.product .sale-price-date {
  display: block;
}
.hot-deal-products ul.products li.product .button,
.hot-deal-products ul.products li.product .sep,
.hot-deal-products ul.products li.product .yith-wcwl-add-to-wishlist,
.hot-deal-products ul.products li.product .compare-button {
  display: none;
}
.hot-deal-products ul.products li.product .onsale {
  display: none;
}
.hot-deal-products .col-product {
  margin-bottom: 26px;
}
.hot-deal-products .col-product:last-child {
  margin-bottom: 0;
}
.hot-deal-products div[itemprop="description"] {
  display: none;
}
.icon-box {
  border: 1px solid #efefef;
  padding: 18px 20px;
  background-color: #ffffff;
}
.icon-box:hover .b-icon {
  -webkit-animation: bounceIn 1s linear infinite alternate;
          animation: bounceIn 1s linear infinite alternate;
}
.icon-box .b-icon {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 52px;
  float: left;
  margin-right: 15px;
  background: #da4b52;
  color: #ffffff;
  font-size: 16px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}
.icon-box .icon-title {
  text-transform: uppercase;
  
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0 5px;
  margin: 0;
}
.icon-box .icon-subtitle {
  font-size: 14px;
}
.icon-box .box-content {
  padding-top: 15px;
}
.icon-box .icon-read-more {
  padding-top: 10px;
  color: #aaaaaa;
  display: inline-block;
}
.icon-box .icon-read-more .fa {
  margin-left: 5px;
  -webkit-transition: all 0.5s ease;
          transition: all 0.5s ease;
  line-height: 1;
  padding-left: 1px;
}
.icon-box .icon-read-more:hover {
  text-decoration: underline;
  color: #aaaaaa;
}
.icon-box .icon-read-more:hover .fa {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.icon-box.icon-top {
  padding: 0;
  border: 0;
}
.icon-box.icon-top:hover .b-icon {
  -webkit-animation: none;
          animation: none;
}
.icon-box.icon-top .box-icon {
  text-align: center;
}
.icon-box.icon-top .box-icon .b-icon {
  display: block;
  height: 190px;
  line-height: 190px;
  width: 100%;
  text-align: center;
  float: none;
  margin-right: 0;
  background-color: #f6f6f6;
  color: #666666;
  font-size: 48px;
  -webkit-border-radius: 0;
          border-radius: 0;
}
.icon-box.icon-top .box-icon .b-icon:hover {
  background-color: #da4b52;
  color: #ffffff;
}
.icon-box.icon-top .icon-title {
  text-align: center;
  font-size: 16px;
  text-transform: inherit;
}
.icon-box.icon-top .box-content {
  padding-top: 0;
  text-align: center;
}
.icon-box.icon-top .icon-read-more {
  text-align: center;
  display: inline-block;
}
.icon-box.icon-top .icon-read-more:hover {
  text-decoration: underline;
  color: #aaaaaa;
}
.icon-box.icon-box-address {
  border: none;
  padding: 0;
  padding: 7px 0;
}
.icon-box.icon-box-address .box-icon {
  overflow: hidden;
}
.icon-box.icon-box-address .b-icon {
  -webkit-border-radius: 0;
          border-radius: 0;
  background-color: transparent;
  color: #da4b52;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  line-height: 16px;
}
.icon-box.icon-box-address .icon-title {
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  font-family:  Arial, sans-serif;
}

.wpb_content_element .widgettitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
}
.wpb_content_element .widget_nav_menu:first-child {
  margin-top: 0;
}
.wpb_content_element .widget_nav_menu .widgettitle {
  color: #ffffff;
  padding: 17px 15px;
  margin-bottom: 0;
  background-color: #181818;
  line-height: 1.15;
}
.wpb_content_element .widget_nav_menu .widgettitle:after {
  content: "\f0c9";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  float: right;
  margin-top: 2px;
}


@media only screen and (max-width: 768px) {
  input {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
            border-radius: 0;
  }
  .col-xs-5ths,
  .col-sm-5ths,
  .col-md-5ths,
  .col-lg-5ths {
    width: 100%;
  }
  .bb-col-9,
  .bb-col-7,
  .bb-col-6,
  .bb-col-3,
  .bb-col-2 {
    width: 100% !important;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .topbar-right {
    text-align: left;
  }
  .topbar-right .menu li:first-child {
    padding-left: 0;
  }
  .topbar-right .widget {
    float: none;
  }
  .topbar-sidebar #lang_sel ul ul {
    z-index: 100;
  }
  .site-branding,
  .header-sidebar {
    text-align: center;
  }
  .header-sidebar .widget {
    float: none;
  }
  .header-sidebar .widget.ta-mini-cart-widget {
    width: 230px;
    margin: 10px auto 0;
  }
  .header-sidebar .widget.ta-product-search-widget form {
    margin: 0 auto;
  }
  .header-sidebar .ta-product-search-widget form {
    width: 100%;
  }
  .header-sidebar .ta-product-search-widget .search-field {
    width: 45%;
  }
  .footer-sidebar {
    margin-bottom: 20px;
  }
  .footer-sidebar.footer-sidebar-3,
  .footer-sidebar.footer-sidebar-5 {
    clear: both;
  }
  .site-info {
    text-align: center;
  }
  .site-info .text-right {
    margin-top: 10px;
    text-align: center;
  }
  .social-icons {
    display: none;
  }


  .page-template-template-full-width .site-content > .vc_row > .container,
  .page-template-template-homepage .site-content > .vc_row > .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .site-header .main-navigation {
    background-color: #262626;
  }
  .site-header .navbar-toggle {
    display: inline-block;
    float: none; margin-top:0px;
    padding: 0 15px;
    
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 28px;
    text-decoration: none;
  }
  .site-header .navbar-toggle i {
    font-size: 22px;
    float: left;
    margin-top: 3px;
    padding-right: 10px;
  }
  .primary-menu {
    display: none;
    float: none;
    max-height: 340px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .primary-menu .menu {
    float: none;
    padding: 0;
    text-align: left;z-index: 9999;
  }
  .primary-menu .menu li {
    padding: 0;
    width: 100%;
    clear: both;border:none;
    border-bottom: 1px solid #ccc;
  }
  .primary-menu .menu li i{margin: 0;}
 
  .primary-menu .menu li.menu-item-has-children .menu-item-has-children > a:after {
    display: none;
  }
  .primary-menu .menu li:before {
    background: none;
  }
  .primary-menu .menu li:hover > a,
  .primary-menu .menu li.current-menu-item > a {
    background-color: transparent;
  }
  .primary-menu .menu li > a {
    padding:5px 10px;
  }
  .main-navigation .menu > li.menu-item-has-children > a:after{content:none;}
  .primary-menu .menu li ul,
  .primary-menu .menu li .mega-menu-container,
  .primary-menu .menu li .mega-menu-container.container {
    display: block;
    opacity: 1;
    position: relative;
    visibility: inherit;
    border: none;
    z-index: 1;
    width: 100% !important;
    background-color: transparent;display: none;
  }
  .primary-menu .menu li ul li,
  .primary-menu .menu li .mega-menu-container li,
  .primary-menu .menu li .mega-menu-container.container li {
    float: left;
    background: none;
    padding-bottom: 0;
    padding-left: 10px;
    border: none;
  }
  .primary-menu .menu li ul li a,
  .primary-menu .menu li .mega-menu-container li a,
  .primary-menu .menu li .mega-menu-container.container li a {
    font-weight: 400;
    color: #f5f5f5;
  }
  .main-navigation .menu .sub-menu li a{padding:5px 10px 5px 15px;}
  .primary-menu .menu li ul li ul,
  .primary-menu .menu li .mega-menu-container li ul,
  .primary-menu .menu li .mega-menu-container.container li ul {
    left: 0;
  }
  .primary-menu .menu li .mega-menu-container,
  .primary-menu .menu li .mega-menu-container.container {
    padding: 0 10px;
  }
  .primary-menu .menu li .mega-menu-container li:hover:before,
  .primary-menu .menu li .mega-menu-container.container li:hover:before {
    display: inline-block;
  }
  .primary-menu .menu li .mega-menu-container li:hover > a,
  .primary-menu .menu li .mega-menu-container.container li:hover > a {
    margin-left: 0;
  }
  .primary-menu .menu li .mega-menu-container li:hover > a:before,
  .primary-menu .menu li .mega-menu-container.container li:hover > a:before {
    display: none;
  }
  .primary-menu .menu ul.sub-menu li:hover > a {
    margin-left: 0;
  }
  .primary-menu .menu ul.sub-menu li:hover > a:before {
    display: inline-block;
  }
  .primary-menu .menu .mega-sub-menu > a {
    padding-top: 0;
    color: #f5f5f5;
  }
  .primary-menu .menu .mega-sub-menu > .menu-item-content {
    display: none;
  }
  .primary-menu .new-badge,
  .primary-menu .hot-badge {
    display: none;
  }
  .menu .mega-menu-container,
  .menu .mega-menu-container.container,
  .menu .menu-item-mega:hover .mega-menu-container,
  .menu li ul,
  .menu li:hover > ul {
    top: 0;
  }
  .primary-menu .menu li ul li ul,
  .primary-menu .menu li .mega-menu-container li ul,
  .primary-menu .menu li .mega-menu-container.container li ul {
    left: 10px;
  }
  div.col-product-categories {
    margin-top: 0 !important;
    margin-left: -15px;
    margin-right: -15px;
    background-color: #262626;
    width: 103% !important;
    margin-bottom: 10px;
  }
  div.col-product-categories .widget_nav_menu .widgettitle {
    float: left;
    background-color: #262626;
    cursor: pointer;
    line-height: 26px;
    padding: 10px 15px;
  }
  div.col-product-categories .widget_nav_menu .widgettitle:before {
    content: "\f0c9";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    float: left;
    margin-top: 2px;
    font-size: 22px;
    padding-right: 10px;
  }
  div.col-product-categories .widget_nav_menu .widgettitle:after {
    display: none;
  }
  div.col-product-categories .widget_nav_menu .menu {
    clear: both;
  }
  div.col-product-categories .wpb_content_element .menu li a {
    color: #f5f5f5;
  }
  div.col-product-categories .wpb_content_element .menu li:hover a {
    color: #f5f5f5 !important;
  }
  .wpb_content_element .menu,
  .primary-sidebar .menu {
    border: none;
    max-height: 340px;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .wpb_content_element .menu li,
  .primary-sidebar .menu li {
    border: none;
  }
  .wpb_content_element .menu li a,
  .primary-sidebar .menu li a {
    padding: 8px 15px;
  }
  .wpb_content_element .menu li:hover,
  .primary-sidebar .menu li:hover {
    background-color: transparent !important;
  }
  .wpb_content_element .menu li:hover a,
  .primary-sidebar .menu li:hover a {
    background-color: transparent;
    color: #555555;
  }
  .wpb_content_element .menu > li > a,
  .primary-sidebar .menu > li > a {
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 0;
  }
  .wpb_content_element .menu > li:first-child a,
  .primary-sidebar .menu > li:first-child a {
    padding-top: 15px;
  }
  .wpb_content_element .menu .menu-item-mega .mega-menu-container,
  .primary-sidebar .menu .menu-item-mega .mega-menu-container {
    position: relative;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    border: none;
    padding-top: 0;
    width: 100% !important;
  }
  .wpb_content_element .menu .menu-item-mega .mega-menu-container li:hover:before,
  .primary-sidebar .menu .menu-item-mega .mega-menu-container li:hover:before {
    display: inline-block;
  }
  .wpb_content_element .menu .menu-item-mega .mega-menu-container li:hover a,
  .primary-sidebar .menu .menu-item-mega .mega-menu-container li:hover a {
    padding-left: 0;
    margin-left: 0;
  }
  .wpb_content_element .menu .menu-item-mega .mega-menu-container li:hover a:before,
  .primary-sidebar .menu .menu-item-mega .mega-menu-container li:hover a:before {
    display: none;
  }
  .wpb_content_element .menu .menu-item-mega:hover .mega-menu-container,
  .primary-sidebar .menu .menu-item-mega:hover .mega-menu-container {
    left: 0;
  }
  .wpb_content_element .menu .menu-item-mega:hover > a,
  .primary-sidebar .menu .menu-item-mega:hover > a {
    text-decoration: underline;
  }
  .wpb_content_element .menu li.menu-item-has-children > a:after,
  .primary-sidebar .menu li.menu-item-has-children > a:after {
    content: "\f0d7";
  }
  .wpb_content_element .menu .mega-sub-menu .menu-item-content,
  .primary-sidebar .menu .mega-sub-menu .menu-item-content {
    display: none;
  }
  .wpb_content_element .menu ul.sub-menu,
  .primary-sidebar .menu ul.sub-menu {
    background-color: transparent;
    margin-left: 25px;
    position: relative;
    width: 98%;
    visibility: inherit;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    border: none;
  }
  .wpb_content_element .menu ul.sub-menu li,
  .primary-sidebar .menu ul.sub-menu li {
    border: none;
  }
  .wpb_content_element .menu ul.sub-menu li:hover > a,
  .primary-sidebar .menu ul.sub-menu li:hover > a {
    margin-left: 0;
  }
  .wpb_content_element .menu ul.sub-menu li:hover > a:before,
  .primary-sidebar .menu ul.sub-menu li:hover > a:before {
    display: inline-block;
  }
  .primary-sidebar .menu li:hover a {
    color: #555;
  }
  .top-promotion {
    display: none;
  }
  
  .backtotop {
    display: none !important;
  }
  .shop-toolbar .pager {
    border: none;
    padding: 0;
    margin-top: 5px;
  }
 .vc_row .container {
  padding-left:30px;
  padding-right:30px;}
  .vc_row .container.xinwen{padding-left: 15px;padding-right: 15px;}
.vc_row img{height: auto !important;}    
    .bb-post .post-thumb{margin-right: 0;float:none}
    .bb-post .post-text{margin: 0;}
     .breadcrumbs{margin: 0;}
}


.t1{border-bottom: 1px solid #0060a9;font-size: 1.625rem;margin: 30px 0 20px !important;line-height:2;color:#0060a9}
.box-border-gray .wpb_content_element{border: 1px solid #ccc;margin-bottom:10px !important}
.box-border-gray p{margin: 0;font-size: 20px;}
.box-border-gray p:last-child a{text-align: center;background-color: #FFF;display: block;padding: 10px 0;}
.box-border-gray .wpb_content_element:hover p:last-child a{color: #FFF;background-color: #0060a9;}

.wp-video {width: 100%!important;}
#mep_0{width: 100% !important;}

.flex .container .row{display: flex;align-items: center;}
.indexbox1{border: 1px solid #0060a9;padding: 20px;width: 1200px;margin: 0 auto;}
.indexbox1 img{width: 460px;max-width: 100%;height: auto;}
@media (max-width:768px){.indexbox1{width:100%;}.flex .container .row{display: block;}}

a.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern{border: 1px solid #0060a9 !important;font-size:18px !important;color: #0060a9 !important;background:none !important;background-color: #FFF !important;margin-top: 20px;padding: 12px 20px;}
a.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover{background-color: #0060a9 !important;color:#FFF !important}

.widget_nav_menu #menu-menu-know li{display: inline-block !important;margin-right: 10px;}
.widget_nav_menu #menu-menu-know li a{background: #FFF;padding:20px;color:#0060a9;border-radius: 5px;}
.widget_nav_menu #menu-menu-know li a:hover{background:#0060a9;color: #FFF;}

.texing h3{color: #0060a9;font-size: 22px;text-align: left;font-weight: 500;margin: 20px;}
.texing li{position: relative;color: #0060a9;padding-left: 25px;margin-bottom:10px;line-height: 24px;list-style: none;}
.texing li:before{content:"\f00c";font-family: FontAwesome;color: #0060a9;position: absolute;left: 0;font-size: 20px;}
.texing ul{margin: 20px 20px 40px !important;}
.texing li:hover:before{color:#ff3438}

.fl_content{border: 1px solid #CCC;background-color: #FFF;padding: 40px 80px 30px;}
.fl_content img{height: auto;}
.fl_content .row{margin: 0;}
@media (max-width: 768px){
  .fl_content {margin: 0;padding: 0;}.top_container{padding: 0 30px !important;}}
  .vc_row.fl_content .container{width: 100%;}
  .fl_content_gray{background-color: #f0f0f0;margin-bottom: 10px;}
  .fl_content_gray img{display: block;float: right;margin-right: -15px;}
  .wpb_content_element.fl_node_content{margin: 20px !important;}
  .flex{display: flex;align-items: center;flex-wrap: wrap;}
  .vc_row.fl_content_gray{margin-left: 0;margin-right: 0;}
  .vc_column_container>.vc_column-inner{padding-left: 0;padding-right: 0;}
  .vc_column_container{padding-left: 15px;padding-right: 15px;}

  .vc_toggle_title{color: #FFF;font-size: 18px;padding: 15px 0;}
  .vc_toggle_title h4{color: #FFF;}
  .vc_toggle_title i{font-weight: 600; font-size: 20px;margin-left: 10px;transition: .5s;}
  .vc_toggle_active  .vc_toggle_title i{transform: rotate(180deg); -ms-transform: rotate(180deg); }
  .vc_toggle_size_md.vc_toggle_default .vc_toggle_title .vc_toggle_icon{position: relative;}
  .vc_toggle_content{background-color: #FFF;margin: 0 !important;}
  .vc_toggle_content ul{width: 1200px;margin:15px auto !important;max-width: 100%;}
  .vc_toggle_content ul a{color: #0060a9;}

  .fl_pictxt h2{color: #0060a9;}
  .btn-contact{text-align: center !important;}
  .btn-contact a.vc_btn3.vc_btn3-size-md{width: 300px;font-size: 18px;}
  .footer-ct-box{background-color: #0060a9;padding: 30px 0;text-align: center;}
  .footer-ct-box h2{border-bottom: 1px solid #eee;margin-bottom: 10px;color:#FFF}
  .footer-ct{display: flex;text-align: center;gap:5;justify-content: center;flex-wrap: wrap;}
  .footer-ct a{display:block;width: 300px;color:#FFF;line-height: 30px;padding: 10px;margin: 0 5px;}
  .footer-ct a:first-child{background-color: #ff3438;}
  .footer-ct a:first-child:hover{background-color: #ad2239;}
  .footer-ct a:last-child{background-color: #fff;color: #0060a9;}
  .footer-ct a:last-child:hover{background-color: #ddd;}
  .footer-ct a img{color: #FFF !important;width: 20px;height:22px}

.site-content{background-color: #f0f0f0;}
.home .site-content{background-color: #fff;}

.heading-content{color: #FFF;}
.heading-content h2{color: #FFF;border-bottom: 1px solid #FFF;line-height: 2;margin-bottom: 10px !important;}
.heading-content ul{margin-left: 24px;}
.heading-content img{height: auto !important;}

.wpforms-submit{background-color: #0060a9 !important;color: #FFF !important;border: none;}

.ms-skin-default .ms-nav-next, .ms-skin-default .ms-nav-prev{z-index: 2 !important;}