@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,600,600i,700,700i");
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  -webkit-box-shadow: inset 1px 1px 1px #ccc;
          box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25); /* support: IE8 */
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
          filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 2em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-tabs {
  position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  -webkit-box-shadow: 0 0 3px 1px rgb(94, 158, 214);
          box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70); /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35); /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30); /* support: IE8 */
}

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}

.mfp-bg,
.mfp-wrap {
  left: 0;
  top: 0;
  position: fixed;
}

.mfp-bg,
.mfp-container,
.mfp-wrap {
  width: 100%;
  height: 100%;
}

.mfp-container,
img.mfp-img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.mfp-container:before,
.mfp-figure:after {
  content: "";
}

.mfp-fade.mfp-bg,
.mfp-fade.mfp-wrap .mfp-content {
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
}

.mfp-bg {
  z-index: 1042;
  overflow: hidden;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  z-index: 1043;
  outline: 0 !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-close,
.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader {
  display: none;
}

button.mfp-arrow,
button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:focus,
.mfp-close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-figure,
img.mfp-img {
  line-height: 0;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: -55px 0 0;
  top: 50%;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:focus,
.mfp-arrow:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow .mfp-a,
.mfp-arrow .mfp-b,
.mfp-arrow:after,
.mfp-arrow:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: inset transparent;
}

.mfp-arrow .mfp-a,
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow .mfp-b,
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left .mfp-a,
.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left .mfp-b,
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right .mfp-a,
.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right .mfp-b,
.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-image-holder .mfp-content,
img.mfp-img {
  max-width: 100%;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

img.mfp-img {
  width: auto;
  height: auto;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}

.mfp-figure:after {
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-loading .slick-list {
  background: #fff;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  left: 0;
  top: 0;
}

.slick-track:after,
.slick-track:before {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/*@font-face {
    font-family: slick;
    src: url(./fonts/slick.eot);
    src: url(./fonts/slick.eot?#iefix)format("embedded-opentype"), url(./fonts/slick.woff)format("woff"), url(./fonts/slick.ttf)format("truetype"), url(./fonts/slick.svg#slick)format("svg");
    font-weight: 400;
    font-style: normal
}*/
.slick-next,
.slick-prev {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: 0 0;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: 0;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
  opacity: 0.25;
}

.slick-next:before,
.slick-prev:before {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

[dir=rtl] .slick-next:before {
  content: "←";
}

.slick-slider {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: 0 0;
  display: block;
  height: 20px;
  width: 20px;
  outline: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

div.checker input,
div.radio input,
div.selector select,
div.uploader input {
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  border: none;
}

div.selector select,
div.selector span {
  font-family: "Open Sans", sans-serif;
}

div.button,
div.button span,
div.checker span,
div.radio span,
div.selector,
div.selector span,
div.uploader,
div.uploader span.action {
  background-image: url(../img/default/images/sprite.png);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}

div.button,
div.checker,
div.radio,
div.selector,
div.uploader {
  display: -moz-inline-box;
  display: inline-block;
  zoom: 1;
  vertical-align: middle;
}

div.button:focus,
div.checker:focus,
div.radio:focus,
div.selector:focus,
div.uploader:focus {
  outline: 0;
}

div.button,
div.button *,
div.checker,
div.checker *,
div.radio,
div.radio *,
div.selector,
div.selector *,
div.uploader,
div.uploader * {
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.highContrastDetect {
  background: url(../img/default/images/bg-input.png) repeat-x;
  width: 0;
  height: 0;
}

input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  padding: 3px;
  background: url(../img/default/images/bg-input.png) repeat-x;
  outline: 0;
}

input.uniform-input.active,
select.uniform-multiselect.active,
textarea.uniform.active {
  background: url(../img/default/images/bg-input-focus.png) repeat-x;
}

div.checker input,
input[type=search],
input[type=search]:active {
  -moz-appearance: none;
  -webkit-appearance: none;
}

div.selector {
  line-height: 26px;
  width: 100% !important;
  height: 25px;
  padding: 0 0 0 10px;
  position: relative;
  overflow: hidden;
}

div.selector span {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  background-position: right 0;
  height: 26px;
  line-height: 26px;
  padding-right: 25px;
  cursor: pointer;
  width: 98%;
  display: block;
  font-size: 14px;
}

div.selector.fixedWidth {
  width: 190px;
}

div.selector.fixedWidth span {
  width: 155px;
}

div.selector select {
  background: 0 0;
  position: absolute;
  height: 25px;
  top: 0px;
  left: 0;
  width: 100%;
  font-size: 13px;
}

div.checker,
div.radio,
div.uploader {
  position: relative;
}

div.checker,
div.checker input,
div.checker span {
  width: 19px;
  height: 19px;
}

div.checker span {
  display: -moz-inline-box;
  display: inline-block;
  zoom: 1;
  text-align: center;
  background-position: 0 -260px;
}

div.checker span.checked {
  background-position: -76px -260px;
}

div.checker input {
  background: 0 0;
  display: -moz-inline-box;
  display: inline-block;
  zoom: 1;
}

div.checker.active span {
  background-position: -19px -260px;
}

div.checker.active span.checked {
  background-position: -95px -260px;
}

div.checker.focus span,
div.checker.hover span {
  background-position: -38px -260px;
}

div.checker.focus span.checked,
div.checker.hover span.checked {
  background-position: -114px -260px;
}

div.checker.focus.active span,
div.checker.hover.active span {
  background-position: -57px -260px;
}

div.checker.focus.active span.checked,
div.checker.hover.active span.checked {
  background-position: -133px -260px;
}

div.checker.disabled,
div.checker.disabled.active {
  background-position: -152px -260px;
}

div.checker.disabled span.checked,
div.checker.disabled.active span.checked {
  background-position: -171px -260px;
}

div.radio,
div.radio input,
div.radio span {
  width: 18px;
  height: 18px;
}

div.radio span {
  display: -moz-inline-box;
  display: inline-block;
  zoom: 1;
  text-align: center;
  background-position: 0 -279px;
}

div.radio span.checked {
  background-position: -72px -279px;
}

div.radio input {
  background: 0 0;
  display: -moz-inline-box;
  display: inline-block;
  zoom: 1;
  text-align: center;
}

div.radio.active span {
  background-position: -18px -18px -279px;
}

div.radio.active span.checked {
  background-position: -90px -279px;
}

div.radio.focus span,
div.radio.hover span {
  background-position: -36px -36px -279px;
}

div.radio.focus span.checked,
div.radio.hover span.checked {
  background-position: -108px -279px;
}

div.radio.focus.active span,
div.radio.hover.active span {
  background-position: -54px -279px;
}

div.radio.focus.active span.checked,
div.radio.hover.active span.checked {
  background-position: -126px -279px;
}

div.radio.disabled span,
div.radio.disabled.active span {
  background-position: -144px -279px;
}

div.radio.disabled span.checked,
div.radio.disabled.active span.checked {
  background-position: -162px -279px;
}

div.uploader {
  background-position: 0 -297px;
  height: 28px;
  width: 190px;
  cursor: pointer;
  overflow: hidden;
}

div.uploader span.action {
  background-position: right -409px;
  height: 28px;
  line-height: 28px;
  width: 85px;
  text-align: center;
  float: left;
  display: inline;
  overflow: hidden;
  cursor: pointer;
}

div.uploader span.filename {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  float: left;
  cursor: default;
  height: 24px;
  margin: 2px 0 2px 2px;
  line-height: 24px;
  width: 82px;
  padding: 0 10px;
}

div.uploader input {
  background: 0 0;
  position: absolute;
  top: 0;
  right: 0;
  float: right;
  cursor: default;
  width: 100%;
  height: 100%;
}

div.uploader.active span.action {
  background-position: right -465px;
}

div.uploader.focus,
div.uploader.hover {
  background-position: 0 -353px;
}

div.uploader.focus span.action,
div.uploader.hover span.action {
  background-position: right -437px;
}

div.uploader.focus.active span.action,
div.uploader.hover.active span.action {
  background-position: right -493px;
}

div.uploader.disabled,
div.uploader.disabled.active {
  background-position: 0 -325px;
}

div.uploader.disabled span.action,
div.uploader.disabled.active span.action {
  background-position: right -381px;
}

div.button {
  background-position: 0 -641px;
  height: 30px;
  cursor: pointer;
  position: relative;
}

div.button a,
div.button button,
div.button input {
  opacity: 0.01;
  filter: alpha(opacity=1);
  -moz-opacity: 0.01;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

div.button span {
  display: -moz-inline-box;
  display: inline-block;
  zoom: 1;
  line-height: 30px;
  text-align: center;
  background-position: right -521px;
  height: 30px;
  margin-left: 13px;
  padding: 0;
}

div.button.active {
  background-position: 0 -671px;
}

div.button.active span {
  background-position: right -551px;
  cursor: default;
}

div.button.focus,
div.button.hover {
  background-position: 0 -701px;
}

div.button.focus span,
div.button.hover span {
  background-position: right -581px;
}

div.button.disabled,
div.button.disabled.active {
  background-position: 0 -731px;
}

div.button.disabled span,
div.button.disabled.active span {
  background-position: right -611px;
  cursor: default;
}

/*********************** LIGHTBOXES **********************/
.lb-padrao {
  max-width: 470px;
  background-color: #f1f1f1;
  margin: 0 auto;
  display: table;
  height: auto;
  position: relative;
  border-top: 14px solid #36bfaf;
  padding: 55px 60px;
}

.mfp-close-btn-in .mfp-close {
  background-color: #313069;
  opacity: 1;
  color: #fff;
  font-weight: 300 !important;
  font-size: 41px;
  font-family: "Open Sans", sans-serif;
}

.title {
  margin-bottom: 25px;
}

.lb-padrao form {
  margin-top: 30px;
}

.lb-padrao a {
  color: #36bfaf;
}

.lb-padrao a:hover {
  text-decoration: underline;
}

.lb-avaliacoes {
  max-width: 760px;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas {
  margin: 0 0 25px 0;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item {
  background-color: #fff;
  margin: 0 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item:last-of-type {
  margin: 0;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item.first {
  background-color: transparent;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item.first span {
  font-weight: 700;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item.first .radios .radio-ind {
  width: 46px;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item.first .radios .radio-ind small {
  font-weight: 700;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item.error {
  outline: 1px solid red;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item span {
  margin: 15px 0 15px 15px;
  width: calc(100% - 260px);
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios .radio-ind {
  border-left: 2px solid #f1f1f1;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
  text-align: center;
}
.lb-avaliacoes .etapa-2 .listagem-perguntas {
  margin: 0 0 10px 0;
}
.lb-avaliacoes .etapa-2 .listagem-perguntas .item {
  background-color: #fff;
  margin: 0 0 10px 0;
  padding: 16px 230px 16px 16px;
  position: relative;
}
.lb-avaliacoes .etapa-2 .listagem-perguntas .item:before, .lb-avaliacoes .etapa-2 .listagem-perguntas .item:after {
  content: "";
  display: table;
}
.lb-avaliacoes .etapa-2 .listagem-perguntas .item:after {
  clear: both;
}
.lb-avaliacoes .etapa-2 .listagem-perguntas .item:last-of-type {
  margin: 0;
}
.lb-avaliacoes .etapa-2 .listagem-perguntas .item span {
  float: left;
  line-height: 1.4;
}
.lb-avaliacoes .etapa-2 .listagem-perguntas .item.error {
  outline: 1px solid red;
}
.lb-avaliacoes .etapa-2 .listagem-perguntas .item .radios {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lb-avaliacoes .etapa-2 .listagem-perguntas .item .radios .radio-ind {
  float: left;
  margin: 0 70px 0 0;
}
.lb-avaliacoes .etapa-2 .listagem-perguntas .item .radios .radio-ind label small {
  font-weight: 700;
  font-size: 14px;
  padding: 0 0 0 25px;
}
.lb-avaliacoes .etapa-2 textarea {
  margin: 0 0 25px 0;
}
.lb-avaliacoes .etapa-2 textarea::-webkit-input-placeholder {
  color: #4c4c4c;
  opacity: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.lb-avaliacoes .etapa-2 textarea::-moz-placeholder {
  color: #4c4c4c;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.lb-avaliacoes .etapa-2 textarea:-ms-input-placeholder {
  color: #4c4c4c;
  opacity: 1;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.lb-avaliacoes .etapa-2 textarea:-moz-placeholder {
  color: #4c4c4c;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.lb-avaliacoes .etapa-2 textarea:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
.lb-avaliacoes .etapa-2 textarea:focus::-moz-placeholder {
  opacity: 0.5;
}
.lb-avaliacoes .etapa-2 textarea:focus:-ms-input-placeholder {
  opacity: 0.5;
}
.lb-avaliacoes .etapa-2 textarea:focus:-moz-placeholder {
  opacity: 0.5;
}
.lb-avaliacoes form {
  margin: 0;
}
.lb-avaliacoes form .wrapper .etapas-wrapper {
  float: left;
  margin: 33px 0 0 0;
}
.lb-avaliacoes form .wrapper .etapas-wrapper span {
  color: #36c0af;
  display: block;
  font-weight: 600;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}
.lb-avaliacoes form .wrapper .etapas-wrapper .etapas .etapa {
  background-color: #d7d7d7;
  float: left;
  height: 3px;
  width: 50px;
  margin: 0 1px 0 0;
}
.lb-avaliacoes form .wrapper .etapas-wrapper .etapas .etapa:last-of-type {
  margin: 0;
}
.lb-avaliacoes form .wrapper .etapas-wrapper .etapas .etapa.active {
  background-color: #36c0af;
}
.lb-avaliacoes form .wrapper .bt {
  float: right;
}
.lb-avaliacoes input[type=radio] {
  display: none;
}
.lb-avaliacoes input[type=radio] + label {
  border: 3px solid #e1e1e1;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  padding: 0;
}
.lb-avaliacoes input[type=radio] + label:before {
  display: none;
}
.lb-avaliacoes input[type=radio] + label:after {
  background-color: #36c0af;
  border-radius: 100%;
  content: "";
  height: 10px;
  width: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lb-avaliacoes textarea {
  height: auto;
  margin: 0;
}

.lb-plataforma-video .title {
  font-size: 42px;
  margin: 0 0 50px 0;
}
.lb-plataforma-video .sub-title {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 50px 0;
}
.lb-plataforma-video .sub-title.menor {
  font-size: 14px;
}

.lb-cadastro {
  max-width: 760px;
}

.lb-cadastro .width-50 {
  width: 49.3%;
}

.lb-cadastro .width-50 .width-50 {
  width: 48.5%;
}

.lb-cadastro .submit {
  float: right !important;
}

.lb-cadastro .g-recaptcha {
  float: left;
  margin-bottom: 10px;
}

.bottom-10 {
  margin-bottom: 10px;
}

/*.lb-padrao h2 { font-size:24px; }
.ld-descricao { margin-top:12px; padding-top:12px; border-top:1px solid #000; border-bottom:1px solid #000; padding-bottom:12px; margin-bottom:20px; }
.ld-descricao .lb-bt-facebook { background-position:0 -206px; width:245px; height:53px; display:block; margin:0 auto; margin-top:15px; }
.lb-input { width:100%; height:auto; display:table; margin-bottom:8px; }
.lb-input input { padding-left:15px; padding-right:15px; width:100%; height:38px; background-color:#fff; border-color:#b2b2b2 #e7e7e7 #d6d6d6; border-style:solid; border-width:1px; margin-top:5px; }
.lb-link { text-align:left; text-decoration:underline !important; display:block; color:#000; }
.lb-submit { background:url("../img/default/setaLogin.png") center right no-repeat; padding:8px 18px; font-size:24px; letter-spacing:-0.5px;  color:#000; background-color:#addc0a; float:right; border:0px; cursor:pointer; padding-right:34px; transition:all .3s ease; }
.lb-submit:hover { background-color:#b6e415; transition:all .3s ease; }
.ld-password-descricao { padding-bottom:0px; border-bottom:0px; }
.lb-error { width:530px; height:170px; border:0px; background-color:#fff; }
.lb-error h2 { padding-left:50px; font-size:48px; color:#ff5757; margin-bottom:5px; display:table; margin:0 auto; background:url("../img/default/iconeErro.png") top left no-repeat;  }
.lb-error .ld-descricao { border:0px; width:390px; text-align:center; margin:0 auto; }
.lb-error .lb-fechar { background-position:-269px -313px; width:17px; height:17px; }
.lb-error .title-sucess { background:url("../img/default/iconeSucess.png") top left no-repeat; color:#54d216; }*/
@media only screen and (max-width: 760px) {
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item {
    padding: 15px;
    display: block;
    text-align: center;
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item:before, .lb-avaliacoes .etapa-1 .listagem-perguntas .item:after {
    content: "";
    display: table;
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item:after {
    clear: both;
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item.first {
    display: none;
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item span {
    display: block;
    width: 100%;
    line-height: 1.3;
    margin: 0 0 15px 0;
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios {
    display: inline-block;
    border-top: 2px solid #f1f1f1;
    border-bottom: 2px solid #f1f1f1;
    border-right: 2px solid #f1f1f1;
    margin: 25px 0 0 0;
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios .radio-ind {
    position: relative;
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios .radio-ind:before {
    font-weight: 700;
    left: 50%;
    position: absolute;
    top: -25px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios .radio-ind.um:before {
    content: "1";
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios .radio-ind.dois:before {
    content: "2";
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios .radio-ind.tres:before {
    content: "3";
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios .radio-ind.quatro:before {
    content: "4";
  }
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios .radio-ind.cinco:before {
    content: "5";
  }
  .lb-avaliacoes .etapa-2 .listagem-perguntas .item {
    padding: 15px;
  }
  .lb-avaliacoes .etapa-2 .listagem-perguntas .item span {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .lb-avaliacoes .etapa-2 .listagem-perguntas .item .radios {
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }
}
@media only screen and (max-width: 500px) {
  .lb-avaliacoes .etapa-1 .listagem-perguntas .item .radios .radio-ind {
    padding: 9px;
  }
  .lb-padrao {
    padding: 35px;
  }
  .lb-avaliacoes .etapa-1 .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .lb-avaliacoes .etapa-1 .wrapper .bt {
    width: 100%;
  }
  .lb-avaliacoes .etapa-2 .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .lb-avaliacoes .etapa-2 .wrapper .bt {
    width: 100%;
  }
  .lb-plataforma-video .title {
    margin: 0 0 25px 0;
  }
  .lb-plataforma-video .subtitle {
    margin: 0 0 25px 0;
  }
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: 0 0;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: not-allowed;
}

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

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #fff;
  position: relative;
}

/*html, body { height:100%; }*/
h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
  margin: 0;
  line-height: 100%;
}

input,
textarea,
select {
  outline: none;
}

textarea {
  resize: none;
}

button {
  padding: 0;
}

button:focus {
  outline: 0;
}

a,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}

body,
p {
  font-size: 14px;
}

p {
  color: #231f20;
  line-height: 160%;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

b {
  font-weight: 700;
}

/*********************** TOOLS **********************/
.clearfix:before {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

.cb, .clear {
  clear: both !important;
}

.hidden, .hide {
  display: none;
}

.invisible {
  opacity: 0;
  filter: alpha(opacity=0);
}

.bn {
  border: 0 !important;
}

.b1px {
  border-width: 1px !important;
}

.mn {
  margin: 0 !important;
}

.pn {
  padding: 0 !important;
}

.al {
  text-align: left !important;
}

.ac, .tac {
  text-align: center !important;
}

.ar, .tar {
  text-align: right !important;
}

.al, .tal {
  text-align: left !important;
}

.fl, .left {
  float: left !important;
}

.fr, .right {
  float: right !important;
}

.bgn {
  background: none !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute;
}

.sprite {
  background: url("../img/default/sprite.png") no-repeat;
  border: none;
  display: block;
  overflow: hidden;
  text-indent: -8000px;
}

.sticky-wrapper {
  position: relative;
}

.sticky-push {
  height: 100px;
}

.font-droid {
  margin: 0;
  line-height: 115%;
}

.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-700 {
  font-weight: 700;
}

.centralizar {
  margin: 0 auto;
  display: table;
}

.padding-0 {
  padding: 0 !important;
}

.padding-bottom-55 {
  padding-bottom: 55px !important;
}

.padding-bottom-30 {
  padding-bottom: 30px !important;
}

.block {
  display: block !important;
}

.break-line {
  white-space: pre-wrap;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.cover {
  background-size: cover !important;
}

.bottom-none {
  margin-bottom: 0;
  padding-top: 15px;
}

/* The game has began */
input[type=radio], input[type=checkbox] {
  display: block;
  width: 1px;
  margin: 0;
  height: 13px;
  padding: 0;
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  margin-top: -13px;
}

/* Label que referem-se aos inputs radios a serem estilizados com css3 */
input[type=radio] + label, input[type=checkbox] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
}

/* Essa é a bolinha de fora */
input[type=radio].error + label:before, input[type=checkbox].error + label:before {
  border-color: red;
}

input[type=radio] + label:before, input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  top: 2px;
  font-size: 13px;
}

input[type=radio] + label.error:before, input[type=checkbox] + label.error:before {
  border-color: red;
}

/* Essa é a bolinha de dentro */
/*input[type="radio"]+label:after, input[type="checkbox"]+label:after {content: '';opacity: 0;display: block;background: #d9d9d9; border-radius: 2px;position: absolute;top: 4px;left: 2px;width: 16px;height: 16px;transition: all ease 0.5s; color:#35bfae; }*/
input[type=radio] + label:after, input[type=checkbox] + label:after {
  content: "✔";
  opacity: 0;
  display: block;
  position: absolute;
  top: -1px;
  left: 4px;
  font-size: 16px;
  width: 16px;
  height: 16px;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #35bfae;
}

/* É necessário que a label esteja LOGO DEPOIS do input no html não dentro, fora, */
/* se não ela não pega o estilo! ;) */
input[type=radio]:checked + label:after, input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* Bootstrap Select */
select.bs-select-hidden, select.selectpicker {
  display: none !important;
}

.bootstrap-select {
  width: 220px\9 ;
}

.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #999;
}

.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}

.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}

.error .bootstrap-select .dropdown-toggle, .has-error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}

.bootstrap-select.fit-width {
  width: auto !important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 220px;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}

.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}

.bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}

.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}

.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*=col-] {
  float: none;
  display: inline-block;
  margin-left: 0;
}

.bootstrap-select.btn-group.dropdown-menu-right, .bootstrap-select.btn-group[class*=col-].dropdown-menu-right, .row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
  float: right;
}

.form-group .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group, .form-inline .bootstrap-select.btn-group {
  margin-bottom: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control, .form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}

.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}

.bootstrap-select.btn-group.disabled, .bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}

.bootstrap-select.btn-group.disabled:focus, .bootstrap-select.btn-group > .disabled:focus {
  outline: 0 !important;
}

.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}

.bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
  width: 100%;
}

.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
  max-height: 450px !important;
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}

.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}

.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}

.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
  display: block;
}

.bs-actionsbox, .bs-donebutton, .bs-searchbox {
  padding: 4px 8px;
}

.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bs-actionsbox .btn-group button {
  width: 50%;
}

.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bs-donebutton .btn-group button {
  width: 100%;
}

.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}

.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

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

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

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

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.mCustomScrollbar {
  -ms-touch-action: none;
  touch-action: none;
}

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto;
}

.mCustomScrollBox {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
}

.mCSB_container {
  overflow: hidden;
  width: auto;
  height: auto;
}

.mCSB_inside > .mCSB_container {
  margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}

.mCSB_scrollTools {
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  right: auto;
  left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
}

.mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
  cursor: pointer;
  width: 100%;
  height: 30px;
  z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%;
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  height: 100%;
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0;
}

.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}

.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
}

.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px;
}

.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  margin-right: 0;
  margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  margin-left: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -o-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.mCSB_scrollTools {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)";
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
}

.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
}

.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
}

.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px;
}

.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px;
  height: 16px;
  margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px;
  width: 16px;
  margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -128px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -128px;
}

.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
  background-repeat: repeat-y;
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -128px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -128px;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px;
}

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  border-radius: 16px;
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 8px;
  margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  border-radius: 7px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  border-radius: 5px;
}

.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  right: 1px;
}

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  bottom: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  width: auto;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-3d-thick-dark.mCSB_scrollTools {
  -webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0;
}

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}

.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  left: 0;
  right: auto;
}

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px;
}

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  border-color: #000;
  border-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

/*Variáveis*/
/*Funções*/
/*Fontes*/
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
html,
body {
  font-family: "Open Sans", sans-serif;
  color: #464646;
  font-size: 14px;
}

p,
div,
span {
  font-family: "Open Sans", sans-serif;
  color: #464646;
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 50px;
  color: #464646;
}

svg {
  float: left;
}

ul:before, ul:after {
  content: "";
  display: table;
}
ul:after {
  clear: both;
}

.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}

.wrapper:before, .wrapper:after {
  content: "";
  display: table;
}
.wrapper:after {
  clear: both;
}

.title-geral {
  color: #313068;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 25px;
  display: block;
  font-size: 30px;
  letter-spacing: -1px;
}

[aria-invalid=true] {
  border-color: red;
}

.sticky-wrapper.mCustomScrollbar #mCSB_1_container {
  margin: 0;
}

.mCSB_scrollTools {
  z-index: 11;
  visibility: hidden;
}
.mCSB_scrollTools .mCSB_draggerRail {
  opacity: 0;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  opacity: 0;
}
.mCSB_scrollTools:hover, .mCSB_scrollTools.mCSB_scrollTools_onDrag {
  visibility: visible;
}
.mCSB_scrollTools:hover .mCSB_dragger .mCSB_dragger_bar, .mCSB_scrollTools.mCSB_scrollTools_onDrag .mCSB_dragger .mCSB_dragger_bar {
  opacity: 0.75;
}
.mCSB_scrollTools:hover .mCSB_draggerRail, .mCSB_scrollTools.mCSB_scrollTools_onDrag .mCSB_draggerRail {
  opacity: 1;
}

.smoother,
.transform {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.animate-offset {
  opacity: 0;
  -webkit-transition: all ease 2s;
  -o-transition: all ease 2s;
  transition: all ease 2s;
}
.animate-offset.animate {
  opacity: 1;
}

.bootstrap-select.btn-group > .dropdown-toggle {
  background: transparent;
  border: 1px solid transparent;
  padding: 1px 15px;
  line-height: 34px;
  outline: none;
  position: relative;
}
.bootstrap-select.btn-group > .dropdown-toggle .caret {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top-color: transparent;
  border-right-color: transparent;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -6px;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  font-size: 0;
  position: relative;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  font-size: 14px;
  color: #000;
  background: none;
}

.bootstrap-select.btn-group .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 12px;
  border: 1px solid #000;
  background: #fff;
}
.bootstrap-select.btn-group .dropdown-menu.open {
  display: block;
  z-index: 99;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  max-height: 183px !important;
}
.bootstrap-select.btn-group .dropdown-menu .dropdown-menu {
  display: block;
  padding: 5px 0 6px;
}
.bootstrap-select.btn-group .dropdown-menu .dropdown-menu a {
  padding: 0 15px;
  line-height: 25px;
  display: block;
  color: #000;
}
.bootstrap-select.btn-group .dropdown-menu .dropdown-menu a:hover, .bootstrap-select.btn-group .dropdown-menu .dropdown-menu a:focus {
  background: transparent;
  color: rgba(0, 0, 0, 0.5);
}
.bootstrap-select.btn-group .dropdown-menu .dropdown-menu .selected a {
  background: transparent;
  color: rgba(0, 0, 0, 0.5);
}

.bootstrap-select > .dropdown-toggle {
  border-color: rgba(0, 0, 0, 0.5);
}
.bootstrap-select.btn-group .dropdown-menu {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.5);
}

.wrap {
  display: table;
  margin: 0 auto;
  width: 1245px;
}

.slick-track {
  margin: 0 auto;
}

.slick-dots {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: -35px;
}
.slick-dots li {
  width: 13px;
  height: 13px;
  text-align: center;
  margin: 0 8px !important;
}
.slick-dots li button {
  width: 13px;
  height: 13px;
  background-color: transparent;
  border: 1px solid #313068;
  border-radius: 15px;
  padding: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slick-dots li button:hover {
  background-color: #313068 !important;
}
.slick-dots li.slick-active button {
  width: 13px;
  height: 13px;
  background-color: #313068 !important;
}

.slick-list,
.slick-track {
  height: 100%;
}

.message-error {
  color: #ca0500;
  line-height: 140%;
}

.lazy-container {
  background: url("../img/default/loader.svg") center center no-repeat;
  background-size: 25%;
}
.lazy-container > * {
  opacity: 0;
}
.lazy-container > *.b-loaded {
  -webkit-animation: fadeIn 1s forwards;
          animation: fadeIn 1s forwards;
  opacity: 1;
}

/*submit*/
.submit {
  display: block;
  float: left;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #35bfae;
  line-height: 15px;
  border: 5px solid rgba(53, 191, 174, 0.3);
}
.submit i {
  display: table;
  margin: 0 auto;
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}
.submit:hover {
  border: 5px solid rgba(53, 191, 174, 0.6);
}
.submit.submit-maior {
  background-color: #313068;
  border: 5px solid rgba(49, 48, 104, 0.3) !important;
  padding: 15px 55px;
  margin: 0 auto;
  display: table;
  float: none;
  border-radius: 40px;
  width: auto;
  height: auto;
  color: #fff;
  font-size: 16px;
}
.submit.submit-maior:hover {
  border: 5px solid rgba(49, 48, 104, 0.6) !important;
}

/*TITLE INTERNO*/
.title-interno {
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  color: #313068;
  letter-spacing: -2px;
  line-height: 40px;
}

/*FILTRO*/
.section_filtro {
  width: 100%;
  padding: 25px 0;
  height: auto;
  display: table;
  background-color: #f1f1f1;
}
.section_filtro .wrap {
  width: 950px;
}
.section_filtro .wrap .title {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  float: left;
  margin-top: 8px;
}
.section_filtro .wrap .box-filtro {
  width: 90%;
  float: right;
  display: table;
}
.section_filtro .wrap .box-filtro .box-33 {
  width: 30%;
  float: left;
  margin-right: 5%;
}
.section_filtro .wrap .box-filtro .box-33:last-child {
  margin-right: 0;
}

/*INPU, SELECT E TEXTAREA*/
input {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 3px;
  background-color: #fff;
  color: #4c4c4c;
  margin-bottom: 10px;
  display: block;
  border: 1px solid transparent;
  padding: 0 15px;
}
input::-webkit-input-placeholder {
  color: #464646;
  opacity: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
input::-moz-placeholder {
  color: #464646;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
input:-ms-input-placeholder {
  color: #464646;
  opacity: 1;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
input:-moz-placeholder {
  color: #464646;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
input:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
input:focus::-moz-placeholder {
  opacity: 0.5;
}
input:focus:-ms-input-placeholder {
  opacity: 0.5;
}
input:focus:-moz-placeholder {
  opacity: 0.5;
}
input.error {
  border-color: red !important;
}

label.error {
  display: none !important;
}

textarea {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 3px;
  background-color: #fff;
  color: #4c4c4c;
  padding: 15px;
  display: block;
  margin-bottom: 10px;
  border: 1px solid transparent;
}
textarea.error {
  border-color: red !important;
}

.bootstrap-select {
  width: 100%;
  height: 46px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid transparent;
  padding: 0 15px;
}
.bootstrap-select.error {
  border-color: red !important;
}

.bootstrap-select.btn-group > .dropdown-toggle {
  padding: 0 !important;
  width: 100%;
  height: 46px;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  padding: 0;
  width: 100%;
  height: 46px;
  line-height: 43px;
  color: #464646;
}

.bootstrap-select.btn-group > .dropdown-toggle .caret {
  border: 0;
  width: 12px;
  height: 7px;
  background: url("../img/default/sprite.png") -59px 0 no-repeat;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin-top: -4px;
  margin-right: -12px !important;
}

.bootstrap-select.btn-group .dropdown-menu .dropdown-menu {
  padding: 0;
}

.bootstrap-select.btn-group .dropdown-menu .dropdown-menu .selected a {
  height: 46px;
  line-height: 44px;
}

.bootstrap-select.btn-group .dropdown-menu .dropdown-menu a {
  line-height: 32px;
  height: auto;
  padding-top: 1px;
}
.bootstrap-select.btn-group .dropdown-menu .dropdown-menu a:hover {
  background-color: #f1f1f1;
}

/* animacao abrir lightbox */
/* Styles for dialog window */
#small-dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  max-width: 400px;
  margin: 40px auto;
  position: relative;
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*PAGINACAO*/
.paginacao {
  margin: 0 auto;
  display: table;
  padding-top: 10px;
  padding-bottom: 40px;
}
.paginacao ul li {
  margin: 0 5px;
  float: left;
  display: block;
}
.paginacao ul li a {
  width: 55px;
  height: 55px;
  display: block;
  border-radius: 50%;
  font-size: 18px;
  background-color: #35bfae;
  line-height: 15px;
  border: 5px solid #d7f2ef;
  color: #ffffff;
  line-height: 42px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.paginacao ul li a:hover, .paginacao ul li a.active {
  background-color: #313068 !important;
  border: 5px solid #d6d6e1 !important;
}
.paginacao .setas {
  float: left;
  margin-top: 14px;
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.paginacao .setas:hover {
  opacity: 0.6;
}
.paginacao .setas.next {
  margin-left: 10px;
}
.paginacao .setas.prev {
  margin-right: 10px;
}
.paginacao .setas i {
  color: #464646;
  font-size: 20px;
  margin-top: 2px;
}

.dropdown-menu.inner > li:first-child a {
  line-height: 30px !important;
}
.dropdown-menu.inner li.selected {
  background-color: #f1f1f1;
}
.dropdown-menu.inner li.selected a {
  height: auto !important;
}
.dropdown-menu.inner a {
  padding: 8px 15px !important;
  line-height: 100% !important;
}
.dropdown-menu.inner a span {
  line-height: 16px;
}

.sk-fading-circle {
  width: 40px;
  height: 40px;
  position: relative;
}
.sk-fading-circle.pay-loader {
  margin: 50px auto 0;
}
.sk-fading-circle.loader {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-left: -28px;
  margin-top: -5px;
  display: none;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.g-recaptcha.error > div {
  border-color: red;
}
.g-recaptcha > div {
  border: 1px solid transparent;
  margin: 0 -2px -2px 0;
}

@media only screen and (max-width: 1279px) {
  .wrap {
    width: 95%;
  }
  .animate-offset {
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 992px) {
  .section_filtro .wrap {
    width: 95%;
  }
}
@media only screen and (max-width: 768px) {
  .section_filtro .wrap .title {
    display: block;
    width: 100%;
    text-align: center;
  }
  .section_filtro .wrap .box-filtro {
    width: 100%;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .section_filtro .wrap .box-filtro .box-33 {
    width: 100%;
    margin-bottom: 15px;
  }
  .section_filtro .wrap .box-filtro .box-33:last-child {
    margin: 0;
  }
}
.cc-window.cc-banner {
  width: 80% !important;
}

@media only screen and (max-width: 1441px) {
  .cc-window.cc-banner {
    width: 70% !important;
  }
}
@media only screen and (max-width: 769px) {
  .cc-window.cc-banner {
    width: 100% !important;
    bottom: 30px !important;
  }
}
/*********************** HEADER **********************/
.header {
  height: auto;
  display: table;
  width: 100%;
}
.header_info {
  height: 92px;
  width: 100%;
  background-color: #0047bb;
  display: table;
}
.header_info .wrap {
  position: relative;
  overflow: hidden;
  display: block;
  height: 92px;
}
.header_info .header_logo {
  margin-top: 30px;
  float: left;
  display: block;
}
.header_info .header_logo .top-logo img {
  max-width: 200px;
}
.header_info .header_language {
  margin-top: 35px;
  float: right;
  display: block;
}
.header_info .header_language li {
  float: left;
  display: block;
}
.header_info .header_language li a {
  border: 1px solid #35bfae;
  width: 21px;
  height: 21px;
  float: left;
  display: block;
  margin-left: 3px;
  line-height: 18px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  color: #35bfae;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 1px;
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}
.header_info .header_language li span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}
.header_info .header_language_desktop {
  margin-top: 28px;
}
.header_info .header_language_desktop a {
  width: 34px !important;
  height: 34px !important;
  line-height: 33px !important;
  cursor: pointer !important;
}
.header_info .header_language_desktop a:hover {
  background-color: #35bfae !important;
}
.header_info .header_language_desktop .outras_language {
  position: absolute;
  z-index: 99;
  display: block;
  background-color: #35bfae;
  top: 0;
  right: -1px;
  opacity: 0;
  height: 92px;
  padding: 28px 25px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.header_info .header_language_desktop .outras_language.open {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.header_info .header_language_desktop .outras_language .close {
  position: absolute;
  top: -5px;
  right: -12px;
}
.header_info .header_language_desktop .outras_language .close:hover i {
  opacity: 1;
}
.header_info .header_language_desktop .outras_language .close i {
  color: #fff;
  opacity: 0.5;
  font-size: 15px;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header_info .header_language_desktop .outras_language li {
  font-size: 12px;
  font-weight: 600;
  margin-right: 25px;
  color: #ffffff;
  line-height: 33px;
}
.header_info .header_language_desktop .outras_language li:last-child {
  margin-right: 0;
}
.header_info .header_language_desktop .outras_language li a {
  margin-right: 8px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  /*&.active_top{
      background-color: $azul !important;
  }*/
}
.header_info .header_language_desktop .outras_language li a:hover, .header_info .header_language_desktop .outras_language li a.active {
  background-color: #313068 !important;
}
.header_info .header_language_mobile {
  width: 95%;
  margin: 0 auto;
  display: table;
  padding-top: 35px;
}
.header_info .header_language_mobile a.active {
  color: #ffffff !important;
  background-color: #35bfae !important;
}
.header_info .header_midias {
  float: right;
  display: block;
  margin-right: 30px;
  margin-top: 22px;
}
.header_info .header_midias li {
  float: left;
  display: block;
  margin-left: 15px;
}
.header_info .header_midias li:first-child {
  margin-left: 0;
}
.header_info .header_link {
  float: right;
  display: block;
  margin-right: 25px;
  margin-top: 30px;
}
.header_info .header_link li {
  height: 31px;
  float: left;
  display: block;
  border-right: 1px solid #fff;
  padding: 0 22px;
}
.header_info .header_link li:last-child {
  border: 0;
}
.header_info .header_link li a {
  color: #fff;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 27px;
}
.header_info .header_link li a.logout {
  color: #35bfae;
}
.header_info .header_link li a:hover {
  opacity: 0.5;
}
.header_info .header_link li a i {
  font-size: 14px;
  color: #35bfae;
  margin-right: 8px;
}
.header_info .navbar {
  float: right;
  margin-top: 27px;
  display: none;
}
.header_info .navbar i {
  color: #fff;
  font-size: 36px;
}
.header_menu {
  display: block;
  height: 52px;
  background-color: #fff;
  width: 100%;
}
.header_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-display: -webkit-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header_menu ul li {
  color: #313068;
  text-transform: uppercase;
  letter-spacing: 2.3px;
  font-size: 12px;
  font-weight: 600;
  height: 52px;
  display: block;
  line-height: 50px;
  /*transition:all .2s ease;*/
}
.header_menu ul li:hover {
  color: #fff;
  background-color: #35bfae;
}
.header_menu ul li:hover a {
  color: #fff;
  background-color: #35bfae;
}
.header_menu ul li a {
  padding: 0 15px;
  color: #313068;
  display: block;
}
.header_menu ul li a:hover {
  color: #fff;
}
.header_menu ul li.submenu:hover .submenu_institucional {
  display: block;
  max-height: 300px;
}
.header_menu ul li.submenu:hover .submenu_servicos {
  display: block;
  max-height: 600px;
}
.header_menu .submenu ul {
  width: 100%;
  display: block;
}
.header_menu .submenu ul li {
  padding: 0;
  width: 100%;
  display: block;
  border-bottom: 1px solid #31b0a0;
  border-top: 1px solid #5dccbe;
}
.header_menu .submenu ul li a {
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 0;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  height: auto;
  display: table;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header_menu .submenu ul li a:hover {
  color: #89dad0;
}
.header_menu .submenu ul li:last-child {
  border-bottom: 0;
}
.header_menu .submenu ul li:first-child {
  border-top: 0;
}
.header_menu .submenu_institucional {
  width: 240px;
  background-color: #35bfae;
  position: absolute;
  z-index: 9999;
  /*display: none;*/
  top: 52px;
  left: 0;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  max-height: 0;
  display: block;
  overflow: hidden;
}
.header_menu .submenu_institucional .padding {
  padding: 20px;
  padding-top: 10px;
  float: left;
  width: 100%;
}
.header_menu .submenu_servicos {
  background-color: #35bfae;
  position: absolute;
  top: 52px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 9999;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  max-height: 0;
  display: block;
  overflow: hidden;
  /*display: none;*/
}
.header_menu .submenu_servicos .padding {
  padding: 30px 20px;
  float: left;
  width: 100%;
  text-align: center;
  display: table;
}
.header_menu .submenu_servicos .box-25 {
  width: calc(25% - 5px);
  display: inline-block;
  padding-right: 5%;
  height: auto;
  text-align: left;
  vertical-align: top;
}
.header_menu .submenu_servicos .box-25 ul li {
  border: 0;
  margin-bottom: 8px;
  height: auto;
}
.header_menu .submenu_servicos .box-25 ul li a {
  padding: 0 0 0 15px;
  line-height: 18px;
  background: url("../img/default/list-style.png") top left no-repeat;
}
.header_menu .submenu_servicos .box-25:last-child {
  padding: 0;
}
.header_menu .submenu_servicos .box-25 .title {
  font-size: 20px;
  color: #e1f3f0;
  font-weight: 700;
  font-style: italic;
  text-transform: none;
  letter-spacing: -1px;
  margin-bottom: 8px;
  display: block;
}
.header_menu .submenu_servicos .box-25 .box-100 {
  width: 100%;
  height: auto;
  display: inline-block;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #31b0a0;
  border-top: 1px solid #5dccbe;
}
.header_menu .submenu_servicos .box-25 .box-100:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0;
}
.header_menu .submenu_servicos .box-25 .box-100:first-child {
  padding-top: 0px;
  border-top: 0;
}
.header_logado_menu {
  width: 100%;
  height: 90px;
  background-color: #f1f1f1;
}
.header_logado_menu ul {
  float: left;
  display: block;
  margin: 0;
  padding: 0;
}
.header_logado_menu ul li {
  display: block;
  height: 90px;
  float: left;
  display: table;
}
.header_logado_menu ul li a {
  text-align: center;
  color: #313068;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0 35px;
  height: 90px;
  display: block;
  position: relative;
  line-height: 85px;
}
.header_logado_menu ul li a:hover:after {
  width: 100%;
}
.header_logado_menu ul li a:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 7px;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  background-color: #35bfae;
}
.header_logado_menu ul li a.active:after {
  width: 100%;
}

.submenu-mobile-content,
.submenu-second-mobile-content {
  background-color: #fff;
}

.header_search {
  visibility: hidden;
  background: #f1f1f1;
  height: 100px;
  width: 100%;
  margin-top: -100px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  z-index: 99999;
}
.header_search.open {
  visibility: visible;
  margin-top: 0;
}
.header_search input {
  width: 90%;
  height: 90px;
  display: block;
  border: none;
  color: #898989;
  font-size: 20px;
  font-style: italic;
  float: left;
  margin-bottom: 0;
  letter-spacing: -1px;
  background: transparent;
}
.header_search input::-webkit-input-placeholder {
  color: #898989;
  opacity: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header_search input::-moz-placeholder {
  color: #898989;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header_search input:-ms-input-placeholder {
  color: #898989;
  opacity: 1;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header_search input:-moz-placeholder {
  color: #898989;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header_search input:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
.header_search input:focus::-moz-placeholder {
  opacity: 0.5;
}
.header_search input:focus:-ms-input-placeholder {
  opacity: 0.5;
}
.header_search input:focus:-moz-placeholder {
  opacity: 0.5;
}
.header_search .header-search-button {
  float: left;
  margin-top: 34px;
  border: 0;
  background-color: transparent !important;
}
.header_search .header-search-button i {
  font-size: 18px;
  color: #313068;
}

.mask-content {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.5);
}

.header_menu_mb {
  width: 100%;
  height: auto;
  display: none;
  position: absolute;
  z-index: 99;
  top: 92px;
  left: 0;
  background-color: #fff;
}
.header_menu_mb.active {
  display: table !important;
}
.header_menu_mb .wrap {
  width: 100%;
}
.header_menu_mb .header_info {
  height: auto;
  display: table;
  padding: 30px 0;
}
.header_menu_mb .header_info .header_link {
  margin: 0 auto;
  display: table !important;
  float: none;
}
.header_menu_mb .menu_mb {
  width: 100%;
  height: auto;
  display: table;
}
.header_menu_mb .menu_mb li {
  width: 100%;
  height: auto;
  display: table;
}
.header_menu_mb .menu_mb li:first-child a {
  padding-top: 25px;
}
.header_menu_mb .menu_mb li a {
  width: 100%;
  height: auto;
  display: table;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 3%;
  padding-right: 6%;
  cursor: pointer;
  color: #313068;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  position: relative;
  border-bottom: 1px solid #eaeaf0;
}
.header_menu_mb .menu_mb li a .sprite {
  background-position: -28px 0;
  width: 9px;
  height: 15px;
  display: block;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
}
.header_menu_mb .menu_mb li:last-child a {
  border: 0;
}
.header_menu_mb .submenu_mb {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}
.header_menu_mb .submenu_mb.active {
  left: 0;
}
.header_menu_mb .submenu_mb .active {
  background-color: #eaeaf0 !important;
  color: #b5b5b5;
}
.header_menu_mb .submenu_mb .active .sprite {
  float: left;
  margin-right: 10px;
  background-position: -43px 0;
}

/*********************** RESPONSIVO **********************/
@media only screen and (max-width: 1279px) {
  /*body { background:green; }*/
  .header_info .header_link li {
    padding: 0 15px;
  }
  .header_info .header_link {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 1157px) {
  /*SOMENTE PARA A QUEBRA DO MEUN*/
  .header_menu ul li:nth-child(6) a,
.header_menu ul li:nth-child(7) a {
    padding: 6px 15px 0 15px;
    text-align: center;
    line-height: 20px;
  }
}
@media only screen and (max-width: 992px) {
  /*body { background:yellow; }*/
  .header_link,
.header_midias,
.header_language,
.header_menu {
    display: none !important;
  }
  .navbar {
    display: block !important;
  }
  .header_menu_mb .header_link,
.header_menu_mb .header_midias,
.header_menu_mb .header_language,
.header_menu_mb .header_menu {
    display: block !important;
  }
  .header_info .wrap {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  /*body { background:orange; }*/
}
@media only screen and (max-width: 500px) {
  /*body { background:red; }*/
  .header_info .header_language {
    float: left;
    margin: 0;
    padding-top: 15px;
  }
  .header_info .header_midias {
    float: right;
    margin: 0;
  }
  .header_menu_mb .header_info .header_link ul {
    margin: 0 auto;
    display: table;
    float: none;
    width: 215px;
  }
  .header_menu_mb .header_info .header_link ul li {
    border: 0;
  }
  .header_language_mobile .header_language ul li span {
    display: none;
  }
  .header_info .header_language li {
    margin-right: 8px;
  }
  .header_info .header_midias li {
    margin-left: 8px;
  }
}
/*********************** FOOTER NEWSLETTER **********************/
.section_footer_newsletter {
  background-color: #35bfae;
  width: 100%;
  height: auto;
  display: table;
  padding: 60px 0;
}
.section_footer_newsletter .wrap {
  width: 700px;
  display: table;
  margin: 0 auto;
}
.section_footer_newsletter .wrap .title {
  float: left;
  font-weight: 300;
  color: #ffffff;
  font-size: 24px;
  font-style: italic;
  letter-spacing: -1px;
  width: 16%;
  margin-top: -4px;
  margin-bottom: 0;
  line-height: 25px;
}
.section_footer_newsletter .wrap .title.message {
  width: 100%;
  text-align: center;
  line-height: 46px;
  margin: 0;
}
.section_footer_newsletter .wrap form {
  width: 83%;
  float: left;
}
.section_footer_newsletter .wrap form input {
  border: 1px solid #ffffff;
  border-radius: 30px;
  width: 70%;
  background-color: transparent;
  margin: 0;
  height: 44px;
  font-style: italic;
  color: #fff;
  padding: 0 23px;
  float: left;
}
.section_footer_newsletter .wrap form input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.section_footer_newsletter .wrap form input::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.section_footer_newsletter .wrap form input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.section_footer_newsletter .wrap form input:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.section_footer_newsletter .wrap form input:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
.section_footer_newsletter .wrap form input:focus::-moz-placeholder {
  opacity: 0.5;
}
.section_footer_newsletter .wrap form input:focus:-ms-input-placeholder {
  opacity: 0.5;
}
.section_footer_newsletter .wrap form input:focus:-moz-placeholder {
  opacity: 0.5;
}
.section_footer_newsletter .wrap form .submit {
  font-size: 14px;
  width: 28%;
  float: right;
  padding: 9px 10px 9px 10px;
}

/*********************** FOOTER PROJETOS  **********************/
.section_footer_projetos {
  background: #313068;
  width: 100%;
  padding: 18px 0;
  height: auto;
  display: table;
}
.section_footer_projetos .wrap {
  width: 1077px;
}
.section_footer_projetos .title {
  float: left;
  font-weight: 300;
  color: #ffffff;
  font-size: 18px;
  font-style: italic;
  width: 25%;
  margin-top: 18px;
  line-height: 25px;
}
.section_footer_projetos .list_logo {
  width: 75%;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section_footer_projetos .list_logo a {
  float: left;
  width: 32%;
  border: 1px solid #504f7f;
  display: block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section_footer_projetos .list_logo a:hover {
  border-color: #8e8dac;
}
.section_footer_projetos .list_logo a img {
  margin: 0 auto;
  display: table;
}

/*********************** FOOTER FACA PARTE  **********************/
.section_footer_faca_parte {
  background: #f1f1f1;
  height: auto;
  padding: 45px 0;
  display: table;
  width: 100%;
}
.section_footer_faca_parte .wrap {
  width: 880px;
}
.section_footer_faca_parte .wrap .content {
  width: 76%;
  float: left;
  display: block;
}
.section_footer_faca_parte .wrap .content .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 36px;
  color: #464646;
}
.section_footer_faca_parte .wrap .content a,
.section_footer_faca_parte .wrap .content .divisao {
  font-size: 14px;
  color: #35bfae;
  margin-top: 10px;
  display: block;
}
.section_footer_faca_parte .wrap .content a:hover {
  text-decoration: underline;
}
.section_footer_faca_parte .wrap .submit {
  float: right;
}

/*********************** FOOTER ASSESSORIA DE IMPRENSA  **********************/
.section_footer_assessoria {
  background: #ffffff;
  height: auto;
  padding: 50px 0;
  display: table;
  width: 100%;
}
.section_footer_assessoria .wrap {
  width: 880px;
}
.section_footer_assessoria .wrap .title {
  font-weight: 300;
  font-size: 36px;
  color: #464646;
  text-align: center;
  display: block;
  margin-bottom: 25px;
  display: block;
}
.section_footer_assessoria .wrap i {
  font-size: 14px;
  color: #35bfae;
  display: block;
  float: left;
  margin-top: 7px;
  margin-left: 14px;
  margin-right: 5px;
}
.section_footer_assessoria .wrap .contatos {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e5e5e5;
  width: 100%;
  height: auto;
  display: table;
  text-align: center;
}
.section_footer_assessoria .wrap .contatos .box-33 {
  width: 33%;
  display: inline-block;
  height: auto;
}
.section_footer_assessoria .wrap .contatos .box-33 i {
  margin-left: 0;
}
.section_footer_assessoria .wrap .contatos .box-33 a {
  color: #35bfae;
}
.section_footer_assessoria .wrap .contatos .box-33 a:hover {
  text-decoration: underline;
}

/*********************** FOOTER  **********************/
.section_footer {
  background: #ffffff;
  border-bottom: 10px solid #35bfae;
  width: 100%;
  height: auto;
  padding: 30px 0 15px 0;
  display: table;
}
.section_footer .wrap {
  padding-bottom: 45px;
  position: relative;
  width: 1077px;
}
.section_footer .wrap .footer-logo {
  margin-top: 57px;
  float: left;
}
.section_footer .wrap .footer-logo img {
  max-width: 200px;
}
.section_footer .wrap .footer-nav {
  margin-right: 10%;
  margin-left: 10%;
  float: left;
  width: 46%;
  height: auto;
  display: table;
}
.section_footer .wrap .footer-nav .box-50 {
  width: 50%;
  float: left;
  display: block;
}
.section_footer .wrap .footer-nav .box-46 {
  width: 46%;
  float: left;
  display: block;
}
.section_footer .wrap .footer-nav .box-25 {
  width: 25%;
  float: left;
  display: block;
}
.section_footer .wrap .footer-nav .box-29 {
  width: 29%;
  float: left;
  display: block;
}
.section_footer .wrap .footer-nav .title {
  text-transform: uppercase;
  font-size: 14px;
  color: #313068;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 12px;
  padding-bottom: 10px;
  width: 100%;
  display: block;
}
.section_footer .wrap .footer-nav nav li {
  display: block;
}
.section_footer .wrap .footer-nav nav li a {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8d8d8d;
}
.section_footer .wrap .footer-nav nav li a:hover {
  text-decoration: underline;
}
.section_footer .wrap .footer-like {
  width: 23%;
  float: right;
  padding-top: 5px;
  position: relative;
}
.section_footer .wrap .footer-like .fb_iframe_widget {
  position: absolute;
  bottom: 15%;
  right: 22%;
}
.section_footer .wrap .footer-loft {
  display: block;
  left: 0;
  bottom: 0;
  position: absolute;
}

/*********************** FOOTER LOGADO  **********************/
.area-pay_pagseguro .section_footer_logado {
  position: fixed;
  left: 0;
  bottom: 0;
}

.section_footer_logado {
  width: 100%;
  height: auto;
  display: table;
  padding: 35px 0;
  background-color: #313068;
}
.section_footer_logado .wrap {
  width: 1077px;
}
.section_footer_logado .divisao {
  width: 33%;
  height: auto;
  display: block;
  min-height: 125px;
  float: left;
  border-right: 1px solid #464577;
}
.section_footer_logado .divisao:last-child {
  border: 0;
}
.section_footer_logado .divisao:nth-child(2) {
  text-align: center;
}
.section_footer_logado .divisao:nth-child(2) img {
  margin: 0 auto;
  display: table;
}
.section_footer_logado .divisao .atendimento .submit {
  float: left;
  width: 74px;
  height: 74px;
}
.section_footer_logado .divisao .atendimento .submit img {
  margin: 0 auto;
  display: table;
  margin-top: 15px;
}
.section_footer_logado .divisao .atendimento .desc {
  padding-left: 11px;
  margin-top: 4px;
  line-height: 18px;
  font-size: 12px;
  color: #ffffff;
}
.section_footer_logado .divisao .atendimento .desc .phone {
  font-weight: 300;
  font-size: 16px;
  font-style: italic;
  color: #35bfae;
  display: block;
}
.section_footer_logado .divisao .title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  display: block;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1080px) {
  .section_footer .wrap {
    width: 95%;
  }
  .section_footer .wrap .footer-like {
    width: 22%;
  }
  .section_footer_projetos .wrap {
    width: 95% !important;
  }
  .section_footer_logado .wrap {
    width: 95% !important;
  }
}
@media only screen and (max-width: 992px) {
  .section_footer .wrap .footer-like {
    display: none;
  }
  .section_footer_faca_parte .wrap {
    width: 95%;
  }
  .section_footer_faca_parte .wrap .content {
    width: 90%;
    margin: 0 auto;
    display: table;
    float: none;
    text-align: center;
  }
  .section_footer_faca_parte .wrap .content .contatos {
    margin: 0 auto;
    display: table;
    float: none;
    padding-bottom: 20px;
  }
  .section_footer_faca_parte .wrap .submit {
    margin: 0 auto;
    display: table;
    float: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .section_footer_newsletter .wrap {
    width: 90%;
  }
  .section_footer .wrap .footer-logo {
    display: none;
  }
  .section_footer .wrap .footer-nav {
    margin: 0;
    width: 100%;
  }
  .section_footer_projetos .list_logo {
    width: 100%;
  }
  .section_footer_projetos .title {
    line-height: 34px;
    font-size: 28px;
    width: 95%;
    text-align: center;
    margin: 0 auto;
    display: table;
    float: none;
    margin-bottom: 15px;
  }
  .section_footer_logado .divisao {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #464577;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: center;
  }
  .section_footer_logado .divisao img {
    margin: 0 auto;
    display: table;
    float: none;
  }
  .section_footer_logado .divisao .atendimento {
    margin: 0 auto;
    display: table;
    float: none !important;
    text-align: left;
  }
}
@media only screen and (max-width: 500px) {
  .section_footer_newsletter {
    padding: 35px 0;
  }
  .section_footer_newsletter .wrap {
    width: 95%;
  }
  .section_footer_newsletter .wrap .title {
    font-size: 28px;
    width: 100%;
    text-align: center;
    margin-bottom: 23px;
  }
  .section_footer_newsletter .wrap form {
    width: 100%;
  }
  .section_footer_newsletter .wrap form input {
    width: 100%;
    margin-bottom: 23px;
  }
  .section_footer_newsletter .wrap form .submit {
    width: 195px;
    margin: 0 auto;
    display: table;
    float: none;
  }
  .section_footer .wrap .footer-nav {
    display: none;
  }
  .section_footer .wrap .footer-like {
    width: 100%;
    display: block;
  }
  .section_footer_projetos .list_logo {
    display: block !important;
    text-align: center;
  }
  .section_footer_projetos .title {
    margin-bottom: 30px;
    width: 75%;
  }
  .section_footer_projetos .list_logo a {
    width: 70%;
    display: inline-block;
    float: none;
  }
  .section_footer_faca_parte .wrap .content {
    width: 95%;
  }
  .section_footer_faca_parte .wrap .content .contatos .divisao {
    display: none;
  }
  .section_footer_faca_parte .wrap .content .title {
    font-size: 30px;
  }
  .section_footer_faca_parte .wrap .content .contatos a {
    text-align: center;
    display: block;
    width: 100%;
  }
}
/*********************** BANNER **********************/
.banner_home_desktop {
  display: block;
}

.banner_home_mobile {
  display: none;
}

.section_banner_home {
  position: relative;
  height: 330px;
  width: 100%;
}
.section_banner_home .home_banner_item {
  position: relative;
}
.section_banner_home .wrap {
  position: relative;
  z-index: 1;
}
.section_banner_home video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.section_banner_mobile {
  width: 100%;
  position: relative;
  display: block;
  padding-bottom: 35px;
}
.section_banner_mobile .home_banner_item {
  position: relative;
}
.section_banner_mobile video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  display: block;
}
.section_banner_mobile .paginacao-mb {
  position: absolute;
  width: 100%;
  bottom: 50px;
}
.section_banner_mobile .paginacao-mb .slick-dots li {
  margin: 0 3px !important;
}
.section_banner_mobile .paginacao-mb .slick-dots li:first-child {
  margin-left: 0 !important;
}
.section_banner_mobile .paginacao-mb .slick-dots li:first-child button {
  margin-left: 0 !important;
}

.home_banner {
  opacity: 0;
  height: 330px;
  width: 100%;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home_banner.slick-initialized {
  opacity: 1;
}
.home_banner_item {
  height: 330px;
  width: 100%;
}
.home_banner .wrap {
  height: 330px;
  position: relative;
}
.home_banner .content {
  width: 37%;
  height: 330px;
  position: relative;
  float: right;
  background-color: #35bfae;
}
.home_banner .content.animate {
  -webkit-animation: fadeInUp 0.8s forwards;
          animation: fadeInUp 0.8s forwards;
}
.home_banner .content .centralizar {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 75%;
  display: block;
  text-align: center;
}
.home_banner .content .centralizar .submit {
  margin-top: 26px;
}
.home_banner .content .centralizar p, .home_banner .content .centralizar span, .home_banner .content .centralizar div {
  color: #fff;
  font-size: 13px;
  line-height: 17px;
}
.home_banner .content .centralizar b {
  line-height: 27px;
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
}

.box-paginacao {
  z-index: 9;
  position: absolute;
  top: 100%;
  margin-top: -20px;
  left: 0;
  width: 100%;
  display: block;
  height: 20px;
}
.box-paginacao .wrap {
  position: relative;
  height: 20px;
}
.box-paginacao .paginacao {
  position: absolute;
  padding: 0;
  width: 37%;
  bottom: 15px;
  right: 0;
}
.box-paginacao .paginacao .slick-dots {
  padding: 0;
  position: relative;
  width: auto;
  margin: 0 auto;
  display: table !important;
  bottom: 0;
  left: auto;
}
.box-paginacao .paginacao .slick-dots li {
  margin: 0 3px !important;
}
.box-paginacao .paginacao .slick-dots li:first-child {
  margin-left: 0 !important;
}
.box-paginacao .paginacao .slick-dots li:first-child button {
  margin-left: 0 !important;
}

.banner_home_mobile .home_banner {
  height: auto;
}
.banner_home_mobile .home_banner_item {
  height: 390px;
}
.banner_home_mobile .wrap {
  width: 100%;
  display: block;
}
.banner_home_mobile .wrap .content {
  opacity: 1 !important;
  padding: 30px 0;
  width: 100%;
  height: auto;
  display: table;
}
.banner_home_mobile .wrap .content .centralizar {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  position: relative;
  top: 0;
  left: 0;
  width: 90%;
  height: auto;
  display: table;
}

@media only screen and (max-width: 768px) {
  .banner_home_desktop {
    display: none !important;
  }
  .banner_home_mobile {
    display: block !important;
  }
  .home_banner .wrap {
    height: auto;
  }
  .section_banner_home {
    display: none !important;
  }
  /*    .section_banner_home{position: absolute;}
  .box-paginacao .paginacao{width: 100%;}
  .box-paginacao .wrap, .box-paginacao{height: 440px;}*/
}
/*********************** BANNER INTERNAS **********************/
.banner_internas {
  width: 100%;
  height: 335px;
  position: relative;
  display: block;
}
.banner_internas .degrade {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2a2c54+0,35bfae+100&0.9+0,0.7+50,0.9+100 */
  /*background: -moz-linear-gradient(left, rgba(42,44,84,0.9) 0%, rgba(48,118,129,0.7) 50%, rgba(53,191,174,0.9) 100%); /* FF3.6-15 */
  /*background: -webkit-linear-gradient(left, rgba(42,44,84,0.9) 0%,rgba(48,118,129,0.7) 50%,rgba(53,191,174,0.9) 100%); /* Chrome10-25,Safari5.1-6 */
  /*background: linear-gradient(to right, rgba(42,44,84,0.9) 0%,rgba(48,118,129,0.7) 50%,rgba(53,191,174,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e62a2c54', endColorstr='#e635bfae',GradientType=1 ); /* IE6-9 */
  background-color: rgba(49, 48, 104, 0.7);
  width: 100%;
  height: 100%;
  display: block;
}
.banner_internas .wrap {
  position: relative;
  height: 335px;
}
.banner_internas .wrap:before {
  width: 75px;
  height: 50px;
  position: absolute;
  right: 7.5%;
  top: 0;
  content: "";
  background: url("../img/default/detalhe-6.png") 0 0 no-repeat;
}
.banner_internas .wrap:after {
  width: 13px;
  height: 12px;
  position: absolute;
  left: 22%;
  bottom: 21%;
  content: "";
  background: url("../img/default/detalhe-3.png") 0 0 no-repeat;
}
.banner_internas .wrap .detalhe-1 {
  width: 42px;
  height: 44px;
  position: absolute;
  left: 6%;
  top: 13%;
  opacity: 0;
  background: url("../img/default/detalhe-1.png") 0 0 no-repeat;
}
.banner_internas .wrap .detalhe-1.animate {
  -webkit-animation: fadeIn 0.9s forwards;
          animation: fadeIn 0.9s forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.banner_internas .wrap .detalhe-2 {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 15%;
  top: 32%;
  background: url("../img/default/detalhe-2.png") 0 0 no-repeat;
}
.banner_internas .wrap .detalhe-4 {
  width: 13px;
  height: 12px;
  position: absolute;
  right: 39%;
  top: 15%;
  opacity: 0;
  background: url("../img/default/detalhe-4.png") 0 0 no-repeat;
}
.banner_internas .wrap .detalhe-4.animate {
  -webkit-animation: fadeIn 0.9s forwards;
          animation: fadeIn 0.9s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.banner_internas .wrap .detalhe-5 {
  width: 26px;
  height: 29px;
  position: absolute;
  right: 21%;
  top: 44%;
  opacity: 0;
  background: url("../img/default/detalhe-5.png") 0 0 no-repeat;
}
.banner_internas .wrap .detalhe-5.animate {
  -webkit-animation: fadeIn 0.9s forwards;
          animation: fadeIn 0.9s forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.banner_internas:after {
  width: 68px;
  height: 62px;
  position: absolute;
  right: 0;
  bottom: 35px;
  content: "";
  background: url("../img/default/detalhe-7.png") 0 0 no-repeat;
}
.banner_internas .content {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  margin: 0 auto;
  display: table;
  width: 560px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.banner_internas .content .title {
  font-size: 60px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  display: block;
  opacity: 0;
  margin-bottom: 27px;
}
.banner_internas .content .title.animate {
  -webkit-animation: fadeInDown 0.8s forwards;
          animation: fadeInDown 0.8s forwards;
}
.banner_internas .content .desc {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  opacity: 0;
  display: block;
  min-height: 40px;
}
.banner_internas .content .desc.animate {
  -webkit-animation: fadeInDown 0.8s 0.4s forwards;
          animation: fadeInDown 0.8s 0.4s forwards;
}
.banner_internas.banner_interna_servicos {
  height: 545px;
  position: relative;
}
.banner_internas.banner_interna_servicos .video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.banner_internas.banner_interna_servicos .video video {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.banner_internas.banner_interna_servicos .wrap {
  position: relative;
  z-index: 2;
  height: 545px;
}
.banner_internas.banner_interna_servicos .wrap .content {
  top: auto;
  bottom: 20%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.banner_internas.banner_interna_servicos .wrap .content .title {
  opacity: 0;
}
.banner_internas.banner_interna_servicos .wrap .content .title.animate {
  -webkit-animation: fadeInUp 0.8s forwards;
          animation: fadeInUp 0.8s forwards;
}
.banner_internas.banner_interna_servicos .wrap .content .desc {
  opacity: 0;
}
.banner_internas.banner_interna_servicos .wrap .content .desc.animate {
  -webkit-animation: fadeInUp 0.8s 0.2s forwards;
          animation: fadeInUp 0.8s 0.2s forwards;
}
.banner_internas.banner_interna_servicos .desc {
  position: relative;
  font-size: 36px;
  padding-top: 35px;
  font-weight: 700;
  font-style: italic;
  line-height: 36px;
}
.banner_internas.banner_interna_servicos .desc:after {
  width: 70px;
  height: 2px;
  background-color: #f7f7f7;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  margin-left: -35px;
}
.banner_internas.banner_interna_inscricoes {
  height: 280px;
}
.banner_internas.banner_interna_inscricoes .wrap {
  height: 280px;
}
.banner_internas.banner_interna_noticias .wrap {
  position: relative;
  padding-top: 175px;
  padding-bottom: 40px;
}
.banner_internas.banner_interna_noticias .wrap:after {
  display: none !important;
}
.banner_internas.banner_interna_noticias .wrap .content {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 80%;
  float: left;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  left: auto;
  top: auto;
}
.banner_internas.banner_interna_noticias .wrap .content .title {
  font-style: italic;
  font-size: 36px;
  text-align: left;
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 36px;
  opacity: 0;
}
.banner_internas.banner_interna_noticias .wrap .content .title.animate {
  -webkit-animation: fadeInUp 0.8s forwards;
          animation: fadeInUp 0.8s forwards;
}
.banner_internas.banner_interna_noticias .wrap .content .date {
  display: block;
  padding-left: 13px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  opacity: 0;
}
.banner_internas.banner_interna_noticias .wrap .content .date.animate {
  -webkit-animation: fadeInUp 0.8s forwards;
          animation: fadeInUp 0.8s forwards;
}
.banner_internas.banner_interna_noticias .wrap .content .date:after {
  width: 6px;
  height: 24px;
  background-color: #35bfae;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

@media only screen and (max-width: 580px) {
  .banner_internas .content {
    width: 95%;
  }
}
@media only screen and (max-width: 1279px) {
  .banner_internas.banner_interna_servicos .wrap .content .title, .banner_internas.banner_interna_servicos .wrap .content .desc {
    opacity: 1;
  }
}
@media only screen and (max-width: 500px) {
  .banner_internas .wrap .detalhe-2, .banner_internas .wrap .detalhe-5 {
    display: none;
  }
  .banner_internas::after {
    bottom: 13px;
  }
  .banner_internas .wrap::after {
    bottom: 11%;
  }
  .banner_internas .wrap .detalhe-1 {
    left: 0;
    top: 4%;
  }
  .banner_internas .wrap {
    padding: 60px 0 60px 0;
  }
  .banner_internas .content .title {
    font-size: 38px;
  }
  .banner_internas.banner_interna_servicos {
    height: 350px;
  }
  .banner_internas.banner_interna_servicos .wrap {
    padding: 45px 0 60px 0;
    height: 350px;
  }
  .banner_internas.banner_interna_servicos .desc {
    font-size: 18px;
    line-height: 26px;
  }
  .banner_internas.banner_interna_servicos .wrap .content .title {
    font-size: 22px !important;
  }
}
/*********************** HOME **********************/
.section_home_chamadas {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 25px;
  min-height: 300px;
  overflow: hidden;
  display: block;
}
.section_home_chamadas .slick-list, .section_home_chamadas .slick-track {
  min-height: 300px;
  overflow: hidden;
}
.section_home_chamadas .wrap {
  height: 300px;
  display: block;
}
.section_home_chamadas .wrap .home_chamadas {
  opacity: 0;
  margin-bottom: 0;
}
.section_home_chamadas .wrap .home_chamadas.slick-initialized {
  opacity: 1;
}
.section_home_chamadas .wrap .item {
  width: 95%;
  margin: 0 auto;
  display: block;
  border: 1px solid #cccccc;
  padding: 30px 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-align: center;
}
.section_home_chamadas .wrap .item:hover {
  background-color: #35bfae;
}
.section_home_chamadas .wrap .item:hover .title, .section_home_chamadas .wrap .item:hover p, .section_home_chamadas .wrap .item:hover span, .section_home_chamadas .wrap .item:hover div {
  color: #ffffff;
}
.section_home_chamadas .wrap .item:hover img.hover {
  opacity: 1;
}
.section_home_chamadas .wrap .item .title {
  font-weight: 700;
  color: #7c7c7c;
  font-size: 18px;
  font-style: italic;
  line-height: 22px;
  margin-bottom: 13px;
  margin-top: 13px;
  letter-spacing: -1.58px;
  min-height: 45px;
}
.section_home_chamadas .wrap .item .desc {
  display: block;
  min-height: 60px;
}
.section_home_chamadas .wrap .item p, .section_home_chamadas .wrap .item span, .section_home_chamadas .wrap .item div {
  font-size: 13px;
  line-height: 18px;
  color: #7c7c7c;
}
.section_home_chamadas .wrap .item .icone {
  position: relative;
  margin: 0 auto;
  display: table;
}
.section_home_chamadas .wrap .item .icone .hover {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
.section_home_chamadas .wrap .item .content {
  background-color: #35bfae;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  padding: 0 5px;
}
.section_home_chamadas .wrap .item .content.active {
  left: 0;
}
.section_home_chamadas .wrap .item .content .mCSB_dragger, .section_home_chamadas .wrap .item .content .mCSB_draggerRail, .section_home_chamadas .wrap .item .content .mCSB_scrollTools {
  opacity: 1 !important;
}
.section_home_chamadas .wrap .item .content .title {
  color: #ffffff;
}
.section_home_chamadas .wrap .item .content .list-categorias {
  max-height: 200px;
  height: 200px;
  width: 87%;
  margin: 0 auto;
  display: block;
}
.section_home_chamadas .wrap .item .content .list-categorias li {
  margin-bottom: 5px;
  display: block;
  padding: 0 15px;
  text-align: left;
  line-height: 18px;
  background: url("../img/default/list-style.png") top left no-repeat;
}
.section_home_chamadas .wrap .item .content .list-categorias li a {
  color: #ffffff;
  text-align: left;
}
.section_home_chamadas .wrap .item .content .list-categorias li a:hover {
  text-decoration: underline !important;
}
.section_home_chamadas .wrap .slick-dots {
  bottom: -20px;
}

.section_home_noticias {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 95px;
  display: block;
}
.section_home_noticias h3 {
  margin-bottom: 35px;
}
.section_home_noticias .list {
  width: 100%;
  height: auto;
  display: table;
}
.section_home_noticias .list .item {
  margin-right: 1.2%;
  margin-top: 4%;
  width: 23%;
  float: left;
  display: table;
  height: 480px;
}
.section_home_noticias .list .item:hover .submit {
  background-color: #313068;
  border: 5px solid rgba(49, 48, 104, 0.3) !important;
}
.section_home_noticias .list .item:last-child {
  margin-right: 0;
}
.section_home_noticias .list .item .imagem {
  width: 100%;
  height: 230px;
  display: block;
}
.section_home_noticias .list .item .content {
  position: relative;
  padding: 15px 30px;
  background-color: #f1f1f1;
  height: auto;
  display: block;
  min-height: 220px;
  width: 100%;
  -ms-word-break: break-word;
  word-break: break-word;
}
.section_home_noticias .list .item .content .title {
  color: #313068;
  font-size: 24px;
  font-weight: 700;
  display: block;
  font-style: italic;
  line-height: 24px;
  margin-bottom: 4px;
  padding-bottom: 6px;
  height: auto;
  overflow: hidden;
  max-height: 98px;
}
.section_home_noticias .list .item .content .desc {
  height: auto;
  display: block;
  min-height: 50px;
}
.section_home_noticias .list .item .content .desc, .section_home_noticias .list .item .content .desc p, .section_home_noticias .list .item .content .desc span, .section_home_noticias .list .item .content .desc div {
  font-size: 13px;
  line-height: 16px;
  color: .section_home_noticias .list .item .content .desc, .section_home_noticias .list .item .content .desc p, .section_home_noticias .list .item .content .desc span, .section_home_noticias .list .item .content .desc div cinza;
  margin-bottom: 25px;
  display: block;
}
.section_home_noticias .list .item .content .submit {
  position: absolute;
  left: 50%;
  bottom: -30px;
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  line-height: 44px;
  width: 60px;
  height: 60px;
  margin: 0 0 0 -30px;
  border: 5px solid rgba(53, 191, 174, 0.3);
}

.section_home_agenda {
  width: 100%;
  padding: 50px 0;
  display: block;
  background-color: #f1f1f1;
}
.section_home_agenda h3 {
  margin-bottom: 25px;
}
.section_home_agenda .home_agenda {
  opacity: 0;
  margin-bottom: 0px;
}
.section_home_agenda .home_agenda.slick-initialized {
  opacity: 1;
}
.section_home_agenda .home_agenda .slick-list {
  width: 90%;
  margin: 0 auto;
}
.section_home_agenda .home_agenda .slick-prev {
  background: url("../img/default/sprite.png") 0 -24px no-repeat;
  width: 32px;
  height: 64px;
  left: 0;
  margin-top: -32px;
}
.section_home_agenda .home_agenda .slick-next {
  background: url("../img/default/sprite.png") -39px -24px no-repeat;
  width: 32px;
  height: 64px;
  right: 0;
  margin-top: -32px;
}
.section_home_agenda .item {
  width: 95%;
  display: block;
  margin: 30px auto;
}
.section_home_agenda .item .data {
  position: relative;
  background-color: #313068;
  width: 100%;
  height: auto;
  padding: 24px 0;
  min-height: 82px;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
}
.section_home_agenda .item .data .icone {
  position: absolute;
  left: 50%;
  margin-left: -26px;
  top: -26px;
  width: 53px;
  height: 53px;
  background-color: #313068;
  display: block;
  border-radius: 50%;
}
.section_home_agenda .item .data .icone .sprite {
  width: 21px;
  height: 21px;
  display: block;
  margin: 0 auto;
  background-position: 0 0;
  margin-top: 14px;
}
.section_home_agenda .item .content {
  position: relative;
  padding: 15px 30px 40px;
  background-color: #ffffff;
  width: 100%;
  min-height: 214px;
}
.section_home_agenda .item .content .desc {
  font-size: 14px;
  line-height: 16px;
  color: #464646;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 13px;
  min-height: 93px;
  display: block;
  overflow: hidden;
}
.section_home_agenda .item .content .horario {
  font-weight: 600;
  color: #464646;
  display: block;
  line-height: 21px;
}
.section_home_agenda .item .content .horario .fa-clock-o {
  font-size: 20px;
  color: #35bfae;
  margin-right: 6px;
  float: left;
}
.section_home_agenda .item .content .link-externo {
  display: block;
  color: #35bfae;
  margin-top: 5px;
  width: 100%;
}
.section_home_agenda .item .content .link-externo:hover {
  text-decoration: underline;
}
.section_home_agenda .item .content .button-inscricoes {
  position: absolute;
  bottom: -21px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 195px;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  border-radius: 25px;
  font-size: 14px;
  background-color: #35bfae;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
}
.section_home_agenda .item .content .button-inscricoes:hover {
  border: 5px solid rgba(53, 191, 174, 0.7) !important;
}
.section_home_agenda .item .content .button-inscricoes.no-link {
  cursor: default;
  background-color: rgb(200, 200, 200);
  border: 5px solid rgba(200, 200, 200, 0.3) !important;
  color: rgb(50, 50, 50);
}

.section_home_unidades {
  width: 100%;
  padding: 60px 0;
  display: block;
}
.section_home_unidades .home_unidades {
  margin-top: 45px;
  margin-bottom: 55px;
}
.section_home_unidades .home_unidades .slick-dots {
  bottom: -35px;
}
.section_home_unidades .submit {
  font-size: 14px;
  padding: 15px 35px 17px 35px;
  font-style: italic;
  margin: 0 auto;
  display: table;
  float: none;
  background-color: #35bfae;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
}
.section_home_unidades .submit:hover {
  border: 5px solid rgba(53, 191, 174, 0.6) !important;
}
.section_home_unidades .item {
  margin: 0 auto;
  display: table;
  width: 80%;
}
.section_home_unidades .item .title {
  display: block;
  margin-bottom: 5px;
  color: #313068;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
}
.section_home_unidades .item .desc {
  font-size: 13px;
  display: block;
  margin-top: 12px;
  line-height: 19px;
}
.section_home_unidades .item i {
  font-size: 14px;
  color: #35bfae;
  float: left;
  display: block;
  margin-right: 5px;
  margin-top: 3px;
}

@media only screen and (max-width: 992px) {
  .section_home_noticias .list .item {
    margin-right: 2%;
    width: 32%;
  }
  .section_home_noticias .list .item:nth-child(3) {
    margin-right: 0;
  }
  .section_home_noticias .list .item:nth-child(4) {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .section_home_agenda .item {
    width: 85%;
  }
  .section_home_agenda .item .content {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 500px) {
  .section_home_chamadas .wrap .item {
    padding: 20px 10px;
  }
  .section_home_noticias .list .item {
    margin-right: 0;
    width: 100%;
  }
  .section_home_noticias .list .item:nth-child(2), .section_home_noticias .list .item:nth-child(3), .section_home_noticias .list .item:nth-child(4) {
    display: block;
  }
  .section_home_agenda .slick-dots {
    bottom: -16px;
  }
  .section_home_unidades .slick-dots {
    bottom: -30px;
  }
  .section_home_chamadas .wrap .slick-dots {
    bottom: -25px;
  }
  .section_home_unidades .item {
    border: 1px solid #e1e1e1;
    padding: 30px;
  }
  .section_home_unidades .home_unidades {
    margin-top: 30px;
  }
  .section_home_unidades .item .title {
    font-size: 20px;
  }
  .section_home_unidades .item .desc {
    font-size: 16px;
  }
  .section_home_chamadas .wrap .item .icone img {
    width: 92%;
  }
}
/*********************** ASSINTECAL **********************/
.section_assintecal {
  width: 100%;
  display: block;
}
.section_assintecal_institucional {
  width: 100%;
  display: table;
  height: auto;
  display: table;
  padding: 80px 0 140px 0;
}
.section_assintecal_institucional .wrap {
  width: 690px;
}
.section_assintecal_institucional .wrap .title-interno {
  width: 90%;
  margin: 0 auto;
  display: table;
  margin-bottom: 30px;
  opacity: 0;
}
.section_assintecal_institucional .wrap .title-interno.animate {
  -webkit-animation: fadeInUp 0.98s forwards;
          animation: fadeInUp 0.98s forwards;
}
.section_assintecal_institucional .wrap span {
  opacity: 0;
}
.section_assintecal_institucional .wrap span.animate {
  -webkit-animation: fadeInUp 0.98s forwards;
          animation: fadeInUp 0.98s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.section_assintecal_diferncial {
  width: 100%;
  display: block;
  background-color: #35bfae;
  padding: 55px 0;
}
.section_assintecal_diferncial .assintecal_galeria {
  width: 90%;
  margin: 0 auto;
  display: block;
  margin-top: -150px;
  margin-bottom: 50px;
  opacity: 0;
}
.section_assintecal_diferncial .assintecal_galeria.animate {
  -webkit-animation: fadeIn 0.7s forwards;
          animation: fadeIn 0.7s forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.section_assintecal_diferncial .assintecal_galeria .slick-dots {
  bottom: -32px;
}
.section_assintecal_diferncial .assintecal_galeria .slick-dots li {
  margin: 0 8px !important;
}
.section_assintecal_diferncial .assintecal_galeria .slick-dots li button {
  width: 13px;
  height: 13px;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.section_assintecal_diferncial .assintecal_galeria .slick-dots li.slick-active button {
  width: 13px;
  height: 13px;
  background-color: #ffffff !important;
}
.section_assintecal_diferncial .assintecal_galeria .imagem {
  width: 98%;
  margin: 0 auto;
  display: block;
  height: 186px;
}
.section_assintecal_diferncial .assintecal_chamada {
  width: 625px;
  margin: 0 auto;
  display: table;
  padding: 50px 0 35px 0;
}
.section_assintecal_diferncial .assintecal_chamada .title-interno {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 20px;
}
.section_assintecal_diferncial .assintecal_chamada .desc {
  color: #ffffff;
  opacity: 0.8;
}
.section_assintecal_diferncial .assintecal_icones {
  margin-bottom: 0;
  width: 90%;
  margin: 0 auto;
  display: block;
}
.section_assintecal_diferncial .assintecal_icones img {
  margin: 0 auto;
  display: table;
  margin-bottom: 10px;
}
.section_assintecal_diferncial .assintecal_icones .desc {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  width: 59%;
  margin: 0 auto;
  line-height: 20px;
}
.section_assintecal_diferncial .assintecal_icones .slick-dots {
  bottom: -32px;
}
.section_assintecal_diferncial .assintecal_icones .slick-dots li {
  margin: 0 8px !important;
}
.section_assintecal_diferncial .assintecal_icones .slick-dots li button {
  width: 13px;
  height: 13px;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.section_assintecal_diferncial .assintecal_icones .slick-dots li.slick-active button {
  width: 13px;
  height: 13px;
  background-color: #ffffff !important;
}
.section_assintecal_convenios {
  width: 100%;
  display: block;
  padding: 40px 0 60px 0;
}
.section_assintecal_convenios h3 {
  color: #313068;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.section_assintecal_convenios .desc {
  width: 80%;
  margin: 0 auto;
  display: table;
}
.section_assintecal_convenios .desc a {
  color: #35bfae;
}
.section_assintecal_convenios .desc a:hover {
  text-decoration: underline;
}
.section_assintecal_convenios .galerias_convenios {
  margin-bottom: 0;
  margin-top: 50px;
}
.section_assintecal_convenios .galerias_convenios .slick-slide {
  position: relative;
  opacity: 0;
}
.section_assintecal_convenios .galerias_convenios .slick-slide:first-child.animate {
  -webkit-animation: fadeInDown 0.7s forwards;
          animation: fadeInDown 0.7s forwards;
}
.section_assintecal_convenios .galerias_convenios .slick-slide:nth-child(2).animate {
  -webkit-animation: fadeInDown 0.7s forwards;
          animation: fadeInDown 0.7s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.section_assintecal_convenios .galerias_convenios .slick-slide:last-child.animate {
  -webkit-animation: fadeInDown 0.7s forwards;
          animation: fadeInDown 0.7s forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.section_assintecal_convenios .galerias_convenios .slick-slide .icone {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.section_assintecal_convenios .galerias_convenios .slick-slide .desc {
  float: right;
  padding-right: 8%;
  width: 85%;
}
.section_assintecal_parceiros {
  width: 100%;
  display: block;
  padding: 40px 0 60px 0;
}
.section_assintecal_parceiros .wrap {
  width: 1130px;
}
.section_assintecal_parceiros .wrap .box-50 {
  width: 49%;
  padding: 0 2%;
  display: block;
  opacity: 0;
}
.section_assintecal_parceiros .wrap .box-50:first-child.animate {
  -webkit-animation: fadeIn 0.7s forwards;
          animation: fadeIn 0.7s forwards;
}
.section_assintecal_parceiros .wrap .box-50:nth-child(2).animate {
  -webkit-animation: fadeIn 0.7s forwards;
          animation: fadeIn 0.7s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.section_assintecal_parceiros .wrap .box-50:last-child.animate {
  -webkit-animation: fadeIn 0.7s forwards;
          animation: fadeIn 0.7s forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.section_assintecal_parceiros .wrap .box-50 img {
  margin: 0 auto;
  display: table;
  margin-bottom: 25px;
}
.section_assintecal_parceiros .wrap .box-33 {
  width: 33%;
  padding: 0 2%;
  display: block;
  opacity: 0;
}
.section_assintecal_parceiros .wrap .box-33:first-child.animate {
  -webkit-animation: fadeIn 0.7s forwards;
          animation: fadeIn 0.7s forwards;
}
.section_assintecal_parceiros .wrap .box-33:nth-child(2).animate {
  -webkit-animation: fadeIn 0.7s forwards;
          animation: fadeIn 0.7s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.section_assintecal_parceiros .wrap .box-33:last-child.animate {
  -webkit-animation: fadeIn 0.7s forwards;
          animation: fadeIn 0.7s forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.section_assintecal_parceiros .wrap .box-33 img {
  margin: 0 auto;
  display: table;
  margin-bottom: 25px;
}
.section_assintecal_apoio {
  width: 100%;
  display: block;
  background-color: #f1f1f1;
  padding: 40px 0;
}
.section_assintecal_apoio h3 {
  font-size: 40px;
  margin-bottom: 20px;
}
.section_assintecal_apoio .assintecal_apoio {
  margin-bottom: 20px;
  margin-top: 40px;
}
.section_assintecal_apoio .assintecal_apoio img {
  margin: 0 auto;
  display: table;
}
.section_assintecal_apoio .assintecal_apoio .slick-dots {
  bottom: -31px;
}
.section_assintecal_principios {
  width: 100%;
  display: block;
  padding: 60px 0 60px 0;
  background-color: #f1f1f1;
}

@media only screen and (max-width: 1175px) {
  .section_assintecal_parceiros .wrap {
    width: 95% !important;
  }
}
@media only screen and (max-width: 768px) {
  .section_assintecal_diferncial .assintecal_chamada {
    width: 95%;
  }
}
@media only screen and (max-width: 700px) {
  .section_assintecal_institucional .wrap {
    width: 95%;
  }
}
@media only screen and (max-width: 500px) {
  .section_assintecal_diferncial .assintecal_chamada {
    padding: 30px 0 40px 0;
  }
  .section_assintecal_diferncial .assintecal_icones .desc {
    width: 90%;
  }
  .section_assintecal_diferncial .assintecal_galeria {
    width: 95%;
  }
  .section_assintecal_parceiros .wrap .box-33 {
    width: 100%;
    padding-bottom: 50px;
  }
  .section_assintecal_parceiros .wrap .box-33:last-child {
    padding: 0;
  }
  .section_assintecal_parceiros .wrap .box-50 {
    width: 100%;
    padding-bottom: 50px;
  }
  .section_assintecal_parceiros .wrap .box-50:last-child {
    padding: 0;
  }
  .section_assintecal_convenios .galerias_convenios .slick-slide .desc {
    padding-right: 0;
    width: 83%;
  }
  .section_associados_video .content .center h3 b {
    font-size: 50px !important;
  }
  .section_associados_video .video iframe {
    height: 160px;
  }
  .section_associados_video .content .center {
    width: 100% !important;
  }
}
/*********************** ESTRUTURA ORGANIZACIONAL **********************/
.section_estrutura_organizacional {
  width: 100%;
  display: block;
  padding: 40px 0;
}
.section_estrutura_organizacional .divisao {
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  padding-top: 55px;
  padding-bottom: 15px;
  display: block;
}
.section_estrutura_organizacional .divisao:last-child {
  border: 0;
}
.section_estrutura_organizacional .divisao .title {
  padding: 10px 0 10px 12px;
  display: block;
  border-left: 10px solid #35bfae;
  color: #313068;
  font-size: 24px;
  letter-spacing: -1.5px;
  font-weight: 700;
  font-style: italic;
  float: left;
  margin-right: 6.5%;
}
.section_estrutura_organizacional .divisao .list {
  width: 100%;
  display: table;
  height: auto;
  padding-top: 45px;
}
.section_estrutura_organizacional .divisao .list .box-25 {
  width: 25%;
  display: table;
  float: left;
  height: auto;
  margin-bottom: 45px;
  position: relative;
  padding-right: 7%;
}
.section_estrutura_organizacional .divisao .list .box-25 .img {
  display: block;
  float: left;
  border-radius: 50%;
  border: 1px solid #afabac;
  margin-right: 10px;
}
.section_estrutura_organizacional .divisao .list .box-25 .img img {
  border-radius: 50%;
  margin: 2px;
  display: block;
}
.section_estrutura_organizacional .divisao .list .box-25 .dados {
  position: absolute;
  width: 66%;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.section_estrutura_organizacional .divisao .list .box-25 .dados .nome {
  display: block;
  color: #313068;
  font-size: 16px;
  font-weight: 600;
}
.section_estrutura_organizacional .divisao .list .box-25 .dados .cargo {
  display: block;
  color: #464646;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: -3px;
}
.section_estrutura_organizacional .divisao .list .box-25 .dados .email {
  display: block;
  color: #35bfae;
  font-size: 12px;
  margin-top: -6px;
}
.section_estrutura_organizacional .divisao .list .box-25 .dados .email:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .section_estrutura_organizacional .divisao .list .box-25 {
    width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .area-estruturaorganizacional .banner_internas .content .title {
    font-size: 28px;
  }
  .section_estrutura_organizacional .divisao .list .box-25 {
    width: 100%;
  }
  .section_estrutura_organizacional .divisao .list .box-25 .dados {
    width: 60%;
  }
}
/*********************** SEJA UM ASSOCIADOS **********************/
.section_associados_video {
  width: 100%;
  height: 410px;
  background-color: #313068;
  display: block;
}
.section_associados_video .video {
  width: 58%;
  height: 410px;
  float: left;
  display: block;
}
.section_associados_video .content {
  width: 42%;
  height: 410px;
  display: block;
  float: left;
  position: relative;
}
.section_associados_video .content .center {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  color: #ffffff;
  width: 85%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section_associados_video .content .center p,
.section_associados_video .content .center span,
.section_associados_video .content .center div {
  color: #ffffff;
}
.section_associados_video .content .center h3 {
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  display: block;
  margin-bottom: 30px;
  line-height: 48px;
  color: #ffffff;
}
.section_associados_video .content .center h3 b {
  font-size: 60px;
  color: #35bfae;
}

.section_associados_imagem {
  width: 100%;
  padding: 25px 0;
  height: auto;
  display: table;
}
.section_associados_imagem img {
  width: 100%;
}

.section_associados_unidades h3 {
  color: #313068;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section_associados_cadastro {
  width: 100%;
  padding: 50px 0;
  display: block;
  background-color: #f1f1f1;
}
.section_associados_cadastro h3 {
  margin-bottom: 25px;
}
.section_associados_cadastro form {
  padding-top: 35px;
  width: 650px;
  margin: 0 auto;
  display: table;
}
.section_associados_cadastro form .width-50 {
  width: 49.3%;
}
.section_associados_cadastro form .submit {
  font-size: 14px;
  text-transform: none;
  float: right;
}

.section_associados_beneficios {
  width: 100%;
  padding: 50px 0;
  display: block;
  background-color: #35bfae;
}
.section_associados_beneficios .desc {
  text-align: center;
  color: #ffffff;
  width: 40%;
  margin: 0 auto;
  display: table;
  padding-top: 25px;
}
.section_associados_beneficios .divisao {
  width: 100%;
  clear: both;
  display: table;
  margin-bottom: 50px;
}
.section_associados_beneficios .divisao:last-child {
  margin-bottom: 0;
}
.section_associados_beneficios .divisao h3 {
  color: #ffffff;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 35px;
}
.section_associados_beneficios .divisao .list li {
  color: #ffffff;
  width: 33%;
  float: left;
  line-height: 24px;
  margin-bottom: 18px;
  display: block;
  padding-right: 5%;
  padding-left: 23px;
  line-height: 21px;
  background: url("../img/default/list-associados.png") top left no-repeat;
}
.section_associados_beneficios .divisao .list li:nth-child(3n+4) {
  clear: both;
}
.section_associados_beneficios .divisao .associados_beneficios .slick-list {
  margin: 0 auto;
  width: 72%;
}
.section_associados_beneficios .divisao .associados_beneficios .item {
  text-align: center;
  color: #ffffff;
  padding: 0 17%;
  line-height: 20px;
}
.section_associados_beneficios .divisao .associados_beneficios .item .submit {
  padding: 0;
  border-radius: 50%;
  margin-bottom: 15px;
  width: 110px;
  height: 110px;
}
.section_associados_beneficios .divisao .associados_beneficios .item .submit img {
  margin: 0 auto;
  margin-top: 21px;
  display: table;
}
.section_associados_beneficios .divisao .associados_beneficios .item b {
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

@media only screen and (max-width: 992px) {
  .section_associados_beneficios .divisao .associados_beneficios .slick-list {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .section_associados_cadastro form {
    width: 95%;
  }
  .section_associados_beneficios .divisao .list li {
    width: 50%;
  }
  .section_associados_beneficios .desc {
    width: 95%;
  }
  .section_associados_video .video,
.section_associados_video .content,
.section_associados_video {
    width: 100%;
    height: auto;
    display: table;
  }
  .section_associados_video .content .center {
    position: relative;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: auto;
    top: auto;
    padding: 15px 0 30px 0;
  }
}
@media only screen and (max-width: 500px) {
  .section_associados_beneficios .divisao .list li {
    width: 100%;
  }
  .section_associados_cadastro form .width-50 {
    width: 100%;
  }
  .section_associados_cadastro form .submit {
    float: none;
    margin: 0 auto;
    display: table;
  }
}
/*********************** SERVICOS **********************/
.section-servicos-1,
.section-servicos-3,
.section-servicos-5 {
  background-color: #f1f1f1;
}

.section_servicos {
  width: 100%;
  display: block;
  position: relative;
  padding-top: 70px;
}
.section_servicos a {
  color: #35bfae;
}
.section_servicos a:hover {
  text-decoration: underline;
}
.section_servicos .wrap {
  width: 1155px;
}
.section_servicos .content {
  width: 770px;
  margin: 0 auto;
  display: table;
}
.section_servicos .content .title-interno {
  width: 90%;
  margin: 0 auto;
  display: table;
  margin-bottom: 30px;
}
.section_servicos_galeria {
  width: 100%;
  display: block;
  margin-top: 150px;
  padding-bottom: 45px;
  float: left;
}
.section_servicos_galeria .wrap .servicos_galeria {
  margin-top: -110px;
}
.section_servicos_galeria .wrap .servicos_galeria .img {
  width: 95%;
  height: 255px;
  margin: 0 auto;
  position: relative;
  display: table;
}
.section_servicos_galeria .wrap .servicos_galeria .img iframe {
  position: absolute;
}
.section_servicos_galeria .wrap .slick-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: -30px;
  top: 50%;
  border: 5px solid #d6d6e1 !important;
  background: url("../img/default/next-branco.png") center center no-repeat #313068;
}
.section_servicos_galeria .wrap .slick-next:hover {
  border: 5px solid #b7b7e3 !important;
}
.section_servicos_galeria .wrap .slick-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: -30px;
  top: 50%;
  border: 5px solid #d6d6e1 !important;
  background: url("../img/default/prev-branco.png") center center no-repeat #313068;
}
.section_servicos_galeria .wrap .slick-prev:hover {
  border: 5px solid #b7b7e3 !important;
}
.section_servicos_galeria .wrap .desc {
  margin: 0 auto;
  display: table;
  width: 770px;
  padding-top: 40px;
}

.section_servicos_beneficios {
  width: 100%;
  height: auto;
  display: table;
  padding: 50px 0;
}
.section_servicos_beneficios .wrap {
  width: 1040px;
}
.section_servicos_beneficios .wrap a {
  color: #35bfae;
}
.section_servicos_beneficios .wrap a:hover {
  text-decoration: underline;
}
.section_servicos_beneficios .wrap .box-1 {
  float: left;
  width: 32%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.section_servicos_beneficios .wrap .box-1 .title {
  color: #ffffff;
  font-weight: 700;
  font-size: 48px;
  font-style: italic;
  line-height: 48px;
  display: block;
}
.section_servicos_beneficios .wrap .box-1 .desc {
  color: #ffffff;
  line-height: 24px;
  font-size: 14px;
  display: block;
}
.section_servicos_beneficios .wrap .box-2 {
  float: right;
  width: 63%;
}
.section_servicos_beneficios .wrap .box-2 ul li {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding-left: 41px;
  font-style: italic;
  background: url("../img/default/list-style-beneficios.png") center left no-repeat;
}
.section_servicos_beneficios .wrap .box-2 ul li:last-child {
  margin-bottom: 0;
}

.section_servicos_template_3 .wrap {
  min-height: 385px;
}
.section_servicos_template_3 .box-40 {
  width: 39%;
  padding-bottom: 20px;
}
.section_servicos_template_3 .box-60 {
  width: 59%;
}
.section_servicos_template_3 .servicos_galeria_template_3 .slick-list {
  width: 78%;
  margin: 0 auto;
}
.section_servicos_template_3 .servicos_galeria_template_3 .slick-list img {
  width: 100%;
}
.section_servicos_template_3 .servicos_galeria_template_3 .slick-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  right: 0;
  margin-top: -30px;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 5px solid #d7f2ef !important;
  background: url("../img/default/next-branco.png") center center no-repeat #35bfae;
}
.section_servicos_template_3 .servicos_galeria_template_3 .slick-next:hover {
  border: 5px solid #a8f0e8 !important;
}
.section_servicos_template_3 .servicos_galeria_template_3 .slick-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: 0;
  margin-top: -30px;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 5px solid #d7f2ef !important;
  background: url("../img/default/prev-branco.png") center center no-repeat #35bfae;
}
.section_servicos_template_3 .servicos_galeria_template_3 .slick-prev:hover {
  border: 5px solid #a8f0e8 !important;
}

.section_servicos_dinamicas {
  width: 100%;
  height: auto;
  display: table;
  padding: 40px 0;
}
.section_servicos_dinamicas .wrap {
  width: 1155px;
}
.section_servicos_dinamicas .wrap h3 {
  color: #313068;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 25px;
  display: block;
  font-size: 30px;
  letter-spacing: -1px;
}
.section_servicos_dinamicas .wrap a {
  color: #35bfae;
}
.section_servicos_dinamicas .wrap a:hover {
  text-decoration: underline;
}
.section_servicos_dinamicas.template-3 ul {
  padding-top: 30px;
  display: block;
}
.section_servicos_dinamicas.template-3 ul li {
  width: 50%;
  float: left;
  line-height: 24px;
  margin-bottom: 18px;
  display: block;
  padding-right: 5%;
  padding-left: 23px;
  background: url("../img/default/list-template-3.png") top left no-repeat;
}
.section_servicos_dinamicas .servicos_galeria_small {
  margin-bottom: 20px;
  margin-top: 40px;
}
.section_servicos_dinamicas .servicos_galeria_small img {
  margin: 0 auto;
  display: table;
}
.section_servicos_dinamicas .servicos_galeria_small .slick-dots {
  bottom: -31px;
}

.section_servicos_relacionados {
  width: 100%;
  height: auto;
  display: table;
  padding: 45px 0;
}
.section_servicos_relacionados .wrap {
  width: 1155px;
}
.section_servicos_relacionados .wrap .title {
  font-weight: 700;
  font-style: italic;
  color: #313068;
  position: relative;
  font-size: 34px;
  margin-bottom: 45px;
  padding-bottom: 31px;
}
.section_servicos_relacionados .wrap .title:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -35px;
  content: "";
  background-color: #35bfae;
  width: 70px;
  height: 6px;
}
.section_servicos_relacionados .wrap .list {
  display: block;
}
.section_servicos_relacionados .wrap .list li {
  width: 20%;
  display: block;
  float: left;
  padding-left: 14px;
  margin-bottom: 3px;
  background: url("../img/default/list-style-cinza.png") left 11px no-repeat;
}
.section_servicos_relacionados .wrap .list li:nth-child(5n+6) {
  clear: both;
}
.section_servicos_relacionados .wrap .list li a {
  color: #464646;
}

/*VIDEO 100%*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1279px) {
  .section_servicos .content::before {
    display: none;
  }
  .section_servicos_beneficios .wrap, .section_servicos_relacionados .wrap, .section_servicos_dinamicas .wrap, .section_servicos .wrap {
    width: 95%;
  }
}
@media only screen and (max-width: 992px) {
  .section_servicos .content {
    width: 95%;
  }
  .section_servicos_galeria .wrap .desc {
    width: 95%;
  }
  .section_servicos .content::after {
    display: none;
  }
  .section_servicos_relacionados .wrap .list li {
    width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  .section_servicos_relacionados .wrap .list li {
    width: 50%;
  }
  .section_servicos_beneficios .wrap .box-1 {
    width: 90%;
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    text-align: center;
    float: none;
    margin: 0 auto;
  }
  .section_servicos_beneficios .wrap .box-2 {
    width: 90%;
    padding-top: 30px;
  }
  .section_servicos_template_3 .box-40, .section_servicos_template_3 .box-60 {
    width: 100%;
    text-align: center;
  }
  .section_servicos_template_3 .box-60 {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 500px) {
  .section_servicos {
    padding-top: 40px;
  }
  .section_servicos_galeria .wrap .servicos_galeria .slick-list {
    width: 100%;
  }
  .section_servicos_relacionados .wrap .list li {
    width: 100%;
  }
  .section_servicos_relacionados .wrap .title {
    margin-bottom: 30px;
    line-height: 32px;
  }
  .section_servicos_beneficios .wrap .box-1, .section_servicos_beneficios .wrap .box-2 {
    width: 95%;
  }
  .section_servicos_dinamicas.template-3 ul li {
    width: 100%;
  }
}
/*********************** AGENDA **********************/
.section_agenda {
  width: 100%;
  height: auto;
  display: table;
}
.section_agenda .section_filtro .wrap {
  width: 1030px;
}
.section_agenda .section_filtro .wrap .box-25 {
  width: 19.8%;
  margin-right: 1%;
  float: left;
}
.section_agenda .section_filtro .wrap .box-25.calendario {
  background-color: #fff;
  padding: 0 0 0 15px;
  position: relative;
  height: 46px;
  border-radius: 3px;
}
.section_agenda .section_filtro .wrap .box-25.calendario .sprite {
  width: 18px;
  height: 19px;
  background-position: 0 -111px;
  float: left;
  display: block;
  margin-top: 12px;
}
.section_agenda .section_filtro .wrap .box-25.calendario input {
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 46px;
  width: 70%;
  padding: 0 0 0 43px;
  background-color: transparent;
}
.section_agenda .section_filtro .wrap .box-25.calendario .setas {
  margin-top: 11px;
  margin-right: 8px;
}
.section_agenda .section_filtro .wrap .box-25.calendario .setas i {
  color: #464646;
  margin: 0 7px;
  font-size: 20px;
}
.section_agenda .section_filtro .wrap .submit {
  width: 150px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  border-radius: 25px;
  float: right;
}
.section_agenda .section_filtro .wrap.wrap-categorias {
  padding-top: 20px;
}
.section_agenda .section_filtro .wrap.wrap-categorias .title {
  margin: 0 40px 0 0;
  line-height: 40px;
}
.section_agenda .section_filtro .wrap.wrap-categorias a {
  margin: 0 10px 10px 0;
  min-width: 140px;
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
  height: 40px;
  border-radius: 25px;
  display: inline-block;
  line-height: 38px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #333;
}
.section_agenda .section_filtro .wrap.wrap-categorias a:hover, .section_agenda .section_filtro .wrap.wrap-categorias a.active {
  background-color: #333;
  color: #ffffff !important;
}
.section_agenda .section_filtro .wrap.wrap-categorias a.btn-todos {
  color: #333;
}
@media only screen and (max-width: 768px) {
  .section_agenda .section_filtro .wrap.wrap-categorias {
    text-align: center;
  }
  .section_agenda .section_filtro .wrap.wrap-categorias .title {
    margin: 0 0 25px;
  }
}
.section_agenda .section_list {
  width: 100%;
  height: auto;
  padding: 45px 0;
  display: table;
}
.section_agenda .section_list .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section_agenda .section_list .item {
  width: calc(25% - 30px);
  height: auto;
  float: left;
  margin: 0 15px;
  margin-bottom: 70px;
  background-color: #313068;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .section_agenda .section_list .item {
    width: calc(33.3333333333% - 30px);
  }
}
@media only screen and (max-width: 850px) {
  .section_agenda .section_list .item {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 575px) {
  .section_agenda .section_list .item {
    width: 100%;
    margin: 0;
    margin-bottom: 50px;
  }
}
.section_agenda .section_list .item .data {
  width: 100%;
  display: block;
  border-bottom: 1px solid #ffffff;
  background-color: #313068;
  text-align: center;
  padding: 0 10px;
}
.section_agenda .section_list .item .data:before, .section_agenda .section_list .item .data:after {
  content: "";
  display: table;
}
.section_agenda .section_list .item .data:after {
  clear: both;
}
.section_agenda .section_list .item .data span {
  height: 45px;
  font-weight: 300;
  color: #ffffff;
  line-height: 42px;
  font-style: italic;
  font-size: 18px;
}
.section_agenda .section_list .item .dados {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #ffffff;
  width: 100%;
  padding: 0 6%;
  padding-bottom: 45px;
  font-weight: 600;
  line-height: 21px;
}
.section_agenda .section_list .item .dados .link-externo {
  display: block;
  color: #35bfae;
  margin-top: 15px;
  float: left;
  width: 100%;
}
.section_agenda .section_list .item .dados .link-externo:hover {
  text-decoration: underline;
}
.section_agenda .section_list .item .dados .horario {
  display: block;
  float: left;
  color: #ffffff;
  margin-top: 12px;
  font-weight: normal;
  line-height: 19px;
}
.section_agenda .section_list .item .dados .horario .fa-clock-o {
  color: #ffffff;
  font-size: 20px;
  margin-right: 5px;
}
.section_agenda .section_list .item .imagem {
  width: 100%;
  height: 200px;
  display: block;
  /*.addtocalendar{
              position: absolute;
              bottom: -21px;
              left: 50%;
              transform: translate(-50%, 0);
              width: 215px;
              .submit{
                  width: 100%;
                  text-align: center;
                  line-height: 33px;
                  border-radius: 25px;
                  padding: 0 33px;
                  color: $branco;
              }
          }*/
}
.section_agenda .section_list .item .imagem .button-inscricoes {
  position: absolute;
  bottom: -21px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 205px;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  border-radius: 25px;
  font-size: 14px;
  background-color: #35bfae;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
}
.section_agenda .section_list .item .imagem .button-inscricoes:hover {
  border: 5px solid rgba(53, 191, 174, 0.7) !important;
}
.section_agenda .section_list .item .imagem .button-inscricoes.no-link {
  cursor: default;
  background-color: rgb(200, 200, 200);
  border: 5px solid rgba(200, 200, 200, 0.3) !important;
  color: rgb(50, 50, 50);
}
.section_agenda .section_list .item .imagem .degrade {
  width: 100%;
  height: 100%;
  display: block;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2a2c54+0,2a2c54+100&0+0,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 44, 84, 0)), to(rgb(42, 44, 84)));
  background: -o-linear-gradient(top, rgba(42, 44, 84, 0) 0%, rgb(42, 44, 84) 100%);
  background: linear-gradient(to bottom, rgba(42, 44, 84, 0) 0%, rgb(42, 44, 84) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#002a2c54", endColorstr="#2a2c54",GradientType=0 ); /* IE6-9 */
}

/*FILTRO*/
.ui-datepicker {
  width: 44em !important;
  z-index: 999 !important;
}

.ui-widget.ui-widget-content {
  border: 1px solid #d9d9d9;
  background-color: #fff;
}

.ui-button,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled:active,
html .ui-button.ui-state-disabled:hover {
  border: 1px solid #fff;
  background: transparent;
  font-weight: 700;
  color: #000;
  text-align: center;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
}

.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
  border-color: #ebebeb;
  color: #000;
}

.ui-state-default:hover {
  background-color: #ebebeb !important;
}

.ui-datepicker th {
  font-weight: normal;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #aaaaaa;
}

.ui-datepicker td a,
.ui-datepicker td span {
  padding: 0.8em;
}

.ui-datepicker th {
  padding: 0.8em 0.3em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  padding: 0 8px;
}

.ui-widget-header {
  border: 0;
  background: transparent;
  color: #333333;
  font-weight: normal;
  font-size: 13px;
}

.ui-widget-header .ui-datepicker-year {
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: initial;
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  top: 50%;
  cursor: pointer;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  border: 1px solid #d9d9d9;
  width: 27px !important;
  height: 50px !important;
  border-radius: 2px !important;
}

.ui-datepicker .ui-datepicker-next {
  right: -15px !important;
  margin-top: -25px;
  background: url(../img/default/next-datepicker.png) center center no-repeat #f6f6f6;
}

.ui-datepicker .ui-datepicker-prev {
  left: -15px !important;
  margin-top: -25px;
  background: url(../img/default/prev-datepicker.png) center center no-repeat #f6f6f6;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  border: 0;
  text-transform: unset;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0 !important;
}

/* ADICIONAR A AGENDA */
/**
 * AddToCalendar Blue Style
 * http://addtocalendar.com
 */
/* Base */
.addtocalendar var {
  display: none;
}

.addtocalendar {
  position: relative;
  display: inline-block;
  background: transparent !important;
  z-index: 900;
}

.atcb-link {
  display: block;
  outline: none !important;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.atcb-link:focus ~ ul,
.atcb-link:active ~ ul,
.atcb-list:hover {
  visibility: visible;
}

.atcb-list {
  visibility: hidden;
  position: absolute;
  bottom: 110%;
  left: 0;
  width: 170px;
  z-index: 2;
}

.atcb-list,
.atcb-item {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.atcb-item {
  float: none;
  text-align: left;
}

.atcb-item-link {
  text-decoration: none;
  outline: none;
  display: block;
}

.atcb-item.hover,
.atcb-item:hover {
  position: relative;
  z-index: 900;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

/* Blue */
/*.atc-style-blue .atcb-link,
.atc-style-blue .atcb-link:hover,
.atc-style-blue .atcb-link:active,
.atc-style-blue .atcb-link:focus
{
  margin: 0;
  padding: 7px 25px;
  color: #fff;
  font-family: "Verdana";
  font-size: 14px;
  text-decoration: none;
  outline: none;
  line-height: 20px;
  vertical-align: middle;
  background: rgb(66,129,244);
  box-shadow: 0 0 40px rgba(0, 0, 0, .13) inset;
  border-radius: 4px;
  zoom: 1;
}*/
.atc-style-blue .atcb-list {
  width: 100%;
  border: 1px solid rgb(186, 186, 186);
  border-radius: 2px;
  -webkit-box-shadow: 0 0 5px #aaa;
          box-shadow: 0 0 5px #aaa;
}

.atc-style-blue .atcb-list,
.atc-style-blue .atcb-item {
  background: #fff;
  color: #000;
}

.atc-style-blue .atcb-item,
.atc-style-blue .atcb-item-link {
  line-height: 1.3em;
  vertical-align: middle;
  zoom: 1;
}

.atc-style-blue .atcb-item-link,
.atc-style-blue .atcb-item-link:hover,
.atc-style-blue .atcb-item-link:active,
.atc-style-blue .atcb-item-link:focus {
  color: #000;
  font-family: "Verdana";
  text-decoration: none;
  outline: none;
  padding: 5px 15px;
  font-weight: 400;
  font-size: 14px;
}

.atc-style-blue .atcb-item-link:hover,
.atc-style-blue .atcb-item-link:active,
.atc-style-blue .atcb-item-link:focus {
  color: #fff;
}

.atc-style-blue .atcb-item.hover,
.atc-style-blue .atcb-item:hover {
  background: rgb(66, 129, 244);
}

.download-agenda {
  padding: 50px 0;
  background-color: #f1f1f1;
}
.download-agenda .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.download-agenda .wrap h2 {
  color: #313068;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
}
.download-agenda .wrap .submit {
  margin: 0 0 0 50px;
  background-color: #35bfae;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
}
.download-agenda .wrap .submit:hover {
  border: 5px solid rgba(53, 191, 174, 0.7) !important;
}

@media only screen and (max-width: 1279px) {
  .section_agenda .section_filtro .wrap {
    width: 95%;
  }
  .section_agenda .section_list .wrap {
    width: 95%;
  }
  .section_filtro .wrap .box-filtro {
    width: 92%;
  }
}
@media only screen and (max-width: 992px) {
  /*.section_agenda .section_list .item{width: 28%; margin: 0 3%;}*/
  .section_agenda .section_filtro .wrap {
    width: 95% !important;
  }
  .section_agenda .section_filtro .wrap .submit {
    margin: 0 auto;
    display: table;
    float: none;
  }
  .section_agenda .section_filtro .wrap .box-25 {
    width: 24%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 500px) {
  .section_agenda .section_list .item,
.section_agenda .section_list .item:nth-child(2n+2),
.section_agenda .section_list .item:nth-child(3n+3) {
    width: 100%;
    margin: 0;
    margin-bottom: 50px;
  }
  .section_agenda .section_filtro .wrap .box-25 {
    width: 100%;
  }
  .ui-datepicker {
    width: 85% !important;
    margin-left: 5%;
  }
  .ui-datepicker-multi-2 .ui-datepicker-group {
    width: 100% !important;
  }
  .ui-datepicker-group-last .ui-datepicker-calendar {
    display: none !important;
  }
  .ui-datepicker-group-last .ui-datepicker-title {
    display: none !important;
  }
  .section_filtro .wrap .box-filtro {
    width: 100%;
  }
}
/*********************** PORTAL DO FORNECEDOR **********************/
.section_portal_do_fornecedor {
  padding-top: 110px;
}
.section_portal_do_fornecedor .bg-cinza {
  background-color: #f1f1f1;
}
.section_portal_do_fornecedor .section_interno {
  width: 100%;
  height: auto;
  display: table;
  padding: 50px 0;
}
.section_portal_do_fornecedor .section_interno .wrap {
  width: 710px;
}
.section_portal_do_fornecedor .section_interno .wrap h3 {
  color: #313068;
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -2.5px;
  margin-bottom: 35px;
}
.section_portal_do_fornecedor .section_interno .wrap .submit-descubra {
  margin: 0 auto;
  margin-top: 35px;
  display: table;
  float: none;
  font-style: italic;
  font-weight: 300;
  padding: 15px 35px;
  font-size: 14px;
  line-height: 20px;
  background-color: #35bfae;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
}
.section_portal_do_fornecedor .section_interno .wrap .submit-descubra:hover {
  border: 5px solid rgba(53, 191, 174, 0.6) !important;
}
.section_portal_do_fornecedor .section_interno .wrap .submit-descubra .sprite {
  background-position: -101px -34px;
  width: 17px;
  height: 22px;
  display: block;
  float: left;
  margin-right: 10px;
}
.section_portal_do_fornecedor .section_interno .wrap ul.regras-pagamento li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  height: auto;
  display: table;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 15px;
  background: url("../img/default/list-style-regras.png") top left no-repeat !important;
}
.section_portal_do_fornecedor .section_interno .wrap ul.regras-pagamento li:last-child {
  margin: 0;
  padding-bottom: 0;
  border: 0;
}
.section_portal_do_fornecedor .section_interno .wrap form {
  width: 640px;
  display: table;
  margin: 0 auto;
  margin-top: 35px;
}
.section_portal_do_fornecedor .section_interno .wrap form .width-100 {
  width: 100%;
}
.section_portal_do_fornecedor .section_interno .wrap form .width-50 {
  width: 49.3%;
}
.section_portal_do_fornecedor .section_interno .wrap form .bootstrap-select, .section_portal_do_fornecedor .section_interno .wrap form input, .section_portal_do_fornecedor .section_interno .wrap form select, .section_portal_do_fornecedor .section_interno .wrap form textarea {
  margin-bottom: 10px;
}
.section_portal_do_fornecedor .section_interno .wrap .g-recaptcha {
  margin-bottom: 10px;
  clear: both;
}
.section_portal_do_fornecedor .section_interno .wrap .documentacao {
  clear: both;
  width: 100%;
  height: auto;
  display: block;
  padding-bottom: 10px;
}
.section_portal_do_fornecedor .section_interno .wrap .documentacao .title {
  clear: both;
  margin-bottom: 0;
  display: block;
  color: #313068;
}
.section_portal_do_fornecedor .section_interno .wrap .documentacao li {
  background: none !important;
  padding: 0;
  float: left;
  width: 33%;
  border: 0;
}
.section_portal_do_fornecedor .section_interno .wrap .documentacao li.form-outros {
  width: 66%;
}
.section_portal_do_fornecedor .section_interno .wrap .documentacao li.form-outros .lb-check {
  float: left;
  margin-top: 11px;
}
.section_portal_do_fornecedor .section_interno .wrap .documentacao li.form-outros input {
  width: 77%;
  display: none;
  float: right;
  margin-top: 0;
}
.section_portal_do_fornecedor .section_interno.section_regras {
  background: url("../img/default/fundo-regras.jpg") bottom center no-repeat #f1f1f1;
}
.section_portal_do_fornecedor .section_interno.section_regras .wrap {
  width: 1050px;
}
.section_portal_do_fornecedor .section_interno.section_regras .wrap .list {
  padding-top: 50px;
}
.section_portal_do_fornecedor .section_interno.section_regras .wrap .list li {
  width: 33%;
  float: left;
  display: block;
  height: auto;
  background: none !important;
  padding: 5px 0;
  border: 0;
  margin-bottom: 45px;
  position: relative;
}
.section_portal_do_fornecedor .section_interno.section_regras .wrap .list li b {
  font-size: 16px;
}
.section_portal_do_fornecedor .section_interno.section_regras .wrap .list li .submit {
  width: 77px;
  height: 77px;
}
.section_portal_do_fornecedor .section_interno.section_regras .wrap .list li .submit img {
  margin: 0 auto;
  display: table;
  margin-top: 13px;
}
.section_portal_do_fornecedor .section_interno.section_regras .wrap .list li .content {
  width: 73%;
  height: auto;
  font-size: 12px;
  line-height: 18px;
  padding-right: 10%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.section_portal_do_fornecedor .section_interno.section_regras .wrap .observacao {
  width: 80%;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 15px 25px;
  border: 1px solid #bfbfbf;
  clear: both;
  height: auto;
  display: table;
  margin: 0 auto;
}
.section_portal_do_fornecedor .section_menu {
  width: 100%;
  height: 110px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #f1f1f1;
}
.section_portal_do_fornecedor .section_menu.menu-collapsed {
  position: fixed;
  height: 90px;
}
.section_portal_do_fornecedor .section_menu.menu-collapsed a {
  height: 90px !important;
  line-height: 90px !important;
}
.section_portal_do_fornecedor .section_menu.menu-collapsed .botao {
  height: 90px;
}
.section_portal_do_fornecedor .section_menu.menu-collapsed .botao a {
  height: auto !important;
  line-height: 15px !important;
}
.section_portal_do_fornecedor .section_menu.menu-collapsed .logo {
  display: none;
  opacity: 1;
}
.section_portal_do_fornecedor .section_menu .logo {
  float: left;
  display: block;
  margin-top: 15px;
  position: absolute;
  opacity: 0;
}
.section_portal_do_fornecedor .section_menu .menu {
  width: 71%;
  height: 110px;
  display: table;
  float: right;
  position: relative;
}
.section_portal_do_fornecedor .section_menu .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-display: -webkit-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.section_portal_do_fornecedor .section_menu .menu ul li {
  display: block;
  height: 110px;
  display: table-cell;
}
.section_portal_do_fornecedor .section_menu .menu ul li a {
  text-align: center;
  color: #313068;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0 35px;
  height: 110px;
  display: block;
  position: relative;
  line-height: 110px;
}
.section_portal_do_fornecedor .section_menu .menu ul li a:hover:after {
  width: 100%;
}
.section_portal_do_fornecedor .section_menu .menu ul li a:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 7px;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  background-color: #35bfae;
}
.section_portal_do_fornecedor .section_menu .menu ul li a.active:after {
  width: 100%;
}
.section_portal_do_fornecedor .section_menu .botao {
  width: 29%;
  float: right;
  display: block;
  background-color: #35bfae;
  position: relative;
  height: 110px;
}
.section_portal_do_fornecedor .section_menu .botao .submit {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: table;
  text-transform: uppercase;
  font-size: 13px;
  width: 270px;
  text-align: center;
  padding: 14px 25px;
}

@media only screen and (max-width: 1279px) {
  .section_portal_do_fornecedor .section_interno .wrap, .section_portal_do_fornecedor .section_interno.section_regras .wrap {
    width: 95%;
  }
  .section_portal_do_fornecedor .section_menu .menu {
    display: none;
  }
  .section_portal_do_fornecedor .section_menu .logo {
    display: none;
  }
  .section_portal_do_fornecedor .section_menu .botao {
    width: 100%;
  }
  .section_portal_do_fornecedor .section_menu {
    background-color: #35bfae;
  }
  .section_portal_do_fornecedor .section_menu .botao .submit {
    position: relative;
    left: 0;
    top: 30px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .section_portal_do_fornecedor .section_menu.menu-collapsed {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .section_portal_do_fornecedor .section_interno .wrap form {
    width: 95%;
  }
}
@media only screen and (max-width: 500px) {
  .section_portal_do_fornecedor .section_interno .wrap form .width-50 {
    width: 100%;
  }
  .section_portal_do_fornecedor .section_interno .wrap .documentacao li {
    width: 100%;
  }
  .section_portal_do_fornecedor .section_interno.section_regras .wrap .list li {
    width: 100%;
    margin-bottom: 15px;
  }
  .section_portal_do_fornecedor .section_interno.section_regras {
    padding-top: 15px;
  }
  .section_portal_do_fornecedor .section_interno {
    padding: 25px 0;
  }
}
/*********************** ASSOCIADOS **********************/
.section_associados {
  width: 100%;
  display: block;
}
.section_associados .section_filtro .wrap .box-33 {
  width: 23.5%;
  margin-right: 4%;
  float: left;
}
.section_associados .section_filtro .wrap .box-33:nth-child(3) {
  margin-right: 0;
}
.section_associados .section_filtro .wrap .title {
  margin-bottom: 0;
}
.section_associados .section_filtro .wrap input {
  margin-bottom: 0;
}
.section_associados .section_filtro .wrap .submit {
  width: 150px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  border-radius: 25px;
  float: right;
}
.section_associados_list {
  width: 100%;
  padding: 45px 0;
  display: table;
  height: auto;
}
.section_associados_list .box-25 {
  width: 22.3%;
  margin-right: 3.5%;
  display: table;
  float: left;
  height: auto;
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
}
.section_associados_list .box-25:nth-child(4n+4) {
  margin-right: 0;
}
.section_associados_list .box-25:nth-child(4n+5) {
  clear: both;
}
.section_associados_list .box-25 .img {
  width: 210px;
  height: 125px;
  border: 1px dashed #f1f1f1;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  position: absolute;
}
.section_associados_list .box-25 .img.no-border {
  border: medium none;
}
.section_associados_list .box-25 .img img {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  max-width: 190px;
  max-height: 105px;
}
.section_associados_list .box-25 .dados {
  width: 89%;
  display: table;
  margin: 0 auto;
  text-align: center;
  padding-top: 130px;
}
.section_associados_list .box-25 .dados .nome {
  width: 100%;
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: #35bfae !important;
  line-height: 20px;
  text-align: center;
  text-decoration: underline;
}
.section_associados_list .box-25 .dados .desc {
  font-size: 13px !important;
  color: #464646 !important;
  display: block;
  line-height: 20px !important;
}
.section_associados_list .box-25 .dados a {
  display: block;
  font-size: 12px;
  color: #35bfae;
  text-align: center;
}
.section_associados_list .box-25 .dados a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .section_associados_list .box-25 {
    width: 25%;
    margin-right: 12%;
  }
  .section_associados_list .box-25:nth-child(4n+4) {
    margin-right: 12%;
  }
  .section_associados_list .box-25:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 500px) {
  .section_associados_list .box-25 {
    width: 48%;
    margin-right: 2%;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .section_associados_list .box-25:nth-child(4n+4), .section_associados_list .box-25:nth-child(3n+3) {
    margin-right: 2%;
  }
  .section_associados_list .box-25:nth-child(2n+2) {
    margin-right: 0;
  }
  .section_associados_list .box-25 .img {
    width: 100%;
  }
  .section_associados_list .box-25 .img img {
    width: 85%;
  }
}
/*********************** NOTICIAS **********************/
.section_noticias {
  width: 100%;
  display: block;
}
.section_noticias_categorias {
  width: 100%;
  display: table;
  height: auto;
  background-color: #f1f1f1;
}
.section_noticias_categorias .categorias {
  width: 71%;
  height: auto;
  display: table;
  float: left;
  padding: 25px 0;
  position: relative;
}
.section_noticias_categorias .categorias .title {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-weight: 300i;
  font-style: italic;
  font-size: 24px;
}
.section_noticias_categorias .categorias .list {
  width: 85%;
  float: right;
  display: table;
  height: auto;
}
.section_noticias_categorias .categorias .list .submit {
  margin: 3px;
  width: auto;
  height: 40px;
  border-radius: 40px;
  background-color: transparent;
  border: 1px solid #35bfae;
  padding: 0 18px;
  font-size: 12px;
  line-height: 36px;
  color: #35bfae;
}
.section_noticias_categorias .categorias .list .submit:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #35bfae;
  border: 1px solid rgba(53, 191, 174, 0.3);
}
.section_noticias_categorias .categorias .list .submit.active {
  color: #ffffff;
  background-color: #35bfae;
  border: 1px solid rgba(53, 191, 174, 0.3);
}
.section_noticias_categorias .download {
  width: 29%;
  float: right;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #35bfae;
  padding: 25px 0;
}
.section_noticias_categorias .download .submit {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-size: 13px;
  width: 215px;
  padding: 10px 25px;
}
.section_noticias_categorias .download .submit span {
  color: #ffffff;
}
.section_noticias_categorias .download .submit .sprite {
  background-position: -77px 0;
  width: 14px;
  height: 16px;
  display: block;
  float: left;
  margin-right: 9px;
  margin-top: 4px;
}
.section_noticias_listagem {
  width: 100%;
  display: table;
  height: auto;
  padding: 40px 0;
}
.section_noticias_listagem .box-100 {
  width: 100%;
  height: auto;
  display: table;
  margin-bottom: 20px;
}
.section_noticias_listagem .box-70 {
  width: 73%;
  height: auto;
  display: table;
}
.section_noticias_listagem .box-70 .imagem {
  width: 67.5%;
  height: 440px;
  display: block;
}
.section_noticias_listagem .box-70 .content {
  width: 30%;
}
.section_noticias_listagem .box-25 {
  width: 24%;
  height: auto;
  display: table;
}
.section_noticias_listagem .box-25.margin-right {
  margin-right: 1.3%;
}
.section_noticias_listagem .box-25.margin-right:last-child {
  margin-right: 0;
}
.section_noticias_listagem .box-25.box-25-2 .noticia_item {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}
.section_noticias_listagem .box-25.box-25-2 .noticia_item:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}
.section_noticias_relacionadas {
  width: 100%;
  height: auto;
  display: table;
  padding: 35px 0;
  background-color: #f1f1f1;
}
.section_noticias_relacionadas h3 {
  font-size: 40px;
}
.section_noticias_relacionadas .list {
  width: 100%;
  height: auto;
  display: block;
  padding: 30px 0;
}
.section_noticias_relacionadas .paginacao {
  padding: 0;
}

.noticia_item {
  width: 100%;
  height: auto;
  display: table;
}
.noticia_item .imagem {
  width: 100%;
  height: 235px;
  display: block;
  margin-bottom: 10px;
}
.noticia_item .data {
  position: relative;
  padding-left: 10px;
  display: block;
  font-weight: 600;
  color: #464646;
}
.noticia_item .data:after {
  width: 4px;
  height: 20px;
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  background-color: #35bfae;
}
.noticia_item .nome {
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: #313068;
  display: block;
  margin: 6px 0 8px 0;
  line-height: 30px;
  -ms-word-break: break-word;
  word-break: break-word;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.noticia_item .nome:hover {
  text-decoration: none;
  opacity: 0.6;
}
.noticia_item .desc {
  line-height: 23px;
  display: block;
  color: #464646;
  -ms-word-break: break-word;
  word-break: break-word;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.noticia_item .desc:hover {
  text-decoration: none;
  opacity: 0.6;
}

@media only screen and (max-width: 992px) {
  .section_footer_assessoria .wrap {
    width: 95%;
  }
  .section_footer_assessoria .wrap .contatos .box-33 {
    width: 100%;
    margin-bottom: 25px;
  }
  .section_footer_assessoria .wrap .contatos .box-33:last-child {
    margin: 0;
  }
  .section_footer_assessoria .wrap .title {
    line-height: 38px;
  }
  .section_noticias_categorias .categorias .list {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  .noticia_item .nome {
    font-size: 22px;
    line-height: 27px;
  }
  .noticia_item .imagem {
    height: 135px;
  }
  .section_noticias_listagem .box-70 {
    margin-bottom: 15px;
  }
  .section_noticias_listagem .box-70 .imagem {
    height: 270px;
  }
  .section_noticias_categorias .categorias {
    display: none;
  }
  .section_noticias_categorias {
    background-color: #35bfae;
  }
  .section_noticias_categorias .download {
    width: 100%;
    position: relative;
  }
  .section_noticias_categorias .download .submit {
    position: relative;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    top: auto;
    left: auto;
    margin: 0 auto;
    display: table;
    float: none;
  }
  .section_noticias_listagem .box-70 {
    width: 100%;
  }
  .section_noticias_listagem .box-25.box-25-2 {
    width: 100%;
    padding-top: 10px;
  }
  .section_noticias_listagem .box-25.box-25-2 .noticia_item {
    width: 49%;
    float: left;
    border: 0;
    margin: 0;
    padding: 0;
  }
  .section_noticias_listagem .box-25.box-25-2 .noticia_item:last-child {
    float: right;
  }
}
@media only screen and (max-width: 500px) {
  .noticia_item .nome {
    font-size: 20px;
    line-height: 27px;
  }
  .section_noticias_listagem .box-70 .imagem {
    width: 100%;
    margin-bottom: 10px;
  }
  .section_noticias_listagem .box-70 .content {
    width: 100%;
  }
  .section_noticias_listagem .box-25.box-25-2 {
    padding-top: 20px;
  }
  .section_noticias_listagem .box-25 {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 15px;
  }
  .section_noticias_listagem .box-25:nth-child(2n+2) {
    margin-right: 0;
  }
}
/*********************** BUSCA **********************/
.section_busca {
  width: 100%;
  height: auto;
  display: table;
  padding-bottom: 50px;
}
.section_busca .section_filtro .wrap {
  width: 1030px;
}
.section_busca .section_filtro .wrap .title {
  margin-bottom: 0;
}
.section_busca .section_filtro .wrap .box-filtro {
  width: 76%;
}
.section_busca .section_filtro .wrap .box-filtro input {
  float: left;
  width: 78%;
  margin-bottom: 0;
}
.section_busca .section_filtro .wrap .box-filtro .submit {
  width: 150px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  border-radius: 25px;
  float: right;
}
.section_busca .section_list {
  width: 1125px;
  padding: 50px 0;
}
.section_busca .section_list ul {
  margin: 0 auto;
  display: table;
  width: 80%;
}
.section_busca .section_list li {
  width: 100%;
  height: auto;
  display: table;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.section_busca .section_list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.section_busca .section_list li .borda {
  width: 100%;
  height: auto;
  display: table;
  padding-left: 8px;
  border-left: 4px solid #35bfae;
}
.section_busca .section_list li .caminho {
  text-transform: uppercase;
  color: #8d8d8d;
  letter-spacing: 1px;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}
.section_busca .section_list li .link {
  font-style: italic;
  color: #313068;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.5px;
  display: block;
  margin-bottom: 5px;
}
.section_busca .section_list li .desc {
  line-height: 19px;
  display: block;
}

@media only screen and (max-width: 1279px) {
  .section_busca .section_filtro .wrap {
    width: 95%;
  }
  .section_busca .section_list {
    width: 95%;
  }
}
@media only screen and (max-width: 992px) {
  .section_busca .section_filtro .wrap .title {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .section_busca .section_filtro .wrap .box-filtro {
    width: 80%;
    margin: 0 auto;
    display: table;
    float: none;
    padding-top: 20px;
  }
  .section_busca .section_filtro .wrap .box-filtro input {
    width: 100%;
    margin-bottom: 15px;
  }
  .section_busca .section_filtro .wrap .box-filtro .submit {
    float: none;
    margin: 0 auto;
    display: table;
  }
}
@media only screen and (max-width: 500px) {
  .section_busca .section_list ul {
    width: 100%;
  }
  .section_busca .section_filtro .wrap .box-filtro {
    width: 100%;
  }
}
/*********************** NOTICIAS **********************/
.section_noticia_interna {
  width: 100%;
  display: block;
}
.section_noticia_interna a {
  color: #35bfae;
}
.section_noticia_interna a:hover {
  text-decoration: underline;
}
.section_noticia_interna .box-left {
  width: 71%;
  display: table;
  height: auto;
  float: left;
}
.section_noticia_interna .box-left .box-compartilhamento {
  width: 100%;
  border-bottom: 1px dashed #e5e5e5;
  border-top: 1px dashed #e5e5e5;
  height: auto;
  display: table;
  margin-bottom: 25px;
  padding: 30px 0;
}
.section_noticia_interna .box-left .box-compartilhamento .title {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #464646;
}
.section_noticia_interna .box-left .box-compartilhamento ul {
  margin-top: 2px;
  float: left;
}
.section_noticia_interna .box-left .box-compartilhamento ul li {
  margin-left: 9px;
  float: left;
}
.section_noticia_interna .box-left .box-compartilhamento ul li a {
  color: #35bfae;
}
.section_noticia_interna .box-left .box-compartilhamento ul li a:hover {
  text-decoration: underline;
}
.section_noticia_interna .box-left .box-compartilhamento .link_compartilhamento a {
  width: 32px;
  height: 32px;
  display: block;
  float: left;
  margin-left: 8px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section_noticia_interna .box-left .box-compartilhamento .link_compartilhamento a:hover {
  opacity: 0.7;
}
.section_noticia_interna .box-left .box-compartilhamento .link_compartilhamento a.facebook {
  background-position: -100px 0;
}
.section_noticia_interna .box-left .box-compartilhamento .link_compartilhamento a.twitter {
  background-position: -138px 0;
}
.section_noticia_interna .box-left .box-compartilhamento .link_compartilhamento a.email {
  background-position: -176px 0;
}
.section_noticia_interna .box-left .box-compartilhamento .link_compartilhamento a.imprimir {
  background-position: -215px 0;
}
.section_noticia_interna .box-left .box-compartilhamento .link_compartilhamento a.whatsapp {
  background-position: -254px 0;
}
.section_noticia_interna .box-left .box-compartilhamento .link_compartilhamento a.google {
  background-position: -293px 0;
}
.section_noticia_interna .box-left .content_noticia {
  width: 100%;
  height: auto;
  display: table;
}
.section_noticia_interna .box-left .content_noticia .chamada {
  font-size: 16px;
  font-style: italic;
  display: block;
  margin-bottom: 25px;
  font-weight: normal;
}
.section_noticia_interna .box-left .content_noticia .imagem {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  display: table;
}
.section_noticia_interna .box-left .content_noticia .imagem .legenda {
  width: 100%;
  border-bottom: 1px dashed #e5e5e5;
  height: auto;
  display: table;
  padding: 15px 0;
  font-style: italic;
  color: #b4b4b4;
}
.section_noticia_interna .box-right {
  width: 24%;
  display: table;
  height: auto;
  padding-top: 30px;
  float: right;
}
.section_noticia_interna .box-right h3 {
  font-size: 36px;
}
.section_noticia_interna .box-right .section_noticias_listagem {
  padding: 35px 0;
}
.section_noticia_interna .box-right .noticia_item {
  width: 100%;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}
.section_noticia_interna .box-right .noticia_item:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}
.section_noticia_interna .box-right .section_noticias_categorias {
  background-color: #ffffff;
}
.section_noticia_interna .box-right .section_noticias_categorias .categorias {
  width: 100%;
}
.section_noticia_interna .box-right .section_noticias_categorias .categorias .title {
  font-style: normal;
  font-size: 36px;
  font-weight: 300;
  position: absolute;
  top: auto;
  left: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.section_noticia_interna .box-right .section_noticias_categorias .categorias .list {
  width: 100%;
  margin-top: 60px;
}
.section_noticia_interna .box-right .section_noticias_categorias .categorias .list a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 1279px) {
  .banner_internas.banner_interna_noticias .wrap .content .title {
    opacity: 1;
  }
  .banner_internas.banner_interna_noticias .wrap .content .date {
    opacity: 1;
  }
}
@media only screen and (max-width: 992px) {
  .section_noticia_interna .box-left .box-compartilhamento {
    padding: 15px 0;
  }
  .section_noticia_interna .box-left .box-compartilhamento .divisao {
    margin: 10px auto;
    display: table;
    float: none;
  }
}
@media only screen and (max-width: 768px) {
  .section_noticia_interna .box-right, .section_noticia_interna .box-left {
    width: 100%;
  }
  .section_noticia_interna .box-right .noticia_item {
    width: 49%;
    margin-right: 2%;
    float: left;
  }
  .section_noticia_interna .box-right .noticia_item:nth-child(2n+2) {
    margin-right: 0;
  }
  .section_noticia_interna .box-right .noticia_item:last-child {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .section_noticia_interna .section_noticias_categorias .categorias {
    display: block;
  }
  .section_noticia_interna .content_noticia img {
    width: 100% !important;
  }
}
/*********************** ERROR **********************/
.section-error {
  width: 100%;
  height: auto;
  display: table;
  padding: 80px 0;
  background-color: #f1f1f1;
}
.section-error .wrap {
  width: 800px;
}
.section-error .wrap h3, .section-error .wrap .desc {
  margin-bottom: 50px;
}
.section-error .wrap h3 a, .section-error .wrap .desc a {
  color: #35bfae;
  margin-top: 15px;
  display: block;
}
.section-error .wrap h3 a:hover, .section-error .wrap .desc a:hover {
  text-decoration: underline;
}
.section-error .wrap .submit {
  margin: 0 auto;
  display: table;
  float: none;
}

@media only screen and (max-width: 992px) {
  .section-error .wrap {
    width: 95%;
  }
}
@media only screen and (max-width: 500px) {
  .section-error .wrap .submit.submit-maior {
    padding: 15px 35px;
    font-size: 14px;
  }
  .section-error .wrap h3 {
    font-size: 40px;
  }
}
/*********************** CONTATO **********************/
.section_contato {
  width: 100%;
  height: auto;
  display: table;
  padding: 50px 0;
  background-color: #f1f1f1;
}
.section_contato .wrap form {
  width: 650px;
  height: auto;
  display: table;
  margin: 0 auto;
}
.section_contato .wrap form input,
.section_contato .wrap form select,
.section_contato .wrap form textarea,
.section_contato .wrap form .bootstrap-select {
  margin-bottom: 10px;
  display: block;
}
.section_contato .wrap form .width-50 {
  width: 49.3%;
}
.section_contato .wrap form .width-36 {
  width: 36%;
}
.section_contato .wrap form .width-61 {
  width: 61%;
}
.section_contato .wrap form textarea {
  height: 160px;
}
.section_contato .wrap form .g-recaptcha {
  float: right;
  margin-bottom: 8px;
}
.section_contato .wrap form .submit {
  font-size: 14px;
  text-transform: none;
  float: right;
  clear: right;
}

.section_unidades {
  width: 100%;
  height: auto;
  display: block;
  padding: 50px 0 0 0;
}
.section_unidades .list {
  width: 100%;
  height: auto;
  display: block;
  padding-top: 50px;
}
.section_unidades .list .dados {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.section_unidades .list .dados .contato-unidades {
  margin-bottom: 0;
}
.section_unidades .list .dados .contato-unidades .slick-list {
  padding-bottom: 14px;
}
.section_unidades .list .dados .contato-unidades .slick-next {
  width: 9px;
  height: 15px;
  display: block;
  right: -15px;
  background: url("../img/default/sprite.png") -10px -90px no-repeat;
}
.section_unidades .list .dados .contato-unidades .slick-prev {
  width: 9px;
  height: 15px;
  display: block;
  left: -15px;
  background: url("../img/default/sprite.png") 0 -90px no-repeat;
}
.section_unidades .list .dados .item {
  height: 190px;
  display: block;
  width: 100%;
  float: left;
  padding: 12% 9%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section_unidades .list .dados .item:hover {
  background-color: #313068;
}
.section_unidades .list .dados .item:hover .title {
  color: #35bfae;
}
.section_unidades .list .dados .item:hover .desc {
  color: #ffffff;
}
.section_unidades .list .dados .item:hover:after {
  opacity: 1;
}
.section_unidades .list .dados .item.active {
  background-color: #313068;
}
.section_unidades .list .dados .item.active .title {
  color: #35bfae;
}
.section_unidades .list .dados .item.active .desc {
  color: #ffffff;
}
.section_unidades .list .dados .item.active:after {
  opacity: 1;
}
.section_unidades .list .dados .item:after {
  position: absolute;
  bottom: -14px;
  right: 38px;
  content: "";
  background: url("../img/default/seta-unidades.png") 0 0 no-repeat;
  width: 29px;
  height: 14px;
  z-index: 99;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section_unidades .list .dados .item .hidden {
  display: none;
}
.section_unidades .list .dados .item .title {
  display: block;
  margin-bottom: 5px;
  color: #313068;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section_unidades .list .dados .item .desc {
  font-size: 13px;
  display: block;
  margin-top: 12px;
  line-height: 19px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section_unidades .list .dados .item i {
  font-size: 14px;
  color: #35bfae;
  float: left;
  display: block;
  margin-right: 5px;
  margin-top: 3px;
}
.section_unidades .list .mapa {
  width: 100%;
  height: 390px;
  display: block;
  margin-top: -14px;
  position: relative;
  z-index: 1;
  background: #f1f1f1;
}
.section_unidades .list .mapa .spinner {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 70px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section_unidades .list .mapa .spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.section_unidades .list .mapa .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.section_unidades .list .mapa .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.section_unidades .list .mapa .actual-map {
  position: relative;
  z-index: 2;
}
.section_unidades .list .mapa .actual-map iframe {
  width: 100%;
  height: 390px;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media only screen and (max-width: 768px) {
  .section_contato .wrap form {
    width: 95%;
  }
  .section_unidades .list .dados .contato-unidades .slick-next {
    right: -12px;
  }
  .section_unidades .list .dados .contato-unidades .slick-prev {
    left: -12px;
  }
}
@media only screen and (max-width: 500px) {
  .section_contato .wrap form .width-50 {
    width: 100%;
  }
  .section_unidades .list .mapa,
.section_unidades .list .mapa iframe {
    height: 200px !important;
  }
  .section_unidades .list .dados .contato-unidades .slick-next {
    right: -5px;
  }
  .section_unidades .list .dados .contato-unidades .slick-prev {
    left: -5px;
  }
  .section_unidades .list .dados .item {
    padding: 7% 9%;
  }
  .section_unidades .list .dados .item .title {
    line-height: 20px;
  }
  .section_unidades .list .dados .item .desc {
    margin-top: 5px;
  }
}
/*********************** LOGIN **********************/
.section-login {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  background-color: #f1f1f1;
}
.section-login .wrap {
  padding: 100px 0;
}
.section-login .wrap .box-50 {
  width: 50%;
  height: auto;
  padding: 0 10%;
  float: left;
  position: relative;
  display: table;
}
.section-login .wrap .box-50:after {
  width: 1px;
  height: 255px;
  background-color: #d8d8d8;
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.section-login .wrap .box-50:last-child:after {
  display: none;
}
.section-login .wrap .box-50 h3 {
  font-size: 40px;
  text-align: center;
  display: block;
  margin-bottom: 25px;
}
.section-login .wrap .box-50 .desc {
  display: block;
  margin-bottom: 25px;
  line-height: 22px;
}
.section-login .wrap .box-50 input {
  margin-bottom: 10px;
}
.section-login .wrap .box-50 .cadeado {
  margin: 0 auto;
  display: table;
  float: none;
  margin-bottom: 25px;
  width: 95px;
  height: 95px;
}
.section-login .wrap .box-50 .cadeado .sprite {
  background-position: -26px -90px;
  width: 33px;
  height: 40px;
  display: table;
  margin: 0 auto;
  margin-top: 18px;
}
.section-login .wrap .box-50.cadastrado .submit {
  float: right !important;
}
.section-login .wrap .box-50.cadastrado a {
  color: #35bfae;
  margin-top: 15px;
  display: block;
}
.section-login .wrap .box-50.cadastrado a:hover {
  text-decoration: underline;
}

.section-agradecimento {
  width: 100%;
  height: auto;
  display: table;
  padding: 80px 0;
  background-color: #f1f1f1;
}
.section-agradecimento .wrap {
  width: 800px;
}
.section-agradecimento .wrap h3, .section-agradecimento .wrap .desc {
  margin-bottom: 50px;
}
.section-agradecimento .wrap h3 a, .section-agradecimento .wrap .desc a {
  color: #35bfae;
  display: block;
}
.section-agradecimento .wrap h3 a:hover, .section-agradecimento .wrap .desc a:hover {
  text-decoration: underline;
}
.section-agradecimento .wrap .submit {
  margin: 0 auto;
  display: table;
  float: none;
}

@media only screen and (max-width: 992px) {
  .section-login .wrap .box-50 {
    padding: 0 5%;
  }
  .section-agradecimento .wrap {
    width: 95%;
  }
}
@media only screen and (max-width: 768px) {
  .area-login .lb-cadastro {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .section-login .wrap {
    position: relative;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
    top: 0;
  }
  .section-login .wrap .box-50 {
    padding: 30px 0;
    width: 100%;
  }
  .section-login .wrap .box-50:after {
    display: none;
  }
  .section-login .wrap .box-50.cadastrado a {
    margin-top: 0px;
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .section-login .wrap .box-50.cadastrado .submit {
    float: none !important;
    margin: 0 auto;
    display: table;
  }
  .section-agradecimento .wrap .submit.submit-maior {
    padding: 15px 35px;
    font-size: 14px;
  }
  .section-agradecimento .wrap h3 {
    font-size: 40px;
  }
  .area-login .lb-cadastro .width-50 {
    width: 100%;
  }
  .area-login .lb-cadastro {
    padding: 35px 30px;
  }
}
/*********************** OPÇÕES **********************/
.card-frete-loading {
  width: 100%;
  text-align: center;
}
.card-frete-loading img {
  display: inline-block;
}

.opcoes div,
.opcoes p,
.opcoes span {
  color: inherit;
  font-size: 1em;
  line-height: 1;
}
.opcoes .opcao {
  border: 1px solid #d8d8d8;
  color: #464646;
  display: inline-block;
  width: 100%;
  margin: 3px 0;
  padding: 18px;
}
.opcoes .opcao .nome {
  color: #313068;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 20px;
  font-style: italic;
}
.opcoes .opcao .nome .bull {
  border: 1px solid #d8d8d8;
  border-radius: 100%;
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 20px 0 0;
  vertical-align: middle;
}
.opcoes .opcao .nome span {
  display: inline-block;
  vertical-align: middle;
}
.opcoes .opcao.active .bull {
  background-color: #35bfae !important;
  -webkit-box-shadow: inset 0px 0px 0px 3px #f1f1f1 !important;
          box-shadow: inset 0px 0px 0px 3px #f1f1f1 !important;
}
.opcoes .opcao .valor {
  margin: 6px 40px 0 0;
}
.opcoes .opcao.retirar .enderecos {
  border-top: 1px solid #d8d8d8;
  display: none;
  width: 100%;
  margin: 18px 0 0 0;
  padding: 0 0 0 50px;
}
.opcoes .opcao.retirar .enderecos.open {
  display: inline-block;
}
.opcoes .opcao.retirar .enderecos .endereco {
  display: inline-block;
  width: 100%;
  line-height: 20px;
  margin: 18px 0;
  padding: 0 15px 0 34px;
  position: relative;
}
.opcoes .opcao.retirar .enderecos .endereco span {
  display: block;
  font-weight: 700;
  line-height: 20px;
}
.opcoes .opcao.retirar .enderecos .endereco span:before {
  border: 1px solid #d8d8d8;
  border-radius: 100%;
  content: "";
  height: 16px;
  width: 16px;
  left: 0;
  margin: 0 20px 0 0;
  position: absolute;
  top: 0;
}
.opcoes .opcao.retirar .enderecos .endereco.active span:before {
  background-color: #35bfae !important;
  -webkit-box-shadow: inset 0px 0px 0px 3px #f1f1f1 !important;
          box-shadow: inset 0px 0px 0px 3px #f1f1f1 !important;
}
.opcoes .opcao.active .nome span:before {
  background-color: red;
}

/*********************** PAGAMENTO **********************/
.area-payment .header_logado_menu {
  display: none;
}

.area-success .header_logado_menu {
  display: none;
}

.section-pagamento {
  width: 100%;
  height: auto;
  display: table;
  padding: 80px 0;
  background-color: #f1f1f1;
}
.section-pagamento h3 {
  margin-bottom: 25px;
}
.section-pagamento .box-etapas {
  border-top: 1px solid #d8d8d8;
  padding: 75px 0 0 0;
  margin-top: 35px;
  width: 100%;
  height: auto;
  text-align: left;
  display: table;
}
.section-pagamento .box-etapas .etapa {
  width: 33%;
  float: left;
  height: auto;
  display: table;
  padding: 0 2.5%;
  border-right: 1px solid #d8d8d8;
}
.section-pagamento .box-etapas .etapa:last-child {
  border: 0;
}
.section-pagamento .box-etapas .etapa.etapa-1 > .wrapper {
  margin: 0 0 50px 0;
}
.section-pagamento .box-etapas .etapa.etapa-1 .novo-endereco {
  color: #fff;
  display: inline-block;
  margin: 50px 0 0 0;
  padding: 13px 25px;
}
.section-pagamento .box-etapas .etapa.etapa-1 .novo-endereco:hover {
  text-decoration: none;
}
.section-pagamento .box-etapas .etapa.etapa-2 {
  position: relative;
}
.section-pagamento .box-etapas .etapa.etapa-2 .overlay-not-used {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 241, 241, 0.75);
  z-index: 10;
}
.section-pagamento .box-etapas .etapa.etapa-2 .submit-menor {
  text-decoration: none;
  float: right !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 30px !important;
  font-size: 20px !important;
  border: 3px solid rgba(49, 48, 104, 0.3) !important;
  background-color: #313068 !important;
  margin: 5px 0 0 !important;
}
.section-pagamento .box-etapas .etapa.etapa-2 .submit-menor:hover {
  border: 3px solid rgba(49, 48, 104, 0.5) !important;
}
.section-pagamento .box-etapas .etapa.etapa-2 .submit-menor i {
  margin: 0 !important;
  display: inline !important;
}
.section-pagamento .box-etapas .etapa.etapa-2 .endereco-entrega {
  margin-bottom: 20px;
}
.section-pagamento .box-etapas .etapa.etapa-2 .bootstrap-select {
  margin-bottom: 20px;
}
.section-pagamento .box-etapas .etapa.etapa-2 #freightOptions {
  position: relative;
}
.section-pagamento .box-etapas .etapa.etapa-2 #freightOptions .full-loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 241, 241, 0.75);
}
.section-pagamento .box-etapas .etapa.etapa-2 #freightOptions .full-loader .card-frete-loading {
  position: absolute;
  left: 50%;
  top: 22px;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: block !important;
}
.section-pagamento .box-etapas .etapa .direcionado {
  display: block;
  margin: 15px 0;
  opacity: 0.5;
  text-align: center;
}
.section-pagamento .box-etapas .etapa #payment .submit.submit-maior {
  background-color: #35bfae;
  border-color: rgba(53, 191, 174, 0.3) !important;
}
.section-pagamento .box-etapas .etapa #payment .submit.submit-maior:hover {
  border-color: rgba(53, 191, 174, 0.6) !important;
}
.section-pagamento .box-etapas .etapa .efetuar-pagamento {
  margin-top: 30px;
}
.section-pagamento .box-etapas .etapa .efetuar-pagamento.sending {
  cursor: default;
  opacity: 0.3;
}
.section-pagamento .box-etapas .etapa .title {
  font-weight: 300;
  font-size: 24px;
  text-align: left;
  margin-bottom: 30px;
  display: block;
  line-height: 48px;
}
.section-pagamento .box-etapas .etapa .title .submit {
  width: 50px;
  height: 50px;
  float: left;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  line-height: 35px;
  text-align: center;
  margin-right: 5px;
}
.section-pagamento .box-etapas .etapa .title-section {
  font-weight: 600;
  font-style: italic;
  color: #313068;
  font-size: 20px;
  display: block;
  margin-bottom: 15px;
  float: left;
  letter-spacing: -1px;
}
.section-pagamento .box-etapas .etapa .title-section i {
  display: block;
  float: right;
  margin-top: 6px;
  margin-left: 10px;
  color: #35bfae;
  font-size: 15px;
}
.section-pagamento .box-etapas .etapa .title-section a {
  margin-top: 0;
  display: inline-block;
}
.section-pagamento .box-etapas .etapa .title-section a:hover .hover {
  opacity: 1;
}
.section-pagamento .box-etapas .etapa .title-section .hover {
  position: absolute;
  left: -5px;
  top: -30px;
  display: block;
  border: 1px solid #464646;
  text-align: center;
  display: block;
  width: 150px;
  font-weight: 300;
  letter-spacing: 0.2px;
  opacity: 0;
  background-color: #f1f1f1;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.section-pagamento .box-etapas .etapa .cupom {
  width: 100%;
  height: auto;
  display: table;
  margin-bottom: 20px;
}
.section-pagamento .box-etapas .etapa .cupom input {
  width: 71%;
  float: left;
}
.section-pagamento .box-etapas .etapa .cupom .submit {
  padding: 11px 29px;
  width: auto;
  font-size: 14px !important;
}
.section-pagamento .box-etapas .etapa .cupom .valor-cupom {
  width: 100%;
  display: block;
  color: #313068;
  margin-top: 0;
  margin-bottom: 20px;
  clear: both;
  float: left;
}
.section-pagamento .box-etapas .etapa .forma-pagamento {
  width: 100%;
  height: auto;
  margin-top: 35px;
  display: table;
}
.section-pagamento .box-etapas .etapa .forma-pagamento .item {
  cursor: pointer;
  width: 100%;
  height: auto;
  display: table;
  border: 1px solid #c1c1c1;
  padding: 15px 20px;
  margin-bottom: 15px;
}
.section-pagamento .box-etapas .etapa .forma-pagamento .item.cartao .sprite {
  background-position: 0 -155px;
  width: 46px;
  height: 32px;
  display: block;
  float: right;
}
.section-pagamento .box-etapas .etapa .forma-pagamento .item.boleto .sprite {
  background-position: 0 -191px;
  width: 37px;
  height: 32px;
  display: block;
  float: right;
}
.section-pagamento .box-etapas .etapa .forma-pagamento input[type=checkbox] + label::before,
.section-pagamento .box-etapas .etapa .forma-pagamento input[type=radio] + label::before {
  border-radius: 5px;
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 1px solid #c1c1c1;
}
.section-pagamento .box-etapas .etapa .forma-pagamento input[type=checkbox] + label::after,
.section-pagamento .box-etapas .etapa .forma-pagamento input[type=radio] + label::after {
  border-radius: 5px;
  width: 12px;
  height: 12px;
}
.section-pagamento .box-etapas .etapa .forma-pagamento input[type=checkbox] + label span,
.section-pagamento .box-etapas .etapa .forma-pagamento input[type=radio] + label span {
  letter-spacing: -1px;
  margin-top: -3px;
  font-weight: 600;
  font-style: italic;
  color: #313068 !important;
  font-size: 20px !important;
  display: block;
}
.section-pagamento .box-etapas .etapa .forma-pagamento input[type=checkbox] + label,
.section-pagamento .box-etapas .etapa .forma-pagamento input[type=radio] + label {
  margin-top: 5px;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao {
  width: 100%;
  height: auto;
  display: table;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-forma-pagamento {
  width: 100%;
  height: auto;
  display: table;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-forma-pagamento .divisao {
  display: inline-block;
  width: 100%;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-forma-pagamento .divisao .list {
  width: 100%;
  height: auto;
  display: table;
  margin-bottom: 35px;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-forma-pagamento .divisao .list li {
  float: left;
  width: 20%;
  display: block;
  margin-bottom: 0;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-forma-pagamento .divisao .list li input[type=radio] + label::before {
  border-radius: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #c1c1c1;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-forma-pagamento .divisao .list li input[type=radio] + label::after {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c1c1c1;
  top: 4px;
  left: 2px;
  content: "";
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-forma-pagamento .divisao .list li input[type=radio] + label span {
  letter-spacing: -1px;
  margin-top: -3px;
  font-weight: 600;
  font-style: italic;
  color: #313068 !important;
  font-size: 20px !important;
  display: block;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-forma-pagamento .divisao .list li input[type=radio] + label {
  margin-top: 5px;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .submit {
  margin: 0 auto;
  display: table;
  float: none;
  font-size: 14px;
  margin-top: 25px;
  background-color: #35bfae;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .submit:hover {
  border: 5px solid rgba(53, 191, 174, 0.6) !important;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-cod-seguranca {
  position: absolute;
  background-color: #f1f1f1;
  width: 180px;
  height: auto;
  padding: 5px 15px;
  text-align: center;
  margin-top: -3%;
  margin-left: 2%;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-icone-seguranca {
  float: left;
  display: block;
  margin-left: 6px;
  margin-top: 12px;
}
.section-pagamento .box-etapas .etapa .content-pagamento-cartao .card-icone-seguranca i {
  font-size: 18px;
  color: #35bfae;
}
.section-pagamento .box-etapas .etapa .resumo-compra {
  width: 100%;
  height: auto;
  display: table;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-eventos {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  display: table;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-eventos li {
  padding: 15px 0;
  border-bottom: 1px solid #d8d8d8;
  width: 100%;
  height: auto;
  display: table;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-eventos li:last-child {
  border: 0;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-eventos li:first-child {
  padding-top: 0;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-eventos li b {
  font-weight: 600;
  font-style: italic;
  color: #313068;
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-valores {
  width: 100%;
  height: auto;
  display: table;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-valores b {
  display: block;
  font-weight: 600;
  font-style: italic;
  color: #313068;
  font-size: 20px;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-valores tr {
  border-top: 1px solid #d8d8d8;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-valores tr:first-child {
  padding-top: 0;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-valores tr:last-child {
  border-bottom: 1px solid #d8d8d8;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-valores tr td {
  padding: 7px 0;
  font-size: 16px;
}
.section-pagamento .box-etapas .etapa .resumo-compra .resumo-valores tr td.verde {
  font-size: 18px;
  font-weight: 700;
  color: #35bfae;
  padding: 25px 0;
}

.section-pay-pagseguro {
  padding: 100px 0;
}
.section-pay-pagseguro h3 {
  margin-bottom: 25px;
}

.section-sucesso {
  width: 100%;
  height: auto;
  display: table;
  padding: 80px 0;
  background-color: #f1f1f1;
}
.section-sucesso h3 {
  margin-bottom: 25px;
}
.section-sucesso .numero-pedido {
  color: #35bfae;
  font-size: 18px;
}
.section-sucesso .boleto {
  margin: 0 auto;
  display: table;
  float: none;
  padding: 25px 0;
}
.section-sucesso .submit-boleto {
  display: none;
}

@media only screen and (max-width: 1279px) {
  .section-pagamento .box-etapas .etapa .cupom input {
    width: 61%;
  }
  .section-pagamento .box-etapas .etapa .title {
    line-height: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .section-pagamento .box-etapas .etapa {
    width: 100%;
    border: 0;
    padding: 0;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .section-pagamento .box-etapas .etapa .title {
    line-height: 48px;
  }
  .section-pagamento .box-etapas .etapa .cupom {
    width: 60%;
  }
  .section-pagamento .box-etapas .etapa .cupom input {
    width: 68%;
  }
  .section-sucesso .boleto {
    display: none;
  }
  .submit-boleto {
    display: table !important;
  }
}
@media only screen and (max-width: 500px) {
  .section-pagamento .box-etapas .etapa .cupom {
    width: 100%;
  }
  .section-pagamento .box-etapas .etapa .title {
    line-height: 28px;
  }
  .section-pagamento .box-etapas .etapa .cupom input {
    width: 100%;
  }
  .section-pagamento .box-etapas .etapa .title-section .hover {
    left: auto;
    right: -15px;
  }
}
/*********************** DOWNLOAD **********************/
.section_download {
  width: 100%;
  height: auto;
  display: table;
  padding: 60px 0;
}
.section_download .list {
  width: 100%;
  height: auto;
  padding-bottom: 30px;
  display: table;
}
.section_download .list li {
  border: 1px solid #e1e1e1;
  border-bottom: 0;
  width: 100%;
  display: block;
}
.section_download .list li:last-child {
  border-bottom: 1px solid #e1e1e1;
}
.section_download .list li a {
  padding: 15px 20px;
  width: 100%;
  height: auto;
  display: table;
  color: #35bfae;
  line-height: 48px;
  font-size: 18px;
}
.section_download .list li a:hover {
  text-decoration: underline;
}
.section_download .list li a .submit {
  float: right;
  display: table;
  padding: 10px 35px;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
.section_download .list li a .submit .sprite {
  background-position: 0 -134px;
  width: 13px;
  height: 17px;
  display: block;
  float: left;
  margin-right: 10px;
}
.section_download .filtro {
  width: 100%;
  height: auto;
  padding: 20px 0;
  display: table;
  margin-top: 60px;
  border-top: 1px solid #e1e1e1;
}
.section_download .filtro .content {
  float: right;
  width: 430px;
}
.section_download .filtro .content .title {
  float: left;
  font-weight: 300i;
  font-style: italic;
  font-size: 24px;
  margin-top: 8px;
  margin-bottom: 0;
}
.section_download .filtro .content form {
  width: 80%;
  float: right;
}
.section_download .filtro .content form .bootstrap-select {
  background-color: #f1f1f1;
}

@media only screen and (max-width: 500px) {
  .section-_download .filtro .content {
    width: 100%;
  }
  .section-_download .filtro .content .title {
    width: 100%;
    text-align: center;
  }
  .section-_download .filtro .content form {
    width: 100%;
    padding-top: 15px;
  }
  .section-_download .list li a:hover {
    text-align: center;
  }
  .section-_download .list li a .submit {
    float: none;
    margin: 0 auto;
    display: table;
  }
}
/*********************** DOWNLOAD **********************/
.section_meus_dados {
  width: 100%;
  height: auto;
  display: table;
  padding: 60px 0;
}
.section_meus_dados form {
  width: 640px;
  display: table;
  margin: 0 auto;
  margin-top: 35px;
}
.section_meus_dados form.form-alterar-senha {
  margin-top: 0;
}
.section_meus_dados form.form-alterar-senha .button-submit {
  width: 100%;
  clear: both;
  padding-top: 20px;
}
.section_meus_dados form .disabled input, .section_meus_dados form .disabled label {
  cursor: not-allowed;
}
.section_meus_dados form .width-100 {
  width: 100%;
}
.section_meus_dados form .width-50 {
  width: 48.4%;
}
.section_meus_dados form .bootstrap-select, .section_meus_dados form input, .section_meus_dados form select, .section_meus_dados form textarea {
  margin-bottom: 10px;
  background-color: #f1f1f1;
}
.section_meus_dados .documentacao {
  padding-top: 55px;
  width: 100%;
  height: auto;
  display: block;
  padding-bottom: 45px;
  min-height: 490px;
}
.section_meus_dados .documentacao .title {
  margin-bottom: 22px;
  display: block;
  color: #313068;
}
.section_meus_dados .documentacao li {
  background: none !important;
  padding: 0;
  float: left;
  width: 33%;
  margin-bottom: 20px;
  border: 0;
}
.section_meus_dados .documentacao li.form-outros {
  width: 66%;
}
.section_meus_dados .documentacao li.form-outros .lb-check {
  float: left;
  margin-top: 11px;
}
.section_meus_dados .documentacao li.form-outros input {
  width: 77%;
  display: none;
  float: right;
  margin-top: 0;
}
.section_meus_dados .documentacao input[type=checkbox] + label::before, .section_meus_dados .documentacao input[type=radio] + label::before {
  background-color: #f1f1f1;
}

/*********************** INSCRICAO **********************/
.area-inscricao .header_logado_menu {
  display: none;
}

.section_inscricao {
  width: 100%;
  padding: 40px 0;
  height: auto;
  display: table;
}
.section_inscricao .wrap {
  width: 580px;
}
.section_inscricao .wrap .list {
  width: 100%;
  height: auto;
  display: table;
  margin-top: 40px;
}
.section_inscricao .wrap .list li {
  width: 100%;
  height: auto;
  display: table;
  position: relative;
  margin-bottom: 30px;
  background-color: #313068;
}
.section_inscricao .wrap .list li:last-child {
  margin-bottom: 0;
}
.section_inscricao .wrap .list li:hover .content {
  background-color: #e3e1e1;
}
.section_inscricao .wrap .list li .data {
  width: 16%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: block;
}
.section_inscricao .wrap .list li .data:after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  left: -20px;
  top: 50%;
  margin-top: -20px;
  content: "";
  background: url("../img/default/inscricoes.png") center center no-repeat #313068;
}
.section_inscricao .wrap .list li .data span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  font-style: italic;
  font-size: 22px;
}
.section_inscricao .wrap .list li .content {
  width: 84%;
  float: right;
  background-color: #f1f1f1;
  position: relative;
  padding: 4% 3%;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.section_inscricao .wrap .list li .content b {
  font-size: 17px;
  display: block;
}
.section_inscricao .wrap .list li .content .desc {
  float: left;
  width: 68%;
  display: block;
}
.section_inscricao .wrap .list li .content .submit {
  font-size: 14px;
  float: right;
  padding: 9px 30px;
  font-size: 11px;
  background-color: #35bfae !important;
  text-align: center;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.section_inscricao_formulario {
  width: 100%;
  padding: 70px 0;
  height: auto;
  display: table;
  background-color: #f1f1f1;
}
.section_inscricao_formulario .wrap {
  width: 650px;
}
.section_inscricao_formulario .divisao {
  width: 100%;
  height: auto;
  display: table;
}
.section_inscricao_formulario .divisao.disabled {
  opacity: 0.35;
  position: relative;
}
.section_inscricao_formulario .divisao.disabled:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section_inscricao_formulario .divisao h3 {
  margin-bottom: 30px;
}
.section_inscricao_formulario .divisao .width-50 {
  width: 49.3%;
}
.section_inscricao_formulario .divisao .bootstrap-select {
  margin-bottom: 10px;
}
.section_inscricao_formulario .desc_esgotado {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  display: block;
  line-height: 32px;
  padding-top: 30px;
}
.section_inscricao_formulario .desc_esgotado a {
  color: #35bfae;
}
.section_inscricao_formulario .desc_esgotado a:hover {
  text-decoration: underline;
}
.section_inscricao_formulario .desc_esgotado span {
  font-size: 18px;
  font-weight: 300;
}
.section_inscricao_formulario .desc_esgotado .font14 {
  font-size: 14px;
}
.section_inscricao_formulario .submit-maior {
  margin-top: 30px;
}
.section_inscricao_formulario .nivel {
  width: 100%;
  height: auto;
  display: table;
}
.section_inscricao_formulario .nivel .desc {
  float: left;
  background-color: #35bfae;
  color: #ffffff;
  text-align: center;
  width: 14%;
  height: 46px;
  font-weight: 600;
  line-height: 45px;
}
.section_inscricao_formulario .nivel .bootstrap-select {
  width: 84.5% !important;
  float: right;
}
.section_inscricao_formulario .observation {
  color: red;
  display: block;
  width: 100%;
  margin: -5px 0 10px 5px;
  line-height: 120%;
}
.section_inscricao_formulario .observation.tela-inscricao-observacao-inscricao {
  color: #464646;
  margin-top: 15px;
}

.section_dados_evento .wrap {
  width: 915px;
}
.section_dados_evento .wrap .title {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 45px;
  display: block;
}
.section_dados_evento .wrap ul {
  width: 100%;
  height: auto;
  display: table;
}
.section_dados_evento .wrap ul li {
  float: left;
  display: block;
  padding: 0 3%;
  color: #838383;
  border-right: 1px solid #e7e7e7;
  width: 30%;
  min-height: 115px;
}
.section_dados_evento .wrap ul li:first-child {
  width: 40%;
}
.section_dados_evento .wrap ul li:last-child {
  border: 0;
}
.section_dados_evento .wrap ul li b {
  display: block;
  color: #313068;
  font-weight: 600;
  font-size: 16px;
}
.section_dados_evento .wrap ul li i {
  font-size: 15px;
  color: #464646;
  display: block;
  float: left;
  margin-right: 7px;
  margin-top: 6px;
}
.section_dados_evento .wrap .extra-info {
  width: 100%;
  padding: 0 3%;
  margin: 40px auto 0;
  text-align: justify;
  color: #838383;
}

.submit.submit-maior.nao-possuo-cnpj {
  float: right !important;
  margin: -30px 0 30px !important;
  border-width: 3px !important;
  padding: 10px 20px !important;
}

.submit.submit-maior.button-with-loader {
  background-color: #35bfae !important;
  border: 3px solid rgba(53, 191, 174, 0.3) !important;
  position: absolute;
  right: 5px;
  top: 5px;
  display: block !important;
  padding: 2px 20px !important;
  margin: 0 !important;
}
.submit.submit-maior.button-with-loader:hover {
  border: 3px solid rgba(53, 191, 174, 0.6) !important;
}
.submit.submit-maior.button-with-loader span {
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 1;
  color: white;
}
.submit.submit-maior.button-with-loader svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.submit.submit-maior.button-with-loader:hover svg {
  stroke: #FFFFFF;
}
.submit.submit-maior.button-with-loader.loading span {
  opacity: 0;
}
.submit.submit-maior.button-with-loader.loading svg {
  opacity: 1;
}

@media only screen and (max-width: 1279px) {
  .section_inscricao .wrap {
    width: 50%;
  }
  .section_inscricao.section_dados_evento .wrap {
    width: 80% !important;
  }
}
@media only screen and (max-width: 992px) {
  .section_inscricao .wrap {
    width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  .section_inscricao .wrap {
    width: 80%;
  }
  .section_inscricao .wrap .list li .content .desc {
    width: 100%;
    margin-bottom: 20px;
  }
  .section_inscricao .wrap .list li .content .submit {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    float: none;
    margin: 0 auto;
    display: table;
  }
  .section_inscricao_formulario .wrap {
    width: 90%;
  }
  .section_inscricao .wrap {
    width: 95%;
  }
  .section_inscricao.section_dados_evento .wrap {
    width: 95% !important;
  }
  .section_inscricao .wrap .list li .data {
    width: 100%;
    height: 50px;
    position: relative;
  }
  .section_inscricao .wrap .list li .data:after {
    display: none;
  }
  .section_inscricao .wrap .list li .content {
    width: 100%;
    text-align: center;
  }
  .section_dados_evento .wrap ul li {
    width: 100% !important;
    border-right: 0;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 10px;
    padding-bottom: 10px;
    min-height: auto;
  }
}
@media only screen and (max-width: 500px) {
  .section_inscricao_formulario .divisao h3 {
    font-size: 38px;
  }
  .section_inscricao_formulario .divisao .width-50 {
    width: 100%;
  }
  .section_inscricao_formulario .nivel .desc {
    width: 26%;
  }
  .section_inscricao_formulario .nivel .bootstrap-select {
    width: 71% !important;
  }
}
body.area-estudosonline {
  position: static;
}

/*********************** ESTUDOS ONLINE **********************/
.section-estudos-online {
  width: 100%;
  height: auto;
  display: table;
  padding: 65px 0;
}
.section-estudos-online div.hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 30px 0;
  padding: 0;
}
.section-estudos-online div.hr:before {
  content: " ";
  display: table;
}
.section-estudos-online div.hr:after {
  clear: both;
  content: "";
  display: table;
}
.section-estudos-online .box-list {
  clear: both;
}
.section-estudos-online .box-list .box-item {
  position: relative;
}
.section-estudos-online .box-list .box-item .position-bottom {
  width: 100%;
  display: block;
}
.section-estudos-online .box-list .box-item .valores {
  min-height: 100px;
}
.section-estudos-online .box-list li {
  width: 21%;
  height: auto;
  display: table;
  float: left;
  margin: 0 2% 40px 2%;
}
.section-estudos-online .box-list li a:hover .banner {
  opacity: 0.7;
}
.section-estudos-online .box-list li.estudos-online-interna {
  margin: 0;
}
.section-estudos-online .box-list li.estudos-online-interna.fixed {
  position: fixed;
  width: 13.7%;
  top: 65px;
}
.section-estudos-online .box-list li.estudos-online-interna.absolute {
  position: absolute;
  width: 21%;
  bottom: 0;
}
.section-estudos-online .box-list li.estudos-online-interna .banner {
  margin-bottom: 0 !important;
}
.section-estudos-online .box-list li.estudos-online-interna .valores {
  margin-top: 0;
}
.section-estudos-online .box-list li.estudos-online-interna .valores.pacote {
  min-height: 160px;
}
.section-estudos-online .box-list li.estudos-online-interna .valores.first {
  border-bottom: medium none;
  margin-top: 0;
  margin-bottom: 0;
}
.section-estudos-online .box-list li.estudos-online-interna .submit {
  line-height: 18px;
  font-size: 17px;
  padding: 15px 40px;
  text-transform: uppercase !important;
  background-color: #35bfae !important;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
}
.section-estudos-online .box-list li.estudos-online-interna .submit:hover {
  border: 5px solid rgba(53, 191, 174, 0.6) !important;
}
.section-estudos-online .box-list li.estudos-online-interna .submit .sprite {
  background-position: -20px -133px;
  width: 23px;
  height: 19px;
  float: left;
  margin-right: 10px;
  display: block;
}
.section-estudos-online .box-list li .banner {
  width: 100%;
  height: 240px;
  display: block;
  position: relative;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin-bottom: 15px;
}
.section-estudos-online .box-list li .banner .mask-img {
  position: relative;
  width: 100%;
  height: 100%;
  display: table;
}
.section-estudos-online .box-list li .banner .mask-img:after {
  width: 214px;
  height: 75px;
  display: block;
  background: url("../img/default/detalhe-cursos-1.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  right: 15px;
  content: "";
}
.section-estudos-online .box-list li .banner .mask-img:before {
  width: 185px;
  height: 56px;
  display: block;
  background: url("../img/default/detalhe-cursos-2.png") 0 0 no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
}
.section-estudos-online .box-list li .banner .mask-img span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #ffffff;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 36px;
  text-transform: uppercase;
}
.section-estudos-online .box-list li .submit {
  font-size: 14px;
}

.valores {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.valores .centralizar {
  width: 100%;
  left: 50%;
  top: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.valores .title {
  color: #313068;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-style: italic;
  margin-bottom: 8px;
  display: block;
  font-size: 20px;
}
.valores li {
  width: 100% !important;
  height: auto;
  margin-bottom: 0 !important;
  display: table;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}
.valores li b {
  display: block;
  color: #35bfae;
  font-size: 18px;
  margin-top: -5px;
}
.valores li:last-child {
  margin-bottom: 0;
}

.section-estudos-online-interna div.hr {
  margin: 15px 0;
}
.section-estudos-online-interna .box-left {
  width: 21%;
}
.section-estudos-online-interna .box-left li {
  width: 100%;
}
.section-estudos-online-interna .box-right {
  width: 75%;
  float: right;
  display: block;
  height: auto;
}
.section-estudos-online-interna .box-right .title {
  font-weight: 700;
  font-style: italic;
  font-size: 30px;
  color: #313068;
  display: block;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.section-estudos-online-interna .box-right .desc {
  display: block;
  margin-bottom: 25px;
}
.section-estudos-online-interna .box-right .desc * {
  max-width: 100%;
}
.section-estudos-online-interna .box-right .filtro {
  border-top: 1px solid #e5e5e5;
  padding: 15px 0 9px;
  width: 100%;
  height: auto;
  display: table;
}
.section-estudos-online-interna .box-right .filtro .content {
  float: left;
  width: 595px;
}
.section-estudos-online-interna .box-right .filtro .content .title {
  float: left;
  font-weight: 300 !important;
  font-style: italic !important;
  font-size: 24px !important;
  color: #4c4c4c !important;
  margin-top: 8px !important;
  letter-spacing: 0;
  margin-bottom: 0;
}
.section-estudos-online-interna .box-right .filtro .content form {
  width: 64%;
  float: left;
  margin-left: 20px;
}
.section-estudos-online-interna .box-right .filtro .content form .bootstrap-select {
  background-color: #f1f1f1;
}
.section-estudos-online-interna .box-right .listagem-pacotes {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section-estudos-online-interna .box-right .listagem-pacotes hr {
  width: 100%;
  border: medium none;
  border-top: 1px solid #e5e5e5;
  clear: both;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote {
  position: relative;
  width: 50%;
  float: left;
  display: block;
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
  padding-right: 5%;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote.avulso {
  padding-bottom: 125px;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote:nth-child(2n+2) {
  /*padding-right: 0;*/
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .title {
  margin-bottom: 17px;
  float: left;
  width: 100%;
  height: auto;
  position: relative;
  display: table;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .title.no-icon span {
  left: 0;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .title.no-icon .submit {
  visibility: hidden;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .title span {
  position: absolute;
  left: 90px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #313068;
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  float: left;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .title .submit {
  position: relative;
  left: 0;
  top: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 75px;
  height: 75px;
  margin-right: 10px;
  display: block;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .title .submit img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .desc h1 {
  font-weight: 600;
  font-style: italic;
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .desc li {
  width: 100%;
  float: left;
  line-height: 14px;
  margin-bottom: 12px;
  display: block;
  padding-left: 23px;
  margin-left: 0;
  background: url("../img/default/list-estudos-online.png") top left no-repeat;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .desc a {
  font-size: 16px;
  color: #35bfae;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .desc a:hover {
  text-decoration: underline;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores {
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 1px solid #e5e5e5;
  padding: 10px 0 13px 0;
  width: 91%;
  height: auto;
  display: table;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores.box-valores-interno {
  padding: 26px 0;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores .valores {
  padding: 0;
  border: 0;
  margin: 0;
  width: 180px;
  float: left;
}
.section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores .valores.valores-interno {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.submit-adicionar {
  font-size: 14px !important;
  float: right !important;
  padding: 15px 0 !important;
  width: 210px !important;
}
.submit-adicionar .centralizar {
  margin: 0 auto;
  display: table;
}
.submit-adicionar span {
  color: #fff;
  font-size: 14px;
  float: left;
}
.submit-adicionar .texto-1 {
  display: block;
}
.submit-adicionar .texto-2 {
  display: none;
}
.submit-adicionar i {
  font-size: 16px;
  color: #fff;
  margin-top: 5px;
  float: left;
  display: none;
  margin-right: 11px;
}
.submit-adicionar.adicionado {
  background-color: #35bfae !important;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
}
.submit-adicionar.adicionado:hover {
  border: 5px solid rgba(53, 191, 174, 0.6) !important;
}
.submit-adicionar.adicionado i {
  display: block;
}
.submit-adicionar.adicionado .texto-1 {
  display: none;
}
.submit-adicionar.adicionado .texto-2 {
  display: block;
}

.section-estudos-online-relacionados {
  background-color: #f1f1f1;
}
.section-estudos-online-relacionados div.hr {
  border-top-color: #AAA;
}

@media only screen and (max-width: 1279px) {
  .section-estudos-online .box-list li.estudos-online-interna .submit {
    padding: 15px 29px;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores .valores {
    float: none;
    margin: 0 auto;
    display: table;
    padding-bottom: 20px;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores .submit {
    float: none !important;
    margin: 0 auto;
    display: table;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores .valores.valores-interno {
    position: static;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote.avulso {
    padding-bottom: 200px;
  }
}
@media only screen and (max-width: 992px) {
  .section-estudos-online li {
    width: 29%;
  }
}
@media only screen and (max-width: 768px) {
  .section-estudos-online .box-list li {
    width: 100%;
    margin: 0;
  }
  .section-estudos-online-interna .box-right {
    width: 100%;
    padding-top: 30px;
  }
  .section-estudos-online-interna .box-left {
    width: 40%;
    margin: 0 auto;
    display: table;
    float: none !important;
    padding-bottom: 30px;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote.avulso {
    padding-bottom: 210px;
  }
  .section-estudos-online .box-list .box-item {
    height: auto !important;
    padding-bottom: 0;
  }
  .section-estudos-online .box-list .box-item .position-bottom {
    position: relative;
    padding-bottom: 20px;
  }
  .section-estudos-online .box-list li.estudos-online-interna.fixed, .section-estudos-online .box-list li.estudos-online-interna.absolute {
    position: relative;
    width: 100%;
    top: 0;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores .valores.valores-interno {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 500px) {
  .section-estudos-online .box-list li {
    width: 100%;
    margin: 0 0 40px 0;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote {
    width: 100%;
    border-top: 1px solid #e5e5e5;
    padding: 0;
    padding-bottom: 0 !important;
    padding-top: 20px;
    height: auto !important;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes hr {
    display: none;
  }
  .section-estudos-online-interna .box-right .filtro .content {
    width: 100%;
  }
  .section-estudos-online-interna .box-right .filtro .content .title {
    margin: 0;
    width: 100%;
    display: block;
    text-align: center;
  }
  .section-estudos-online-interna .box-right .filtro .content form {
    width: 100%;
    padding-top: 15px;
  }
  .section-estudos-online-interna .box-left {
    width: 100%;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores {
    position: relative;
    width: 100%;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores .valores {
    margin: 0 auto;
    display: table;
    float: none;
  }
  .section-estudos-online-interna .box-right .listagem-pacotes .box-pacote .box-valores .submit {
    margin: 15px auto;
    display: table;
    float: none;
  }
  .section-estudos-online-interna .bootstrap-select.btn-group .dropdown-menu .dropdown-menu li {
    width: 100% !important;
  }
}
/*********************** SEJA UM ASSOCIADOS **********************/
.section_proposta_de_valor {
  width: 100%;
  display: block;
  position: relative;
  padding-top: 70px;
}
.section_proposta_de_valor .wrap {
  width: 840px;
}
.section_proposta_de_valor .wrap .galeria-proposta-valor {
  text-align: center;
  font-weight: 700;
  margin: 50px 0;
}
.section_proposta_de_valor .wrap .galeria-proposta-valor .submit {
  width: 63px;
  height: 63px;
  display: table;
  margin: 0 auto;
  margin-bottom: 5px;
  float: none;
}
.section_proposta_de_valor .wrap .galeria-proposta-valor .submit img {
  margin: 0 auto;
  display: table;
}

.proposito-pv {
  padding: 75px 0;
}
.proposito-pv .desc {
  color: #ffffff;
}

.bg-cinza {
  background-color: #f1f1f1;
}

.wrap-pv {
  width: 840px !important;
}
.wrap-pv li {
  padding-right: 2%;
}

@media only screen and (max-width: 992px) {
  .section_proposta_de_valor .wrap {
    width: 95%;
  }
  .wrap-pv {
    width: 95% !important;
  }
}
.meus-pedidos-detalhe {
  padding: 60px 0;
  text-align: center;
}
.meus-pedidos-detalhe .wrap {
  max-width: 1031px;
}
.meus-pedidos-detalhe div,
.meus-pedidos-detalhe p,
.meus-pedidos-detalhe span {
  color: inherit;
  font-size: 1em;
  line-height: 1;
}
.meus-pedidos-detalhe small {
  font-size: 1em;
}
.meus-pedidos-detalhe h2 {
  font-weight: 100;
  font-size: 50px;
  margin: 0 0 35px 0;
}
.meus-pedidos-detalhe .desc {
  border-bottom: 1px solid #d8d8d8;
  display: block;
  margin: 0 0 65px 0;
  padding: 0 0 25px 0;
}
.meus-pedidos-detalhe .ref-voltar .ref {
  font-size: 11px;
  padding: 10px 0;
  text-transform: uppercase;
}
.meus-pedidos-detalhe .voltar {
  color: #35bfae;
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
}
.meus-pedidos-detalhe .confirmacao {
  background-color: #f6f6f6;
  border: 1px solid #d8d8d8;
  padding: 15px;
  text-align: center;
}
.meus-pedidos-detalhe .confirmacao .box-steps {
  width: 100%;
  margin: 0 auto;
  text-align: justify;
}
.meus-pedidos-detalhe .confirmacao .box-steps:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.meus-pedidos-detalhe .confirmacao .box-steps:before {
  content: "";
  display: block;
}
.meus-pedidos-detalhe .confirmacao .box-steps .step {
  display: inline-block;
  width: 150px;
  position: relative;
  text-align: center;
}
.meus-pedidos-detalhe .confirmacao .box-steps .step .ball {
  display: block;
  margin: 10px auto;
}
.meus-pedidos-detalhe .confirmacao .box-steps .step small {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
.meus-pedidos-detalhe .confirmacao.passo-1 .step-1 .ball, .meus-pedidos-detalhe .confirmacao.passo-0 .step-1 .ball {
  background-color: #35b7aa;
}
.meus-pedidos-detalhe .confirmacao.passo-2.three-steps .status-linha:before {
  width: 50%;
}
.meus-pedidos-detalhe .confirmacao.passo-2.four-steps .status-linha:before {
  width: 33.33%;
}
.meus-pedidos-detalhe .confirmacao.passo-2 .step-1 .ball,
.meus-pedidos-detalhe .confirmacao.passo-2 .step-2 .ball {
  background-color: #35b7aa;
}
.meus-pedidos-detalhe .confirmacao.passo-3.three-steps .status-linha:before {
  width: 100%;
}
.meus-pedidos-detalhe .confirmacao.passo-3.four-steps .status-linha:before {
  width: 66.66%;
}
.meus-pedidos-detalhe .confirmacao.passo-3 .step-1 .ball,
.meus-pedidos-detalhe .confirmacao.passo-3 .step-2 .ball,
.meus-pedidos-detalhe .confirmacao.passo-3 .step-3 .ball {
  background-color: #35b7aa;
}
.meus-pedidos-detalhe .confirmacao.passo-4 .status-linha:before {
  width: 100%;
}
.meus-pedidos-detalhe .confirmacao.passo-4 .step-1 .ball,
.meus-pedidos-detalhe .confirmacao.passo-4 .step-2 .ball,
.meus-pedidos-detalhe .confirmacao.passo-4 .step-3 .ball,
.meus-pedidos-detalhe .confirmacao.passo-4 .step-4 .ball {
  background-color: #35b7aa;
}
.meus-pedidos-detalhe .confirmacao .status-linha {
  background-color: #808080;
  height: 3px;
  width: 82.4%;
  left: 9.7%;
  position: absolute;
  top: 54%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.meus-pedidos-detalhe .confirmacao .status-linha:before {
  background-color: #35b7aa;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
}
.meus-pedidos-detalhe .confirmacao .step {
  display: inline-block;
  font-size: 11px;
}
.meus-pedidos-detalhe .confirmacao .step span {
  display: block;
  padding: 0 15%;
  text-transform: uppercase;
}
.meus-pedidos-detalhe .confirmacao .step .ball {
  background-color: #808080;
  border-radius: 100%;
  display: inline-block;
  height: 35px;
  width: 35px;
  margin: 10px 0;
  position: relative;
  z-index: 1;
}
.meus-pedidos-detalhe .confirmacao .step small {
  display: block;
}
.meus-pedidos-detalhe .table-pedidos {
  border: 1px solid #d8d8d8;
  display: block;
  font-size: 16px;
  width: 100%;
  line-height: 1;
  margin: -1px 0 0 0;
  padding: 20px;
  text-align: left;
}
.meus-pedidos-detalhe .table-pedidos thead {
  display: inline-block;
  width: 100%;
}
.meus-pedidos-detalhe .table-pedidos thead tr {
  display: inline-block;
  width: 100%;
  padding: 8px;
}
.meus-pedidos-detalhe .table-pedidos thead tr td {
  display: inline-block;
  font-size: 11px;
  width: 20%;
  text-transform: uppercase;
}
.meus-pedidos-detalhe .table-pedidos thead tr td.produto {
  width: 59%;
}
.meus-pedidos-detalhe .table-pedidos tbody {
  display: inline-block;
  width: 100%;
}
.meus-pedidos-detalhe .table-pedidos tbody tr {
  border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  display: inline-block;
  width: 100%;
  margin: 0 0 -1px 0;
  padding: 10px;
}
.meus-pedidos-detalhe .table-pedidos tbody tr td {
  display: inline-block;
  width: 20%;
}
.meus-pedidos-detalhe .table-pedidos tbody tr td.imagem-nome {
  width: 59%;
  min-height: 115px;
  position: relative;
}
.meus-pedidos-detalhe .table-pedidos tbody tr td.imagem-nome .nome {
  display: inline-block;
  position: absolute;
  margin-left: 45px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.meus-pedidos-detalhe .table-pedidos tfoot {
  display: inline-block;
  width: 100%;
}
.meus-pedidos-detalhe .table-pedidos tfoot tr {
  display: inline-block;
  width: 100%;
}
.meus-pedidos-detalhe .table-pedidos tfoot tr td {
  display: inline-block;
  width: 100%;
}
.meus-pedidos-detalhe .table-pedidos tfoot tr td .endereco {
  width: 45%;
  font-size: 14px;
  line-height: 28px;
  padding: 45px 0 25px 45px;
}
.meus-pedidos-detalhe .table-pedidos tfoot tr td .endereco small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
}
.meus-pedidos-detalhe .table-pedidos tfoot tr td .info-compra {
  width: 35%;
  padding: 45px 45px 25px 0;
}
.meus-pedidos-detalhe .table-pedidos tfoot tr td .info-compra .bloco {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  margin: 0 0 -1px 0;
  padding: 10px 0;
}
.meus-pedidos-detalhe .table-pedidos tfoot tr td .info-compra .bloco:before, .meus-pedidos-detalhe .table-pedidos tfoot tr td .info-compra .bloco:after {
  content: "";
  display: table;
}
.meus-pedidos-detalhe .table-pedidos tfoot tr td .info-compra .bloco:after {
  clear: both;
}
.meus-pedidos-detalhe .table-pedidos tfoot tr td .info-compra .valor-total {
  color: #35bfae;
  font-weight: bold;
  padding: 25px 0;
}
.meus-pedidos-detalhe .order-repay {
  display: block;
  text-align: center;
  margin-top: 20px;
  background-color: #35bfae !important;
  border: 5px solid rgba(53, 191, 174, 0.3) !important;
}
.meus-pedidos-detalhe .order-repay:hover {
  border: 5px solid rgba(53, 191, 174, 0.6) !important;
}

.meus-pedidos-situacao {
  padding: 60px 0;
  text-align: center;
}
.meus-pedidos-situacao .wrap {
  max-width: 1031px;
}
.meus-pedidos-situacao div,
.meus-pedidos-situacao p,
.meus-pedidos-situacao span {
  font-size: 1em;
  line-height: 1;
}
.meus-pedidos-situacao h2 {
  font-weight: 100;
  font-size: 50px;
  margin: 0 0 35px 0;
}
.meus-pedidos-situacao .desc {
  border-bottom: 1px solid #d8d8d8;
  display: block;
  margin: 0 0 65px 0;
  padding: 0 0 25px 0;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao {
  width: 100%;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao td {
  padding: 25px 18px;
  text-align: left;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao thead tr {
  line-height: 30px;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao thead tr td {
  font-size: 11px;
  padding: 0 18px;
  text-transform: uppercase;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao tbody {
  border: 1px solid #d8d8d8;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao tbody tr {
  border-bottom: 1px solid #d8d8d8;
  cursor: pointer;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao tbody tr.last-child {
  border: none;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao tbody tr:nth-of-type(2) {
  background-color: #fafafa;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao tbody tr td.order-actions {
  width: 220px;
  text-align: center;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao tbody tr td.order-actions a {
  color: #35bfae;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid #35bfae;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao tbody tr td.order-actions .submit {
  padding: 7px 10px;
  margin: -10px 0;
  color: white;
  font-weight: 400;
  display: block;
  background-color: #35bfae !important;
  border: 3px solid rgba(53, 191, 174, 0.3) !important;
}
.meus-pedidos-situacao .table-meus-pedidos-situacao tbody tr td.order-actions .submit:hover {
  border: 3px solid rgba(53, 191, 174, 0.6) !important;
}

.meu-carrinho {
  background-color: #f1f1f1;
  padding: 90px 0 184px 0;
  text-align: center;
}
.meu-carrinho .wrap {
  max-width: 1031px;
}
.meu-carrinho div,
.meu-carrinho p,
.meu-carrinho span {
  font-size: 1em;
  line-height: 1;
}
.meu-carrinho h2 {
  font-weight: 100;
  font-size: 50px;
  margin: 0 0 35px 0;
}
.meu-carrinho .table-meu-carrinho {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  display: block;
  width: 100%;
  line-height: 1;
  margin: 38px 0;
  padding: 38px 0 38px 0;
  text-align: left;
}
.meu-carrinho .table-meu-carrinho tbody {
  display: inline-block;
  width: 100%;
}
.meu-carrinho .table-meu-carrinho tbody tr {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  display: inline-block;
  width: 100%;
  margin: 0 0 -1px 0;
  padding: 10px;
}
.meu-carrinho .table-meu-carrinho tbody tr:nth-of-type(2) {
  background-color: #fafafa;
}
.meu-carrinho .table-meu-carrinho tbody tr td {
  display: inline-block;
  width: 15%;
}
.meu-carrinho .table-meu-carrinho tbody tr td.table-imagem {
  width: 22%;
}
.meu-carrinho .table-meu-carrinho tbody tr td.table-imagem img {
  max-width: 100%;
}
.meu-carrinho .table-meu-carrinho tbody tr td.table-nome {
  width: 25%;
}
.meu-carrinho .table-meu-carrinho tbody tr td.table-quantidade .bt-quantidade {
  display: inline-block;
  background-color: #313068;
  border-radius: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  height: 21px;
  width: 21px;
  margin: 0 0 0 4px;
  text-align: center;
}
.meu-carrinho .table-meu-carrinho tbody tr td.table-remover {
  text-align: center;
  width: 3%;
}
.meu-carrinho .table-meu-carrinho tbody tr td.table-total {
  padding-left: 3%;
}
.meu-carrinho .table-meu-carrinho tbody tr td.table-quantidade {
  text-align: center;
  padding-right: 5%;
}
.meu-carrinho .table-meu-carrinho tbody tr td.table-sem-imagem {
  width: 47%;
  padding: 37px 0 37px 60px;
}
.meu-carrinho .table-meu-carrinho tbody tr td .table-titulo {
  font-size: 11px;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}
.meu-carrinho .continuar,
.meu-carrinho .finalizar {
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  height: auto;
  width: auto;
  margin: 0 0 0 40px;
  padding: 10px 35px;
  text-transform: uppercase;
}
.meu-carrinho .finalizar {
  background-color: #35bfae;
  border-color: rgba(53, 191, 174, 0.3) !important;
}
.meu-carrinho .finalizar:hover {
  border-color: rgba(53, 191, 174, 0.6) !important;
}

@media only screen and (max-width: 500px) {
  .meu-carrinho .table-meu-carrinho tbody tr td,
.meus-pedidos-detalhe .table-pedidos tbody tr td {
    width: 100% !important;
    padding: 15px 0;
    text-align: center;
  }
  .meu-carrinho .table-meu-carrinho tbody tr td.table-imagem img,
.meus-pedidos-detalhe .table-pedidos tbody tr td.imagem-nome img {
    float: none !important;
  }
  .meus-pedidos-detalhe .table-pedidos tbody tr td.imagem-nome .nome {
    display: block;
    margin: 35px 0 0 0;
  }
  .meus-pedidos-detalhe .table-pedidos tfoot tr td .endereco,
.meus-pedidos-detalhe .table-pedidos tfoot tr td .info-compra {
    width: 100%;
    padding: 15px;
  }
  .botoes {
    width: 100%;
  }
  .meu-carrinho .continuar, .meu-carrinho .finalizar {
    width: 47%;
    margin: 0 6px;
  }
}
@media only screen and (max-width: 375px) {
  .meu-carrinho .continuar, .meu-carrinho .finalizar {
    width: 100%;
    margin: 6px 0;
  }
}
.page-pesquisa_satisfacao header {
  background-color: #f1f1f1;
  border-bottom: 10px solid #36bfaf;
  padding: 10px 0;
  text-align: center;
}
.page-pesquisa_satisfacao header:before, .page-pesquisa_satisfacao header:after {
  content: "";
  display: table;
}
.page-pesquisa_satisfacao header:after {
  clear: both;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao {
  color: #464646;
  padding: 130px 0 0 0;
  text-align: center;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao .wrap {
  width: 822px;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao .bloco {
  display: inline-block;
  width: 100%;
  margin: 35px 0;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao .titulo {
  font-weight: 100;
  font-size: 40px;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao .desc {
  border-bottom: 1px solid #e5e5e5;
  display: block;
  font-size: 16px;
  padding: 15px 0;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao form {
  padding: 70px 0;
  text-align: left;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao form h4 {
  color: #313068;
  font-weight: 600;
  font-size: 20px;
  font-style: italic;
  letter-spacing: -1px;
  margin: 0 0 10px 0;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao form input[type=radio] + label {
  margin: 0 30px 0 0;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao form input[type=radio] + label:before {
  border: 1px solid #AAA;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao form input[type=radio] + label:after {
  border-radius: 100%;
  background-color: #35bfae;
  border: 1px solid #AAA;
  content: "";
  -webkit-box-shadow: inset 0px 0px 0px 3px #fff;
          box-shadow: inset 0px 0px 0px 3px #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao form input[type=radio].error + label:before {
  border: 1px solid red;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao form textarea {
  background-color: #f1f1f1;
  height: 126px;
  width: 628px;
  margin: 0 0 50px 0;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao form input[type=submit] {
  float: left;
  font-weight: 600;
  font-size: 12px;
  padding: 8px 72px;
  text-transform: uppercase;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao-agradecimento {
  padding: 100px 0;
  text-align: center;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao-agradecimento .wrap {
  width: 822px;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao-agradecimento img {
  display: inline-block;
  margin: 0 15px 0 0;
  vertical-align: middle;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao-agradecimento h2 {
  display: inline-block;
  font-size: 58px;
  vertical-align: middle;
}
.page-pesquisa_satisfacao .pesquisa-satisfacao-agradecimento span {
  border-top: 1px solid #e5e5e5;
  display: block;
  font-size: 18px;
  margin: 15px 0;
  padding: 35px 0;
}
.page-pesquisa_satisfacao footer {
  background-color: #36bfaf;
  padding: 55px 0;
}
.page-pesquisa_satisfacao footer:before, .page-pesquisa_satisfacao footer:after {
  content: "";
  display: table;
}
.page-pesquisa_satisfacao footer:after {
  clear: both;
}

@media only screen and (max-width: 1279px) {
  .pesquisa-satisfacao {
    padding: 65px 0;
  }
  .pesquisa-satisfacao .wrap {
    display: block;
    width: 95%;
  }
  .pesquisa-satisfacao .bloco .left {
    width: 100%;
  }
  .pesquisa-satisfacao form {
    padding: 15px 0;
  }
  .pesquisa-satisfacao form textarea {
    width: 100%;
  }
  .pesquisa-satisfacao-agradecimento .wrap {
    display: block;
    width: 95%;
  }
}
.video-views {
  display: none !important;
}

.area-plataforma_de_videos div, .area-plataforma_de_videos p, .area-plataforma_de_videos span,
.area-plataforma_categoria div,
.area-plataforma_categoria p,
.area-plataforma_categoria span,
.area-plataforma_detalhe div,
.area-plataforma_detalhe p,
.area-plataforma_detalhe span,
.area-plataforma_de_videos_buscar div,
.area-plataforma_de_videos_buscar p,
.area-plataforma_de_videos_buscar span {
  line-height: 1;
}

.bts-assintecal-ead {
  text-align: center;
  padding-top: 30px;
}
.bts-assintecal-ead a {
  display: inline-block !important;
  margin: 0 5px !important;
  padding: 15px 55px !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  font-size: 16px !important;
  color: #fff !important;
  border-radius: 40px !important;
}
@media only screen and (max-width: 500px) {
  .bts-assintecal-ead a {
    width: 100% !important;
    margin: 5px !important;
  }
}

.header-pv {
  position: relative;
  z-index: 999;
}
.header-pv .header-pv-1 {
  background-color: #313068;
}
.header-pv .header-pv-1 .wrap {
  position: relative;
}
.header-pv .header-pv-1 .logo-input {
  float: left;
  width: calc(100% - 263.19px);
  padding: 18px 18px 18px 0;
}
.header-pv .header-pv-1 .logo-input:before, .header-pv .header-pv-1 .logo-input:after {
  content: "";
  display: table;
}
.header-pv .header-pv-1 .logo-input:after {
  clear: both;
}
.header-pv .header-pv-1 .logo-input .logo {
  color: #35bfae;
  display: inline-block;
  font-weight: 700;
  font-style: italic;
  font-size: 19px;
  letter-spacing: -0.05em;
  min-height: 56px;
  padding: 6px 0 0 66px;
  position: relative;
}
.header-pv .header-pv-1 .logo-input .logo:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 294.842 294.842' viewBox='0.003997802734375 0.001983642578125 294.8399963378906 294.8399963378906' height='56' fill='%2335bfae'%3E%3Cpath d='m278.53 79.946c-10.324-20.023-25.38-37.704-43.538-51.132-2.665-1.97-6.421-1.407-8.393 1.257-1.971 2.664-1.406 6.421 1.258 8.392 16.687 12.34 30.521 28.586 40.008 46.983 9.939 19.277 14.979 40.128 14.979 61.976 0 74.671-60.75 135.42-135.42 135.42-74.67 0-135.42-60.75-135.42-135.42 0-74.671 60.75-135.42 135.42-135.42 3.313 0 6-2.687 6-6s-2.687-6-6-6c-81.289 0-147.42 66.133-147.42 147.42 0 81.289 66.132 147.42 147.42 147.42s147.42-66.133 147.42-147.42c1e-3 -23.443-5.64-46.775-16.314-67.474'%3E%3C/path%3E%3Cpath d='m109.7 78.969c-1.876 1.067-3.035 3.059-3.035 5.216v131.67c0 3.313 2.687 6 6 6s6-2.687 6-6v-121.12l88.833 52.883-65.324 42.087c-2.785 1.795-3.589 5.508-1.794 8.293 1.796 2.786 5.508 3.59 8.293 1.794l73.464-47.333c1.747-1.125 2.787-3.074 2.75-5.15-0.037-2.077-1.145-3.987-2.93-5.05l-106.22-63.235c-1.856-1.103-4.158-1.127-6.034-0.06'%3E%3C/path%3E%3C/svg%3E");
  content: "";
  height: 56px;
  width: 56px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-pv .header-pv-1 .logo-input .logo span {
  color: #fff;
  display: block;
  font-size: 24px;
}
.header-pv .header-pv-1 .logo-input form {
  float: right;
  margin: 6px 0 0 0;
  position: relative;
}
.header-pv .header-pv-1 .logo-input form button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 16 16' viewBox='0 0 16 16' height='15' fill='%23fff'%3E%3Cpath d='M15.7,14.3l-3.105-3.105C13.473,10.024,14,8.576,14,7c0-3.866-3.134-7-7-7S0,3.134,0,7s3.134,7,7,7 c1.576,0,3.024-0.527,4.194-1.405L14.3,15.7c0.184,0.184,0.38,0.3,0.7,0.3c0.553,0,1-0.447,1-1C16,14.781,15.946,14.546,15.7,14.3z M2,7c0-2.762,2.238-5,5-5s5,2.238,5,5s-2.238,5-5,5S2,9.762,2,7z'%3E%3C/path%3E%3C/svg%3E");
  height: 15px;
  width: 14px;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: medium none;
}
.header-pv .header-pv-1 .logo-input form input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-style: italic;
  height: 44px;
  width: 380px;
  margin: 0;
  padding: 0 25px;
}
.header-pv .header-pv-1 .logo-input form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header-pv .header-pv-1 .logo-input form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header-pv .header-pv-1 .logo-input form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header-pv .header-pv-1 .logo-input form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header-pv .header-pv-1 .logo-input form input:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
.header-pv .header-pv-1 .logo-input form input:focus::-moz-placeholder {
  opacity: 0.5;
}
.header-pv .header-pv-1 .logo-input form input:focus:-ms-input-placeholder {
  opacity: 0.5;
}
.header-pv .header-pv-1 .logo-input form input:focus:-moz-placeholder {
  opacity: 0.5;
}
.header-pv .header-pv-1 .voltar {
  float: right;
  width: 263.19px;
}
.header-pv .header-pv-1 .voltar a {
  background-color: #2a2a5a;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-size: 12px;
  line-height: 79px;
  padding: 13px 30px 0 50px;
  position: relative;
}
.header-pv .header-pv-1 .voltar a:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 512 512' viewBox='160 96 192 320' height='15' fill='%23fff'%3E%3Cpolygon points='352 115.4 331.3 96 160 256 331.3 416 352 396.7 201.5 256'%3E%3C/polygon%3E%3C/svg%3E");
  content: "";
  height: 15px;
  width: 8px;
  left: 25px;
  position: absolute;
  top: calc(50% - 4px);
  -webkit-transform: translateY(calc(50% - 4px));
      -ms-transform: translateY(calc(50% - 4px));
          transform: translateY(calc(50% - 4px));
}
.header-pv .header-pv-1 .voltar a img {
  margin: 0 0 0 4px;
}
.header-pv .header-pv-2 {
  background-color: #36c0af;
}
.header-pv .header-pv-2 .menu {
  float: left;
}
.header-pv .header-pv-2 .menu:before, .header-pv .header-pv-2 .menu:after {
  content: "";
  display: table;
}
.header-pv .header-pv-2 .menu:after {
  clear: both;
}
.header-pv .header-pv-2 .menu > .item {
  float: left;
  position: relative;
}
.header-pv .header-pv-2 .menu > .item:hover > a {
  background-color: #30b3a3;
}
.header-pv .header-pv-2 .menu > .item:hover .drop {
  opacity: 1;
  visibility: visible;
}
.header-pv .header-pv-2 .menu > .item > a {
  color: #fff;
  display: block;
  letter-spacing: 0.05em;
  line-height: 53px;
  padding: 0 18px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.35s;
  -o-transition: background-color 0.35s;
  transition: background-color 0.35s;
}
.header-pv .header-pv-2 .menu > .item .drop {
  background-color: #36c0af;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 100%;
  -webkit-transition: opacity 0.35s, visibility 0.35s;
  -o-transition: opacity 0.35s, visibility 0.35s;
  transition: opacity 0.35s, visibility 0.35s;
  visibility: hidden;
  z-index: 9;
}
.header-pv .header-pv-2 .menu > .item .drop > .item:hover > a {
  background-color: #313068;
}
.header-pv .header-pv-2 .menu > .item .drop > .item > a {
  color: #fff;
  display: block;
  letter-spacing: 0.05em;
  line-height: 53px;
  padding: 0 18px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.35s;
  -o-transition: background-color 0.35s;
  transition: background-color 0.35s;
}
.header-pv .header-pv-2 .links {
  background-color: #32b0a0;
  float: right;
  padding: 15px 25px;
}
.header-pv .header-pv-2 .links .item {
  float: left;
  margin: 0 40px 0 0;
  position: relative;
}
.header-pv .header-pv-2 .links .item:last-of-type {
  margin: 0;
}
.header-pv .header-pv-2 .links .item:last-of-type:after {
  display: none;
}
.header-pv .header-pv-2 .links .item:after {
  background-color: #36c0af;
  content: "";
  height: 14px;
  width: 2px;
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-pv .header-pv-2 .links .item a {
  color: #fff;
  display: block;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 23px;
  position: relative;
}
.header-pv .header-pv-2 .links .item a:before {
  content: "";
  height: 23px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-pv .header-pv-2 .links .item a.meu-cadastro {
  padding: 0 0 0 25px;
}
.header-pv .header-pv-2 .links .item a.meu-cadastro:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 212.238 275.836' viewBox='0 -0.0000025033950805664062 212.24000549316406 275.8320007324219' height='23' fill='%23fff'%3E%3Cpath d='m159.54 20.922l-95.155 95.155c-0.756 0.756-1.297 1.699-1.565 2.734l-8.167 31.454c-0.534 2.06 0.061 4.246 1.565 5.751 1.14 1.14 2.671 1.758 4.242 1.758 0.503 0 1.009-0.063 1.508-0.192l31.454-8.168c1.035-0.27 1.979-0.811 2.734-1.565l95.153-95.153c2e-3 -2e-3 4e-3 -3e-3 5e-3 -4e-3s3e-3 -4e-3 4e-3 -5e-3l19.155-19.156c2.345-2.343 2.345-6.142 2e-3 -8.484l-23.285-23.289c-1.126-1.126-2.651-1.758-4.243-1.758-1.591 0-3.117 0.632-4.242 1.758l-19.155 19.155c-2e-3 2e-3 -4e-3 3e-3 -5e-3 4e-3s-3e-3 4e-3 -5e-3 5e-3m-70.713 117.29l-19.993 5.192 5.191-19.994 89.762-89.762 14.801 14.802-89.761 89.762zm94.12-123.72l14.801 14.802-10.675 10.675-14.801-14.802 10.675-10.675z'%3E%3C/path%3E%3Cpath d='m206.24 65.022c-3.313 0-6 2.687-6 6v192.81h-188.24v-229.42h111.06c3.313 0 6-2.687 6-6s-2.688-6-6-6h-117.06c-3.313 0-6 2.687-6 6v241.42c0 3.313 2.687 6 6 6h200.24c3.313 0 6-2.687 6-6v-198.81c0-3.313-2.687-6-6-6'%3E%3C/path%3E%3C/svg%3E");
  width: 18px;
}
.header-pv .header-pv-2 .links .item a.sair {
  font-weight: 700;
  padding: 0 0 0 30px;
}
.header-pv .header-pv-2 .links .item a.sair:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 294.997 294.96' viewBox='-0.0028047561645507812 -0.00044536590576171875 295.00531005859375 294.9624938964844' height='23' fill='%23fff'%3E%3Cpath d='m286.36 97.997c-13.225-37.091-40.1-66.813-75.676-83.691-35.575-16.879-75.596-18.892-112.69-5.669-37.092 13.223-66.814 40.098-83.692 75.675-16.877 35.577-18.89 75.597-5.668 112.69 1.113 3.122 4.547 4.748 7.667 3.638 3.121-1.112 4.75-4.545 3.637-7.667-12.147-34.072-10.298-70.835 5.206-103.52s42.807-57.369 76.879-69.515 70.836-10.296 103.52 5.207c32.681 15.504 57.369 42.807 69.515 76.879 12.147 34.072 10.299 70.835-5.207 103.52-15.504 32.682-42.806 57.37-76.879 69.516-38.188 13.613-80.081 9.493-114.93-11.304-2.848-1.699-6.53-0.768-8.227 2.077-1.699 2.847-0.768 6.53 2.078 8.228 23.207 13.849 49.276 20.903 75.541 20.901 16.674 0 33.431-2.844 49.572-8.598 37.091-13.224 66.813-40.099 83.691-75.675 16.878-35.578 18.891-75.598 5.668-112.69'%3E%3C/path%3E%3Cpath d='m213.5 147.5c0-3.313-2.688-6-6-6h-149.43c-3.314 0-6 2.687-6 6s2.686 6 6 6h149.43c3.312 0 6-2.686 6-6'%3E%3C/path%3E%3Cpath d='m165.69 210.26c-2.345 2.343-2.345 6.142 0 8.483 1.172 1.171 2.707 1.757 4.242 1.757 1.534 0 3.07-0.586 4.241-1.757l67-67c2.345-2.342 2.345-6.141 0-8.484l-67-67c-2.341-2.343-6.142-2.343-8.483 0-2.345 2.343-2.345 6.142 0 8.484l62.758 62.758-62.758 62.759z'%3E%3C/path%3E%3C/svg%3E");
  content: "";
  width: 23px;
}

.secao-banner-videos {
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0 50px 0;
  text-align: center;
}
.secao-banner-videos h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.03em;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}
.secao-banner-videos span {
  color: #fff;
  display: inline-block;
  max-width: 600px;
}
.secao-banner-videos p {
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.secao-banner-inner {
  background: -webkit-gradient(linear, left top, right top, from(#313068), to(#30b3a3)) left bottom no-repeat;
  background: -o-linear-gradient(left, #313068 0%, #30b3a3 100%) left bottom no-repeat;
  background: linear-gradient(to right, #313068 0%, #30b3a3 100%) left bottom no-repeat;
  padding: 70px 0;
}
.secao-banner-inner .wrap {
  position: relative;
}
.secao-banner-inner span {
  color: #36c0af;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.05em;
}
.secao-banner-inner h4 {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  font-style: italic;
  letter-spacing: -0.05em;
}
.secao-banner-inner .icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.secao-banner-inner .icon svg {
  fill: #30b3a3;
  height: 57px;
}

.secao-videos {
  padding: 75px 0 100px 0;
}
.secao-videos .bt {
  font-size: 14px;
  margin: 50px auto auto auto;
  padding: 14px 30px;
}

.listagem-videos {
  margin: -20px -15px;
}
.listagem-videos:before, .listagem-videos:after {
  content: "";
  display: table;
}
.listagem-videos:after {
  clear: both;
}
.listagem-videos .item {
  float: left;
  width: calc(33.3333333333% - 30px);
  margin: 20px 15px;
}
.listagem-videos .item:nth-child(3n+1) {
  clear: both;
}
.listagem-videos .item .video-container {
  background-color: #030303;
  margin: 0 0 10px 0;
  padding-top: 62.1621621622%;
  position: relative;
}
.listagem-videos .item .video-container .icon {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.listagem-videos .item .video-container .icon svg {
  fill: #fff;
  height: 45px;
}
.listagem-videos .item .video-container .bottom {
  bottom: 0;
  width: 100%;
  left: 0;
  position: absolute;
}
.listagem-videos .item .video-container .bottom .wrapper-bottom {
  padding: 15px;
}
.listagem-videos .item .video-container .bottom .wrapper-bottom:before, .listagem-videos .item .video-container .bottom .wrapper-bottom:after {
  content: "";
  display: table;
}
.listagem-videos .item .video-container .bottom .wrapper-bottom:after {
  clear: both;
}
.listagem-videos .item .video-container .bottom .wrapper-bottom .watch {
  color: #fff;
  float: left;
  line-height: 18px;
  padding: 0 0 0 22px;
  position: relative;
}
.listagem-videos .item .video-container .bottom .wrapper-bottom .watch:before {
  content: "";
  height: 18px;
  width: 18px;
  left: 0;
  position: absolute;
  top: 0;
}
.listagem-videos .item .video-container .bottom .wrapper-bottom .watch.assistido:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 512 512' viewBox='-0.00002288818359375 0 512.0009765625 512.0010375976562' height='18' fill='%23fff'%3E%3Cpath d='m437.02 74.98c-48.352-48.351-112.64-74.98-181.02-74.98-68.381 0-132.67 26.629-181.02 74.98-48.352 48.352-74.98 112.64-74.98 181.02s26.628 132.67 74.98 181.02 112.64 74.981 181.02 74.981c68.38 0 132.67-26.629 181.02-74.981s74.981-112.64 74.981-181.02-26.629-132.67-74.981-181.02m-181.02 407.02c-124.62 0-226-101.38-226-226s101.38-226 226-226 226 101.38 226 226-101.38 226-226 226'%3E%3C/path%3E%3Cpath d='m378.3 173.86c-5.856-5.856-15.354-5.856-21.212 1e-3l-132.46 132.46-69.726-69.728c-5.858-5.857-15.355-5.857-21.214 0-5.858 5.857-5.858 15.355 0 21.213l80.333 80.333c2.929 2.929 6.768 4.394 10.606 4.394 3.839 0 7.678-1.465 10.607-4.394l143.06-143.07c5.858-5.856 5.858-15.354 0-21.212'%3E%3C/path%3E%3C/svg%3E");
}
.listagem-videos .item .video-container .bottom .wrapper-bottom .watch.assistindo:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 294.842 294.842' viewBox='0.003997802734375 0.001983642578125 294.8399963378906 294.8399963378906' height='18' fill='%23fff'%3E%3Cpath d='m278.53 79.946c-10.324-20.023-25.38-37.704-43.538-51.132-2.665-1.97-6.421-1.407-8.393 1.257-1.971 2.664-1.406 6.421 1.258 8.392 16.687 12.34 30.521 28.586 40.008 46.983 9.939 19.277 14.979 40.128 14.979 61.976 0 74.671-60.75 135.42-135.42 135.42-74.67 0-135.42-60.75-135.42-135.42 0-74.671 60.75-135.42 135.42-135.42 3.313 0 6-2.687 6-6s-2.687-6-6-6c-81.289 0-147.42 66.133-147.42 147.42 0 81.289 66.132 147.42 147.42 147.42s147.42-66.133 147.42-147.42c1e-3 -23.443-5.64-46.775-16.314-67.474'%3E%3C/path%3E%3Cpath d='m109.7 78.969c-1.876 1.067-3.035 3.059-3.035 5.216v131.67c0 3.313 2.687 6 6 6s6-2.687 6-6v-121.12l88.833 52.883-65.324 42.087c-2.785 1.795-3.589 5.508-1.794 8.293 1.796 2.786 5.508 3.59 8.293 1.794l73.464-47.333c1.747-1.125 2.787-3.074 2.75-5.15-0.037-2.077-1.145-3.987-2.93-5.05l-106.22-63.235c-1.856-1.103-4.158-1.127-6.034-0.06'%3E%3C/path%3E%3C/svg%3E");
}
.listagem-videos .item .video-container .bottom .wrapper-bottom .time {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 999px;
  color: #fff;
  float: right;
  font-weight: 700;
  padding: 3px 7px;
}
.listagem-videos .item .video-container .bottom .load {
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
}
.listagem-videos .item .video-container .bottom .load .porcentagem {
  background-color: #30b3a3;
  height: 3px;
}
.listagem-videos .item h4 {
  color: #30b3a3;
  font-weight: bold;
  font-size: 24px;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 0 0 8px 0;
  min-height: 56px;
}
.listagem-videos .item span {
  color: #8c8c8c;
}

.secao-titulo-video {
  background: -webkit-gradient(linear, left top, right top, from(#313068), to(#30b3a3)) left bottom no-repeat;
  background: -o-linear-gradient(left, #313068 0%, #30b3a3 100%) left bottom no-repeat;
  background: linear-gradient(to right, #313068 0%, #30b3a3 100%) left bottom no-repeat;
  font-size: 0;
}
.secao-titulo-video .video-container {
  background-color: #030303;
  display: inline-block;
  height: 434px;
  width: calc(100% - 380px - 64px);
  margin: 0 60px 0 0;
  position: relative;
  vertical-align: middle;
}
.secao-titulo-video .video-container iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.secao-titulo-video .video-container .icon {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secao-titulo-video .video-container .icon svg {
  fill: #fff;
  height: 45px;
}
.secao-titulo-video .content {
  display: inline-block;
  max-width: 380px;
  vertical-align: middle;
}
.secao-titulo-video .content .live {
  border: 1px solid #34b2a6;
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-style: italic;
  margin: 0 0 15px 0;
  padding: 10px 10px 10px 45px;
  position: relative;
}
.secao-titulo-video .content .live:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 464 288' viewBox='0 0 464 288' height='17'%3E%3Cpath d='M0.07,256.703C0.453,274.074,14.625,287.965,32,288h400 c17.672,0,32-14.328,32-32V35.449L0.07,256.703z' fill='%23FF3051'%3E%3C/path%3E%3Cpath d='M464,32c0-17.672-14.328-32-32-32H32C14.328,0,0,14.328,0,32v224 c0,0.238,0.063,0.465,0.07,0.703L464,35.449V32z' fill='%23FF4764'%3E%3C/path%3E%3Cpath d='m128 200h-56v-120c0-4.418-3.582-8-8-8s-8 3.582-8 8v128c0 4.418 3.582 8 8 8h64c4.418 0 8-3.582 8-8s-3.582-8-8-8' fill='%23F1F2F2'%3E%3C/path%3E%3Cpath d='m400 88c4.418 0 8-3.582 8-8s-3.582-8-8-8h-64c-4.418 0-8 3.582-8 8v128c0 4.418 3.582 8 8 8h64c4.418 0 8-3.582 8-8s-3.582-8-8-8h-56v-48h40c4.418 0 8-3.582 8-8s-3.582-8-8-8h-40v-48h56z' fill='%23F1F2F2'%3E%3C/path%3E%3Cpath d='m168 72c-4.418 0-8 3.582-8 8v128c0 4.418 3.582 8 8 8s8-3.582 8-8v-128c0-4.418-3.582-8-8-8' clip-path='url(%23a)' fill='%23F1F2F2'%3E%3C/path%3E%3Cpath d='m298.81 72.504c-1.988-0.746-4.191-0.672-6.125 0.207s-3.438 2.492-4.18 4.48l-39.816 106.19-33.047-105.78c-1.324-4.223-5.82-6.567-10.039-5.243-4.223 1.325-6.566 5.821-5.242 10.04l40 128c1.023 3.262 4.004 5.508 7.418 5.602h0.222c3.336 4e-3 6.324-2.066 7.495-5.191l48-128c0.747-1.989 0.673-4.192-0.206-6.125-0.879-1.935-2.492-3.439-4.48-4.181' fill='%23F1F2F2'%3E%3C/path%3E%3C/svg%3E");
  content: "";
  height: 17px;
  width: 27px;
  left: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.secao-titulo-video .content h4 {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  font-style: italic;
  letter-spacing: -0.05em;
  margin: 0 0 15px 0;
}
.secao-titulo-video .content p {
  color: #fff;
  line-height: 1.7;
  margin: 0 0 15px 0;
}
.secao-titulo-video .content .bt {
  border-color: #5aa5a7 !important;
  float: left;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.05em;
  padding: 10px 35px;
}

.secao-videos-home {
  padding: 50px 0;
}
.secao-videos-home.cinza {
  background-color: #f6f6f6;
}
.secao-videos-home .titulo-ver-todos {
  background: -webkit-gradient(linear, left top, right top, from(#313068), to(#30b3a3)) left bottom no-repeat;
  background: -o-linear-gradient(left, #313068 0%, #30b3a3 100%) left bottom no-repeat;
  background: linear-gradient(to right, #313068 0%, #30b3a3 100%) left bottom no-repeat;
  background-size: 100% 3px;
  margin: 0 0 25px 0;
  padding: 0 3px 18px 0;
}
.secao-videos-home .titulo-ver-todos:before, .secao-videos-home .titulo-ver-todos:after {
  content: "";
  display: table;
}
.secao-videos-home .titulo-ver-todos:after {
  clear: both;
}
.secao-videos-home .titulo-ver-todos h4 {
  color: #313068;
  float: left;
  font-weight: bold;
  font-size: 42px;
  font-style: italic;
  letter-spacing: -0.05em;
}
.secao-videos-home .titulo-ver-todos .right {
  font-size: 0;
}
.secao-videos-home .titulo-ver-todos .right span, .secao-videos-home .titulo-ver-todos .right a {
  color: #30b3a3;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
  letter-spacing: -0.05em;
  vertical-align: middle;
}
.secao-videos-home .titulo-ver-todos .right i {
  display: inline-block;
  margin: 0 0 0 15px;
  vertical-align: middle;
}
.secao-videos-home .titulo-ver-todos .right i svg {
  fill: #30b3a3;
  height: 40px;
}

.secao-video-detalhe {
  background-color: #030303;
}
.secao-video-detalhe .video-container {
  background-color: #030303;
  height: 576px;
  /*padding-top:(576px / 1170px * 100%);*/
  position: relative;
}
.secao-video-detalhe .video-container iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.secao-video-detalhe .video-container .icon {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secao-video-detalhe .video-container .icon svg {
  fill: #fff;
  height: 45px;
}
.secao-video-detalhe .video-container .bottom {
  bottom: 0;
  width: 100%;
  left: 0;
  position: absolute;
}
.secao-video-detalhe .video-container .bottom .load {
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
}
.secao-video-detalhe .video-container .bottom .load .porcentagem {
  background-color: #30b3a3;
  height: 3px;
}

.secao-detalhe-info {
  padding: 25px 0;
}
.secao-detalhe-info .row .col {
  float: left;
}
.secao-detalhe-info .row .col.col-1 {
  width: calc(100% - 370px - 30px);
  margin: 0 30px 0 0;
}
.secao-detalhe-info .row .col.col-1 .titulo-visualizacoes {
  background: -webkit-gradient(linear, right top, left top, from(#8a8a8a), to(#30b3a3)) left bottom no-repeat;
  background: -o-linear-gradient(right, #8a8a8a 0%, #30b3a3 100%) left bottom no-repeat;
  background: linear-gradient(to left, #8a8a8a 0%, #30b3a3 100%) left bottom no-repeat;
  background-size: 100% 3px;
  margin: 0 0 25px 0;
  padding: 0 3px 12px 0;
}
.secao-detalhe-info .row .col.col-1 .titulo-visualizacoes:before, .secao-detalhe-info .row .col.col-1 .titulo-visualizacoes:after {
  content: "";
  display: table;
}
.secao-detalhe-info .row .col.col-1 .titulo-visualizacoes:after {
  clear: both;
}
.secao-detalhe-info .row .col.col-1 .titulo-visualizacoes h5 {
  color: #30b3a3;
  float: left;
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
  letter-spacing: -0.05em;
}
.secao-detalhe-info .row .col.col-1 .titulo-visualizacoes span {
  color: #8a8a8a;
  float: right;
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
  letter-spacing: -0.05em;
}
.secao-detalhe-info .row .col.col-1 .avaliar-agora {
  background: -webkit-gradient(linear, left top, right top, from(#313068), to(#30b3a3)) left bottom no-repeat;
  background: -o-linear-gradient(left, #313068 0%, #30b3a3 100%) left bottom no-repeat;
  background: linear-gradient(to right, #313068 0%, #30b3a3 100%) left bottom no-repeat;
  margin: 0 0 25px 0;
  padding: 25px;
}
.secao-detalhe-info .row .col.col-1 .avaliar-agora:before, .secao-detalhe-info .row .col.col-1 .avaliar-agora:after {
  content: "";
  display: table;
}
.secao-detalhe-info .row .col.col-1 .avaliar-agora:after {
  clear: both;
}
.secao-detalhe-info .row .col.col-1 .avaliar-agora span {
  color: #fff;
  float: left;
  line-height: 1.9;
  max-width: 520px;
}
.secao-detalhe-info .row .col.col-1 .avaliar-agora .bt {
  float: right;
  font-size: 14px;
  text-transform: uppercase;
}
.secao-detalhe-info .row .col.col-1 h4 {
  color: #313068;
  font-weight: 700;
  font-size: 30px;
  font-style: italic;
  letter-spacing: -0.05em;
  margin: 0 0 25px 0;
}
.secao-detalhe-info .row .col.col-1 p {
  color: #343434;
  line-height: 1.7;
  margin: 0 0 25px 0;
}
.secao-detalhe-info .row .col.col-1 .bt {
  float: left;
  font-size: 14px;
  padding: 14px 28px;
}
.secao-detalhe-info .row .col.col-2 {
  width: 370px;
}
.secao-detalhe-info .row .col.col-2 .titulo {
  background: -webkit-gradient(linear, right top, left top, from(#313068), to(#313068)) left bottom no-repeat;
  background: -o-linear-gradient(right, #313068 0%, #313068 100%) left bottom no-repeat;
  background: linear-gradient(to left, #313068 0%, #313068 100%) left bottom no-repeat;
  background-size: 100% 3px;
  margin: 0 0 25px 0;
  padding: 0 3px 12px 0;
}
.secao-detalhe-info .row .col.col-2 .titulo:before, .secao-detalhe-info .row .col.col-2 .titulo:after {
  content: "";
  display: table;
}
.secao-detalhe-info .row .col.col-2 .titulo:after {
  clear: both;
}
.secao-detalhe-info .row .col.col-2 .titulo h5 {
  color: #313068;
  float: left;
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
  letter-spacing: -0.05em;
}
.secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item {
  margin: 0 0 30px 0;
}
.secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item:before, .secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item:after {
  content: "";
  display: table;
}
.secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item:after {
  clear: both;
}
.secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item .video-container {
  background-color: #030303;
  float: left;
  height: 103px;
  width: 168px;
}
.secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item .content {
  float: right;
  width: 185px;
}
.secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item .content span {
  color: #8c8c8c;
  display: block;
  margin: 0 0 4px 0;
}
.secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item .content h5 {
  color: #30b3a3;
  font-weight: 700;
  font-size: 18px;
  font-style: italic;
  letter-spacing: -0.05em;
  margin: 0 0 15px 0;
  min-height: 54px;
}
.secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item .content small {
  color: #8c8c8c;
  font-size: 12px;
}
.secao-detalhe-info .row .col.col-2 .bt {
  padding: 14px 28px;
}

.secao-logo {
  background-color: #313068;
  font-size: 0;
  padding: 35px 0;
  text-align: center;
}
.secao-logo .wrap {
  width: 700px;
}
.secao-logo img {
  max-width: 100%;
}
.secao-logo img.right {
  margin: 7px 0 0 0;
}

.nav-bar {
  display: none;
  width: 35px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}
.nav-bar:before, .nav-bar:after {
  content: "";
  display: table;
}
.nav-bar:after {
  clear: both;
}
.nav-bar.open .bar.bar-1 {
  opacity: 0;
}
.nav-bar.open .bar.bar-2 {
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}
.nav-bar.open .bar.bar-3 {
  -webkit-transform: translate(0, -10px) rotate(-40deg);
      -ms-transform: translate(0, -10px) rotate(-40deg);
          transform: translate(0, -10px) rotate(-40deg);
}
.nav-bar .bar {
  background-color: #35bfae;
  height: 4px;
  width: 100%;
  margin: 6px 0;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.nav-bar-drop {
  background-color: #36c0af;
  width: 100%;
  left: 0;
  opacity: 0;
  padding: 35px 0;
  position: absolute;
  top: 86px;
  visibility: hidden;
  z-index: 999;
}
.nav-bar-drop.open {
  opacity: 1;
  visibility: visible;
}
.nav-bar-drop .menu-drop {
  margin: 0 0 35px 0;
}
.nav-bar-drop .menu-drop .item .drop {
  padding: 6px 0 6px 25px;
}
.nav-bar-drop .menu-drop .item .drop .item a {
  font-size: 13px;
}
.nav-bar-drop .menu-drop .item a {
  color: #fff;
  display: block;
  font-size: 16px;
  line-height: 2;
  text-transform: uppercase;
}
.nav-bar-drop .links-drop {
  background-color: #32b0a0;
  padding: 15px 25px;
}
.nav-bar-drop .links-drop .item {
  border-bottom: 1px solid #36c0af;
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
}
.nav-bar-drop .links-drop .item:last-of-type {
  border: none;
  margin: 0;
  padding: 0;
}
.nav-bar-drop .links-drop .item a {
  color: #fff;
  display: block;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 23px;
  position: relative;
}
.nav-bar-drop .links-drop .item a:before {
  content: "";
  height: 23px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav-bar-drop .links-drop .item a.meu-cadastro {
  padding: 0 0 0 25px;
}
.nav-bar-drop .links-drop .item a.meu-cadastro:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 212.238 275.836' viewBox='0 -0.0000025033950805664062 212.24000549316406 275.8320007324219' height='23' fill='%23fff'%3E%3Cpath d='m159.54 20.922l-95.155 95.155c-0.756 0.756-1.297 1.699-1.565 2.734l-8.167 31.454c-0.534 2.06 0.061 4.246 1.565 5.751 1.14 1.14 2.671 1.758 4.242 1.758 0.503 0 1.009-0.063 1.508-0.192l31.454-8.168c1.035-0.27 1.979-0.811 2.734-1.565l95.153-95.153c2e-3 -2e-3 4e-3 -3e-3 5e-3 -4e-3s3e-3 -4e-3 4e-3 -5e-3l19.155-19.156c2.345-2.343 2.345-6.142 2e-3 -8.484l-23.285-23.289c-1.126-1.126-2.651-1.758-4.243-1.758-1.591 0-3.117 0.632-4.242 1.758l-19.155 19.155c-2e-3 2e-3 -4e-3 3e-3 -5e-3 4e-3s-3e-3 4e-3 -5e-3 5e-3m-70.713 117.29l-19.993 5.192 5.191-19.994 89.762-89.762 14.801 14.802-89.761 89.762zm94.12-123.72l14.801 14.802-10.675 10.675-14.801-14.802 10.675-10.675z'%3E%3C/path%3E%3Cpath d='m206.24 65.022c-3.313 0-6 2.687-6 6v192.81h-188.24v-229.42h111.06c3.313 0 6-2.687 6-6s-2.688-6-6-6h-117.06c-3.313 0-6 2.687-6 6v241.42c0 3.313 2.687 6 6 6h200.24c3.313 0 6-2.687 6-6v-198.81c0-3.313-2.687-6-6-6'%3E%3C/path%3E%3C/svg%3E");
  width: 18px;
}
.nav-bar-drop .links-drop .item a.sair {
  font-weight: 700;
  padding: 0 0 0 30px;
}
.nav-bar-drop .links-drop .item a.sair:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 294.997 294.96' viewBox='-0.0028047561645507812 -0.00044536590576171875 295.00531005859375 294.9624938964844' height='23' fill='%23fff'%3E%3Cpath d='m286.36 97.997c-13.225-37.091-40.1-66.813-75.676-83.691-35.575-16.879-75.596-18.892-112.69-5.669-37.092 13.223-66.814 40.098-83.692 75.675-16.877 35.577-18.89 75.597-5.668 112.69 1.113 3.122 4.547 4.748 7.667 3.638 3.121-1.112 4.75-4.545 3.637-7.667-12.147-34.072-10.298-70.835 5.206-103.52s42.807-57.369 76.879-69.515 70.836-10.296 103.52 5.207c32.681 15.504 57.369 42.807 69.515 76.879 12.147 34.072 10.299 70.835-5.207 103.52-15.504 32.682-42.806 57.37-76.879 69.516-38.188 13.613-80.081 9.493-114.93-11.304-2.848-1.699-6.53-0.768-8.227 2.077-1.699 2.847-0.768 6.53 2.078 8.228 23.207 13.849 49.276 20.903 75.541 20.901 16.674 0 33.431-2.844 49.572-8.598 37.091-13.224 66.813-40.099 83.691-75.675 16.878-35.578 18.891-75.598 5.668-112.69'%3E%3C/path%3E%3Cpath d='m213.5 147.5c0-3.313-2.688-6-6-6h-149.43c-3.314 0-6 2.687-6 6s2.686 6 6 6h149.43c3.312 0 6-2.686 6-6'%3E%3C/path%3E%3Cpath d='m165.69 210.26c-2.345 2.343-2.345 6.142 0 8.483 1.172 1.171 2.707 1.757 4.242 1.757 1.534 0 3.07-0.586 4.241-1.757l67-67c2.345-2.342 2.345-6.141 0-8.484l-67-67c-2.341-2.343-6.142-2.343-8.483 0-2.345 2.343-2.345 6.142 0 8.484l62.758 62.758-62.758 62.759z'%3E%3C/path%3E%3C/svg%3E");
  content: "";
  width: 23px;
}
.nav-bar-drop form {
  margin: 35px 0 0 0;
  position: relative;
}
.nav-bar-drop form button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 16 16' viewBox='0 0 16 16' height='15' fill='%23fff'%3E%3Cpath d='M15.7,14.3l-3.105-3.105C13.473,10.024,14,8.576,14,7c0-3.866-3.134-7-7-7S0,3.134,0,7s3.134,7,7,7 c1.576,0,3.024-0.527,4.194-1.405L14.3,15.7c0.184,0.184,0.38,0.3,0.7,0.3c0.553,0,1-0.447,1-1C16,14.781,15.946,14.546,15.7,14.3z M2,7c0-2.762,2.238-5,5-5s5,2.238,5,5s-2.238,5-5,5S2,9.762,2,7z'%3E%3C/path%3E%3C/svg%3E");
  height: 15px;
  width: 14px;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: medium none;
}
.nav-bar-drop form input {
  background-color: transparent;
  border-color: #fff;
  border-radius: 999px;
  color: #fff;
  font-style: italic;
  height: 44px;
  margin: 0;
  padding: 0 25px;
}
.nav-bar-drop form input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.nav-bar-drop form input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.nav-bar-drop form input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.nav-bar-drop form input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.nav-bar-drop form input:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
.nav-bar-drop form input:focus::-moz-placeholder {
  opacity: 0.5;
}
.nav-bar-drop form input:focus:-ms-input-placeholder {
  opacity: 0.5;
}
.nav-bar-drop form input:focus:-moz-placeholder {
  opacity: 0.5;
}

.banner-video h2.logo {
  color: #FFF;
  display: inline-block;
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.05em;
  min-height: 95px;
  line-height: 1.4;
  padding: 6px 0 0 105px;
  position: relative;
  text-transform: unset;
  font-family: "Open Sans", sans-serif;
}
.banner-video h2.logo:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 294.842 294.842' viewBox='0.003997802734375 0.001983642578125 294.8399963378906 294.8399963378906' height='95' fill='%23ffffff'%3E%3Cpath d='m278.53 79.946c-10.324-20.023-25.38-37.704-43.538-51.132-2.665-1.97-6.421-1.407-8.393 1.257-1.971 2.664-1.406 6.421 1.258 8.392 16.687 12.34 30.521 28.586 40.008 46.983 9.939 19.277 14.979 40.128 14.979 61.976 0 74.671-60.75 135.42-135.42 135.42-74.67 0-135.42-60.75-135.42-135.42 0-74.671 60.75-135.42 135.42-135.42 3.313 0 6-2.687 6-6s-2.687-6-6-6c-81.289 0-147.42 66.133-147.42 147.42 0 81.289 66.132 147.42 147.42 147.42s147.42-66.133 147.42-147.42c1e-3 -23.443-5.64-46.775-16.314-67.474'%3E%3C/path%3E%3Cpath d='m109.7 78.969c-1.876 1.067-3.035 3.059-3.035 5.216v131.67c0 3.313 2.687 6 6 6s6-2.687 6-6v-121.12l88.833 52.883-65.324 42.087c-2.785 1.795-3.589 5.508-1.794 8.293 1.796 2.786 5.508 3.59 8.293 1.794l73.464-47.333c1.747-1.125 2.787-3.074 2.75-5.15-0.037-2.077-1.145-3.987-2.93-5.05l-106.22-63.235c-1.856-1.103-4.158-1.127-6.034-0.06'%3E%3C/path%3E%3C/svg%3E");
  content: "";
  height: 95px;
  width: 95px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner-video h2.logo span {
  display: block;
  font-size: 40px;
  line-height: 30px;
  text-transform: uppercase;
  text-align: left;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  z-index: 99;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
}

.lb-avaliacoes .mfp-close {
  background-color: #313069;
  opacity: 1;
  color: #fff;
  font-weight: 300 !important;
  font-size: 41px;
  font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 1100px) {
  .secao-detalhe-info .row .col.col-1 {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .secao-detalhe-info .row .col.col-1 .avaliar-agora {
    margin: 0;
  }
  .secao-detalhe-info .row .col.col-1 .voltar {
    display: none;
  }
  .secao-detalhe-info .row .col.col-2 {
    width: 100%;
  }
  .secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados {
    max-width: 370px;
  }
}
@media only screen and (max-width: 900px) {
  .header-pv .header-pv-1 {
    padding: 15px 0;
  }
  .header-pv .header-pv-1 .logo-input {
    width: auto;
    padding: 0;
  }
  .header-pv .header-pv-1 .logo-input form {
    display: none;
  }
  .header-pv .header-pv-1 .voltar {
    display: none;
  }
  .header-pv .header-pv-2 {
    display: none;
  }
  .secao-titulo-video {
    padding: 50px 0;
  }
  .secao-titulo-video .video-container {
    width: 100%;
    margin: 0 0 35px 0;
  }
  .secao-titulo-video .content {
    max-width: 100%;
  }
  .nav-bar {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .listagem-videos .item {
    width: calc(50% - 30px);
  }
  .listagem-videos .item:nth-child(3n+1) {
    clear: unset;
  }
  .listagem-videos .item:nth-child(2n+1) {
    clear: both;
  }
  .secao-logo .wrap {
    width: 95%;
  }
  .secao-logo img {
    float: none !important;
    margin: 15px 0 !important;
  }
}
@media only screen and (max-width: 690px) {
  .secao-detalhe-info .row .col.col-1 .avaliar-agora span {
    margin: 0 0 15px 0;
    max-width: 100%;
  }
  .secao-detalhe-info .row .col.col-1 .avaliar-agora .bt {
    float: left;
  }
  .secao-videos-home .titulo-ver-todos h4 {
    float: none;
    margin: 0 0 18px 0;
  }
  .secao-videos-home .titulo-ver-todos .right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    float: left !important;
  }
  .secao-videos-home .titulo-ver-todos .right i {
    margin: 0 18px 0 0;
  }
}
@media only screen and (max-width: 500px) {
  .secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados {
    max-width: 100%;
  }
  .secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item .video-container {
    height: auto;
    width: 100%;
    margin: 0 0 15px 0;
    padding-top: 49.2307692308%;
  }
  .secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item .content {
    width: 100%;
  }
  .secao-detalhe-info .row .col.col-2 .listagem-videos-relacionados .item .content h5 {
    min-height: unset;
  }
  .secao-video-detalhe .video-container {
    height: 274px;
    /*padding-top:100%;*/
  }
  .secao-titulo-video .video-container {
    height: 274px;
    /*padding-top:100%;*/
  }
  .listagem-videos {
    margin: 0;
  }
  .listagem-videos .item {
    width: 100%;
    margin: 0 0 35px 0;
  }
  .listagem-videos .item:last-of-type {
    margin: 0;
  }
}
@media only screen and (max-width: 375px) {
  .secao-detalhe-info .row .col.col-1 .avaliar-agora .bt {
    width: 100%;
    text-align: center;
  }
  .secao-detalhe-info .row .col.col-1 .bt {
    width: 100%;
    text-align: center;
  }
  .secao-banner-inner h4 {
    font-size: 28px;
  }
  .secao-titulo-video {
    padding: 35px 0;
  }
  .secao-titulo-video .content h4 {
    font-size: 28px;
  }
  .secao-titulo-video .content .bt {
    width: 100%;
    padding: 15px 55px;
    text-align: center;
  }
  .secao-videos-home {
    padding: 35px 0;
  }
  .secao-videos-home .titulo-ver-todos h4 {
    font-size: 28px;
  }
  .secao-videos-home .listagem-videos {
    margin: 0;
  }
  .secao-videos {
    padding: 35px 0;
  }
  .secao-videos .bt {
    width: 100%;
    margin: 35px 0 0 0;
    text-align: center;
  }
}