@CHARSET "UTF-8";

/*****************/
/* Start animate */
/*****************/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

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

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

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

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

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

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

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

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

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

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

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

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

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

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

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

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

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

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

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

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

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

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

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

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

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

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

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

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

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

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

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

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

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

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

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

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

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

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

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

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

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

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

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

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

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

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

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

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

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

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

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

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

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

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

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

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

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

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

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

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

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

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

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

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

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

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

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

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

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

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

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

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

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

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

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

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

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

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

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

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

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

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

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

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

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

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

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

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

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

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

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

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

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

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

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

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

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

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

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

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

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

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

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

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

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

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

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

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

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

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

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

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

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

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

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

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

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

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

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

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

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

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

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

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

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

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

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

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

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

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

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

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

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

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

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

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

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

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

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

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

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

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

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

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

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

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

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

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

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

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

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

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

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

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

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

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

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

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

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

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

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

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

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

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

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

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

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

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

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

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

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

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

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

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

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

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/***************/
/* End animate */
/***************/


/**********/
/* GLOBAL */
/**********/

.backgroundBodyHome
{
	background-color: #f1f1f2;
}

.backgroundBodyDisplay
{
	background-color: #f1f1f2;	
}

.defaultButtonBlack
{
    margin-bottom: 0;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	user-select: none;
    background-image: none;
	border-radius: 10px;
    background-color: #fff;
	color: #000;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin-right: 10px;
    text-align: center;
    padding: 17px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.disabledButton
{
    margin-bottom: 0;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: not-allowed!important;
	user-select: none;
    background-image: none;
	border-radius: 10px;
    background: #8e8e8e;
	color: #fff;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin-right: 10px;
    text-align: center;
    padding: 17px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
    border: none;
    text-transform: uppercase;
}

.defaultButtonBlack:hover
{
	text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin-right: 10px;
    text-align: center;
    padding: 17px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    color: #ffffff;
    background: #222222;
    -webkit-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.defaultButtonBlue
{
	margin-bottom: 0;
	vertical-align: middle;
	touch-action: manipulation;
	user-select: none;
	border-radius: 10px;
	color: #ffffff!important;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin-left: 0px;
    text-align: center;
    padding: 17px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    background: #00bfff;
    display: inline-block;
    text-decoration: none!important;
    text-transform: uppercase;
    border: none;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.defaultButtonBlue:hover
{
	color: #ffffff;
    background: #222222;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin-left: 0px;
    text-align: center;
    padding: 17px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    animation-delay: 2s;
}

.defaultButtonGreen
{
	margin-bottom: 0;
	vertical-align: middle;
	touch-action: manipulation;
	user-select: none;
	border-radius: 10px;
	color: #ffffff!important;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin-left: 0px;
    text-align: center;
    padding: 17px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    background: #8dc63f;
    display: inline-block;
    text-decoration: none!important;
    text-transform: uppercase;
    border: none;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.defaultButtonGreen:hover
{
	color: #ffffff;
    background: #222222;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin-left: 0px;
    text-align: center;
    padding: 17px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    animation-delay: 2s;
}

@font-face
{
	font-family: 'gotham-light';
	src: url('../fonts/ufonts.com_gotham-light.eot');
	src: url('../fonts/ufonts.com_gotham-light.woff') format('woff'), url('../fonts/ufonts.com_gotham-light.ttf') format('truetype'), url('../fonts/ufonts.com_gotham-light.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face
{
	font-family: 'gotham-bold';
	src: url('../fonts/ufonts.com_gotham-bold.eot');
	src: url('../fonts/ufonts.com_gotham-bold.woff') format('woff'), url('../fonts/ufonts.com_gotham-bold.ttf') format('truetype'), url('../fonts/ufonts.com_gotham-bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

html
{
	height: 100%;
}

body
{
	height: 100%;
}

body
{
	padding-top: 80px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
	font-family: gotham-light, Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #000;
	margin: 0;
	padding: 0;
}

/*******************/
/* 404 Page Styles */
/*******************/
.error-404
{
	font-size: 100px;
}

/***********************/
/* Pricing Page Styles */
/***********************/
.price
{
	display: block;
	font-size: 50px;
	line-height: 50px;
}

.price sup
{
	top: -20px;
	left: 2px;
	font-size: 20px;
}

.period
{
	display: block;
	font-style: italic;
}

.paraHeight
{
	height: 20px;
}

.uppercase
{
	text-transform: uppercase;
}

.strong
{
	font-weight: 700;
}

small
{
	display: block;
	color: grey;
	margin-top: 10px;
	font-size: 100%;
	cursor: pointer;
}

.anchor360
{
	clear: both;
}

.anchor
{
	display: block;
	height: 140px; /*same height as header*/
	margin-top: -140px; /*same height as header*/
	visibility: hidden;
}

/* Para a imagem e o texto ficarem centrados nas segundas páginas */
/* Não está a ser utilizado em lado nenhum mas pode vir a ser preciso */
.element
{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.fontBold
{
	font-family: gotham-bold, arial;
	color: #4D4D4D;
}

.maxSize
{
	display: block;
	width: 100%;
/* 	height: 100%; */
	height: auto;
}

.panelDefault
{
	margin-bottom: 0px;
	padding-bottom: 0px!important;
	border: 0px!important;
	-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, .05)!important;
	box-shadow: 0 0 0 rgba(0, 0, 0, .05)!important;
	background-color: #f1f1f2!important;
}

.panelDefaultDestaque
{
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 15px;
	margin-bottom: 20px;
}

.panelTitleDate
{
	/* background-color: #e3e1dd!important; */
	border: 0;
	padding-top: 0px;
	padding-bottom: 0px;
}

.panelTitleDate > p
{
	margin-bottom: 0px;
}

.panelTitle
{
	background-color: #f1f1f2!important;
	border: 0;
	padding-top: 0px;
}

.panelTitleDestaque
{
	float: right;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

/* Landscape phone to portrait tablet */
@media ( max-width : 1023px)
{
	.panelTitleDestaque
	{
		float: inherit;
		padding-left: 0;
	}
}

.dateDestaque
{
	font-size: 13px;
	margin-bottom: 0px;
}

.titleDestaque
{
	font-size: 15px;
	color: #333;
}

.bodyDestaque
{
	font-size: 13px;
	text-align: justify;
}

.secDateDestaque
{
	font-size: 11px!important;
}

.secTitleDestaque
{
	font-size: 16px!important;
}

.contentLidas, .contentPartilhadas
{
	padding-top: 15px;
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
}

.divLidas, .divPartilhadas
{
	padding-bottom: 10px;
	margin-bottom: 0px;
	font-size: 11px;
	color: #4D4D4D;
	font-family: 'gotham-bold';
}

.panelBody .form-control
{
	margin-bottom: 10px;
}

.panelTitle p:first-child
{
	margin: 0;
	font-family: gotham-bold;
	font-size: 22px;
	color: #4D4D4D;
}

.relacionadasTitle
{
	padding-top: 0px;
	padding-bottom: 0px;
}

.relacionadasTitle > p:first-child
{
	font-family: 'gotham-bold';
	font-size: 18px;
}

.relacionadasTitle > hr
{
	border-color: #4D4D4D!important;
	margin-top: 5px!important;
}

.relacionadasBody > p:first-child
{
	font-size: 11px;
	font-weight: initial;
}

.relacionadasBody > p:last-child
{
	font-weight: bold;
	font-size: 16px;
	font-family: 'gotham-bold';
}

.labelForm
{
	padding-left: 15px!important;
	padding-top: 0px!important;
}

.firstRowHomepage
{
/* 	background-color: #e3e1dd; */
	margin-top: 0px;
}

.secondRowHomepage
{
/* 	background-color: #C4C4C4; */
	margin-top: 0px;
}

.solutions360, .imagesLink, .articles
{
	margin-bottom: 30px;
}

.swiperCS, .swiperCC
{
	padding: 0;
    max-height: 276px;
}

/* .swiperCS > div:first-child, .swiperCC > div:first-child */
/* { */
/* 	margin-bottom: 80px; */
/* } */

/* .swiperCS */
/* { */
/* 	background-color: #C4C4C4; */
/* } */

/* .swiperCC  */
/* { */
/* 	background-color: #e3e1dd; */
/* } */

.swiper-pagination360
{
	position: initial;	
}

.swiper-pagination360 > span.swiper-pagination-bullet
{
	width: 16px;
    height: 16px;
}

/***************************************************/
/*Se mais tarde quisermos mexer nas setas do swiper*/
/***************************************************/
/* .ps_arrowSwiper */
/* { */
/* 	top: 37%!important; */
/* } */

/* .ps_arrowSwiperLeft */
/* { */
/* 	left: 50px; */
/* } */

/* .ps_arrowSwiperRight */
/* { */
/* 	right: 50px; */
/* } */

.tituloSwpChilds
{
	/* 	min-height: 36px; */
	min-height: 66px;
}

.imgDescCurta360
{
	float: right;
}

.textDescCurta360
{
	float: left;
}

/********************/
/* SLIDER CARROUSEL */
/********************/
.toggleHeading
{
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	-moz-transition: none!important;
}

.toggleCaption
{
	animation-delay: 1.5s;
	-webkit-animation-delay: 1.5s;
	-moz-animation-delay: 1.5s;
	-o-animation-delay: 1.5s;
	-moz-transition: none!important;
}

.ps_carousel-caption
{
	left: 10%;
	padding-top: 0px;
	bottom: 50%;
	padding-bottom: 0px;
	text-align: left;
}

.ps_toggleHeading
{
	font-size: 48px;
	font-weight: bold;
}

.ps_toggleCaption {
	font-size: 36px;
	font-weight: bold;
}

/* Small Devices, Tablets */
@media (max-width : 480px)
{
	.ps_toggleHeading
	{
		font-size: 32px;
	}
	.ps_toggleCaption
	{
		font-size: 20px;
	}
}

.imgLeftContentArticles
{
	width:100%!important;
	height: 100%!important;
	padding-bottom: 6px;
}

@media (min-width: 768px)
{
	.imgLeftContentArticles
	{
		float:left; 
		max-width:370px;
		max-height:271px;
		padding-top:6px;
		padding-right: 30px;
		padding-bottom: 6px;
		padding-left: 0px;
	}
}

@media (min-width: 768px)
{
	.imgLeftContentArticles
	{
		float:left; 
		max-width:370px;
		max-height:271px;
		padding-top:6px;
		padding-right: 30px;
		padding-bottom: 6px;
		padding-left: 0px;
	}
}

/*Update do slider para optimizar as imagens*/
.carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img {
    display: block;
    width: 100%;
    height: auto;
}

/********************/
/* Start page arrow */
/********************/
.bounce
{
	-webkit-animation: bounce 4s infinite;
	animation: bounce 4s infinite;
	position: relative;
	text-align: center;
	bottom: 60px;
}

.bounce i:first-child
{
	/* 	position: absolute; */
	color: white;
	font-size: 30px;
}

/* Scroll down indicator (bouncing) */
@-webkit-keyframes bounce
{
	0%, 20%, 50%, 80%, 100%
	{
		-webkit-transform: translateY(0);
	}

	40%
	{
		-webkit-transform:translateY(-30px);
	}

	60%
	{
		-webkit-transform:translateY(-15px);
	}
}

@-moz-keyframes bounce
{
	0%, 20%, 50%, 80%, 100%
	{
		-moz-transform: translateY(0);
	}

	40%
	{
		-moz-transform:translateY(-30px);
	}

	60%
	{
		-moz-transform:translateY(-15px);
	}
}

@keyframes bounce
{ 
	0%, 20%, 50%, 80%, 100%
	{
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	40%
	{
		-webkit-transform:translateY(-30px);
		-moz-transform:translateY(-30px);
		-ms-transform:translateY(-30px);
		-o-transform:translateY(-30px);
		transform:translateY(-30px);
	}

	60%
	{
		-webkit-transform:translateY(-15px);
		-moz-transform:translateY(-15px);
		-ms-transform:translateY(-15px);
		-o-transform:translateY(-15px);
		transform:translateY(-15px);
	}
}


/*************/
/* FIRST NAV */
/*************/
.ps_navbar-header > button
{
	margin-top: 33px;
}

.logoHeader
{
/* 	padding-top: 10px; */
	padding-top: 12px;
	margin-left: 15px;
}

.social-icons
{
	padding-top: 5px;
}

.socialIconFa
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	float: right;
	align-items: center;
	-webkit-box-align: center;
}

.facebook
{
	padding-top: 3px;
	padding-left: 10px;
	padding-right: 10px;
}

.twitter
{
	padding-top: 3px;
	padding-left: 7px;
	padding-right: 7px;
}

.linkedin
{
	padding-top: 3px;
	padding-left: 8px;
	padding-right: 8px;
}

.youtube 
{
	padding-top: 3px;
	padding-left: 7px;
	padding-right: 7px;
}

.linkedin > i, .youtube > i
{
	padding-bottom: 2px;
}

.googlePlus
{
	padding-top: 3px;
	padding-left: 7px;
	padding-right: 7px;
}

.flrk
{
	padding-top: 3px;
	padding-left: 7px;
	padding-right: 7px;
}

.ps_form-groups
	margin-left: 40px;
}

.ps_dropdown-menu
{
	min-width: 80px;
	font-size: 12px;
	border-radius: 0;
	background-color: #4d4d4d;
	color: white;
	padding-bottom: 0px;
	padding-top: 0px;
	border-width: 1;
	margin: 0;
	border: 1px solid #1C1C20;
}

.ps_dropdown-menu > li > a:first-child
{
	padding-top: 5px;
}

.ps_dropdown-menu > li > a
{
	padding-left: 10px;
}

div.socialIconFa a
{
	color: #D6D6D6;
	padding-left: 5px;
	padding-right: 5px;
	text-decoration: none;
}

div.socialIconFa a:hover
{
	color: gray;
}

.borderSocialIcon
{
	border-left: 1px groove #D6D6D6;
	margin: 0px 7px 0px 5px;
	width: 1px;
	height: 30px;
}

.ps_navbar-fixed-top
{
	background-color: #4d4d4d;
	z-index: 1050;
}

.navps_container
{
	padding: 0px;
	height: 40px;
}

.ps_navbar
{
	top: 40px;
	background-color: #1C1C20;
	margin-bottom: 0px;
	border: 0px;
}


/**************/
/* SECOND NAV */
/**************/
.navElements
{
/* 	display: flex; */
/* 	display: -webkit-inline-box; */
/* 	float: right; */
/* 	margin-top: 20px; */
/* 	margin-right: 15px; */
	display: flex;
    float: right;
    margin-top: 20px;
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 15px;
    padding-right: 15px;
}

.navElements > input[type="button"], .navElements > input[type="submit"]
{
    text-align: center;
    background-color: #00a4e7;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 10px;
    cursor: pointer;
    height: 38px;
    border: 0;
    width: 100%;
    margin-left: 0px;
}

.btn-default_paradigm
{
    text-align: center;
    background-color: #00a4e7;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 10px;
    cursor: pointer;
    height: 38px;
    border: 0;
    width: 70%;
    margin-left: 0px;
}

@media (min-width: 1200px)
{
	.btn-default_paradigm
	{
	    text-align: center;
	    background-color: #00a4e7;
	    font-weight: bold;
	    color: white;
	    border-radius: 10px;
	    padding-left: 5px;
	    padding-right: 5px;
	    margin-left: 10px;
	    cursor: pointer;
	    height: 38px;
	    border: 0;
	    width: 25%;
	    margin-left: 0px;
	}
}
@media (min-width: 768px)
{
	.btn-default_paradigm
	{
	    text-align: center;
	    background-color: #00a4e7;
	    font-weight: bold;
	    color: white;
	    border-radius: 10px;
	    padding-left: 5px;
	    padding-right: 5px;
	    margin-left: 10px;
	    cursor: pointer;
	    height: 38px;
	    border: 0;
	    width: 45%;
	    margin-left: 0px;
	}
}

.ps_input-group
{
	margin-left: 15px;
}

.ps_input-group > span:first-child
{
	display: flex;
	display: -webkit-inline-box;
	width: 100%;
	height: 30px;
}

.ps_btn-default
{
	pointer-events: none;
	cursor: default;
	outline: none;
	background-color: #504F53;
	height: 30px;
	padding-top: 1px;
	padding-bottom: 1px;
	padding-right: 8px;
	padding-left: 8px;
	border-top-width: 0px;
	border-bottom-width: 0px;
	border-right-width: 0px;
	border-left-width: 0px;
	margin-right: 0px;
	margin-left: 0px;
	border-top-left-radius: 2px!important;
	border-bottom-left-radius: 2px!important;
	float: left;
}

.ps_glyphicon
{
	color: #9d9d9d;
	font-size: smaller;
	width: 14px;
	top: 0px;
}

.ps_form-control
{
	width: 140px!important;
	background-color: #504F53;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: 0px;
	height: 30px;
	padding-top: 1px;
	padding-bottom: 1px;
	border-top-width: 0px;
	border-bottom-width: 0px;
	border-right-width: 0px;
	border-left-width: 0px;
	color: white;
	outline: none;
	box-shadow: none;
}

.ps_navbar-right
{
	clear: right;
	margin-left: 0px;
	margin-right: 15px;
}

.ps_navbar-right li a
{
	padding-top: 3px;
	padding-bottom: 3px;
}

.ps_navbar-right li a:last-child
{
	padding-right: 0px;
}

.containerStyle
{
	height: 100%;
	padding: 0px;
	min-height: 100px;
	min-width: 294px;
}

select:focus
{
	outline: 0;
}

.dropLang button
{
	border: 0;
	border-radius: 0;
}

.buttonLang
{
	outline: none!important;
	outline-color: transparent!important;
	padding: 0px;
	background-color: #4d4d4d;
	color: white;
}

.langSelect
{
	font-size: smaller;
}

.fa-2x
{
	font-size: 1.5em;
}

select.selectLang
{
	background-color: #4d4d4d;
	color: white;
	border: 0;
	font-size: smaller;
	padding: 0;
	box-shadow: none!important;
	cursor: pointer;
}

.navbar-nav > li > a
{
	font-family: gotham-light, arial;
	font-size: 10pt;
	padding-top: 13px;
/* 	padding-bottom: 10px; */
	padding-bottom: 4px;
	padding-left: 0px;
	margin-bottom: 10px;
	margin-left: 15px;	
}

.top-bar-section .has-dropdown > a:after
{
	border-color: #FF0000 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

select.selectLang:focus
{
	outline: 0;
}

select:focus
{
	outline: 0;
}

.img-portfolio
{
	margin-bottom: 30px;
}

.img-hover:hover
{
	opacity: 0.8;
}

/* Para o menu colapsar mais cedo */
@media (min-width: 768px) and (max-width: 991px)
{
	.navbar-collapse.collapse
	{
		display: none!important;
	}
	.navbar-collapse.collapse.in
	{
		display: block!important;
	}
	.navbar-header .collapse, .navbar-toggle
	{
		display: block!important;
	}
	.navbar-header
	{
		float: none;
	}
}

/* START PARA APAGAR JUNTAMANETE COM A CLASSE marteladaSemSearch no código QDO HOUVER O SEARCH*/
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
@media (min-width: 768px)
{
}

/* Medium Devices, Desktops */
@media (min-width: 992px)
{
	.marteladaSemSearch
	{
		margin-top: 36px
	}
}

/* Large Devices, Wide Screens */
@media (min-width: 1200px)
{
	.marteladaSemSearch
	{
		margin-top: 36px
	}
}
/* END PARA APAGAR JUNTAMANETE COM A CLASSE .marteladaSemSearch no código QDO HOUVER O SEARCH*/


/************/
/* CAROUSEL */
/************/
header.carousel
{
	height: 86%;
	margin-top: 140px;
}

header.carousel .item, header.carousel .item.active, header.carousel .carousel-inner
{
	height: 100%;
}

header.carousel .fill
{
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}

.carousel-inner img
{
	width: 100%;
	height: 100%;
}


/*********************/
/* RESPONSIVE STYLES */
/*********************/
@media (max-width: 991px)
{
	.customer-img, .img-related
	{
		margin-bottom: 30px;
	}
}

@media (max-width: 767px)
{
	.img-portfolio
	{
		margin-bottom: 15px;
	}
	header.carousel .carousel
	{
		height: 70%;
	}
}


/**********/
/* SWIPER */
/**********/
.ps_page-headerCS
{
	font-size: 32px;
/* 	background-color: #C4C4C4; */
	padding-bottom: 0px;
	border-bottom-width: 0px;
	padding-top: 0px;
	text-align: center;
	color: #4D4D4D;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 0px;
}

.ps_page-headerCC
{
	font-size: 32px;
/* 	background-color: #e3e1dd; */
	padding-bottom: 0px;
	border-bottom-width: 0px;
	padding-top: 0px;
	text-align: center;
	color: #504f54;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 0px;
}

@media (max-width: 767px)
{
	.ps_page-headerCS, .ps_page-headerCC
	{
		font-size: 32px;
	}
}

.swiper-container
{
	width: 100%;
/* 	padding-top: 50px; */
/* 	padding-bottom: 50px; */
	z-index: 0;
}

.swiper360
{
	padding-top: 0px;
	padding-bottom: 0px;
}

.swiper-slide
{
	background-position: center;
	background-size: cover;
}

div#gif360
{
	text-align: center;
}

div#gif360 > img
{
	position: absolute;
	top: 50%;
	transform: translateX(-50%);
}

.swiperSlideCS, .swiperSlideCC
{
	width: 275px;
/* 	 height: 296px; */
	background-color: white;
/* 	border: 0; */
	margin-bottom: 0px;
	/* 	border-radius:30px; */
    border: 1px solid #ddd;
    border-radius: 6px;
}

.swiperSlideCS > div:first-child, .swiperSlideCC > div:first-child
{
/* 	padding-top: 30px; */
/* 	text-align: center; */
/* 	font-size: 13px; */
}

.swiperSlideCS > div:last-child, .swiperSlideCC > div:last-child
{
/* 	text-align: center; */
/* 	background-color: white; */
/* 	padding-top: 15px; */
/* 	padding-bottom: 30px; */
/* 	border-color: white; */
	/* 	border-radius: 30px; */
}

.swiperSlideCS > div:last-child > img, .swiperSlideCC > div:last-child > img
{
	max-width: 273px;
/* 	max-width: 240px; */
/* 	max-width: 530px; */
}


/*****************/
/* RIGHT BUTTONS */
/*****************/
.scrollup
{
	position: fixed;
	bottom: -40px;
	right: 0px;
	display: none;
	z-index: 2000;
}

.contactButtonStyle
{
	position: fixed;
	text-align: right;
	bottom: 60px;
	right: -102px;
	text-decoration: none!important;
	z-index: 2000;
}

.contactButtonStyle img
{
	border-radius: 8px;
	opacity: 0.8;
}

.telefRightButtons
{
	margin-bottom: 0px!important;
	background-color: gray!important;
	opacity: 0.8!important;
	margin-top: 0px!important;
	width: 98px!important;
	text-align: center!important;
	height: 33px!important;
	vertical-align: middle!important;
	cursor: pointer!important;
	padding-top: 6px!important;
	color: white!important;
}

.telefRightButtons:hover
{
	text-decoration: underline;
}

.messageButtonStyle
{
	position: fixed;
	display: inline;
	bottom: 10px;
	right: 0px;
	z-index: 2000;
}

.scrollup img, .contactButtonStyle img, .messageButtonStyle img
{
	width: 45px;
}

@media ( max-width: 480px) {
	.scrollup img, .contactButtonStyle img, .messageButtonStyle img
	{
		width: 30px;
	}
}

.globalRightButtons:hover
{
	cursor: pointer;
}

img.globalRightButtons:hover
{
	opacity: 0.5;
}


/**********/
/* FOOTER */
/**********/
footer {
/* 	margin: 50px 0; */
	margin-top: 30px!important;
}

footer a:hover
{
	opacity: 0.5;
	text-decoration: none;
}

footer .container .row div h4 a
{
	color: #9C9C9C;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	border-botom: 1px solid;
}

footer .container .row div ul li a
{
	color: #9C9C9C;
}

footer .container .row div ul
{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

footer .container .row .col-lg-2
{
	padding-top: 10px;
}

footer .container .row div ul li ul
{
	padding-left: 14px;
}

footer#footerSite
{
	font-size: small;
	margin-bottom: 0;
	/* 	margin-top: 20px; */
	margin-top: 0px;
	background-color: #4d4d4d;
}
/* 		.trial-link */
/* 		{ */
/* 		    display: inline-block; */
/* 		    color: #ffffff!important; */
/* 		    background-color: #00A3E5; */
/* 		    border-radius: 5px; */
/* 		    text-align: center; */
/* 		    padding: 10px 30px; */
/* 		    margin-top: 10px; */
/* 		    cursor: pointer; */
/* 	    } */
.mainFooter > div:first-child
{
	margin-top: 15px;
	margin-bottom: 15px;
}

.secondaryFooter
{
	background-color: #444;
}

.secondaryFooter > div.container
{
	color: #9C9C9C;
	padding-top: 15px;
	padding-bottom: 15px;
}

.secondaryFooter > div.container div
{
	text-align: center;
}

.secondaryFooter > div.container div > p
{
	margin-bottom: 0px;
}

.secondaryFooter > div.container div > p > a
{
	color: #9C9C9C;
}

.fontSecondaryFooter
{
    font-size: 12px;
}

.footerul
{
	width: 100%!important;
}

.goodLink
{
	margin-bottom: 0px!important;
	padding-top: 0px!important;
	padding-bottom: 0px!important;
	color: #9C9C9C!important;
	padding-right: 8px!important;
	margin-left: 5px!important;
	background-color: #444!important;
}

.goodLink:hover
{
	margin-bottom: 0px!important;
	padding-top: 0px!important;
	padding-bottom: 0px!important;
	color: #9C9C9C!important;
	padding-right: 8px!important;
	margin-left: 5px!important;
	background-color: #444!important;
	opacity: 0.5!important;
    text-decoration: none!important;
}

a.fakeLink
{
	cursor: default!important;
	margin-bottom: 0px!important;
    padding-top: 0px!important;
    padding-bottom: 0px!important;
    color: #cccccc!important;
    padding-right: 8px!important;
    background-color: #444!important;
}

.fakeLink:hover
{
	opacity: 1!important;
	color: #cccccc!important;
	background-color: #444!important;
}

.fakeLink > p
{
	margin-bottom: 0px!important;
}

@media (max-width: 991px)
{
	ul.footerul > li.pull-right
	{
		float: left!important;
	}
	
	a.fakeLink
	{
		margin-left: 5px!important;
	}
}

@media (max-width: 767px)
{
	ul.footerul > li.pull-right
	{
		float: none!important;
	}
}


/*******************/
/* COMUM NA OFERTA */
/*******************/
.imgOfertaExp
{
	padding-top: 0px!important;
}

.hrHome
{
	margin-top: 0px;
	border-top-width: 4px;
}

.offerTitle
{
    padding-top: 50px;
    padding-bottom: 20px;
}

.ps_page-headerOFR
{
	font-size: 32px;
	background-color: #f1f1f2;
	border-bottom-width: 0px;
	text-align: center;
	color: #504f54;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
    padding-bottom: 0px;
}

@media only screen and (min-width: 480px ) and (max-width: 991px)
{
	.ps_page-headerOFR
	{
		font-size: 32px;
	}
	
	.mobileSize
	{
		width: 50%;
		padding: 20px 20px 10px 20px;
		float: left;
	    text-align: left;
    	line-height: normal;
	}
	
	.ps_panel-bodyOffers-Description
	{
	    text-align: left;
	    line-height: normal;
	}
	
	.panel-body-offer
	{
    	padding-top: 0px;
	}
	
	.paddingToText
	{
		display: none;
	}
	
	.ps_panel-bodyOffers-Subtitle
	{
		padding-top: 4px;
	}
}

.panel-body-offer
{
	padding-top: 20px;
}

.div_ps_rowImagesdLink
{
	padding: 0 15;
	margin-bottom: 20px;
	cursor: pointer;
}

.div_ps_rowImagesdLink > img
{
	width: 100%;
}

.marginBottom
{
	margin-bottom: 60px;
}

.imageSolucoes
{
	float: right;
}

.imgWidth768
{
	display: none;
}

.marginBottomMartelada
{
	margin-bottom: -30px;
}

/**********/
/* OFERTA */
/**********/
.col-md-3, .col-sm-6
{
	/* 	padding-right: 7.5px!important; */
	/*     padding-left: 7.5px!important; */
	
}

.ps_row > div:first-child
{
/* 	padding-top: 30px; */
/* 	padding-bottom: 30px; */
}

.ps_row > a:first-child
{
	text-decoration: none;
}

.ps_row > div:first-child > img
{
	max-width: 100%;
/* 	width: 305px; */
}

.ps_panel-default
{
	color: #4d4d4d;
	background-color: #f1f1f2;
	border: 0;
	/* 	border-radius: 30px; */
}

.ps_container
{
	margin-top: 140px;
	padding-left: 0px;
	padding-right: 0px;
}

/* .ps_container > div:first-child */
/* { */
/* 	margin-left: 0px; */
/* 	margin-right: 0px; */
/* 	padding-bottom: 10px; */
/* } */
.ps_container > div
{
	margin-left: 0px;
	margin-right: 0px;
	padding-bottom: 10px;
}

.ps_container > div:first-child > div
{
	padding-top: 30px;
	padding-bottom: 10px;
}

.ps_container > div:first-child > div > img
{
	max-width: 100%;
	width: 300px;
}

.imgAfterBreadcrumb
{
	max-width: 100%;
	width: 300px;
}

.ps_containerSub
{
	padding-left: 0px;
	padding-right: 0px;
}

.ps_rowSub
{
	margin-left: 0px;
	margin-right: 0px;
	padding-bottom: 20px;
}

.ps_rowSub > div.container:first-child > div:first-child
{
	padding-top: 0px;
	padding-bottom: 10px;
}

.ps_panel-heading
{
	text-align: center;
	background-color: white;
	padding-top: 30px;
	padding-bottom: 25px;
	border-bottom-width: 0px;

	/* 	border-top-left-radius: 30px; */
	/*     border-top-right-radius: 30px; */
}

.ps_panel-body
{
	position: relative;
	padding-top: 0px;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
}

.ps_panel-body > p:first-child
{
	font-size: 15px;
	color: #4d4d4d;
}

.ps_panel-body360
{
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
	line-height: normal;
}

.p_ps_panel-body360>p
{
	height: 100px;
	line-height: 1.7;
}

.ps_panel-body360-tit
{
	font-size: 22px;
	font-family: gotham-bold;
}

.ps_panel-body360-nr
{
	font-size: 22px;
	font-family: gotham-light;
}

/* .ps_panel-heading img */
/* { */
/* 	max-width: 140px; */
/* } */

.ps_panel-bodyOffers-Subtitle
{
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
	line-height: normal;
	font-family: gotham-bold;
}

.ps_panel-bodyOffers-Description
{
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 20px;
	line-height: normal;
}

.paddingToText
{
	padding-bottom: 3px;
}


/********/
/* SaaS */
/********/


/*******/
/* RTS */
/*******/


/*************/
/* Main Page */
/*************/
/* .noSideMargin */
/* { */
/* 	margin-left: 0; */
/* 	margin-right: 0; */
/* 	margin-bottom: 10px; */
/* } */

/* .noSideMargin > div:first-child */
/* { */
/* 	text-align: center; */
/* 	padding-top: 30px; */
/* 	padding-bottom: 10px; */
/* } */

.noSideMargin
{
	margin-right: 0px;
	margin-left: 0px;
}

.tituloImpar, .tituloPar
{
	text-align: center;
	/* 	padding-top: 30px; */
	font-size: 34px;
	padding-left: 0;
	padding-bottom: 10px;
}

/* .tituloPar > span > img, .tituloImpar > span > img  */
/* { */
/* 	vertical-align: sub; */
/* } */
.tituloPar span, .tituloImpar span
{
	/* 	vertical-align: sub; */
	font-family: gotham-light, arial;
}

.noSidePadding
{
	padding-left: 0;
	padding-right: 0;
}

.ps_container-fluid
{
	background-color: #4d4d4d;
	margin-top: 20px;
	margin-bottom: 20px;
}

.ps_containerOpcoes
{
	padding-left: 0;
	padding-right: 0;
}

.rowOpcoes
{
	/* 	background-color: #949494; */
	/* 	padding-top: 10px; */
	/* padding-top: 25px; */ /* martelada para os icons das soluções estarem centrados */
	/* 	padding-bottom: 10px; */
	margin-top: 25px;
	margin-bottom: 25px;
}

.containerOpcoes
{
	padding-left: 0;
	text-align: center;
}

.panelOpcoes
{
	height: 146px;
	background-color: #4d4d4d;
	border: 0;
	margin-bottom: 0px;
	border-radius: 0px;
	box-shadow: 0 0 0 #e3e1dd;
}

.imgOpcoes
{
	background-color: #4d4d4d!important;
	border-color: #4d4d4d!important;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 5px;
	padding-right: 5px;
	/* 	border-bottom-width: 0px; */
	/* 	border-bottom-width: 0px; */
}

.divpOpcoes
{
	display: inline-block;
	padding-top: 5px;
/* 	padding-bottom: 10px; */
	padding-bottom: 0px!important;
	padding-left: 0;
	padding-right: 0;
}

.divpOpcoes > p
{
	font-size: 10px;
	color: white;
	width: 127px;
	margin-bottom: 0px;
	font-weight: bold;
}

.rowTextPar
{
	/* background-color: #F6F6F6; */
	background-color: #FFFFFF;
}

.rowTextImpar
{
	/* background-color: #E4E4E4; */
	background-color: #f1f1f2;
}

.imgNumberPar
{
	padding-bottom: 0px;
	border-bottom-width: 0px;
	/* background-color: #F6F6F6!important; */
	background-color: #FFFFFF!important;
	/*     padding-left: calc(50% - 25px); */
}

.imgNumberImpar
{
	padding-bottom: 0px;
	border-bottom-width: 0px;
	/*     background-color: #E4E4E4!important; */
	background-color: #f1f1f2!important;
	/*     padding-left: calc(50% - 25px); */
}

.imgNumberPar > p:first-child
{
	/* 	background-color: #F6F6F6; */
	background-color: #FFFFFF;
	/* 	color: #538e35; */
	color: #00a4e7;
	font-family: gotham-bold, arial;
	/* 	text-align: center; */
	font-size: 70px;
	margin-bottom: 0px;
	/* 	border: 4px solid #538e35; */
}

.imgNumberImpar > p:first-child
{
	/* background-color: #E4E4E4; */
	background-color: #f1f1f2;
	color: #00a4e7;
	font-family: gotham-bold, arial;
	/* 	text-align: center; */
	font-size: 70px;
	margin-bottom: 0px;
	/* 	border: 4px solid #00a4e7; */
}

/* .numberCircle */
/* { */
/*     border-radius: 50%; */
/*     behavior: url(PIE.htc); remove if you don't care about IE8 */
/*     width: 50px; */
/*     height: 50px; */
/*     padding: 5px 8px 0 8px; */
/*     border: 4px solid #00a4e7; */
/*     text-align: center; */
/*     font: 32px Arial, sans-serif; */
/* } */
.firstTituloImpar, .firstTituloPar
{
	text-align: center;
	font-size: 28px;
	padding-left: 0;
	padding-bottom: 10px;
	font-weight: bold;
}

.firstSubTituloImpar, .firstSubTituloPar
{
	display: inline-block;
	padding: 0 30px 10px 15px;
	color: #00a4e7;
	font-size: 14px;
	font-family: gotham-light, arial;
	line-height: 1.2;
	font-weight: bold;
}

.firstSubTituloImpar > p:first-child, .firstSubTituloPar > p:first-child
{
	margin-bottom: 20px;
}

/* .subTituloImpar, .subTituloPar */
/* { */
/* 	display: inline-block; */
/* 	padding: 0 30px 10px 30px; */
/* } */

/* .subTituloImpar > p:first-child, .subTituloPar > p:first-child */
/* { */
/*     font-size: 14px; */
/*     font-family: gotham-light; */
/*     line-height: 1.2; */
/*     font-weight: bold; */
/* margin-top: 10px; */
/* text-align: center; */
/* } */

/* .subTituloImpar > p:last-child, .subTituloPar > p:last-child */
/* { */
/* 	line-height: 1.2; */
/* 	text-align: justify; */
/* 	color: black; */
/* } */
.firstTituloImpar, .firstSubTituloImpar
{
	color: #00a4e7;
}

.firstTituloPar, .firstSubTituloPar
{
	/* color: #538e35!important; */
	color: #00a4e7!important;
}

.panelImpar
{
	/* background-color: #E4E4E4; */
	background-color: #f1f1f2;
	border: 0;
	margin-bottom: 0px;
	border-radius: 0px;
	box-shadow: 0 0 0 #e3e1dd;
}

.panelPar
{
	/* background-color: #F6F6F6; */
	background-color: #FFFFFF;
	border: 0;
	margin-bottom: 0px;
	border-radius: 0px;
	box-shadow: 0 0 0 #e3e1dd;
}

p.titleContainer
{
	margin: 0;
	font-weight: bold;
	/* 	font-size: 22px; */
	font-size: 20px;
	color: #4D4D4D;
}

@media ( max-width: 480px)
{
	p.titleContainer
	{
		font-size: 15px;
	}
}


/*******************/
/* Second Page 360 */
/*******************/
.title360
{
	text-align: center;
	padding-top: 30px;
	padding-bottom: 10px;
}

.panelSubTitle
{
	/* background-color: #e3e1dd!important; */
	border: 0;
	padding-top: 0;
}

.panelSubTitle p:first-child
{
	margin: 0;
	font-family: gotham-bold;
	font-size: 15px;
	color: #4D4D4D;
}

.panelTitle > p.mainNumber
{
	font-size: 80px;
}

.panelTitle > p.titleParent
{
	font-size: 34px;
}


/**************/
/* SHARE ZONE */
/**************/
.sep1px
{
	margin-right: 1px;
}

.ps_shareButton, .ps_infoButton
{
	width: 44px;
	height: 40px;
	background-color: #9C9C9C;
	color: white;
	border: 0px;
	padding: 3px 2px;
	margin-left: 0px!important;
	margin-right: 0px!important;
	outline: none!important;
}

.ps_shareButton:focus, .ps_infoButton:focus
{
	width: 44px;
	height: 40px;
	background-color: #9C9C9C;
	color: white;
	border-left: 0px;
	border-right: 0px;
	padding: 3px 2px;
	margin-left: 0px!important;
	margin-right: 0px!important;
}

.ps_shareButton:hover, .ps_infoButton:hover
{
	width: 44px;
	height: 40px;
	background-color: #4d4d4d;
	color: #9C9C9C;
	margin-left: 0px!important;
	margin-right: 0px!important;
}

.ps_input-group-addonLabel
{
	background-color: #9C9C9C;
	color: white;
	padding: 3px 8px;
	font-size: 9px;
	text-transform: uppercase;
	font-weight: bold;
	height: 26px;
	border: 0px;
}

.shareGroup
{
	width: 253px;
}

/*****************/
/* LoginRegister */
/*****************/

/* Large desktop */
/* @media (min-width: 1200px) */
/* { */
/* 	.elementRegister, .elementLogin */
/* 	{ */
/* 	  	position: relative; */
/* 	  	top: 50%; */
/* 	  	transform: translateY(-50%); */
/* 	} */

/* 	.rowRegister */
/* 	{ */
/* 		height: 310px; */
/* 	} */

/* 	.rowLogin */
/* 	{ */
/* 		height: 215px; */
/* 	} */

/* 	.rowRecLogin */
/* 	{ */
/* 		height: 100px; */
/* 	} */
/* } */

/* Portrait tablet to landscape and desktop */
@media ( min-width : 768px)
{
	.elementRegister, .elementLogin, .elementRecLogin, .elementText, .elementInformation, .elementInformation
	{
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}
	.rowRegister
	{
		height: 310px;
	}
	.rowLogin
	{
		height: 215px;
	}
	.rowRecLogin
	{
		height: 100px;
	}
	.rowRecText 
	{
		height: 180px;
	}
	.rowInformation
	{
		height: 396px;
	}
}

.labelFormRegister
{
	display: none;
}


/****************/
/* TabBootstrap */
/****************/
.ps_nav-tabs
{
	border-bottom: 1px solid #989797;
	font-size: 11px;
	font-family: gotham-bold;
	text-transform: uppercase;
}

.ps_nav-tabs > li.active > a, .ps_nav-tabs > li.active > a:focus
{
	background-color: #f1f1f2;
	border-left: 1px solid #989797;
	border-right: 1px solid #989797;
	border-top: 1px solid #989797;
}

.ps_nav-tabs > li.active > a:hover
{
	background-color: #f1f1f2;
	border-left: 1px solid #989797;
	border-right: 1px solid #989797;
	border-top: 1px solid #989797;
}

.ps_nav-tabs > li > a:hover
{
	background-color: #e3e1dd;
	border-bottom: 1px solid #989797;
	border-top: 1px solid #e3e1dd;
	border-right: 1px solid #e3e1dd;
	border-left: 1px solid #e3e1dd;
}

.psTabContent
{
	border-left: 1px solid #989797;
	border-right: 1px solid #989797;
	border-bottom: 1px solid #989797;
}

/* Para a fonte no sm das +lidas e +partilhadas estar um pouco maior */
@media (max-width: 991px)
{
	.ps_nav-tabs 
	{
		font-size: 14px;
	}
	.divLidas, divPartilhadas
	{
		font-size: 12px;
	}
}


/*****************/
/* List Articles */
/*****************/
@media (max-width: 768px)
{
	.img-lstarticles
	{
		padding-bottom: 8px;
	}
}


/*****************/
/* Final Article */
/*****************/
.highlightArticle
{
	float: right;
	padding-left: 30px;
}

.highlightArticle > p:first-child
{
	font-style: italic;
	color: #00a4e7;
	font-family: 'gotham-light';
	font-weight: bold;
}

.highlightFinalArticle
{
	font-style: italic;
	color: #00a4e7;
	font-size: large;
	font-weight: bold;
	font-family: 'gotham-light';
	font-size: 16px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
	padding-right: 0px;
}

.divImgFinalArticle
{
	float: right;
	padding-top: 10px!important;
	padding-bottom: 10px;
	text-align: center;
}

.divImgFinalArticle > img:first-child
{
	max-width: 230px;
}

.p_panelSubTitle
{
	text-align: justify;
}

.pHight
{
	font-size: 20px;
	font-weight: bold;
	text-align: justify;
}

.panelDisplayFinal
{
	padding-bottom: 0px;
}

.sharePanelBody
{
	padding-top: 0px;
	padding-bottom: 30px;
}

/* Landscape phone to portrait tablet */
@media ( max-width : 767px)
{
	.pHight
	{
		font-size: 16px;
		font-weight: bold;
		text-align: justify;
	}
}


/************/
/* Imprensa */
/************/
.bs-example
{
	/* 	margin: 0 20px 0 20px; */
	margin: 0 20px 0 0px;
	padding: 10px 15px;
}

.accordionPanel
{
	border: 0!important;
	padding-bottom: 0px!important;
}

.accordionPanel .in
{
	padding-bottom: 0px!important;
}

.accordionPanelTitle > a:hover, .accordionPanelTitle > a:focus
{
	color: #23527C;
}

.accordionPanelTitle > a
{
	color: #337ab7;
	text-decoration: none!important;
}

.accordionPanelHeading
{
	color: #555!important;
	background-color: #f1f1f2!important;
	font-family: 'gotham-bold'!important;
	text-transform: uppercase!important;
	border-left: 1px solid #989797!important;
	border-top: 1px solid #989797!important;
	border-right: 1px solid #989797!important;
	border-bottom: 1px solid #989797!important;
}

.accordionPanelBody
{
	background-color: #f1f1f2!important;
	border-left: 1px solid #989797!important;
	border-bottom: 1px solid #989797!important;
	border-right: 1px solid #989797!important;
}

.videoParadigm
{
	opacity: 0;
}

.noTopPadding
{
	padding-top: 0px!important;
}

/*CSS para impressão*/
@media print
{
	nav .ps_navbar-fixed-top, nav .ps_navbar, .scrollup, .globalRightButtons, .contactButtonStyle, .messageButtonStyle, #footerSite, .sharePanelBody, 
	{
		display: none;
	}
}


/**************/
/* QUEM SOMOS */
/**************/
.qspanel-heading
{
	border: 0px!important;
}

.finalDiv
{
	padding-bottom: 50px!important;
}

.google-maps
{
	position: relative;
    padding-bottom: 75%; /* This is the aspect ratio */
    height: 0;
    overflow: hidden;
}
.google-maps iframe
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/*******************/
/* Páginas simples */
/*******************/
.noBottomPadding
{
	padding-bottom: 0px!important;
}

.titPag
{
	font-size: 26px!important;
}

.p_simplePanel
{
	text-align: justify;
	border: 0;
}


/************************/
/* Formulário contactos */
/************************/
.formContactsImage
{
	width: 100%;
	height: 100%;
}

.bodyClassifications
{
	color: #337ab7;
	text-decoration: none;
	padding-top: 0px;
	padding-bottom: 5px;
	margin-bottom: 0px;
	font-size: 11px;
	color: #4D4D4D;
	font-family: 'gotham-bold';
}


/********************************/
/* DisplayArticles na AppMobile */
/********************************/
.noMarginTop
{
	margin-top: 0!important;
}

@media (min-width: 777px)
{
	.imgResponsiveDesktopRight
	{
		max-width: 262px;
		margin-left: 12px;
	}
	.imgResponsiveDesktopLeft
	{
		max-width: 262px;
		margin-right: 12px;
	}
}

@media (max-width: 991px)
{
	.imgMainApp
	{
		display: none;
		margin-bottom: 0px;
	}
}

@media (min-width: 992px)
{
	.extrasBreadcrumb
	{
		display: block;
	}
	.rowExp
	{
		padding-top: 10px!important;
	}
}

@media (max-width: 991px)
{
	.extrasBreadcrumb
	{
		display: none;
	}
	.rowExp
	{
		padding-top: 30px!important;
	}
}

@media (max-width: 767px)
{
	.extrasBreadcrumb
	{
		display: none;
	}
	.rowExp
	{
		padding-top: 0px!important;
	}
	.marginTopMiddleColumn
	{
		margin-top: 25px;
	}
}

.spaceBetweenArticles
{
    clear: both;
    padding-top: 25px;	
}

.panelDefaultDestaqueArticles
{
	margin-bottom: 0px;
	margin-top: 0px;
}

.bodyDestaqueArticles
{
	margin-bottom: 0px;
}

.extrasPubGoogle
{
	margin-top: 25px;
	padding-left: 0px;
	margin-left: 15px; 
	margin-right: 15px;
}

.extrasPubGoogleLib
{
	margin-top: 10px;
	padding-left: 0px;
	margin-left: 15px; 
	margin-right: 15px;
}

.extrasPubGoogleIns
{
 	display: block;
}

.extrasRowDisplayLib, extrasRowListArticles
{
	padding-left: 15px;
	padding-right: 15px;
	font-weight: bold;
}

.extrasPanelDisplayLib, extrasPanelDisplayQuemSomos
{
	background-color: transparent;
}

.extrasPanelDestaque
{
	margin-top: 0px;
}

.extrasPanelTitle
{
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.extrasBreadcrumb
{
	padding-left: 15px;
	font-weight: bold;
}

.extrasBreadcrumb > span
{
	text-transform: uppercase;
	font-size: small;
}

.extrasDisplayNone
{
	display: none;
}

.formClick
{
	cursor: pointer;
}

.extrasSimpleDisplayArticles
{
	text-align: center;	
}

.extrasDivListArticles
{
	text-align: center;	
}

.extrasDivListArticles > p:FIRST-CHILD
{
	padding-top: 30px;
	padding-bottom: 10px;
	font-size: 18px;
	text-align: left;
}

.imgMainApp
{
	margin-bottom: 0px;
}

.extrasImgMainApp
{
	display: inline-flex;	
}

.extrasImgMainAppTagA
{
	cursor: default;	
}

.extrasArticlesOpacity
{
	opacity: 0.4;	
}

.extrasPubGoogleArticles
{
	margin-top: 25px;
	padding-left:0px;
	margin-left:15px;
	margin-right:15px;
}

.extrasInformation
{
	padding-left: 15px;
	font-weight: bold;
}

.extrasInformationPadding
{
	padding-top: 0px;
	background-color: #f1f1f2;
	padding-left: 0px;
	padding-right: 0px;
}

.extrasInformationPanel
{
	padding-top: 0;
	text-align: center;
	background-color: #f1f1f2!important;
}

.extrasInformationResult
{
	height: 100%;
	padding-top: 0px;
	text-align: center;
	padding-top: 20px;	
}

.extrasInformationResultPadding
{
	border:1px solid black;
}

.extrasSwiper
{
	visibility: hidden;
}

.extrasListSolucoes
{
	font-family: gotham-bold;
	font-size: 22px;
	margin-bottom: 15px;
	color: #4D4D4D;	
}

.extrasListSolucoesDiv
{
	font-size: 20px;
	margin: 0;
	font-weight: bold;
	font-size: 20px;
	color: #4D4D4D;
}

.extrasDataQuestion
{
	font-family: gotham-bold;
	font-size: 22px;
	margin-bottom: 15px;
	color: #4D4D4D;
}

.extrasAnswersZone
{
	margin-left: 7px;
	padding-top: 8px;
}

.extrasAnswerOptionInput
{
	width: 20px;
	height: 20px;
}

.extrasAnswerOptionSpan
{
	vertical-align: super;
}

.extrasDivSendVote
{
	margin-left: 7px;
	padding-top: 8px;	
}

.extrasDivSendVoteInput
{
	border: 0;
	background-color: #00A4E7;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 4px;
	padding-bottom: 4px;
	display: none;
}

.extrasDataQuestion
{
	font-family: gotham-bold;
	font-size: 22px;
	margin-bottom: 15px;
	color: #4D4D4D;
}

.extrasAnswersZone
{
	margin-left: 7px;
	padding-top: 8px;
}

.extrasInputListSolucoes
{
	width: 20px;
	height: 20px;
}

.extrasAnswersZoneSpan
{
	vertical-align: super;
}

.extrasDivListSolucoesSendVote
 {
 	margin-left: 7px;
 	padding-top: 8px;
 }
 
.extrasListSolucoesSendVote
{
	border: 0;
	background-color: #00A4E7;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 4px;
	padding-bottom: 4px;
	display: none;
}

.extrasTitleContainer
{
	font-family: gotham-bold;
	font-size: 22px;
	margin-bottom: 15px;
	color: #4D4D4D;
}

.extrasDivTitleContainer
{
	font-size: 20px;
	margin: 0;
	font-weight: bold;
	font-size: 20px;
	color: #4D4D4D;
}

.extrasOffersSvg
{
	position: absolute;
	right: 0;
	bottom: 0;
}

/* .extrasOffersPolygon */
/* { */
/* 	fill:#8dc440; */
/* 	stroke:#8dc440; */
/* 	stroke-width:1; */
/* } */

.extrasOffersLine
{
	stroke:rgb(255,255,255);
	stroke-width:2;
}

.extrasOffersHr
{
	border-top: 4px solid #eee;
}

.extrasSocialNetworks
{
	margin-bottom: 12px;
}

.extrasSocialNetworksSpan
{
	display: initial;
}

.extrasSocialNetworksButtonFb
{
	border: 1px solid #9C9C9C;
	border-radius: 4px;
	padding: 4px;
	margin-left: 77px;
	border-bottom-left-radius: 16px;
	color: black;
}

.extrasSocialNetworksButtonLi
{
	border: 1px solid #9C9C9C;
	border-radius: 4px;
	padding: 4px;
	margin-left: 65px;
	border-bottom-left-radius: 16px;
	color: black;
}

.extrasSocialNetworksButtonGp
{
	border: 1px solid #9C9C9C;
	border-radius: 4px;
	padding: 4px;
	margin-left: 18px;
	border-bottom-left-radius: 16px;
	color: black;
}


/*******************/
/* START CAMPANHAS */
/*******************/
.rowCamp
{
	padding-bottom: 0px!important;
}

.divRowCamp
{
	padding: 0px!important;
}

.imgCamp
{
	width: 100%!important;
}

.container-fluidCamp
{
	margin-top: 0px!important;
}

.thumbnailCamp
{
	text-align: center!important;
	background-color: #4d4d4d!important; 
	border-color: #4d4d4d!important;
	margin-bottom: 0px!important;
}

.thumbnailCamp > a > img
{
	width: initial!important;
}

.captionCamp
{
	text-transform: uppercase!important;
	color: white!important;
	display: inline-block!important;
	font-size: 10px!important;
	color: white!important;
	margin-bottom: 0!important;
	font-weight: bold!important;
	text-align: center!important;
}

.subTituloCamp .content ul
{
	padding-left: 20px!important;
}

.contentCamp ul li
{
	padding-bottom: 8px!important;
	font-family: gotham-light!important;
}

.contentCamp ul li:LAST-CHILD
{
	padding-bottom: 0px!important;
}

.subTituloCamp > p
{
	font-family: gotham-bold!important;
	text-transform: uppercase!important;
}
/*****************/
/* END CAMPANHAS */
/*****************/


/********************/
/*Start Bootstrap_ms*/

.col-ms-1,
.col-ms-2,
.col-ms-3,
.col-ms-4,
.col-ms-5,
.col-ms-6,
.col-ms-7,
.col-ms-8,
.col-ms-9,
.col-ms-10,
.col-ms-11,
.col-ms-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 480px) and (max-width: 767px) {
  .col-ms-1,
  .col-ms-2,
  .col-ms-3,
  .col-ms-4,
  .col-ms-5,
  .col-ms-6,
  .col-ms-7,
  .col-ms-8,
  .col-ms-9,
  .col-ms-10,
  .col-ms-11 {
    float: left; }

  .col-ms-1 {
    width: 8.33333%; }

  .col-ms-2 {
    width: 16.66667%; }

  .col-ms-3 {
    width: 25%; }

  .col-ms-4 {
    width: 33.33333%; }

  .col-ms-5 {
    width: 41.66667%; }

  .col-ms-6 {
    width: 50%; }

  .col-ms-7 {
    width: 58.33333%; }

  .col-ms-8 {
    width: 66.66667%; }

  .col-ms-9 {
    width: 75%; }

  .col-ms-10 {
    width: 83.33333%; }

  .col-ms-11 {
    width: 91.66667%; }

  .col-ms-12 {
    width: 100%; }

  .col-ms-push-1 {
    left: 8.33333%; }

  .col-ms-push-2 {
    left: 16.66667%; }

  .col-ms-push-3 {
    left: 25%; }

  .col-ms-push-4 {
    left: 33.33333%; }

  .col-ms-push-5 {
    left: 41.66667%; }

  .col-ms-push-6 {
    left: 50%; }

  .col-ms-push-7 {
    left: 58.33333%; }

  .col-ms-push-8 {
    left: 66.66667%; }

  .col-ms-push-9 {
    left: 75%; }

  .col-ms-push-10 {
    left: 83.33333%; }

  .col-ms-push-11 {
    left: 91.66667%; }

  .col-ms-pull-1 {
    right: 8.33333%; }

  .col-ms-pull-2 {
    right: 16.66667%; }

  .col-ms-pull-3 {
    right: 25%; }

  .col-ms-pull-4 {
    right: 33.33333%; }

  .col-ms-pull-5 {
    right: 41.66667%; }

  .col-ms-pull-6 {
    right: 50%; }

  .col-ms-pull-7 {
    right: 58.33333%; }

  .col-ms-pull-8 {
    right: 66.66667%; }

  .col-ms-pull-9 {
    right: 75%; }

  .col-ms-pull-10 {
    right: 83.33333%; }

  .col-ms-pull-11 {
    right: 91.66667%; }

  .col-ms-offset-1 {
    margin-left: 8.33333%; }

  .col-ms-offset-2 {
    margin-left: 16.66667%; }

  .col-ms-offset-3 {
    margin-left: 25%; }

  .col-ms-offset-4 {
    margin-left: 33.33333%; }

  .col-ms-offset-5 {
    margin-left: 41.66667%; }

  .col-ms-offset-6 {
    margin-left: 50%; }

  .col-ms-offset-7 {
    margin-left: 58.33333%; }

  .col-ms-offset-8 {
    margin-left: 66.66667%; }

  .col-ms-offset-9 {
    margin-left: 75%; }

  .col-ms-offset-10 {
    margin-left: 83.33333%; }

  .col-ms-offset-11 {
    margin-left: 91.66667%; }
}

@media (min-width: 480px) and (max-width: 767px)
{
	.container
	{
	    max-width: 748px; 
	}  
	.form-horizontal .form-group .control-label
	{
	  	text-align:right;
	}
}
/*Start Bootstrap_ms*/
/********************/
	
.container-fluid-commun
{
	margin-top: 50px;
	padding-left: 0px;
	padding-right: 0px;
}

.defaultTextFilter
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.40);
}

.paddingText
{
	padding-left: 15px!important;
	padding-right: 15px!important;
}

@media (max-width: 768px)
{		
	.extraPaddingText
	{
		padding-left: 15px!important;
		padding-right: 15px!important;
	}
}

.noVerticalPadding
{
	padding-bottom: 0px!important;
	padding-top: 0px!important;
}

.textCenter
{
	text-align: center!important;
}

.paddingSide25
{
	padding-right:25px!important;
	padding-left:25px!important;	
}

.noPaddingTop
{
	padding-top: 0px;
}

.noPadding
{
	padding: 0px!important;
}

.noBorder
{
	border: 0px!important;
}

.fontSizeSmall
{
	font-size: small;
}

.alignSelfCenter
{
	align-self: center!important;
}

.buttomSubmitInfoMeeting
{
	display: flex;
	float: right;
	margin-top: 20px;
	width: 100%;
	margin-right: 0px;
	margin-left: 0px;~
	margin-right: 0px;
}

.infoMeeting
{
	width: 100%;
	margin-right: 0px;
}