@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

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

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.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;
  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;
  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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.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; }

/* MINIFIED VERSION

1. Boostrap Base
2. Mmenu For Nav
3. Fontawesome Icons
4. Flaticons
5. OWL Carousel
6. Animation
7. PrettyPhoto For Light box

*/
/*=======================1. BOOTSTRAP ===============================
==================================================================*/
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
hr, img {
  border: 0; }

body, figure {
  margin: 0; }

.btn-group > .btn-group, .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .dropdown-menu {
  float: left; }

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse, .pre-scrollable {
  max-height: 340px; }

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, 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-color: transparent; }

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

b, optgroup, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

h1 {
  margin: .67em 0; }

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

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

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  vertical-align: middle; }

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

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

*, :after, :before, input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; }

pre, textarea {
  overflow: auto; }

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

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

.glyphicon, address {
  font-style: normal; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

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

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

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

input[type=checkbox], input[type=radio] {
  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-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

td, th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  blockquote, img, pre, tr {
    page-break-inside: avoid; }
  *, :after, :before {
    color: #000 !important;
    background: 0 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a, a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^='javascript:']:after, a[href^='#']:after {
    content: ''; }
  blockquote, pre {
    border: 1px solid #999; }
  thead {
    display: table-header-group; }
  img {
    max-width: 100% !important; }
  h2, h3, p {
    orphans: 3;
    widows: 3; }
  h2, h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret, .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
  .table td, .table th {
    background-color: #fff !important; }
  .table-bordered td, .table-bordered th {
    border: 1px solid #ddd !important; } }

.btn, .btn-danger.active, .btn-danger:active, .btn-default.active, .btn-default:active, .btn-info.active, .btn-info:active, .btn-primary.active, .btn-primary:active, .btn-warning.active, .btn-warning:active, .btn.active, .btn:active, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover, .form-control, .navbar-toggle, .open > .dropdown-toggle.btn-danger, .open > .dropdown-toggle.btn-default, .open > .dropdown-toggle.btn-info, .open > .dropdown-toggle.btn-primary, .open > .dropdown-toggle.btn-warning {
  background-image: none; }

.img-thumbnail, body {
  background-color: #fff; }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(../fonts/glyphicons-halflings-regular.eot);
  src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(../fonts/glyphicons-halflings-regular.woff) format("woff"), url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg"); }

.glyphicon {
  font-family: 'Glyphicons Halflings';
  font-weight: 400;
  line-height: 1;
  position: relative;
  top: 1px;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: '\2a'; }

.glyphicon-plus:before {
  content: '\2b'; }

.glyphicon-eur:before, .glyphicon-euro:before {
  content: '\20ac'; }

.glyphicon-minus:before {
  content: '\2212'; }

.glyphicon-cloud:before {
  content: '\2601'; }

.glyphicon-envelope:before {
  content: '\2709'; }

.glyphicon-pencil:before {
  content: '\270f'; }

.glyphicon-glass:before {
  content: '\e001'; }

.glyphicon-music:before {
  content: '\e002'; }

.glyphicon-search:before {
  content: '\e003'; }

.glyphicon-heart:before {
  content: '\e005'; }

.glyphicon-star:before {
  content: '\e006'; }

.glyphicon-star-empty:before {
  content: '\e007'; }

.glyphicon-user:before {
  content: '\e008'; }

.glyphicon-film:before {
  content: '\e009'; }

.glyphicon-th-large:before {
  content: '\e010'; }

.glyphicon-th:before {
  content: '\e011'; }

.glyphicon-th-list:before {
  content: '\e012'; }

.glyphicon-ok:before {
  content: '\e013'; }

.glyphicon-remove:before {
  content: '\e014'; }

.glyphicon-zoom-in:before {
  content: '\e015'; }

.glyphicon-zoom-out:before {
  content: '\e016'; }

.glyphicon-off:before {
  content: '\e017'; }

.glyphicon-signal:before {
  content: '\e018'; }

.glyphicon-cog:before {
  content: '\e019'; }

.glyphicon-trash:before {
  content: '\e020'; }

.glyphicon-home:before {
  content: '\e021'; }

.glyphicon-file:before {
  content: '\e022'; }

.glyphicon-time:before {
  content: '\e023'; }

.glyphicon-road:before {
  content: '\e024'; }

.glyphicon-download-alt:before {
  content: '\e025'; }

.glyphicon-download:before {
  content: '\e026'; }

.glyphicon-upload:before {
  content: '\e027'; }

.glyphicon-inbox:before {
  content: '\e028'; }

.glyphicon-play-circle:before {
  content: '\e029'; }

.glyphicon-repeat:before {
  content: '\e030'; }

.glyphicon-refresh:before {
  content: '\e031'; }

.glyphicon-list-alt:before {
  content: '\e032'; }

.glyphicon-lock:before {
  content: '\e033'; }

.glyphicon-flag:before {
  content: '\e034'; }

.glyphicon-headphones:before {
  content: '\e035'; }

.glyphicon-volume-off:before {
  content: '\e036'; }

.glyphicon-volume-down:before {
  content: '\e037'; }

.glyphicon-volume-up:before {
  content: '\e038'; }

.glyphicon-qrcode:before {
  content: '\e039'; }

.glyphicon-barcode:before {
  content: '\e040'; }

.glyphicon-tag:before {
  content: '\e041'; }

.glyphicon-tags:before {
  content: '\e042'; }

.glyphicon-book:before {
  content: '\e043'; }

.glyphicon-bookmark:before {
  content: '\e044'; }

.glyphicon-print:before {
  content: '\e045'; }

.glyphicon-camera:before {
  content: '\e046'; }

.glyphicon-font:before {
  content: '\e047'; }

.glyphicon-bold:before {
  content: '\e048'; }

.glyphicon-italic:before {
  content: '\e049'; }

.glyphicon-text-height:before {
  content: '\e050'; }

.glyphicon-text-width:before {
  content: '\e051'; }

.glyphicon-align-left:before {
  content: '\e052'; }

.glyphicon-align-center:before {
  content: '\e053'; }

.glyphicon-align-right:before {
  content: '\e054'; }

.glyphicon-align-justify:before {
  content: '\e055'; }

.glyphicon-list:before {
  content: '\e056'; }

.glyphicon-indent-left:before {
  content: '\e057'; }

.glyphicon-indent-right:before {
  content: '\e058'; }

.glyphicon-facetime-video:before {
  content: '\e059'; }

.glyphicon-picture:before {
  content: '\e060'; }

.glyphicon-map-marker:before {
  content: '\e062'; }

.glyphicon-adjust:before {
  content: '\e063'; }

.glyphicon-tint:before {
  content: '\e064'; }

.glyphicon-edit:before {
  content: '\e065'; }

.glyphicon-share:before {
  content: '\e066'; }

.glyphicon-check:before {
  content: '\e067'; }

.glyphicon-move:before {
  content: '\e068'; }

.glyphicon-step-backward:before {
  content: '\e069'; }

.glyphicon-fast-backward:before {
  content: '\e070'; }

.glyphicon-backward:before {
  content: '\e071'; }

.glyphicon-play:before {
  content: '\e072'; }

.glyphicon-pause:before {
  content: '\e073'; }

.glyphicon-stop:before {
  content: '\e074'; }

.glyphicon-forward:before {
  content: '\e075'; }

.glyphicon-fast-forward:before {
  content: '\e076'; }

.glyphicon-step-forward:before {
  content: '\e077'; }

.glyphicon-eject:before {
  content: '\e078'; }

.glyphicon-chevron-left:before {
  content: '\e079'; }

.glyphicon-chevron-right:before {
  content: '\e080'; }

.glyphicon-plus-sign:before {
  content: '\e081'; }

.glyphicon-minus-sign:before {
  content: '\e082'; }

.glyphicon-remove-sign:before {
  content: '\e083'; }

.glyphicon-ok-sign:before {
  content: '\e084'; }

.glyphicon-question-sign:before {
  content: '\e085'; }

.glyphicon-info-sign:before {
  content: '\e086'; }

.glyphicon-screenshot:before {
  content: '\e087'; }

.glyphicon-remove-circle:before {
  content: '\e088'; }

.glyphicon-ok-circle:before {
  content: '\e089'; }

.glyphicon-ban-circle:before {
  content: '\e090'; }

.glyphicon-arrow-left:before {
  content: '\e091'; }

.glyphicon-arrow-right:before {
  content: '\e092'; }

.glyphicon-arrow-up:before {
  content: '\e093'; }

.glyphicon-arrow-down:before {
  content: '\e094'; }

.glyphicon-share-alt:before {
  content: '\e095'; }

.glyphicon-resize-full:before {
  content: '\e096'; }

.glyphicon-resize-small:before {
  content: '\e097'; }

.glyphicon-exclamation-sign:before {
  content: '\e101'; }

.glyphicon-gift:before {
  content: '\e102'; }

.glyphicon-leaf:before {
  content: '\e103'; }

.glyphicon-fire:before {
  content: '\e104'; }

.glyphicon-eye-open:before {
  content: '\e105'; }

.glyphicon-eye-close:before {
  content: '\e106'; }

.glyphicon-warning-sign:before {
  content: '\e107'; }

.glyphicon-plane:before {
  content: '\e108'; }

.glyphicon-calendar:before {
  content: '\e109'; }

.glyphicon-random:before {
  content: '\e110'; }

.glyphicon-comment:before {
  content: '\e111'; }

.glyphicon-magnet:before {
  content: '\e112'; }

.glyphicon-chevron-up:before {
  content: '\e113'; }

.glyphicon-chevron-down:before {
  content: '\e114'; }

.glyphicon-retweet:before {
  content: '\e115'; }

.glyphicon-shopping-cart:before {
  content: '\e116'; }

.glyphicon-folder-close:before {
  content: '\e117'; }

.glyphicon-folder-open:before {
  content: '\e118'; }

.glyphicon-resize-vertical:before {
  content: '\e119'; }

.glyphicon-resize-horizontal:before {
  content: '\e120'; }

.glyphicon-hdd:before {
  content: '\e121'; }

.glyphicon-bullhorn:before {
  content: '\e122'; }

.glyphicon-bell:before {
  content: '\e123'; }

.glyphicon-certificate:before {
  content: '\e124'; }

.glyphicon-thumbs-up:before {
  content: '\e125'; }

.glyphicon-thumbs-down:before {
  content: '\e126'; }

.glyphicon-hand-right:before {
  content: '\e127'; }

.glyphicon-hand-left:before {
  content: '\e128'; }

.glyphicon-hand-up:before {
  content: '\e129'; }

.glyphicon-hand-down:before {
  content: '\e130'; }

.glyphicon-circle-arrow-right:before {
  content: '\e131'; }

.glyphicon-circle-arrow-left:before {
  content: '\e132'; }

.glyphicon-circle-arrow-up:before {
  content: '\e133'; }

.glyphicon-circle-arrow-down:before {
  content: '\e134'; }

.glyphicon-globe:before {
  content: '\e135'; }

.glyphicon-wrench:before {
  content: '\e136'; }

.glyphicon-tasks:before {
  content: '\e137'; }

.glyphicon-filter:before {
  content: '\e138'; }

.glyphicon-briefcase:before {
  content: '\e139'; }

.glyphicon-fullscreen:before {
  content: '\e140'; }

.glyphicon-dashboard:before {
  content: '\e141'; }

.glyphicon-paperclip:before {
  content: '\e142'; }

.glyphicon-heart-empty:before {
  content: '\e143'; }

.glyphicon-link:before {
  content: '\e144'; }

.glyphicon-phone:before {
  content: '\e145'; }

.glyphicon-pushpin:before {
  content: '\e146'; }

.glyphicon-usd:before {
  content: '\e148'; }

.glyphicon-gbp:before {
  content: '\e149'; }

.glyphicon-sort:before {
  content: '\e150'; }

.glyphicon-sort-by-alphabet:before {
  content: '\e151'; }

.glyphicon-sort-by-alphabet-alt:before {
  content: '\e152'; }

.glyphicon-sort-by-order:before {
  content: '\e153'; }

.glyphicon-sort-by-order-alt:before {
  content: '\e154'; }

.glyphicon-sort-by-attributes:before {
  content: '\e155'; }

.glyphicon-sort-by-attributes-alt:before {
  content: '\e156'; }

.glyphicon-unchecked:before {
  content: '\e157'; }

.glyphicon-expand:before {
  content: '\e158'; }

.glyphicon-collapse-down:before {
  content: '\e159'; }

.glyphicon-collapse-up:before {
  content: '\e160'; }

.glyphicon-log-in:before {
  content: '\e161'; }

.glyphicon-flash:before {
  content: '\e162'; }

.glyphicon-log-out:before {
  content: '\e163'; }

.glyphicon-new-window:before {
  content: '\e164'; }

.glyphicon-record:before {
  content: '\e165'; }

.glyphicon-save:before {
  content: '\e166'; }

.glyphicon-open:before {
  content: '\e167'; }

.glyphicon-saved:before {
  content: '\e168'; }

.glyphicon-import:before {
  content: '\e169'; }

.glyphicon-export:before {
  content: '\e170'; }

.glyphicon-send:before {
  content: '\e171'; }

.glyphicon-floppy-disk:before {
  content: '\e172'; }

.glyphicon-floppy-saved:before {
  content: '\e173'; }

.glyphicon-floppy-remove:before {
  content: '\e174'; }

.glyphicon-floppy-save:before {
  content: '\e175'; }

.glyphicon-floppy-open:before {
  content: '\e176'; }

.glyphicon-credit-card:before {
  content: '\e177'; }

.glyphicon-transfer:before {
  content: '\e178'; }

.glyphicon-cutlery:before {
  content: '\e179'; }

.glyphicon-header:before {
  content: '\e180'; }

.glyphicon-compressed:before {
  content: '\e181'; }

.glyphicon-earphone:before {
  content: '\e182'; }

.glyphicon-phone-alt:before {
  content: '\e183'; }

.glyphicon-tower:before {
  content: '\e184'; }

.glyphicon-stats:before {
  content: '\e185'; }

.glyphicon-sd-video:before {
  content: '\e186'; }

.glyphicon-hd-video:before {
  content: '\e187'; }

.glyphicon-subtitles:before {
  content: '\e188'; }

.glyphicon-sound-stereo:before {
  content: '\e189'; }

.glyphicon-sound-dolby:before {
  content: '\e190'; }

.glyphicon-sound-5-1:before {
  content: '\e191'; }

.glyphicon-sound-6-1:before {
  content: '\e192'; }

.glyphicon-sound-7-1:before {
  content: '\e193'; }

.glyphicon-copyright-mark:before {
  content: '\e194'; }

.glyphicon-registration-mark:before {
  content: '\e195'; }

.glyphicon-cloud-download:before {
  content: '\e197'; }

.glyphicon-cloud-upload:before {
  content: '\e198'; }

.glyphicon-tree-conifer:before {
  content: '\e199'; }

.glyphicon-tree-deciduous:before {
  content: '\e200'; }

.glyphicon-cd:before {
  content: '\e201'; }

.glyphicon-save-file:before {
  content: '\e202'; }

.glyphicon-open-file:before {
  content: '\e203'; }

.glyphicon-level-up:before {
  content: '\e204'; }

.glyphicon-copy:before {
  content: '\e205'; }

.glyphicon-paste:before {
  content: '\e206'; }

.glyphicon-alert:before {
  content: '\e209'; }

.glyphicon-equalizer:before {
  content: '\e210'; }

.glyphicon-king:before {
  content: '\e211'; }

.glyphicon-queen:before {
  content: '\e212'; }

.glyphicon-pawn:before {
  content: '\e213'; }

.glyphicon-bishop:before {
  content: '\e214'; }

.glyphicon-knight:before {
  content: '\e215'; }

.glyphicon-baby-formula:before {
  content: '\e216'; }

.glyphicon-tent:before {
  content: '\26fa'; }

.glyphicon-blackboard:before {
  content: '\e218'; }

.glyphicon-bed:before {
  content: '\e219'; }

.glyphicon-apple:before {
  content: '\f8ff'; }

.glyphicon-erase:before {
  content: '\e221'; }

.glyphicon-hourglass:before {
  content: '\231b'; }

.glyphicon-lamp:before {
  content: '\e223'; }

.glyphicon-duplicate:before {
  content: '\e224'; }

.glyphicon-piggy-bank:before {
  content: '\e225'; }

.glyphicon-scissors:before {
  content: '\e226'; }

.glyphicon-bitcoin:before, .glyphicon-btc:before, .glyphicon-xbt:before {
  content: '\e227'; }

.glyphicon-jpy:before, .glyphicon-yen:before {
  content: '\00a5'; }

.glyphicon-rub:before, .glyphicon-ruble:before {
  content: '\20bd'; }

.glyphicon-scale:before {
  content: '\e230'; }

.glyphicon-ice-lolly:before {
  content: '\e231'; }

.glyphicon-ice-lolly-tasted:before {
  content: '\e232'; }

.glyphicon-education:before {
  content: '\e233'; }

.glyphicon-option-horizontal:before {
  content: '\e234'; }

.glyphicon-option-vertical:before {
  content: '\e235'; }

.glyphicon-menu-hamburger:before {
  content: '\e236'; }

.glyphicon-modal-window:before {
  content: '\e237'; }

.glyphicon-oil:before {
  content: '\e238'; }

.glyphicon-grain:before {
  content: '\e239'; }

.glyphicon-sunglasses:before {
  content: '\e240'; }

.glyphicon-text-size:before {
  content: '\e241'; }

.glyphicon-text-color:before {
  content: '\e242'; }

.glyphicon-text-background:before {
  content: '\e243'; }

.glyphicon-object-align-top:before {
  content: '\e244'; }

.glyphicon-object-align-bottom:before {
  content: '\e245'; }

.glyphicon-object-align-horizontal:before {
  content: '\e246'; }

.glyphicon-object-align-left:before {
  content: '\e247'; }

.glyphicon-object-align-vertical:before {
  content: '\e248'; }

.glyphicon-object-align-right:before {
  content: '\e249'; }

.glyphicon-triangle-right:before {
  content: '\e250'; }

.glyphicon-triangle-left:before {
  content: '\e251'; }

.glyphicon-triangle-bottom:before {
  content: '\e252'; }

.glyphicon-triangle-top:before {
  content: '\e253'; }

.glyphicon-console:before {
  content: '\e254'; }

.glyphicon-superscript:before {
  content: '\e255'; }

.glyphicon-subscript:before {
  content: '\e256'; }

.glyphicon-menu-left:before {
  content: '\e257'; }

.glyphicon-menu-right:before {
  content: '\e258'; }

.glyphicon-menu-down:before {
  content: '\e259'; }

.glyphicon-menu-up:before {
  content: '\e260'; }

*, :after, :before {
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  text-decoration: none;
  color: #337ab7; }

a:focus, a:hover {
  text-decoration: underline;
  color: #23527c; }

a:focus {
  outline: dotted thin;
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: -2px; }

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  line-height: 1.42857143;
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border: 1px solid #ddd;
  border-radius: 4px; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #eee; }

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0; }

[role=button] {
  cursor: pointer; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }

.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
  font-weight: 400;
  line-height: 1;
  color: #777; }

.h1, .h2, .h3, h1, h2, h3 {
  margin-top: 20px;
  margin-bottom: 10px; }

.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small {
  font-size: 65%; }

.h4, .h5, .h6, h4, h5, h6 {
  margin-top: 10px;
  margin-bottom: 10px; }

.h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
  font-size: 75%; }

.h1, h1 {
  font-size: 36px; }

.h2, h2 {
  font-size: 30px; }

.h3, h3 {
  font-size: 24px; }

.h4, h4 {
  font-size: 18px; }

.h5, h5 {
  font-size: 14px; }

.h6, h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 20px; }

dt, kbd kbd, label {
  font-weight: 700; }

address, blockquote .small, blockquote footer, blockquote small, dd, dt, pre {
  line-height: 1.42857143; }

@media (min-width: 768px) {
  .lead {
    font-size: 21px; } }

.small, small {
  font-size: 85%; }

.mark, mark {
  padding: .2em;
  background-color: #fcf8e3; }

.list-inline, .list-unstyled {
  padding-left: 0;
  list-style: none; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777; }

.text-primary {
  color: #337ab7; }

a.text-primary:focus, a.text-primary:hover {
  color: #286090; }

.text-success {
  color: #3c763d; }

a.text-success:focus, a.text-success:hover {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:focus, a.text-info:hover {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:focus, a.text-warning:hover {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:focus, a.text-danger:hover {
  color: #843534; }

.bg-primary {
  color: #fff;
  background-color: #337ab7; }

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #286090; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:focus, a.bg-success:hover {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:focus, a.bg-info:hover {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #e4b9b9; }

pre code, table {
  background-color: transparent; }

.page-header {
  margin: 40px 0 20px;
  padding-bottom: 9px;
  border-bottom: 1px solid #eee; }

dl, ol, ul {
  margin-top: 0; }

blockquote ol:last-child, blockquote p:last-child, blockquote ul:last-child, ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0; }

address, dl {
  margin-bottom: 20px; }

ol, ul {
  margin-bottom: 10px; }

.list-inline {
  margin-left: -5px; }

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px; }

dd {
  margin-left: 0; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    clear: left;
    overflow: hidden;
    width: 160px;
    text-align: right;
    white-space: nowrap;
    text-overflow: ellipsis; }
  .dl-horizontal dd {
    margin-left: 180px; }
  .container {
    width: 750px; } }

abbr[data-original-title], abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #777; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

blockquote {
  font-size: 17.5px;
  margin: 0 0 20px;
  padding: 10px 20px;
  border-left: 5px solid #eee; }

blockquote .small, blockquote footer, blockquote small {
  font-size: 80%;
  display: block;
  color: #777; }

legend, pre {
  display: block;
  color: #333; }

blockquote .small:before, blockquote footer:before, blockquote small:before {
  content: '\2014 \00A0'; }

.blockquote-reverse .small:before, .blockquote-reverse footer:before, .blockquote-reverse small:before, .popover > .arrow:after, blockquote.pull-right .small:before, blockquote.pull-right footer:before, blockquote.pull-right small:before {
  content: ''; }

.blockquote-reverse, blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0; }

code, kbd {
  font-size: 90%;
  padding: 2px 4px; }

caption, th {
  text-align: left; }

.blockquote-reverse .small:after, .blockquote-reverse footer:after, .blockquote-reverse small:after, blockquote.pull-right .small:after, blockquote.pull-right footer:after, blockquote.pull-right small:after {
  content: '\00A0 \2014'; }

code, kbd, pre, samp {
  font-family: Menlo,Monaco,Consolas,'Courier New',monospace; }

code {
  color: #c7254e;
  border-radius: 4px;
  background-color: #f9f2f4; }

kbd {
  color: #fff;
  border-radius: 3px;
  background-color: #333;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }

kbd kbd {
  font-size: 100%;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }

pre {
  font-size: 13px;
  margin: 0 0 10px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f5f5f5; }

.container, .container-fluid {
  margin-right: auto;
  margin-left: auto; }

pre code {
  font-size: inherit;
  padding: 0;
  white-space: pre-wrap;
  color: inherit;
  border-radius: 0; }

.container, .container-fluid {
  padding-right: 15px;
  padding-left: 15px; }

.pre-scrollable {
  overflow-y: scroll; }

@media (min-width: 992px) {
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  .container {
    width: 1170px; } }

.row {
  margin-right: -15px;
  margin-left: -15px; }

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0; } }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  line-height: 1.42857143;
  padding: 8px;
  vertical-align: top;
  border-top: 1px solid #ddd; }

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd; }

.table > caption + thead > tr:first-child > td, .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > td, .table > thead:first-child > tr:first-child > th {
  border-top: 0; }

.table > tbody + tbody {
  border-top: 2px solid #ddd; }

.table .table {
  background-color: #fff; }

.table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
  padding: 5px; }

.table-bordered, .table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
  border: 1px solid #ddd; }

.table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
  border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover, .table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > thead > tr > td.active, .table > thead > tr > th.active {
  background-color: #f5f5f5; }

table col[class*=col-] {
  position: static;
  display: table-column;
  float: none; }

table td[class*=col-], table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none; }

.table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover {
  background-color: #e8e8e8; }

.table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > thead > tr > td.success, .table > thead > tr > th.success {
  background-color: #dff0d8; }

.table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover {
  background-color: #d0e9c6; }

.table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > thead > tr > td.info, .table > thead > tr > th.info {
  background-color: #d9edf7; }

.table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover {
  background-color: #c4e3f3; }

.table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > thead > tr > td.warning, .table > thead > tr > th.warning {
  background-color: #fcf8e3; }

.table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover {
  background-color: #faf2cc; }

.table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > thead > tr > td.danger, .table > thead > tr > th.danger {
  background-color: #f2dede; }

.table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover {
  background-color: #ebcccc; }

.table-responsive {
  overflow-x: auto;
  min-height: .01%; }

@media screen and (max-width: 767px) {
  .table-responsive {
    overflow-y: hidden;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
  .table-responsive > .table {
    margin-bottom: 0; }
  .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > thead > tr > th {
    white-space: nowrap; }
  .table-responsive > .table-bordered {
    border: 0; }
  .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: 0; }
  .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right: 0; }
  .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; } }

fieldset, legend {
  padding: 0;
  border: 0; }

fieldset {
  min-width: 0;
  margin: 0; }

legend {
  font-size: 21px;
  line-height: inherit;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px; }

input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none; }

input[type=checkbox], input[type=radio] {
  line-height: normal;
  margin: 4px 0 0;
  margin-top: 1px\9; }

.form-control, output {
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  display: block; }

input[type=file] {
  display: block; }

input[type=range] {
  display: block;
  width: 100%; }

select[multiple], select[size] {
  height: auto; }

input[type=checkbox]:focus, input[type=file]:focus, input[type=radio]:focus {
  outline: dotted thin;
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: -2px; }

output {
  padding-top: 7px; }

.form-control {
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.form-control::-moz-placeholder {
  opacity: 1;
  color: #999; }

.form-control:-ms-input-placeholder {
  color: #999; }

.form-control::-webkit-input-placeholder {
  color: #999; }

.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .form-control-feedback, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
  color: #3c763d; }

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  opacity: 1;
  background-color: #eee; }

.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed; }

textarea.form-control {
  height: auto; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control, input[type=datetime-local].form-control, input[type=month].form-control, input[type=time].form-control {
    line-height: 34px; }
  .input-group-sm input[type=date], .input-group-sm input[type=datetime-local], .input-group-sm input[type=month], .input-group-sm input[type=time], input[type=date].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm, input[type=time].input-sm {
    line-height: 30px; }
  .input-group-lg input[type=date], .input-group-lg input[type=datetime-local], .input-group-lg input[type=month], .input-group-lg input[type=time], input[type=date].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg, input[type=time].input-lg {
    line-height: 46px; } }

.form-group {
  margin-bottom: 15px; }

.checkbox, .radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }

.checkbox label, .radio label {
  font-weight: 400;
  min-height: 20px;
  margin-bottom: 0;
  padding-left: 20px;
  cursor: pointer; }

.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
  position: absolute;
  margin-top: 4px\9;
  margin-left: -20px; }

.checkbox + .checkbox, .radio + .radio {
  margin-top: -5px; }

.checkbox-inline, .radio-inline {
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding-left: 20px;
  cursor: pointer;
  vertical-align: middle; }

.checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline {
  margin-top: 0;
  margin-left: 10px; }

.checkbox-inline.disabled, .checkbox.disabled label, .radio-inline.disabled, .radio.disabled label, fieldset[disabled] .checkbox label, fieldset[disabled] .checkbox-inline, fieldset[disabled] .radio label, fieldset[disabled] .radio-inline, fieldset[disabled] input[type=checkbox], fieldset[disabled] input[type=radio], input[type=checkbox].disabled, input[type=checkbox][disabled], input[type=radio].disabled, input[type=radio][disabled] {
  cursor: not-allowed; }

.form-control-static {
  min-height: 34px;
  margin-bottom: 0;
  padding-top: 7px;
  padding-bottom: 7px; }

.form-control-static.input-lg, .form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0; }

.form-group-sm .form-control, .input-sm {
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px; }

.input-sm {
  line-height: 1.5;
  height: 30px; }

select.input-sm {
  line-height: 30px;
  height: 30px; }

select[multiple].input-sm, textarea.input-sm {
  height: auto; }

.form-group-sm .form-control {
  line-height: 1.5;
  height: 30px; }

.form-group-sm select.form-control {
  line-height: 30px;
  height: 30px; }

.form-group-sm select[multiple].form-control, .form-group-sm textarea.form-control {
  height: auto; }

.form-group-sm .form-control-static {
  font-size: 12px;
  line-height: 1.5;
  height: 30px;
  min-height: 32px;
  padding: 6px 10px; }

.form-group-lg .form-control, .input-lg {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 18px; }

.input-lg {
  line-height: 1.3333333;
  height: 46px; }

select.input-lg {
  line-height: 46px;
  height: 46px; }

select[multiple].input-lg, textarea.input-lg {
  height: auto; }

.form-group-lg .form-control {
  line-height: 1.3333333;
  height: 46px; }

.form-group-lg select.form-control {
  line-height: 46px;
  height: 46px; }

.form-group-lg select[multiple].form-control, .form-group-lg textarea.form-control {
  height: auto; }

.form-group-lg .form-control-static {
  font-size: 18px;
  line-height: 1.3333333;
  height: 46px;
  min-height: 38px;
  padding: 11px 16px; }

.has-feedback {
  position: relative; }

.has-feedback .form-control {
  padding-right: 42.5px; }

.form-control-feedback {
  line-height: 34px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: block;
  width: 34px;
  height: 34px;
  text-align: center;
  pointer-events: none; }

.collapsing, .dropdown, .dropup {
  position: relative; }

.form-group-lg .form-control + .form-control-feedback, .input-group-lg + .form-control-feedback, .input-lg + .form-control-feedback {
  line-height: 46px;
  width: 46px;
  height: 46px; }

.form-group-sm .form-control + .form-control-feedback, .input-group-sm + .form-control-feedback, .input-sm + .form-control-feedback {
  line-height: 30px;
  width: 30px;
  height: 30px; }

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .has-warning .form-control-feedback, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline, .has-warning.checkbox label, .has-warning.checkbox-inline label, .has-warning.radio label, .has-warning.radio-inline label {
  color: #8a6d3b; }

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .form-control-feedback, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
  color: #a94442; }

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

.has-feedback label ~ .form-control-feedback {
  top: 25px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .form-inline .form-control-static, .form-inline .form-group {
    display: inline-block; }
  .form-inline .control-label, .form-inline .form-group {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
  .form-inline .input-group .form-control, .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn {
    width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .checkbox, .form-inline .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .checkbox label, .form-inline .radio label {
    padding-left: 0; }
  .form-inline .checkbox input[type=checkbox], .form-inline .radio input[type=radio] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; }
  .form-horizontal .control-label {
    margin-bottom: 0;
    padding-top: 7px;
    text-align: right; } }

.form-horizontal .checkbox, .form-horizontal .checkbox-inline, .form-horizontal .radio, .form-horizontal .radio-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

.form-horizontal .checkbox, .form-horizontal .radio {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px; }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    font-size: 18px;
    padding-top: 14.33px; }
  .form-horizontal .form-group-sm .control-label {
    font-size: 12px;
    padding-top: 6px; } }

.btn {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  display: inline-block;
  margin-bottom: 0;
  padding: 6px 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 4px;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: dotted thin;
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: -2px; }

.btn.focus, .btn:focus, .btn:hover {
  text-decoration: none;
  color: #333; }

.btn.active, .btn:active {
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: .65;
  -webkit-box-shadow: none;
  box-shadow: none;
  filter: alpha(opacity=65); }

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-default {
  color: #333;
  border-color: #ccc;
  background-color: #fff; }

.btn-default.focus, .btn-default:focus {
  color: #333;
  border-color: #8c8c8c;
  background-color: #e6e6e6; }

.btn-default.active, .btn-default:active, .btn-default:hover, .open > .dropdown-toggle.btn-default {
  color: #333;
  border-color: #adadad;
  background-color: #e6e6e6; }

.btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
  color: #333;
  border-color: #8c8c8c;
  background-color: #d4d4d4; }

.btn-default.disabled, .btn-default.disabled.active, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled:focus, .btn-default.disabled:hover, .btn-default[disabled], .btn-default[disabled].active, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled]:focus, .btn-default[disabled]:hover, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default.active, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:hover {
  border-color: #ccc;
  background-color: #fff; }

.btn-default .badge {
  color: #fff;
  background-color: #333; }

.btn-primary {
  color: #fff;
  border-color: #2e6da4;
  background-color: #337ab7; }

.btn-primary.focus, .btn-primary:focus {
  color: #fff;
  border-color: #122b40;
  background-color: #286090; }

.btn-primary.active, .btn-primary:active, .btn-primary:hover, .open > .dropdown-toggle.btn-primary {
  color: #fff;
  border-color: #204d74;
  background-color: #286090; }

.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
  color: #fff;
  border-color: #122b40;
  background-color: #204d74; }

.btn-primary.disabled, .btn-primary.disabled.active, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled], .btn-primary[disabled].active, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary.active, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
  border-color: #2e6da4;
  background-color: #337ab7; }

.btn-primary .badge {
  color: #337ab7;
  background-color: #fff; }

.btn-success {
  color: #fff;
  border-color: #4cae4c;
  background-color: #5cb85c; }

.btn-success.focus, .btn-success:focus {
  color: #fff;
  border-color: #255625;
  background-color: #449d44; }

.btn-success.active, .btn-success:active, .btn-success:hover, .open > .dropdown-toggle.btn-success {
  color: #fff;
  border-color: #398439;
  background-color: #449d44; }

.btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover {
  color: #fff;
  border-color: #255625;
  background-color: #398439; }

.btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success {
  background-image: none; }

.btn-success.disabled, .btn-success.disabled.active, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled:focus, .btn-success.disabled:hover, .btn-success[disabled], .btn-success[disabled].active, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled]:focus, .btn-success[disabled]:hover, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success.active, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:hover {
  border-color: #4cae4c;
  background-color: #5cb85c; }

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff; }

.btn-info {
  color: #fff;
  border-color: #46b8da;
  background-color: #5bc0de; }

.btn-info.focus, .btn-info:focus {
  color: #fff;
  border-color: #1b6d85;
  background-color: #31b0d5; }

.btn-info.active, .btn-info:active, .btn-info:hover, .open > .dropdown-toggle.btn-info {
  color: #fff;
  border-color: #269abc;
  background-color: #31b0d5; }

.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover {
  color: #fff;
  border-color: #1b6d85;
  background-color: #269abc; }

.btn-info.disabled, .btn-info.disabled.active, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled:focus, .btn-info.disabled:hover, .btn-info[disabled], .btn-info[disabled].active, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled]:focus, .btn-info[disabled]:hover, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info.active, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:hover {
  border-color: #46b8da;
  background-color: #5bc0de; }

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff; }

.btn-warning {
  color: #fff;
  border-color: #eea236;
  background-color: #f0ad4e; }

.btn-warning.focus, .btn-warning:focus {
  color: #fff;
  border-color: #985f0d;
  background-color: #ec971f; }

.btn-warning.active, .btn-warning:active, .btn-warning:hover, .open > .dropdown-toggle.btn-warning {
  color: #fff;
  border-color: #d58512;
  background-color: #ec971f; }

.btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover {
  color: #fff;
  border-color: #985f0d;
  background-color: #d58512; }

.btn-warning.disabled, .btn-warning.disabled.active, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled:focus, .btn-warning.disabled:hover, .btn-warning[disabled], .btn-warning[disabled].active, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled]:focus, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning.active, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:hover {
  border-color: #eea236;
  background-color: #f0ad4e; }

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff; }

.btn-danger {
  color: #fff;
  border-color: #d43f3a;
  background-color: #d9534f; }

.btn-danger.focus, .btn-danger:focus {
  color: #fff;
  border-color: #761c19;
  background-color: #c9302c; }

.btn-danger.active, .btn-danger:active, .btn-danger:hover, .open > .dropdown-toggle.btn-danger {
  color: #fff;
  border-color: #ac2925;
  background-color: #c9302c; }

.btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover {
  color: #fff;
  border-color: #761c19;
  background-color: #ac2925; }

.btn-danger.disabled, .btn-danger.disabled.active, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled:focus, .btn-danger.disabled:hover, .btn-danger[disabled], .btn-danger[disabled].active, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled]:focus, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger.active, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:hover {
  border-color: #d43f3a;
  background-color: #d9534f; }

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff; }

.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0; }

.btn-link, .btn-link.active, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }

.btn-link, .btn-link:active, .btn-link:focus, .btn-link:hover {
  border-color: transparent; }

.btn-link:focus, .btn-link:hover {
  text-decoration: underline;
  color: #23527c;
  background-color: transparent; }

.btn-link[disabled]:focus, .btn-link[disabled]:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:hover {
  text-decoration: none;
  color: #777; }

.btn-group-lg > .btn, .btn-lg {
  font-size: 18px;
  line-height: 1.3333333;
  padding: 10px 16px;
  border-radius: 6px; }

.btn-group-sm > .btn, .btn-sm {
  font-size: 12px;
  line-height: 1.5;
  padding: 5px 10px;
  border-radius: 3px; }

.btn-group-xs > .btn, .btn-xs {
  font-size: 12px;
  line-height: 1.5;
  padding: 1px 5px;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
  width: 100%; }

.fade {
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
  opacity: 0; }

.fade.in {
  opacity: 1; }

.collapse {
  display: none; }

.collapse.in {
  display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  overflow: hidden;
  height: 0;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height,visibility;
  -o-transition-property: height,visibility;
  transition-property: height,visibility; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  font-size: 14px;
  position: absolute;
  z-index: 1000;
  top: 100%;
  left: 0;
  display: none;
  min-width: 160px;
  margin: 2px 0 0;
  padding: 5px 0;
  list-style: none;
  text-align: left;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }

.dropdown-menu-right, .dropdown-menu.pull-right {
  right: 0;
  left: auto; }

.dropdown-header, .dropdown-menu > li > a {
  line-height: 1.42857143;
  display: block;
  padding: 3px 20px;
  white-space: nowrap; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child), .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn, .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.dropdown-menu .divider {
  overflow: hidden;
  height: 1px;
  margin: 9px 0;
  background-color: #e5e5e5; }

.dropdown-menu > li > a {
  font-weight: 400;
  clear: both;
  color: #333; }

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
  text-decoration: none;
  color: #fff;
  outline: 0;
  background-color: #337ab7; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
  color: #777; }

.dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
  cursor: not-allowed;
  text-decoration: none;
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-left {
  right: auto;
  left: 0; }

.dropdown-header {
  font-size: 12px;
  color: #777; }

.dropdown-backdrop {
  position: fixed;
  z-index: 990;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.nav-justified > .dropdown .dropdown-menu, .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
  content: '';
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid\9; }

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0; } }

.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.btn-group-vertical > .btn, .btn-group > .btn {
  position: relative;
  float: left; }

.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
  z-index: 2; }

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
  margin-left: 5px; }

.btn .caret, .btn-group > .btn:first-child {
  margin-left: 0; }

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px; }

.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none; }

.btn-lg .caret {
  border-width: 5px 5px 0; }

.dropup .btn-lg .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%; }

.btn-group-justified > .btn-group .btn {
  width: 100%; }

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto; }

[data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }

.input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0; }

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0; }

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  font-size: 18px;
  line-height: 1.3333333;
  height: 46px;
  padding: 10px 16px;
  border-radius: 6px; }

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
  line-height: 46px;
  height: 46px; }

select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn, textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn {
  height: auto; }

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  font-size: 12px;
  line-height: 1.5;
  height: 30px;
  padding: 5px 10px;
  border-radius: 3px; }

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
  line-height: 30px;
  height: 30px; }

select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn, textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn {
  height: auto; }

.input-group .form-control, .input-group-addon, .input-group-btn {
  display: table-cell; }

.nav > li, .nav > li > a {
  display: block;
  position: relative; }

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

.input-group-addon, .input-group-btn {
  width: 1%;
  vertical-align: middle;
  white-space: nowrap; }

.input-group-addon {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 6px 12px;
  text-align: center;
  color: #555;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #eee; }

.input-group-addon.input-sm {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3px; }

.input-group-addon.input-lg {
  font-size: 18px;
  padding: 10px 16px;
  border-radius: 6px; }

.input-group-addon input[type=checkbox], .input-group-addon input[type=radio] {
  margin-top: 0; }

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  font-size: 0;
  position: relative;
  white-space: nowrap; }

.input-group-btn > .btn {
  position: relative; }

.input-group-btn > .btn + .btn {
  margin-left: -1px; }

.input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover {
  z-index: 2; }

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
  margin-right: -1px; }

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }

.nav > li > a {
  padding: 10px 15px; }

.nav > li > a:focus, .nav > li > a:hover {
  text-decoration: none;
  background-color: #eee; }

.nav > li.disabled > a {
  color: #777; }

.nav > li.disabled > a:focus, .nav > li.disabled > a:hover {
  cursor: not-allowed;
  text-decoration: none;
  color: #777;
  background-color: transparent; }

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
  border-color: #337ab7;
  background-color: #eee; }

.nav .nav-divider {
  overflow: hidden;
  height: 1px;
  margin: 9px 0;
  background-color: #e5e5e5; }

.nav > li > a > img {
  max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }

.nav-tabs > li {
  float: left;
  margin-bottom: -1px; }

.nav-tabs > li > a {
  line-height: 1.42857143;
  margin-right: 2px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0; }

.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd; }

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
  cursor: default;
  color: #555;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  background-color: #fff; }

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0; }

.nav-tabs.nav-justified > li {
  float: none; }

.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
  border: 1px solid #ddd; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
    border-bottom-color: #fff; } }

.nav-pills > li {
  float: left; }

.nav-justified > li, .nav-stacked > li {
  float: none; }

.nav-pills > li > a {
  border-radius: 4px; }

.nav-pills > li + li {
  margin-left: 2px; }

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #337ab7; }

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0; }

.nav-justified {
  width: 100%; }

.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center; }

.nav-tabs-justified {
  border-bottom: 0; }

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover {
  border: 1px solid #ddd; }

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-justified > li > a {
    margin-bottom: 0; }
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover {
    border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }

.navbar-collapse.in {
  overflow-y: auto; }

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px; }
  .navbar-header {
    float: left; }
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-collapse.collapse {
    display: block !important;
    overflow: visible !important;
    height: auto !important;
    padding-bottom: 0; }
  .navbar-collapse.in {
    overflow-y: visible; }
  .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse {
    padding-right: 0;
    padding-left: 0; } }

.carousel-inner, .embed-responsive, .modal, .modal-open, .progress {
  overflow: hidden; }

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 200px; } }

.container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
  margin-right: -15px;
  margin-left: -15px; }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }

.navbar-fixed-bottom, .navbar-fixed-top {
  position: fixed;
  z-index: 1030;
  right: 0;
  left: 0; }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  font-size: 18px;
  line-height: 20px;
  float: left;
  height: 50px;
  padding: 15px; }

.navbar-brand:focus, .navbar-brand:hover {
  text-decoration: none; }

.navbar-brand > img {
  display: block; }

@media (min-width: 768px) {
  .container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
    margin-right: 0;
    margin-left: 0; }
  .navbar-fixed-bottom, .navbar-fixed-top, .navbar-static-top {
    border-radius: 0; }
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: transparent; }

.navbar-toggle:focus {
  outline: 0; }

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px; }

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }

.navbar-nav {
  margin: 7.5px -15px; }

.navbar-nav > li > a {
  line-height: 20px;
  padding-top: 10px;
  padding-bottom: 10px; }

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    border: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu > li > a {
    padding: 5px 15px 5px 25px; }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px; }
  .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-nav .open .dropdown-menu > li > a:hover {
    background-image: none; } }

.progress-bar-striped, .progress-striped .progress-bar, .progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

@media (min-width: 768px) {
  .navbar-toggle {
    display: none; }
  .navbar-nav {
    float: left;
    margin: 0; }
  .navbar-nav > li {
    float: left; }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px; } }

.navbar-form {
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 8px -15px; }

@media (min-width: 768px) {
  .navbar-form .form-control-static, .navbar-form .form-group {
    display: inline-block; }
  .navbar-form .control-label, .navbar-form .form-group {
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
  .navbar-form .input-group .form-control, .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn {
    width: auto; }
  .navbar-form .input-group > .form-control {
    width: 100%; }
  .navbar-form .checkbox, .navbar-form .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .checkbox label, .navbar-form .radio label {
    padding-left: 0; }
  .navbar-form .checkbox input[type=checkbox], .navbar-form .radio input[type=radio] {
    position: relative;
    margin-left: 0; }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0; }
  .navbar-form {
    width: auto;
    margin-right: 0;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; } }

.breadcrumb > li, .pagination {
  display: inline-block; }

.btn .badge, .btn .label {
  top: -1px;
  position: relative; }

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px; }
  .navbar-form .form-group:last-child {
    margin-bottom: 0; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-radius: 4px 4px 0 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }

.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px; }

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px; }

.media, .navbar-text {
  margin-top: 15px; }

.navbar-text {
  margin-bottom: 15px; }

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px; }
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
  .navbar-right ~ .navbar-right {
    margin-right: 0; } }

.navbar-default {
  border-color: #e7e7e7;
  background-color: #f8f8f8; }

.navbar-default .navbar-brand {
  color: #777; }

.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
  color: #5e5e5e;
  background-color: transparent; }

.navbar-default .navbar-nav > li > a, .navbar-default .navbar-text {
  color: #777; }

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
  color: #333;
  background-color: transparent; }

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
  color: #555;
  background-color: #e7e7e7; }

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:focus, .navbar-default .navbar-nav > .disabled > a:hover {
  color: #ccc;
  background-color: transparent; }

.navbar-default .navbar-toggle {
  border-color: #ddd; }

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: #ddd; }

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888; }

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border-color: #e7e7e7; }

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
  color: #555;
  background-color: #e7e7e7; }

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777; }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #333;
    background-color: transparent; }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
    color: #ccc;
    background-color: transparent; } }

.navbar-default .navbar-link {
  color: #777; }

.navbar-default .navbar-link:hover {
  color: #333; }

.navbar-default .btn-link {
  color: #777; }

.navbar-default .btn-link:focus, .navbar-default .btn-link:hover {
  color: #333; }

.navbar-default .btn-link[disabled]:focus, .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:focus, fieldset[disabled] .navbar-default .btn-link:hover {
  color: #ccc; }

.navbar-inverse {
  border-color: #080808;
  background-color: #222; }

.navbar-inverse .navbar-brand {
  color: #9d9d9d; }

.navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover {
  color: #fff;
  background-color: transparent; }

.navbar-inverse .navbar-nav > li > a, .navbar-inverse .navbar-text {
  color: #9d9d9d; }

.navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .navbar-nav > li > a:hover {
  color: #fff;
  background-color: transparent; }

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
  color: #fff;
  background-color: #080808; }

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:focus, .navbar-inverse .navbar-nav > .disabled > a:hover {
  color: #444;
  background-color: transparent; }

.navbar-inverse .navbar-toggle {
  border-color: #333; }

.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
  background-color: #333; }

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff; }

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  border-color: #101010; }

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
  color: #fff;
  background-color: #080808; }

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #fff;
    background-color: transparent; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
    color: #fff;
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
    color: #444;
    background-color: transparent; } }

.navbar-inverse .navbar-link {
  color: #9d9d9d; }

.navbar-inverse .navbar-link:hover {
  color: #fff; }

.navbar-inverse .btn-link {
  color: #9d9d9d; }

.navbar-inverse .btn-link:focus, .navbar-inverse .btn-link:hover {
  color: #fff; }

.navbar-inverse .btn-link[disabled]:focus, .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:focus, fieldset[disabled] .navbar-inverse .btn-link:hover {
  color: #444; }

.breadcrumb {
  margin-bottom: 20px;
  padding: 8px 15px;
  list-style: none;
  border-radius: 4px;
  background-color: #f5f5f5; }

.breadcrumb > li + li:before {
  padding: 0 5px;
  content: '/\00a0';
  color: #ccc; }

.breadcrumb > .active {
  color: #777; }

.pagination {
  margin: 20px 0;
  padding-left: 0;
  border-radius: 4px; }

.pager li, .pagination > li {
  display: inline; }

.pagination > li > a, .pagination > li > span {
  line-height: 1.42857143;
  position: relative;
  float: left;
  margin-left: -1px;
  padding: 6px 12px;
  text-decoration: none;
  color: #337ab7;
  border: 1px solid #ddd;
  background-color: #fff; }

.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 3;
  color: #23527c;
  border-color: #ddd;
  background-color: #eee; }

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  z-index: 2;
  cursor: default;
  color: #fff;
  border-color: #337ab7;
  background-color: #337ab7; }

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  cursor: not-allowed;
  color: #777;
  border-color: #ddd;
  background-color: #fff; }

.pagination-lg > li > a, .pagination-lg > li > span {
  font-size: 18px;
  line-height: 1.3333333;
  padding: 10px 16px; }

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px; }

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.pagination-sm > li > a, .pagination-sm > li > span {
  font-size: 12px;
  line-height: 1.5;
  padding: 5px 10px; }

.badge, .label {
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-align: center; }

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px; }

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

.pager {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
  text-align: center; }

.pager li > a, .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #ddd;
  border-radius: 15px;
  background-color: #fff; }

.pager li > a:focus, .pager li > a:hover {
  text-decoration: none;
  background-color: #eee; }

.pager .next > a, .pager .next > span {
  float: right; }

.pager .previous > a, .pager .previous > span {
  float: left; }

.close, .list-group-item > .badge {
  float: right; }

.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
  cursor: not-allowed;
  color: #777;
  background-color: #fff; }

.label {
  font-size: 75%;
  display: inline;
  padding: .2em .6em .3em;
  vertical-align: baseline;
  color: #fff;
  border-radius: .25em; }

a.label:focus, a.label:hover {
  cursor: pointer;
  text-decoration: none;
  color: #fff; }

.label:empty {
  display: none; }

.label-default {
  background-color: #777; }

.label-default[href]:focus, .label-default[href]:hover {
  background-color: #5e5e5e; }

.label-primary {
  background-color: #337ab7; }

.label-primary[href]:focus, .label-primary[href]:hover {
  background-color: #286090; }

.label-success {
  background-color: #5cb85c; }

.label-success[href]:focus, .label-success[href]:hover {
  background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }

.label-info[href]:focus, .label-info[href]:hover {
  background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }

.label-warning[href]:focus, .label-warning[href]:hover {
  background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }

.label-danger[href]:focus, .label-danger[href]:hover {
  background-color: #c9302c; }

.badge {
  font-size: 12px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  vertical-align: middle;
  color: #fff;
  border-radius: 10px;
  background-color: #777; }

.badge:empty {
  display: none; }

.media-object, .thumbnail {
  display: block; }

.btn-group-xs > .btn .badge, .btn-xs .badge {
  top: 0;
  padding: 1px 5px; }

a.badge:focus, a.badge:hover {
  cursor: pointer;
  text-decoration: none;
  color: #fff; }

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff; }

.jumbotron, .jumbotron .h1, .jumbotron h1 {
  color: inherit; }

.list-group-item > .badge + .badge {
  margin-right: 5px; }

.nav-pills > li > a > .badge {
  margin-left: 3px; }

.jumbotron {
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eee; }

.jumbotron p {
  font-size: 21px;
  font-weight: 200;
  margin-bottom: 15px; }

.alert .alert-link, .close {
  font-weight: 700; }

.alert, .thumbnail {
  margin-bottom: 20px; }

.jumbotron > hr {
  border-top-color: #d5d5d5; }

.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px; }

.jumbotron .container {
  max-width: 100%; }

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px; }
  .container .jumbotron, .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px; }
  .jumbotron .h1, .jumbotron h1 {
    font-size: 63px; } }

.thumbnail {
  line-height: 1.42857143;
  padding: 4px;
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff; }

.thumbnail a > img, .thumbnail > img {
  margin-right: auto;
  margin-left: auto; }

a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover {
  border-color: #337ab7; }

.thumbnail .caption {
  padding: 9px;
  color: #333; }

.alert {
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 4px; }

.alert h4 {
  margin-top: 0;
  color: inherit; }

.alert > p, .alert > ul {
  margin-bottom: 0; }

.alert > p + p {
  margin-top: 5px; }

.alert-dismissable, .alert-dismissible {
  padding-right: 35px; }

.alert-dismissable .close, .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit; }

.modal, .modal-backdrop {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.alert-success {
  color: #3c763d;
  border-color: #d6e9c6;
  background-color: #dff0d8; }

.alert-success hr {
  border-top-color: #c9e2b3; }

.alert-success .alert-link {
  color: #2b542c; }

.alert-info {
  color: #31708f;
  border-color: #bce8f1;
  background-color: #d9edf7; }

.alert-info hr {
  border-top-color: #a6e1ec; }

.alert-info .alert-link {
  color: #245269; }

.alert-warning {
  color: #8a6d3b;
  border-color: #faebcc;
  background-color: #fcf8e3; }

.alert-warning hr {
  border-top-color: #f7e1b5; }

.alert-warning .alert-link {
  color: #66512c; }

.alert-danger {
  color: #a94442;
  border-color: #ebccd1;
  background-color: #f2dede; }

.alert-danger hr {
  border-top-color: #e4b9c0; }

.alert-danger .alert-link {
  color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  height: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  background-color: #f5f5f5;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  font-size: 12px;
  line-height: 20px;
  float: left;
  width: 0;
  height: 100%;
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
  text-align: center;
  color: #fff;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); }

.progress-bar-striped, .progress-striped .progress-bar {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px; }

.progress-bar.active, .progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #5cb85c; }

.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-striped .progress-bar-info, .progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #5bc0de; }

.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #f0ad4e; }

.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #d9534f; }

.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media:first-child {
  margin-top: 0; }

.media, .media-body {
  overflow: hidden;
  zoom: 1; }

.media-body {
  width: 10000px; }

.media-object.img-thumbnail {
  max-width: none; }

.media-right, .media > .pull-right {
  padding-left: 10px; }

.media-left, .media > .pull-left {
  padding-right: 10px; }

.media-body, .media-left, .media-right {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  margin-bottom: -1px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #fff; }

.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

a.list-group-item, button.list-group-item {
  color: #555; }

a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
  color: #333; }

a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
  cursor: not-allowed;
  color: #777;
  background-color: #eee; }

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
  color: inherit; }

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
  color: #777; }

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  border-color: #337ab7;
  background-color: #337ab7; }

.list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > small {
  color: inherit; }

.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
  color: #c7ddef; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success, button.list-group-item-success {
  color: #3c763d; }

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
  color: inherit; }

a.list-group-item-success:focus, a.list-group-item-success:hover, button.list-group-item-success:focus, button.list-group-item-success:hover {
  color: #3c763d;
  background-color: #d0e9c6; }

a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover, button.list-group-item-success.active, button.list-group-item-success.active:focus, button.list-group-item-success.active:hover {
  color: #fff;
  border-color: #3c763d;
  background-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info, button.list-group-item-info {
  color: #31708f; }

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
  color: inherit; }

a.list-group-item-info:focus, a.list-group-item-info:hover, button.list-group-item-info:focus, button.list-group-item-info:hover {
  color: #31708f;
  background-color: #c4e3f3; }

a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover, button.list-group-item-info.active, button.list-group-item-info.active:focus, button.list-group-item-info.active:hover {
  color: #fff;
  border-color: #31708f;
  background-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning, button.list-group-item-warning {
  color: #8a6d3b; }

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
  color: inherit; }

a.list-group-item-warning:focus, a.list-group-item-warning:hover, button.list-group-item-warning:focus, button.list-group-item-warning:hover {
  color: #8a6d3b;
  background-color: #faf2cc; }

a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover, button.list-group-item-warning.active, button.list-group-item-warning.active:focus, button.list-group-item-warning.active:hover {
  color: #fff;
  border-color: #8a6d3b;
  background-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger, button.list-group-item-danger {
  color: #a94442; }

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
  color: inherit; }

a.list-group-item-danger:focus, a.list-group-item-danger:hover, button.list-group-item-danger:focus, button.list-group-item-danger:hover {
  color: #a94442;
  background-color: #ebcccc; }

a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover, button.list-group-item-danger.active, button.list-group-item-danger.active:focus, button.list-group-item-danger.active:hover {
  color: #fff;
  border-color: #a94442;
  background-color: #a94442; }

.panel-heading > .dropdown .dropdown-toggle, .panel-title, .panel-title > .small, .panel-title > .small > a, .panel-title > a, .panel-title > small, .panel-title > small > a {
  color: inherit; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  line-height: 1.3;
  margin-bottom: 0; }

.panel {
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-title, .panel > .list-group, .panel > .panel-collapse > .list-group, .panel > .panel-collapse > .table, .panel > .table, .panel > .table-responsive > .table {
  margin-bottom: 0; }

.panel-body {
  padding: 15px; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel-title {
  font-size: 16px;
  margin-top: 0; }

.panel-footer {
  padding: 10px 15px;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: #f5f5f5; }

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0; }

.panel-group .panel-heading, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
  border-bottom: 0; }

.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.list-group + .panel-footer, .panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.panel > .panel-collapse > .table caption, .panel > .table caption, .panel > .table-responsive > .table caption {
  padding-right: 15px;
  padding-left: 15px; }

.panel > .table-responsive:first-child > .table:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table:first-child > thead:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px; }

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px; }

.panel > .table-responsive:last-child > .table:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px; }

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px; }

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child td, .panel > .table > tbody:first-child > tr:first-child th {
  border-top: 0; }

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
  border: 0; }

.panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
  border-left: 0; }

.panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
  border-right: 0; }

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0; }

.panel-group {
  margin-bottom: 20px; }

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px; }

.panel-group .panel + .panel {
  margin-top: 5px; }

.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 1px solid #ddd; }

.panel-group .panel-footer {
  border-top: 0; }

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }

.panel-default > .panel-heading {
  color: #333;
  border-color: #ddd;
  background-color: #f5f5f5; }

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd; }

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333; }

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd; }

.panel-primary {
  border-color: #337ab7; }

.panel-primary > .panel-heading {
  color: #fff;
  border-color: #337ab7;
  background-color: #337ab7; }

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7; }

.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff; }

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7; }

.panel-success {
  border-color: #d6e9c6; }

.panel-success > .panel-heading {
  color: #3c763d;
  border-color: #d6e9c6;
  background-color: #dff0d8; }

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6; }

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d; }

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }

.panel-info > .panel-heading {
  color: #31708f;
  border-color: #bce8f1;
  background-color: #d9edf7; }

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1; }

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f; }

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }

.panel-warning > .panel-heading {
  color: #8a6d3b;
  border-color: #faebcc;
  background-color: #fcf8e3; }

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc; }

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b; }

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }

.panel-danger > .panel-heading {
  color: #a94442;
  border-color: #ebccd1;
  background-color: #f2dede; }

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1; }

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442; }

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0; }

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  margin-bottom: 20px;
  padding: 19px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  background-color: #f5f5f5;
  -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); }

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 6px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  font-size: 21px;
  line-height: 1;
  opacity: .2;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20); }

.popover, .tooltip {
  font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.42857143;
  white-space: normal;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  word-break: normal;
  text-shadow: none;
  line-break: auto;
  text-decoration: none; }

.close:focus, .close:hover {
  cursor: pointer;
  text-decoration: none;
  opacity: .5;
  color: #000;
  filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  border: 0;
  background: 0 0;
  -webkit-appearance: none; }

.modal {
  position: fixed;
  z-index: 1050;
  display: none;
  outline: 0;
  -webkit-overflow-scrolling: touch; }

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%); }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); }

.modal-backdrop {
  position: fixed;
  z-index: 1040;
  background-color: #000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: .5;
  filter: alpha(opacity=50); }

.modal-header {
  min-height: 16.43px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  line-height: 1.42857143;
  margin: 0; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  overflow: scroll;
  width: 50px;
  height: 50px; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

.tooltip.top-left .tooltip-arrow, .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  font-size: 12px;
  position: absolute;
  z-index: 1070;
  display: block;
  text-align: left;
  text-align: start;
  opacity: 0;
  filter: alpha(opacity=0); }

.tooltip.in {
  opacity: .9;
  filter: alpha(opacity=90); }

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0; }

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px; }

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0; }

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background-color: #000; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-left .tooltip-arrow {
  right: 5px; }

.tooltip.top-right .tooltip-arrow {
  left: 5px; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

.tooltip.bottom .tooltip-arrow, .tooltip.bottom-left .tooltip-arrow, .tooltip.bottom-right .tooltip-arrow {
  border-width: 0 5px 5px;
  border-bottom-color: #000;
  top: 0; }

.tooltip.bottom .tooltip-arrow {
  left: 50%;
  margin-left: -5px; }

.tooltip.bottom-left .tooltip-arrow {
  right: 5px;
  margin-top: -5px; }

.tooltip.bottom-right .tooltip-arrow {
  left: 5px;
  margin-top: -5px; }

.popover {
  font-size: 14px;
  position: absolute;
  z-index: 1060;
  top: 0;
  left: 0;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  text-align: start;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }

.carousel-caption, .carousel-control {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }

.popover.top {
  margin-top: -10px; }

.popover.right {
  margin-left: 10px; }

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

.popover.left {
  margin-left: -10px; }

.popover-title {
  font-size: 14px;
  margin: 0;
  padding: 8px 14px;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
  background-color: #f7f7f7; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent; }

.carousel, .carousel-inner {
  position: relative; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px; }

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0; }

.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: ' ';
  border-top-color: #fff;
  border-bottom-width: 0; }

.popover.left > .arrow:after, .popover.right > .arrow:after {
  bottom: -10px;
  content: ' '; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0; }

.popover.right > .arrow:after {
  left: 1px;
  border-right-color: #fff;
  border-left-width: 0; }

.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25); }

.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: ' ';
  border-top-width: 0;
  border-bottom-color: #fff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25); }

.popover.left > .arrow:after {
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff; }

.carousel-inner {
  width: 100%; }

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left; }

.carousel-inner > .item > a > img, .carousel-inner > .item > img {
  line-height: 1; }

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
    -o-transition: -o-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px; }
  .carousel-inner > .item.active.right, .carousel-inner > .item.next {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  .carousel-inner > .item.active.left, .carousel-inner > .item.prev {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
  display: block; }

.carousel-inner > .active {
  left: 0; }

.carousel-inner > .next, .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%; }

.carousel-inner > .next {
  left: 100%; }

.carousel-inner > .prev {
  left: -100%; }

.carousel-inner > .next.left, .carousel-inner > .prev.right {
  left: 0; }

.carousel-inner > .active.left {
  left: -100%; }

.carousel-inner > .active.right {
  left: 100%; }

.carousel-control {
  font-size: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  text-align: center;
  opacity: .5;
  filter: alpha(opacity=50); }

.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }

.carousel-control:focus, .carousel-control:hover {
  text-decoration: none;
  opacity: .9;
  color: #fff;
  outline: 0;
  filter: alpha(opacity=90); }

.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: inline-block;
  margin-top: -10px; }

.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
  left: 50%;
  margin-left: -10px; }

.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
  right: 50%;
  margin-right: -10px; }

.carousel-control .icon-next, .carousel-control .icon-prev {
  font-family: serif;
  line-height: 1;
  width: 20px;
  height: 20px; }

.carousel-control .icon-prev:before {
  content: '\2039'; }

.carousel-control .icon-next:before {
  content: '\203a'; }

.carousel-indicators {
  position: absolute;
  z-index: 15;
  bottom: 10px;
  left: 50%;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  cursor: pointer;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: #000\9;
  background-color: transparent; }

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff; }

.carousel-caption {
  position: absolute;
  z-index: 10;
  right: 15%;
  bottom: 20px;
  left: 15%;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center; }

.carousel-caption .btn, .text-hide {
  text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
    font-size: 30px;
    width: 30px;
    height: 30px;
    margin-top: -15px; }
  .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
    margin-left: -15px; }
  .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
    margin-right: -15px; }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
  display: table;
  content: ' '; }

.btn-group-vertical > .btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after {
  clear: both; }

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.hidden, .visible-lg, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block, .visible-md, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-sm, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-xs, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block {
  display: none !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  border: 0;
  background-color: transparent; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  td.visible-xs, th.visible-xs {
    display: table-cell !important; }
  .visible-xs-block {
    display: block !important; }
  .visible-xs-inline {
    display: inline !important; }
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  td.visible-sm, th.visible-sm {
    display: table-cell !important; }
  .visible-sm-block {
    display: block !important; }
  .visible-sm-inline {
    display: inline !important; }
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  td.visible-md, th.visible-md {
    display: table-cell !important; }
  .visible-md-block {
    display: block !important; }
  .visible-md-inline {
    display: inline !important; }
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  td.visible-lg, th.visible-lg {
    display: table-cell !important; }
  .visible-lg-block {
    display: block !important; }
  .visible-lg-inline {
    display: inline !important; }
  .visible-lg-inline-block {
    display: inline-block !important; }
  .hidden-lg {
    display: none !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  td.visible-print, th.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }

@media print {
  .visible-print-block {
    display: block !important; } }

.visible-print-inline {
  display: none !important; }

@media print {
  .visible-print-inline {
    display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }

@media print {
  .visible-print-inline-block {
    display: inline-block !important; }
  .hidden-print {
    display: none !important; } }

/*=======================2. JQUERY MMENU ==========================
==================================================================*/
.mm-menu.mm-effect-menu-zoom, .mm-panel {
  -moz-transition: -moz-transform .4s ease;
  -o-transition: -o-transform .4s ease; }

.mm-panels, .mm-panels > .mm-panel {
  background: inherit;
  border-color: inherit; }

.mm-listview a, .mm-listview a:hover, .mm-navbar a, .mm-navbar a:hover {
  text-decoration: none; }

.mm-divider > span, .mm-listview .mm-divider, .mm-listview > li > a, .mm-listview > li > span, .mm-navbar .mm-title, .mm-navbar > .mm-breadcrumbs {
  white-space: nowrap;
  text-overflow: ellipsis; }

.mm-indexer, .mm-menu, .mm-navbar .mm-btn, .mm-page, .mm-panels > .mm-panel, .mm-search, .mm-search input {
  box-sizing: border-box; }

.mm-hidden {
  display: none !important; }

.mm-wrapper {
  position: relative;
  overflow-x: hidden; }

.mm-navbar, .mm-navbar .mm-btn {
  position: absolute;
  height: 40px; }

.mm-menu, .mm-panels, .mm-panels > .mm-panel {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0; }

.mm-menu {
  display: block;
  overflow: hidden;
  padding: 0; }

.mm-panel {
  -webkit-transition: -webkit-transform .4s ease;
  -ms-transition: -ms-transform .4s ease;
  transition: transform .4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu.mm-effect-menu-zoom, .mm-slideout {
  -webkit-transition: -webkit-transform .4s ease;
  -ms-transition: -ms-transform .4s ease; }

.mm-fixeddivider, .mm-panel.mm-opened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0); }

.mm-panel.mm-opened {
  transform: translate3d(0, 0, 0); }

.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-panel.mm-highest {
  z-index: 1; }

.mm-panels > .mm-panel {
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px;
  -webkit-overflow-scrolling: touch; }

.mm-panels > .mm-panel.mm-hasnavbar {
  padding-top: 40px; }

.mm-panels > .mm-panel:after, .mm-panels > .mm-panel:before {
  display: block;
  height: 20px;
  content: ''; }

.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important; }

.mm-listview .mm-vertical .mm-panel, .mm-vertical .mm-listview .mm-panel {
  display: none;
  padding: 10px 0 10px 10px; }

.mm-navbar > *, .mm-vertical li.mm-opened > .mm-panel, li.mm-vertical.mm-opened > .mm-panel {
  display: block; }

.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after, .mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent; }

.mm-listview > li.mm-vertical > .mm-next, .mm-vertical .mm-listview > li > .mm-next {
  bottom: auto;
  height: 40px; }

.mm-listview > li.mm-vertical > .mm-next:after, .mm-vertical .mm-listview > li > .mm-next:after {
  top: 16px;
  bottom: auto; }

.mm-listview > li.mm-vertical.mm-opened > .mm-next:after, .mm-vertical .mm-listview > li.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.mm-navbar {
  line-height: 20px;
  top: 0;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0 40px;
  text-align: center;
  border-color: inherit;
  border-bottom: 1px solid #rgba 255, 255, 255, 0.2; }

.mm-navbar > * {
  padding: 10px 0; }

.mm-navbar .mm-title {
  overflow: hidden; }

.mm-navbar .mm-btn {
  z-index: 1;
  top: 0;
  width: 40px; }

.mm-navbar .mm-btn:first-child {
  left: 0;
  padding-left: 20px; }

.mm-navbar .mm-btn:last-child {
  right: 0;
  padding-right: 20px;
  text-align: right; }

.mm-panel .mm-navbar {
  display: none; }

.mm-panel.mm-hasnavbar .mm-navbar {
  display: block; }

.mm-listview, .mm-listview > li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none; }

.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px; }

.mm-listview > li {
  position: relative; }

.mm-listview > li, .mm-listview > li .mm-next, .mm-listview > li .mm-next:before, .mm-listview > li:after {
  border-color: inherit; }

.mm-listview > li > a, .mm-listview > li > span {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 10px 10px 10px 20px;
  color: inherit; }

.mm-menu, .mm-menu .mm-navbar a, .mm-menu .mm-navbar > *, .mm-menu em.mm-counter {
  color: #ccc; }

.mm-listview > li > a.mm-arrow, .mm-listview > li > span.mm-arrow {
  padding-right: 50px; }

.mm-listview > li:not(.mm-divider):after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  left: 20px; }

.mm-listview .mm-next {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  padding: 0;
  background: rgba(3, 2, 1, 0); }

.mm-listview .mm-next:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: '';
  border-left-width: 1px;
  border-left-style: solid; }

.mm-listview .mm-next + a, .mm-listview .mm-next + span {
  margin-right: 50px; }

.mm-listview .mm-next.mm-fullsubopen {
  width: 100%; }

.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none; }

.mm-listview .mm-next.mm-fullsubopen + a, .mm-listview .mm-next.mm-fullsubopen + span {
  margin-right: 0;
  padding-right: 50px; }

.mm-panels > .mm-panel > .mm-listview {
  margin: 20px -20px; }

.mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listview .mm-inset {
  margin: 0;
  padding: 0 10px 15px 40px;
  list-style: disc inside; }

.mm-listview .mm-inset > li {
  padding: 5px 0; }

.mm-listview .mm-divider {
  font-size: 10px;
  line-height: 25px;
  overflow: hidden;
  text-indent: 20px;
  text-transform: uppercase; }

.mm-listview .mm-spacer {
  padding-top: 40px; }

.mm-listview .mm-spacer > .mm-next {
  top: 40px; }

.mm-listview .mm-spacer.mm-divider {
  padding-top: 25px; }

.mm-arrow:after, .mm-next:after, .mm-prev:before {
  position: absolute;
  top: 0;
  bottom: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  content: '';
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border: 2px solid transparent; }

.mm-prev:before {
  left: 23px;
  border-right: none;
  border-bottom: none; }

.mm-arrow:after, .mm-next:after {
  right: 23px;
  border-top: none;
  border-left: none; }

.mm-menu {
  border-color: rgba(0, 0, 0, 0.1);
  background: #222222; }

.mm-menu .mm-navbar .mm-btn:after, .mm-menu .mm-navbar .mm-btn:before {
  border-color: #ccc; }

.mm-menu .mm-listview {
  border-color: rgba(0, 0, 0, 0.1); }

.mm-menu .mm-listview > li .mm-arrow:after, .mm-menu .mm-listview > li .mm-next:after {
  border-color: #ccc; }

.mm-menu .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
  tap-highlight-color: rgba(255, 255, 255, 0.5); }

.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.1); }

.mm-menu .mm-divider, .mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(0, 0, 0, 0.05); }

.mm-page {
  position: relative; }

.mm-slideout {
  transition: transform .4s ease; }

html.mm-opened {
  position: relative;
  overflow-x: hidden; }

html.mm-blocking, html.mm-blocking body {
  overflow: hidden; }

html.mm-background .mm-page {
  background: inherit; }

#mm-blocker {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(3, 2, 1, 0); }

html.mm-blocking #mm-blocker {
  display: block; }

.mm-menu.mm-offcanvas {
  position: fixed;
  display: none; }

.mm-menu.mm-current, em.mm-counter {
  display: block; }

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0); }

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }

@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0); } }

.mm-menu.mm-autoheight {
  max-height: 80%; }

.mm-menu.mm-autoheight.mm-fullscreen {
  max-height: 100%; }

.mm-menu.mm-measureheight > .mm-panels > .mm-panel {
  bottom: auto !important;
  height: auto !important; }

em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  position: absolute;
  top: 50%;
  right: 45px;
  margin-top: -10px;
  text-indent: 0; }

.mm-collapsed:not(.mm-uncollapsed), .mm-nosubresults > .mm-counter {
  display: none; }

em.mm-counter + a.mm-next {
  width: 90px; }

em.mm-counter + a.mm-next + a, em.mm-counter + a.mm-next + span {
  margin-right: 90px; }

em.mm-counter + a.mm-fullsubopen {
  padding-left: 0; }

.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0; }

.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px; }

.mm-divider > span {
  line-height: 25px;
  overflow: hidden;
  padding: 0; }

.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.mm-fixeddivider {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: none;
  transform: translate3d(0, 0, 0);
  background: inherit; }

.mm-iconpanel .mm-panel.mm-subopened, .mm-menu > .mm-navbar {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0); }

.mm-fixeddivider:after {
  display: none !important;
  content: none !important; }

.mm-hasdividers .mm-fixeddivider {
  display: block; }

.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05); }

html.mm-opened.mm-dragging .mm-menu, html.mm-opened.mm-dragging .mm-slideout {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s; }

.mm-iconpanel .mm-panel {
  -webkit-transition-property: -webkit-transform,left;
  -moz-transition-property: -moz-transform,left;
  -ms-transition-property: -ms-transform,left;
  -o-transition-property: -o-transform,left;
  transition-property: transform,left; }

.mm-iconpanel .mm-panel.mm-opened {
  border-color: inherit;
  border-left: 1px solid; }

.mm-navbar-bottom, .mm-navbar-top ~ .mm-navbar-top {
  border-bottom: none; }

.mm-iconpanel .mm-panel.mm-subopened {
  left: -40px;
  overflow-y: hidden;
  transform: translate3d(0, 0, 0); }

.mm-iconpanel .mm-panel.mm-iconpanel-0 {
  left: 0; }

.mm-iconpanel .mm-panel.mm-iconpanel-1 {
  left: 40px; }

.mm-iconpanel .mm-panel.mm-iconpanel-2 {
  left: 80px; }

.mm-iconpanel .mm-panel.mm-iconpanel-3 {
  left: 120px; }

.mm-iconpanel .mm-panel.mm-iconpanel-4 {
  left: 160px; }

.mm-iconpanel .mm-panel.mm-iconpanel-5 {
  left: 200px; }

.mm-iconpanel .mm-panel.mm-iconpanel-6 {
  left: 240px; }

.mm-subblocker {
  display: block;
  -webkit-transition: opacity .4s ease;
  -moz-transition: opacity .4s ease;
  -ms-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease;
  opacity: 0;
  background: inherit; }

.mm-subopened .mm-subblocker {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: -100000px;
  left: 0;
  opacity: .6; }

.mm-menu > .mm-navbar {
  z-index: 3;
  padding: 0;
  transform: translate3d(0, 0, 0);
  background: inherit; }

.mm-navbar-bottom {
  top: auto;
  bottom: 0;
  border-top-width: 1px;
  border-top-style: solid; }

.mm-navbar-bottom ~ .mm-navbar-bottom {
  border-top: none; }

.mm-navbar.mm-hasbtns {
  padding: 0 40px; }

.mm-close:after {
  content: 'x'; }

.mm-navbar[class*=mm-navbar-content-] > * {
  display: block;
  float: left;
  box-sizing: border-box; }

.mm-navbar > .mm-breadcrumbs {
  overflow: hidden;
  overflow-x: auto;
  padding: 0 0 0 17px;
  text-align: left;
  -webkit-overflow-scrolling: touch; }

.mm-navbar > .mm-breadcrumbs > * {
  display: inline-block;
  padding: 10px 3px; }

.mm-navbar > .mm-breadcrumbs > a {
  text-decoration: underline; }

.mm-navbar.mm-hasbtns .mm-breadcrumbs {
  margin-left: -40px; }

.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs {
  margin-left: 0;
  padding-left: 0; }

.mm-navbar-top-1 {
  top: 0; }

.mm-hasnavbar-top-1 .mm-panels, .mm-navbar-top-2 {
  top: 40px; }

.mm-hasnavbar-top-2 .mm-panels, .mm-navbar-top-3 {
  top: 80px; }

.mm-hasnavbar-top-3 .mm-panels, .mm-navbar-top-4 {
  top: 120px; }

.mm-hasnavbar-top-4 .mm-panels {
  top: 160px; }

.mm-navbar-bottom-1 {
  bottom: 0; }

.mm-hasnavbar-bottom-1 .mm-panels, .mm-navbar-bottom-2 {
  bottom: 40px; }

.mm-hasnavbar-bottom-2 .mm-panels, .mm-navbar-bottom-3 {
  bottom: 80px; }

.mm-hasnavbar-bottom-3 .mm-panels, .mm-navbar-bottom-4 {
  bottom: 120px; }

.mm-hasnavbar-bottom-4 .mm-panels {
  bottom: 160px; }

.mm-navbar-size-2 {
  height: 80px; }

.mm-navbar-size-3 {
  height: 120px; }

.mm-navbar-size-4 {
  height: 160px; }

.mm-navbar-content-2 > * {
  width: 50%; }

.mm-navbar-content-3 > * {
  width: 33.33%; }

.mm-navbar-content-4 > * {
  width: 25%; }

.mm-navbar-content-5 > * {
  width: 20%; }

.mm-navbar-content-6 > * {
  width: 16.67%; }

.mm-search {
  height: 40px;
  padding: 10px 10px 0; }

.mm-search input {
  font: inherit;
  font-size: 14px;
  line-height: 32px;
  display: block;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0 10px;
  border: none;
  border-radius: 26px;
  outline: 0; }

.mm-search input::-ms-clear {
  display: none; }

.mm-panel > .mm-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

.mm-panel.mm-hassearch {
  padding-top: 40px; }

.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 90px; }

.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px; }

.mm-noresultsmsg {
  font-size: 21px;
  display: none;
  padding: 40px 0;
  text-align: center; }

.mm-noresults .mm-noresultsmsg {
  display: block; }

.mm-noresults .mm-indexer {
  display: none !important; }

li.mm-nosubresults > a.mm-next {
  display: none; }

li.mm-nosubresults > a.mm-next + a, li.mm-nosubresults > a.mm-next + span {
  padding-right: 10px; }

.mm-menu .mm-search input {
  color: #171717;
  background: #f7f7f7; }

.mm-menu .mm-indexer a, .mm-menu .mm-noresultsmsg {
  color: #ccc; }

.mm-indexer {
  font-size: 12px;
  position: absolute;
  z-index: 3;
  top: 0;
  right: -100px;
  bottom: 0;
  width: 20px;
  -webkit-transition: right .4s ease;
  -moz-transition: right .4s ease;
  -ms-transition: right .4s ease;
  -o-transition: right .4s ease;
  transition: right .4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  text-align: center;
  background: inherit; }

.mm-indexer a {
  display: block;
  height: 3.85%;
  text-decoration: none; }

.mm-indexer ~ .mm-panel.mm-hasindexer {
  margin-right: 20px; }

.mm-hasindexer .mm-indexer {
  right: 0; }

.mm-hasindexer .mm-fixeddivider {
  right: 20px; }

input.mm-check, input.mm-toggle {
  position: absolute;
  left: -10000px; }

label.mm-check, label.mm-toggle {
  position: absolute;
  z-index: 2;
  top: 50%;
  margin: 0;
  right: 20px; }

label.mm-check:before, label.mm-toggle:before {
  display: block;
  content: ''; }

label.mm-toggle {
  width: 50px;
  height: 30px;
  margin-top: -15px;
  border-radius: 30px; }

label.mm-toggle:before {
  width: 28px;
  height: 28px;
  margin: 1px;
  border-radius: 30px; }

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right; }

label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px; }

label.mm-check:before {
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: .1;
  border-bottom: 3px solid;
  border-left: 3px solid; }

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1; }

li.mm-vertical label.mm-check, li.mm-vertical label.mm-toggle {
  bottom: auto;
  margin-top: 0;
  top: 5px; }

label.mm-toggle + a, label.mm-toggle + span {
  padding-right: 80px; }

label.mm-check + a, label.mm-check + span {
  padding-right: 60px; }

a.mm-next + label.mm-check, a.mm-next + label.mm-toggle {
  right: 60px; }

a.mm-next + label.mm-check + a, a.mm-next + label.mm-check + span, a.mm-next + label.mm-toggle + a, a.mm-next + label.mm-toggle + span {
  margin-right: 50px; }

a.mm-next + label.mm-toggle + a, a.mm-next + label.mm-toggle + span {
  padding-right: 70px; }

a.mm-next + label.mm-check + a, a.mm-next + label.mm-check + span {
  padding-right: 50px; }

em.mm-counter + a.mm-next + label.mm-check, em.mm-counter + a.mm-next + label.mm-toggle {
  right: 100px; }

em.mm-counter + a.mm-next + label.mm-check + a, em.mm-counter + a.mm-next + label.mm-check + span, em.mm-counter + a.mm-next + label.mm-toggle + a, em.mm-counter + a.mm-next + label.mm-toggle + span {
  margin-right: 90px; }

.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu label.mm-toggle:before {
  background: #f3f3f3; }

.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7); }

.mm-listview.mm-border-none > li:after, .mm-menu.mm-border-none .mm-listview > li:after {
  content: none; }

.mm-listview.mm-border-full > li:after, .mm-menu.mm-border-full .mm-listview > li:after {
  left: 0 !important; }

.mm-listview.mm-border-offset > li:after, .mm-menu.mm-border-offset .mm-listview > li:after {
  right: 20px; }

.mm-menu.mm-effect-menu-zoom {
  transition: transform .4s ease; }

html.mm-opened .mm-menu.mm-effect-menu-zoom {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }

html.mm-opening .mm-menu.mm-effect-menu-zoom {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

html.mm-right.mm-opened .mm-menu.mm-effect-menu-zoom {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center; }

html.mm-right.mm-opening .mm-menu.mm-effect-menu-zoom {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu.mm-effect-menu-slide {
  -webkit-transition: -webkit-transform .4s ease;
  -moz-transition: -moz-transform .4s ease;
  -ms-transition: -ms-transform .4s ease;
  -o-transition: -o-transform .4s ease;
  transition: transform .4s ease; }

html.mm-opened .mm-menu.mm-effect-menu-slide {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

html.mm-opening .mm-menu.mm-effect-menu-slide {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

html.mm-right.mm-opened .mm-menu.mm-effect-menu-slide {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0); }

html.mm-right.mm-opening .mm-menu.mm-effect-menu-slide {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu.mm-effect-menu-fade {
  -webkit-transition: opacity .4s ease;
  -moz-transition: opacity .4s ease;
  -ms-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease;
  opacity: 0; }

html.mm-opening .mm-menu.mm-effect-menu-fade {
  opacity: 1; }

.mm-menu.mm-effect-panels-zoom .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }

.mm-menu.mm-effect-panels-zoom .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu.mm-effect-panels-zoom .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0); }

.mm-menu.mm-effect-panels-slide-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu.mm-effect-panels-slide-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li {
  -webkit-transition: none .4s ease;
  -moz-transition: none .4s ease;
  -ms-transition: none .4s ease;
  -o-transition: none .4s ease;
  transition: none .4s ease; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(1) {
  -webkit-transition-delay: 50ms;
  -moz-transition-delay: 50ms;
  -ms-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(2) {
  -webkit-transition-delay: .1s;
  -moz-transition-delay: .1s;
  -ms-transition-delay: .1s;
  -o-transition-delay: .1s;
  transition-delay: .1s; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(3) {
  -webkit-transition-delay: 150ms;
  -moz-transition-delay: 150ms;
  -ms-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(4) {
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  -ms-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(5) {
  -webkit-transition-delay: 250ms;
  -moz-transition-delay: 250ms;
  -ms-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  transition-delay: 250ms; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(6) {
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  -ms-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(7) {
  -webkit-transition-delay: 350ms;
  -moz-transition-delay: 350ms;
  -ms-transition-delay: 350ms;
  -o-transition-delay: 350ms;
  transition-delay: 350ms; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(8) {
  -webkit-transition-delay: .4s;
  -moz-transition-delay: .4s;
  -ms-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(9) {
  -webkit-transition-delay: 450ms;
  -moz-transition-delay: 450ms;
  -ms-transition-delay: 450ms;
  -o-transition-delay: 450ms;
  transition-delay: 450ms; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(10) {
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  -ms-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(11) {
  -webkit-transition-delay: 550ms;
  -moz-transition-delay: 550ms;
  -ms-transition-delay: 550ms;
  -o-transition-delay: 550ms;
  transition-delay: 550ms; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(12) {
  -webkit-transition-delay: .6s;
  -moz-transition-delay: .6s;
  -ms-transition-delay: .6s;
  -o-transition-delay: .6s;
  transition-delay: .6s; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(13) {
  -webkit-transition-delay: 650ms;
  -moz-transition-delay: 650ms;
  -ms-transition-delay: 650ms;
  -o-transition-delay: 650ms;
  transition-delay: 650ms; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(14) {
  -webkit-transition-delay: .7s;
  -moz-transition-delay: .7s;
  -ms-transition-delay: .7s;
  -o-transition-delay: .7s;
  transition-delay: .7s; }

.mm-menu[class*=mm-effect-listitems-] .mm-listview > li:nth-child(15) {
  -webkit-transition-delay: 750ms;
  -moz-transition-delay: 750ms;
  -ms-transition-delay: 750ms;
  -o-transition-delay: 750ms;
  transition-delay: 750ms; }

.mm-menu.mm-effect-listitems-slide .mm-listview > li {
  -webkit-transition-property: -webkit-transform,opacity;
  -moz-transition-property: -moz-transform,opacity;
  -ms-transition-property: -ms-transform,opacity;
  -o-transition-property: -o-transform,opacity;
  transition-property: transform,opacity;
  -webkit-transform: translate3d(50%, 0, 0);
  -moz-transform: translate3d(50%, 0, 0);
  -ms-transform: translate3d(50%, 0, 0);
  -o-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  opacity: 0; }

html.mm-opening .mm-menu.mm-effect-listitems-slide .mm-panel.mm-opened .mm-listview > li {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.mm-menu.mm-effect-listitems-fade .mm-listview > li {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -ms-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  opacity: 0; }

html.mm-opening .mm-menu.mm-effect-listitems-fade .mm-panel.mm-opened .mm-listview > li {
  opacity: 1; }

.mm-menu.mm-effect-listitems-drop .mm-listview > li {
  top: -25%;
  -webkit-transition-property: opacity,top;
  -moz-transition-property: opacity,top;
  -ms-transition-property: opacity,top;
  -o-transition-property: opacity,top;
  transition-property: opacity,top;
  opacity: 0; }

html.mm-opening .mm-menu.mm-effect-listitems-drop .mm-panel.mm-opened .mm-listview > li {
  top: 0;
  opacity: 1; }

.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px; }

html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0); }

@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }

@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0); } }

html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0); }

@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0); } }

@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0); } }

.mm-menu.mm-fullscreen.mm-bottom, .mm-menu.mm-fullscreen.mm-top {
  height: 100%;
  min-height: 140px;
  max-height: 10000px; }

html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important; }

.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > a, .mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > span, .mm-menu.mm-multiline .mm-listview > li > a, .mm-menu.mm-multiline .mm-listview > li > span {
  white-space: normal;
  text-overflow: clip; }

html.mm-pagedim #mm-blocker, html.mm-pagedim-black #mm-blocker, html.mm-pagedim-white #mm-blocker {
  opacity: 0; }

html.mm-pagedim-black.mm-opening #mm-blocker, html.mm-pagedim-white.mm-opening #mm-blocker, html.mm-pagedim.mm-opening #mm-blocker {
  transition: opacity .4s ease .4s;
  opacity: .3; }

html.mm-pagedim #mm-blocker {
  background: inherit; }

html.mm-pagedim-white #mm-blocker {
  background: #fff; }

html.mm-pagedim-black #mm-blocker {
  background: #000; }

.mm-menu.mm-pageshadow:after {
  position: absolute;
  z-index: 99;
  top: -10%;
  left: 100%;
  display: block;
  width: 20px;
  height: 120%;
  content: '';
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu.mm-pageshadow.mm-front:after, .mm-menu.mm-pageshadow.mm-next:after, .mm-menu.mm-pageshadow.mm-theme-black:after {
  display: none;
  content: none; }

.mm-menu.mm-pageshadow.mm-right:after {
  right: 100%;
  left: auto; }

.mm-menu.mm-bottom, .mm-menu.mm-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 80%;
  min-height: 140px;
  max-height: 880px; }

.mm-menu.mm-right {
  right: 0;
  left: auto; }

html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0); }

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0); } }

@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0); } }

html.mm-front .mm-slideout {
  z-index: 0 !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important; }

.mm-menu.mm-front {
  z-index: 1; }

.mm-menu.mm-front, .mm-menu.mm-next {
  -webkit-transition: -webkit-transform .4s ease;
  -ms-transition: -ms-transform .4s ease;
  transition: transform .4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu.mm-front.mm-right, .mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0); }

html.mm-opening .mm-menu.mm-front, html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu.mm-theme-dark {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.15);
  background: #333; }

.mm-menu.mm-theme-dark .mm-navbar a, .mm-menu.mm-theme-dark .mm-navbar > *, .mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after, .mm-menu.mm-theme-dark .mm-navbar .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark .mm-listview {
  border-color: rgba(0, 0, 0, 0.15); }

.mm-menu.mm-theme-dark .mm-listview > li .mm-arrow:after, .mm-menu.mm-theme-dark .mm-listview > li .mm-next:after {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  tap-highlight-color: rgba(0, 0, 0, 0.1); }

.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu.mm-theme-dark .mm-divider, .mm-menu.mm-theme-dark .mm-fixeddivider span, .mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(255, 255, 255, 0.05); }

.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8); }

.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu.mm-theme-dark .mm-search input {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-theme-dark .mm-indexer a, .mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15); }

.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333; }

.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu.mm-theme-white {
  color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.1);
  background: #fff; }

.mm-menu.mm-theme-white .mm-navbar a, .mm-menu.mm-theme-white .mm-navbar > *, .mm-menu.mm-theme-white em.mm-counter {
  color: #ccc; }

.mm-menu.mm-theme-white .mm-navbar .mm-btn:after, .mm-menu.mm-theme-white .mm-navbar .mm-btn:before {
  border-color: #ccc; }

.mm-menu.mm-theme-white .mm-listview {
  border-color: rgba(0, 0, 0, 0.1); }

.mm-menu.mm-theme-white .mm-listview > li .mm-arrow:after, .mm-menu.mm-theme-white .mm-listview > li .mm-next:after {
  border-color: #ccc; }

.mm-menu.mm-theme-white .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
  tap-highlight-color: rgba(0, 0, 0, 0.05); }

.mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.05); }

.mm-menu.mm-theme-white .mm-divider, .mm-menu.mm-theme-white .mm-fixeddivider span, .mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6); }

.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.mm-menu.mm-theme-white .mm-search input {
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.05); }

.mm-menu.mm-theme-white .mm-indexer a, .mm-menu.mm-theme-white .mm-noresultsmsg {
  color: #ccc; }

.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu.mm-theme-white label.mm-toggle:before {
  background: #fff; }

.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu.mm-theme-black {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
  background: #000; }

.mm-menu.mm-theme-black .mm-navbar a, .mm-menu.mm-theme-black .mm-navbar > *, .mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black .mm-navbar .mm-btn:after, .mm-menu.mm-theme-black .mm-navbar .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black .mm-listview {
  border-color: rgba(255, 255, 255, 0.2); }

.mm-menu.mm-theme-black .mm-listview > li .mm-arrow:after, .mm-menu.mm-theme-black .mm-listview > li .mm-next:after {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  tap-highlight-color: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-theme-black .mm-divider, .mm-menu.mm-theme-black .mm-fixeddivider span, .mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(255, 255, 255, 0.2); }

.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6); }

.mm-menu.mm-theme-black .mm-search input {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-theme-black .mm-indexer a, .mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2); }

.mm-menu.mm-theme-black label.mm-toggle:before {
  background: #000; }

.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu .mm-tileview.mm-listview:after, .mm-menu.mm-tileview .mm-listview:after {
  display: block;
  clear: both;
  content: ''; }

.mm-menu .mm-tileview.mm-listview > li > .mm-next:after, .mm-menu .mm-tileview.mm-listview > li > .mm-next:before, .mm-menu.mm-tileview .mm-listview > li > .mm-next:after, .mm-menu.mm-tileview .mm-listview > li > .mm-next:before, .mm-menu.mm-tileview .mm-panel:after {
  display: none;
  content: none; }

.mm-menu .mm-tileview.mm-listview > li, .mm-menu.mm-tileview .mm-listview > li {
  position: relative;
  float: left;
  width: 50%;
  height: 0;
  padding: 50% 0 0; }

.mm-menu .mm-tileview.mm-listview > li:after, .mm-menu.mm-tileview .mm-listview > li:after {
  z-index: -1;
  top: 0;
  left: 0;
  border-right-width: 1px;
  border-right-style: solid; }

.mm-menu .mm-tileview.mm-listview > li.mm-tile-xs, .mm-menu.mm-tileview .mm-listview > li.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%; }

.mm-menu .mm-tileview.mm-listview > li.mm-tile-s, .mm-menu.mm-tileview .mm-listview > li.mm-tile-s {
  width: 25%;
  padding-top: 25%; }

.mm-menu .mm-tileview.mm-listview > li.mm-tile-l, .mm-menu.mm-tileview .mm-listview > li.mm-tile-l {
  width: 75%;
  padding-top: 75%; }

.mm-menu .mm-tileview.mm-listview > li.mm-tile-xl, .mm-menu.mm-tileview .mm-listview > li.mm-tile-xl {
  width: 100%;
  padding-top: 100%; }

.mm-menu .mm-tileview.mm-listview > li > a, .mm-menu .mm-tileview.mm-listview > li > span, .mm-menu.mm-tileview .mm-listview > li > a, .mm-menu.mm-tileview .mm-listview > li > span {
  line-height: 1px;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0;
  margin: 0;
  padding: 50% 10px 0;
  text-align: center; }

.mm-menu .mm-tileview.mm-listview > li > .mm-next, .mm-menu.mm-tileview .mm-listview > li > .mm-next {
  width: auto; }

.mm-menu.mm-tileview .mm-panel {
  padding-right: 0;
  padding-left: 0; }

.mm-menu.mm-tileview .mm-listview {
  margin: 0; }

/*=======================3. FONTAWESOME ===============================
==================================================================*/
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
.fa.fa-pull-left, .fa.pull-left {
  margin-right: .3em; }

.fa, .fa-stack {
  display: inline-block; }

.fa-fw, .fa-li {
  text-align: center; }

@font-face {
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/fontawesome-webfont.eot?v=4.6.3);
  src: url(../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff2?v=4.6.3) format("woff2"), url(../fonts/fontawesome-webfont.woff?v=4.6.3) format("woff"), url(../fonts/fontawesome-webfont.ttf?v=4.6.3) format("truetype"), url(../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular) format("svg"); }

.fa {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.fa-lg {
  font-size: 1.33333333em;
  line-height: .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; }

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

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

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

.fa-li {
  position: absolute;
  top: .14285714em;
  left: -2.14285714em;
  width: 2.14285714em; }

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

.fa-border {
  padding: .2em .25em .15em;
  border: .08em solid #eee;
  border-radius: .1em; }

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

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

.pull-left {
  float: left; }

.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(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)'; }

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

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

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

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

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

.fa-stack {
  line-height: 2em;
  position: relative;
  width: 2em;
  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: #fff; }

.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-close:before, .fa-remove: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-cog:before, .fa-gear: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-repeat:before, .fa-rotate-right: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-image:before, .fa-photo: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-exclamation-triangle:before, .fa-warning: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-cogs:before, .fa-gears: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-floppy-o:before, .fa-save:before {
  content: '\f0c7'; }

.fa-square:before {
  content: '\f0c8'; }

.fa-bars:before, .fa-navicon:before, .fa-reorder: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-sort:before, .fa-unsorted:before {
  content: '\f0dc'; }

.fa-sort-desc:before, .fa-sort-down:before {
  content: '\f0dd'; }

.fa-sort-asc:before, .fa-sort-up:before {
  content: '\f0de'; }

.fa-envelope:before {
  content: '\f0e0'; }

.fa-linkedin:before {
  content: '\f0e1'; }

.fa-rotate-left:before, .fa-undo:before {
  content: '\f0e2'; }

.fa-gavel:before, .fa-legal:before {
  content: '\f0e3'; }

.fa-dashboard:before, .fa-tachometer:before {
  content: '\f0e4'; }

.fa-comment-o:before {
  content: '\f0e5'; }

.fa-comments-o:before {
  content: '\f0e6'; }

.fa-bolt:before, .fa-flash:before {
  content: '\f0e7'; }

.fa-sitemap:before {
  content: '\f0e8'; }

.fa-umbrella:before {
  content: '\f0e9'; }

.fa-clipboard:before, .fa-paste: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-chain-broken:before, .fa-unlink: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-caret-square-o-down:before, .fa-toggle-down:before {
  content: '\f150'; }

.fa-caret-square-o-up:before, .fa-toggle-up:before {
  content: '\f151'; }

.fa-caret-square-o-right:before, .fa-toggle-right:before {
  content: '\f152'; }

.fa-eur:before, .fa-euro:before {
  content: '\f153'; }

.fa-gbp:before {
  content: '\f154'; }

.fa-dollar:before, .fa-usd:before {
  content: '\f155'; }

.fa-inr:before, .fa-rupee:before {
  content: '\f156'; }

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen:before {
  content: '\f157'; }

.fa-rouble:before, .fa-rub:before, .fa-ruble:before {
  content: '\f158'; }

.fa-krw:before, .fa-won: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-caret-square-o-left:before, .fa-toggle-left:before {
  content: '\f191'; }

.fa-dot-circle-o:before {
  content: '\f192'; }

.fa-wheelchair:before {
  content: '\f193'; }

.fa-vimeo-square:before {
  content: '\f194'; }

.fa-try:before, .fa-turkish-lira: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-bank:before, .fa-institution:before, .fa-university:before {
  content: '\f19c'; }

.fa-graduation-cap:before, .fa-mortar-board: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-image-o:before, .fa-file-photo-o:before, .fa-file-picture-o:before {
  content: '\f1c5'; }

.fa-file-archive-o:before, .fa-file-zip-o:before {
  content: '\f1c6'; }

.fa-file-audio-o:before, .fa-file-sound-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-ring:before, .fa-life-saver:before, .fa-support:before {
  content: '\f1cd'; }

.fa-circle-o-notch:before {
  content: '\f1ce'; }

.fa-ra:before, .fa-rebel:before, .fa-resistance:before {
  content: '\f1d0'; }

.fa-empire:before, .fa-ge:before {
  content: '\f1d1'; }

.fa-git-square:before {
  content: '\f1d2'; }

.fa-git:before {
  content: '\f1d3'; }

.fa-hacker-news:before, .fa-y-combinator-square:before, .fa-yc-square:before {
  content: '\f1d4'; }

.fa-tencent-weibo:before {
  content: '\f1d5'; }

.fa-qq:before {
  content: '\f1d6'; }

.fa-wechat:before, .fa-weixin:before {
  content: '\f1d7'; }

.fa-paper-plane:before, .fa-send:before {
  content: '\f1d8'; }

.fa-paper-plane-o:before, .fa-send-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-futbol-o:before, .fa-soccer-ball-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-ils:before, .fa-shekel:before, .fa-sheqel: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-bed:before, .fa-hotel:before {
  content: '\f236'; }

.fa-viacoin:before {
  content: '\f237'; }

.fa-train:before {
  content: '\f238'; }

.fa-subway:before {
  content: '\f239'; }

.fa-medium:before {
  content: '\f23a'; }

.fa-y-combinator:before, .fa-yc: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-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-paper-o:before, .fa-hand-stop-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-television:before, .fa-tv: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-american-sign-language-interpreting:before, .fa-asl-interpreting:before {
  content: '\f2a3'; }

.fa-deaf:before, .fa-deafness:before, .fa-hard-of-hearing:before {
  content: '\f2a4'; }

.fa-glide:before {
  content: '\f2a5'; }

.fa-glide-g:before {
  content: '\f2a6'; }

.fa-sign-language:before, .fa-signing: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'; }

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0; }

/*=======================4. FLAT ICONS ===============================
==================================================================*/
@font-face {
  font-family: Flaticon;
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/flaticon.eot);
  src: url(../fonts/flaticon.eot?#iefix) format("embedded-opentype"), url(../fonts/flaticon.woff) format("woff"), url(../fonts/flaticon.ttf) format("truetype"), url(../fonts/flaticon.svg#Flaticon) format("svg"); }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: Flaticon;
    src: url(../fonts/flaticon.svg#Flaticon) format("svg"); } }

[class*=' flaticon-']:after, [class*=' flaticon-']:before, [class^=flaticon-]:after, [class^=flaticon-]:before {
  font-family: Flaticon;
  font-style: normal; }

.flaticon-agenda:before {
  content: '\f100'; }

.flaticon-alarm-clock-hand-drawn-outline:before {
  content: '\f101'; }

.flaticon-animal:before {
  content: '\f102'; }

.flaticon-animal-1:before {
  content: '\f103'; }

.flaticon-animal-2:before {
  content: '\f104'; }

.flaticon-animal-3:before {
  content: '\f105'; }

.flaticon-apple:before {
  content: '\f106'; }

.flaticon-arrow:before {
  content: '\f107'; }

.flaticon-arrow-1:before {
  content: '\f108'; }

.flaticon-arrow-2:before {
  content: '\f109'; }

.flaticon-arrow-3:before {
  content: '\f10a'; }

.flaticon-arrow-4:before {
  content: '\f10b'; }

.flaticon-arrows:before {
  content: '\f10c'; }

.flaticon-arrows-1:before {
  content: '\f10d'; }

.flaticon-arrows-2:before {
  content: '\f10e'; }

.flaticon-arrows-3:before {
  content: '\f10f'; }

.flaticon-arrows-4:before {
  content: '\f110'; }

.flaticon-arrows-5:before {
  content: '\f111'; }

.flaticon-arrows-6:before {
  content: '\f112'; }

.flaticon-arrows-7:before {
  content: '\f113'; }

.flaticon-avatar:before {
  content: '\f114'; }

.flaticon-avatar-1:before {
  content: '\f115'; }

.flaticon-back:before {
  content: '\f116'; }

.flaticon-back-arrow-circular-symbol:before {
  content: '\f117'; }

.flaticon-bag:before {
  content: '\f118'; }

.flaticon-balloon:before {
  content: '\f119'; }

.flaticon-book:before {
  content: '\f11a'; }

.flaticon-book-1:before {
  content: '\f11b'; }

.flaticon-book-2:before {
  content: '\f11c'; }

.flaticon-book-3:before {
  content: '\f11d'; }

.flaticon-brush:before {
  content: '\f11e'; }

.flaticon-building:before {
  content: '\f11f'; }

.flaticon-business:before {
  content: '\f120'; }

.flaticon-cancel:before {
  content: '\f121'; }

.flaticon-chat:before {
  content: '\f122'; }

.flaticon-chat-1:before {
  content: '\f123'; }

.flaticon-chat-2:before {
  content: '\f124'; }

.flaticon-circle:before {
  content: '\f125'; }

.flaticon-circle-1:before {
  content: '\f126'; }

.flaticon-circle-2:before {
  content: '\f127'; }

.flaticon-circle-3:before {
  content: '\f128'; }

.flaticon-circle-4:before {
  content: '\f129'; }

.flaticon-circle-5:before {
  content: '\f12a'; }

.flaticon-circle-6:before {
  content: '\f12b'; }

.flaticon-circle-7:before {
  content: '\f12c'; }

.flaticon-circle-8:before {
  content: '\f12d'; }

.flaticon-circle-9:before {
  content: '\f12e'; }

.flaticon-city:before {
  content: '\f12f'; }

.flaticon-clock:before {
  content: '\f130'; }

.flaticon-clock-1:before {
  content: '\f131'; }

.flaticon-clock-2:before {
  content: '\f132'; }

.flaticon-clock-3:before {
  content: '\f133'; }

.flaticon-clock-4:before {
  content: '\f134'; }

.flaticon-clock-5:before {
  content: '\f135'; }

.flaticon-cloud:before {
  content: '\f136'; }

.flaticon-cogwheel:before {
  content: '\f137'; }

.flaticon-commerce:before {
  content: '\f138'; }

.flaticon-computer:before {
  content: '\f139'; }

.flaticon-computer-1:before {
  content: '\f13a'; }

.flaticon-computer-2:before {
  content: '\f13b'; }

.flaticon-computer-3:before {
  content: '\f13c'; }

.flaticon-computer-4:before {
  content: '\f13d'; }

.flaticon-computer-5:before {
  content: '\f13e'; }

.flaticon-construction:before {
  content: '\f13f'; }

.flaticon-copy:before {
  content: '\f140'; }

.flaticon-crown:before {
  content: '\f141'; }

.flaticon-cup:before {
  content: '\f142'; }

.flaticon-delete:before {
  content: '\f143'; }

.flaticon-download:before {
  content: '\f144'; }

.flaticon-download-1:before {
  content: '\f145'; }

.flaticon-edit:before {
  content: '\f146'; }

.flaticon-envelope:before {
  content: '\f147'; }

.flaticon-favorite:before {
  content: '\f148'; }

.flaticon-folder:before {
  content: '\f149'; }

.flaticon-food:before {
  content: '\f14a'; }

.flaticon-garbage:before {
  content: '\f14b'; }

.flaticon-glasses:before {
  content: '\f14c'; }

.flaticon-globe:before {
  content: '\f14d'; }

.flaticon-gps:before {
  content: '\f14e'; }

.flaticon-graphic:before {
  content: '\f14f'; }

.flaticon-heart:before {
  content: '\f150'; }

.flaticon-horizontal:before {
  content: '\f151'; }

.flaticon-house:before {
  content: '\f152'; }

.flaticon-idea:before {
  content: '\f153'; }

.flaticon-interface:before {
  content: '\f154'; }

.flaticon-interface-1:before {
  content: '\f155'; }

.flaticon-interface-2:before {
  content: '\f156'; }

.flaticon-interface-3:before {
  content: '\f157'; }

.flaticon-interface-4:before {
  content: '\f158'; }

.flaticon-kitchen-utensils:before {
  content: '\f159'; }

.flaticon-layers:before {
  content: '\f15a'; }

.flaticon-like:before {
  content: '\f15b'; }

.flaticon-link:before {
  content: '\f15c'; }

.flaticon-magnifying-glass:before {
  content: '\f15d'; }

.flaticon-man:before {
  content: '\f15e'; }

.flaticon-map:before {
  content: '\f15f'; }

.flaticon-money:before {
  content: '\f160'; }

.flaticon-money-1:before {
  content: '\f161'; }

.flaticon-monitor:before {
  content: '\f162'; }

.flaticon-music:before {
  content: '\f163'; }

.flaticon-musical-note:before {
  content: '\f164'; }

.flaticon-nature:before {
  content: '\f165'; }

.flaticon-network:before {
  content: '\f166'; }

.flaticon-next:before {
  content: '\f167'; }

.flaticon-next-1:before {
  content: '\f168'; }

.flaticon-one-finger-tap-gesture-of-outlined-hand-symbol:before {
  content: '\f169'; }

.flaticon-padlock:before {
  content: '\f16a'; }

.flaticon-paper:before {
  content: '\f16b'; }

.flaticon-paper-plane:before {
  content: '\f16c'; }

.flaticon-people:before {
  content: '\f16d'; }

.flaticon-person:before {
  content: '\f16e'; }

.flaticon-phone:before {
  content: '\f16f'; }

.flaticon-phone-1:before {
  content: '\f170'; }

.flaticon-phone-call:before {
  content: '\f171'; }

.flaticon-picture:before {
  content: '\f172'; }

.flaticon-pie-chart:before {
  content: '\f173'; }

.flaticon-piece:before {
  content: '\f174'; }

.flaticon-piggy-bank:before {
  content: '\f175'; }

.flaticon-placeholder:before {
  content: '\f176'; }

.flaticon-play:before {
  content: '\f177'; }

.flaticon-printer:before {
  content: '\f178'; }

.flaticon-reload:before {
  content: '\f179'; }

.flaticon-route:before {
  content: '\f17a'; }

.flaticon-sales:before {
  content: '\f17b'; }

.flaticon-settings:before {
  content: '\f17c'; }

.flaticon-settings-1:before {
  content: '\f17d'; }

.flaticon-shape:before {
  content: '\f17e'; }

.flaticon-shape-1:before {
  content: '\f17f'; }

.flaticon-shape-10:before {
  content: '\f180'; }

.flaticon-shape-11:before {
  content: '\f181'; }

.flaticon-shape-12:before {
  content: '\f182'; }

.flaticon-shape-13:before {
  content: '\f183'; }

.flaticon-shape-14:before {
  content: '\f184'; }

.flaticon-shape-2:before {
  content: '\f185'; }

.flaticon-shape-3:before {
  content: '\f186'; }

.flaticon-shape-4:before {
  content: '\f187'; }

.flaticon-shape-5:before {
  content: '\f188'; }

.flaticon-shape-6:before {
  content: '\f189'; }

.flaticon-shape-7:before {
  content: '\f18a'; }

.flaticon-shape-8:before {
  content: '\f18b'; }

.flaticon-shape-9:before {
  content: '\f18c'; }

.flaticon-shapes:before {
  content: '\f18d'; }

.flaticon-shapes-1:before {
  content: '\f18e'; }

.flaticon-shapes-2:before {
  content: '\f18f'; }

.flaticon-share:before {
  content: '\f190'; }

.flaticon-share-1:before {
  content: '\f191'; }

.flaticon-sheet:before {
  content: '\f192'; }

.flaticon-shopping:before {
  content: '\f193'; }

.flaticon-shopping-bag:before {
  content: '\f194'; }

.flaticon-shopping-bag-1:before {
  content: '\f195'; }

.flaticon-shopping-basket:before {
  content: '\f196'; }

.flaticon-shopping-cart:before {
  content: '\f197'; }

.flaticon-shuffle:before {
  content: '\f198'; }

.flaticon-sign:before {
  content: '\f199'; }

.flaticon-sign-1:before {
  content: '\f19a'; }

.flaticon-sign-2:before {
  content: '\f19b'; }

.flaticon-signs:before {
  content: '\f19c'; }

.flaticon-signs-1:before {
  content: '\f19d'; }

.flaticon-speaker:before {
  content: '\f19e'; }

.flaticon-square:before {
  content: '\f19f'; }

.flaticon-square-1:before {
  content: '\f1a0'; }

.flaticon-star:before {
  content: '\f1a1'; }

.flaticon-starred:before {
  content: '\f1a2'; }

.flaticon-stopwatch:before {
  content: '\f1a3'; }

.flaticon-symbol:before {
  content: '\f1a4'; }

.flaticon-symbol-1:before {
  content: '\f1a5'; }

.flaticon-symbol-2:before {
  content: '\f1a6'; }

.flaticon-symbol-3:before {
  content: '\f1a7'; }

.flaticon-symbol-4:before {
  content: '\f1a8'; }

.flaticon-tag:before {
  content: '\f1a9'; }

.flaticon-technology:before {
  content: '\f1aa'; }

.flaticon-telephone:before {
  content: '\f1ab'; }

.flaticon-telephone-1:before {
  content: '\f1ac'; }

.flaticon-thumb:before {
  content: '\f1ad'; }

.flaticon-thumb-1:before {
  content: '\f1ae'; }

.flaticon-time:before {
  content: '\f1af'; }

.flaticon-time-1:before {
  content: '\f1b0'; }

.flaticon-time-2:before {
  content: '\f1b1'; }

.flaticon-tool:before {
  content: '\f1b2'; }

.flaticon-tool-1:before {
  content: '\f1b3'; }

.flaticon-tool-10:before {
  content: '\f1b4'; }

.flaticon-tool-11:before {
  content: '\f1b5'; }

.flaticon-tool-12:before {
  content: '\f1b6'; }

.flaticon-tool-13:before {
  content: '\f1b7'; }

.flaticon-tool-14:before {
  content: '\f1b8'; }

.flaticon-tool-15:before {
  content: '\f1b9'; }

.flaticon-tool-16:before {
  content: '\f1ba'; }

.flaticon-tool-17:before {
  content: '\f1bb'; }

.flaticon-tool-18:before {
  content: '\f1bc'; }

.flaticon-tool-19:before {
  content: '\f1bd'; }

.flaticon-tool-2:before {
  content: '\f1be'; }

.flaticon-tool-20:before {
  content: '\f1bf'; }

.flaticon-tool-21:before {
  content: '\f1c0'; }

.flaticon-tool-22:before {
  content: '\f1c1'; }

.flaticon-tool-23:before {
  content: '\f1c2'; }

.flaticon-tool-24:before {
  content: '\f1c3'; }

.flaticon-tool-25:before {
  content: '\f1c4'; }

.flaticon-tool-26:before {
  content: '\f1c5'; }

.flaticon-tool-27:before {
  content: '\f1c6'; }

.flaticon-tool-28:before {
  content: '\f1c7'; }

.flaticon-tool-29:before {
  content: '\f1c8'; }

.flaticon-tool-3:before {
  content: '\f1c9'; }

.flaticon-tool-30:before {
  content: '\f1ca'; }

.flaticon-tool-31:before {
  content: '\f1cb'; }

.flaticon-tool-32:before {
  content: '\f1cc'; }

.flaticon-tool-33:before {
  content: '\f1cd'; }

.flaticon-tool-34:before {
  content: '\f1ce'; }

.flaticon-tool-35:before {
  content: '\f1cf'; }

.flaticon-tool-36:before {
  content: '\f1d0'; }

.flaticon-tool-37:before {
  content: '\f1d1'; }

.flaticon-tool-4:before {
  content: '\f1d2'; }

.flaticon-tool-5:before {
  content: '\f1d3'; }

.flaticon-tool-6:before {
  content: '\f1d4'; }

.flaticon-tool-7:before {
  content: '\f1d5'; }

.flaticon-tool-8:before {
  content: '\f1d6'; }

.flaticon-tool-9:before {
  content: '\f1d7'; }

.flaticon-transport:before {
  content: '\f1d8'; }

.flaticon-transport-1:before {
  content: '\f1d9'; }

.flaticon-transport-2:before {
  content: '\f1da'; }

.flaticon-transport-3:before {
  content: '\f1db'; }

.flaticon-transport-4:before {
  content: '\f1dc'; }

.flaticon-transport-5:before {
  content: '\f1dd'; }

.flaticon-transport-6:before {
  content: '\f1de'; }

.flaticon-transport-7:before {
  content: '\f1df'; }

.flaticon-two:before {
  content: '\f1e0'; }

.flaticon-two-1:before {
  content: '\f1e1'; }

.flaticon-two-2:before {
  content: '\f1e2'; }

.flaticon-two-3:before {
  content: '\f1e3'; }

.flaticon-two-4:before {
  content: '\f1e4'; }

.flaticon-upload:before {
  content: '\f1e5'; }

.flaticon-vector:before {
  content: '\f1e6'; }

.flaticon-video:before {
  content: '\f1e7'; }

.flaticon-weather:before {
  content: '\f1e8'; }

.flaticon-weather-1:before {
  content: '\f1e9'; }

.flaticon-web:before {
  content: '\f1ea'; }

.flaticon-web-1:before {
  content: '\f1eb'; }

.flaticon-wrench:before {
  content: '\f1ec'; }

/*=======================5. Owl Carousel ===============================
==================================================================*/
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-carousel, .owl-carousel .owl-item, .owl-theme .owl-dots, .owl-theme .owl-nav {
  -webkit-tap-highlight-color: transparent; }

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

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.owl-height {
  -webkit-transition: height .5s ease-in-out;
  -moz-transition: height .5s ease-in-out;
  -ms-transition: height .5s ease-in-out;
  -o-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out; }

.owl-carousel {
  position: relative;
  z-index: 1;
  display: none;
  width: 100%; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  line-height: 0;
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: '.'; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-controls .owl-dot, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -khtml-user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  display: block;
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item, .owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-item {
  position: relative;
  float: left;
  min-height: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

.no-js .owl-carousel {
  display: block; }

.owl-carousel .owl-item .owl-lazy {
  -webkit-transition: opacity .4s ease;
  -moz-transition: opacity .4s ease;
  -ms-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease;
  opacity: 0; }

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  cursor: pointer;
  -webkit-transition: scale .1s ease;
  -moz-transition: scale .1s ease;
  -ms-transition: scale .1s ease;
  -o-transition: scale .1s ease;
  transition: scale .1s ease;
  background: url(owl.video.play.png) no-repeat;
  -webkit-backface-visibility: hidden; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-tn {
  height: 100%;
  -webkit-transition: opacity .4s ease;
  -moz-transition: opacity .4s ease;
  -ms-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }

.owl-theme .owl-nav {
  margin-top: 10px; }

.owl-theme .owl-nav > div {
  font-size: 14px;
  display: inline-block;
  margin: 5px;
  padding: 4px 7px;
  cursor: pointer;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #d6d6d6; }

.owl-theme .owl-nav > div:hover {
  text-decoration: none;
  color: #fff;
  background: #869791; }

.owl-theme .owl-nav .disabled {
  cursor: default;
  opacity: .5; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1; }

.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  -webkit-transition: opacity .2s ease;
  -moz-transition: opacity .2s ease;
  -ms-transition: opacity .2s ease;
  -o-transition: opacity .2s ease;
  transition: opacity .2s ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #d6d6d6;
  -webkit-backface-visibility: visible; }

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791; }

/*=======================6. Animation ===============================
==================================================================*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

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

@-webkit-keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -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); }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
    -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); }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    -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); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -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); }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
    -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); }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    -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); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

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

@-webkit-keyframes flash {
  0%, 100%, 50% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  0%, 100%, 50% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

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

@-webkit-keyframes pulse {
  0%, 100% {
    -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); } }

@keyframes pulse {
  0%, 100% {
    -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); } }

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

@-webkit-keyframes rubberBand {
  0%, 100% {
    -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); } }

@keyframes rubberBand {
  0%, 100% {
    -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); } }

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

@-webkit-keyframes shake {
  0%, 100% {
    -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 {
  0%, 100% {
    -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 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); }
  100% {
    -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); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

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

@-webkit-keyframes tada {
  0%, 100% {
    -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); } }

@keyframes tada {
  0%, 100% {
    -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); } }

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

@-webkit-keyframes wobble {
  0%, 100% {
    -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); } }

@keyframes wobble {
  0%, 100% {
    -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); } }

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

@-webkit-keyframes jello {
  0%, 100%, 11.1% {
    -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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  0%, 100%, 11.1% {
    -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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

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

@-webkit-keyframes bounceIn {
  0%, 100%, 20%, 40%, 60%, 80% {
    -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% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0; }
  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% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
    opacity: 1; }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1; } }

@keyframes bounceIn {
  0%, 100%, 20%, 40%, 60%, 80% {
    -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% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0; }
  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% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
    opacity: 1; }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1; } }

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

@-webkit-keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    -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% {
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
    opacity: 0; }
  60% {
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
    opacity: 1; }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    -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% {
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
    opacity: 0; }
  60% {
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
    opacity: 1; }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  0%, 100%, 60%, 75%, 90% {
    -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% {
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
    opacity: 0; }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
    opacity: 1; }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  0%, 100%, 60%, 75%, 90% {
    -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% {
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
    opacity: 0; }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
    opacity: 1; }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInRight {
  0%, 100%, 60%, 75%, 90% {
    -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% {
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
    opacity: 0; }
  60% {
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
    opacity: 1; }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  0%, 100%, 60%, 75%, 90% {
    -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% {
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
    opacity: 0; }
  60% {
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
    opacity: 1; }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInUp {
  0%, 100%, 60%, 75%, 90% {
    -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% {
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
    opacity: 0; }
  60% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 1; }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  0%, 100%, 60%, 75%, 90% {
    -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% {
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
    opacity: 0; }
  60% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 1; }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -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% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1; }
  100% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0; } }

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

.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% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    opacity: 0; } }

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

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

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

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

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

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

@keyframes bounceOutRight {
  20% {
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    opacity: 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% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    opacity: 0; } }

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

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

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

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

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

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

@-webkit-keyframes fadeInDownBig {
  0% {
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes fadeInDownBig {
  0% {
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

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

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

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes fadeInLeftBig {
  0% {
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

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

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

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

@-webkit-keyframes fadeInRightBig {
  0% {
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes fadeInRightBig {
  0% {
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

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

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

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

@-webkit-keyframes fadeInUpBig {
  0% {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes fadeInUpBig {
  0% {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

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

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

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

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    opacity: 0; } }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    opacity: 0; } }

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

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

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

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    opacity: 0; } }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    opacity: 0; } }

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

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

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

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    opacity: 0; } }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    opacity: 0; } }

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

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

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

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    opacity: 0; } }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    opacity: 0; } }

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

@-webkit-keyframes flip {
  0% {
    -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; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  0% {
    -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; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

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

@-webkit-keyframes flipInX {
  0% {
    -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); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  0% {
    -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); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

.flipInY, .flipOutX {
  -webkit-backface-visibility: visible !important; }

@-webkit-keyframes flipInY {
  0% {
    -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); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  0% {
    -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); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

@-webkit-keyframes flipOutX {
  0% {
    -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; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  0% {
    -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; }
  100% {
    -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;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -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; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  0% {
    -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; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -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; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  0% {
    -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; }
  100% {
    -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 {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    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; }
  100% {
    -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; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomInDown {
  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);
    opacity: 0; }
  60% {
    -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);
    opacity: 1; } }

@keyframes zoomInDown {
  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);
    opacity: 0; }
  60% {
    -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);
    opacity: 1; } }

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

@-webkit-keyframes zoomInLeft {
  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);
    opacity: 0; }
  60% {
    -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);
    opacity: 1; } }

@keyframes zoomInLeft {
  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);
    opacity: 0; }
  60% {
    -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);
    opacity: 1; } }

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

@-webkit-keyframes zoomInRight {
  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);
    opacity: 0; }
  60% {
    -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);
    opacity: 1; } }

@keyframes zoomInRight {
  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);
    opacity: 0; }
  60% {
    -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);
    opacity: 1; } }

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

@-webkit-keyframes zoomInUp {
  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);
    opacity: 0; }
  60% {
    -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);
    opacity: 1; } }

@keyframes zoomInUp {
  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);
    opacity: 0; }
  60% {
    -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);
    opacity: 1; } }

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0; }
  100% {
    opacity: 0; } }

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

@-webkit-keyframes zoomOutDown {
  40% {
    -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);
    opacity: 1; }
  100% {
    -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);
    opacity: 0; } }

@keyframes zoomOutDown {
  40% {
    -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);
    opacity: 1; }
  100% {
    -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);
    opacity: 0; } }

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

@-webkit-keyframes zoomOutLeft {
  40% {
    -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);
    opacity: 1; }
  100% {
    -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;
    opacity: 0; } }

@keyframes zoomOutLeft {
  40% {
    -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);
    opacity: 1; }
  100% {
    -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;
    opacity: 0; } }

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

@-webkit-keyframes zoomOutRight {
  40% {
    -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);
    opacity: 1; }
  100% {
    -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;
    opacity: 0; } }

@keyframes zoomOutRight {
  40% {
    -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);
    opacity: 1; }
  100% {
    -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;
    opacity: 0; } }

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

@-webkit-keyframes zoomOutUp {
  40% {
    -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);
    opacity: 1; }
  100% {
    -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);
    opacity: 0; } }

@keyframes zoomOutUp {
  40% {
    -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);
    opacity: 1; }
  100% {
    -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);
    opacity: 0; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*=======================7. PrettyPhoto For Light box ===============================
==================================================================*/
.pp_gallery div, .pp_gallery ul a, .pp_social .facebook {
  overflow: hidden;
  float: left; }

div.pp_default .pp_bottom, div.pp_default .pp_bottom .pp_left, div.pp_default .pp_bottom .pp_middle, div.pp_default .pp_bottom .pp_right, div.pp_default .pp_top, div.pp_default .pp_top .pp_left, div.pp_default .pp_top .pp_middle, div.pp_default .pp_top .pp_right {
  height: 13px; }

div.pp_default .pp_top .pp_left {
  background: url(../images/base/prettyPhoto/default/sprite.png) -78px -93px no-repeat; }

div.pp_default .pp_top .pp_middle {
  background: url(../images/base/prettyPhoto/default/sprite_x.png) top left repeat-x; }

div.pp_default .pp_top .pp_right {
  background: url(../images/base/prettyPhoto/default/sprite.png) -112px -93px no-repeat; }

div.pp_default .pp_content .ppt {
  color: #f8f8f8; }

div.pp_default .pp_content_container .pp_left {
  padding-left: 13px;
  background: url(../images/base/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y; }

div.pp_default .pp_content_container .pp_right {
  padding-right: 13px;
  background: url(../images/base/prettyPhoto/default/sprite_y.png) top right repeat-y; }

div.pp_default .pp_next:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/default/sprite_next.png) center right no-repeat; }

div.pp_default .pp_previous:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/default/sprite_prev.png) center left no-repeat; }

div.pp_default .pp_expand {
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: url(../images/base/prettyPhoto/default/sprite.png) 0 -29px no-repeat; }

div.pp_default .pp_expand:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/default/sprite.png) 0 -56px no-repeat; }

div.pp_default .pp_contract {
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: url(../images/base/prettyPhoto/default/sprite.png) 0 -84px no-repeat; }

div.pp_default .pp_contract:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/default/sprite.png) 0 -113px no-repeat; }

div.pp_default .pp_close {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: url(../images/base/prettyPhoto/default/sprite.png) 2px 1px no-repeat; }

div.pp_default .pp_gallery ul li a {
  border: 1px solid #aaa;
  background: url(../images/base/prettyPhoto/default/default_thumb.png) center center #f8f8f8; }

div.pp_default .pp_social {
  margin-top: 7px; }

div.pp_default .pp_gallery a.pp_arrow_next, div.pp_default .pp_gallery a.pp_arrow_previous {
  position: static;
  left: auto; }

div.pp_default .pp_nav .pp_pause, div.pp_default .pp_nav .pp_play {
  width: 30px;
  height: 30px;
  background: url(../images/base/prettyPhoto/default/sprite.png) -51px 1px no-repeat; }

div.pp_default .pp_nav .pp_pause {
  background-position: -51px -29px; }

div.pp_default a.pp_arrow_next, div.pp_default a.pp_arrow_previous {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  background: url(../images/base/prettyPhoto/default/sprite.png) -31px -3px no-repeat; }

div.pp_default a.pp_arrow_next {
  left: 52px;
  background-position: -82px -3px; }

div.pp_default .pp_content_container .pp_details {
  margin-top: 5px; }

div.pp_default .pp_nav {
  position: relative;
  clear: none;
  width: 110px;
  height: 30px; }

div.pp_default .pp_nav .currentTextHolder {
  font-family: Georgia;
  font-size: 11px;
  font-style: italic;
  line-height: 25px;
  position: absolute;
  top: 2px;
  left: 75px;
  margin: 0;
  padding: 0 0 0 10px;
  color: #999; }

div.pp_default .pp_arrow_next:hover, div.pp_default .pp_arrow_previous:hover, div.pp_default .pp_close:hover, div.pp_default .pp_nav .pp_pause:hover, div.pp_default .pp_nav .pp_play:hover {
  opacity: .7; }

div.pp_default .pp_description {
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  margin: 5px 50px 5px 0; }

div.pp_default .pp_bottom .pp_left {
  background: url(../images/base/prettyPhoto/default/sprite.png) -78px -127px no-repeat; }

div.pp_default .pp_bottom .pp_middle {
  background: url(../images/base/prettyPhoto/default/sprite_x.png) bottom left repeat-x; }

div.pp_default .pp_bottom .pp_right {
  background: url(../images/base/prettyPhoto/default/sprite.png) -112px -127px no-repeat; }

div.pp_default .pp_loaderIcon {
  background: url(../images/base/prettyPhoto/default/loader.gif) center center no-repeat; }

div.light_rounded .pp_top .pp_left {
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat; }

div.light_rounded .pp_top .pp_right {
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat; }

div.light_rounded .pp_next:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_rounded/btnNext.png) center right no-repeat; }

div.light_rounded .pp_previous:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat; }

div.light_rounded .pp_expand {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat; }

div.light_rounded .pp_expand:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat; }

div.light_rounded .pp_contract {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat; }

div.light_rounded .pp_contract:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat; }

div.light_rounded .pp_close {
  width: 75px;
  height: 22px;
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat; }

div.light_rounded .pp_nav .pp_play {
  width: 14px;
  height: 15px;
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat; }

div.light_rounded .pp_nav .pp_pause {
  width: 14px;
  height: 15px;
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat; }

div.light_rounded .pp_arrow_previous {
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat; }

div.light_rounded .pp_arrow_next {
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat; }

div.light_rounded .pp_bottom .pp_left {
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat; }

div.light_rounded .pp_bottom .pp_right {
  background: url(../images/base/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat; }

div.dark_rounded .pp_top .pp_left {
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat; }

div.dark_rounded .pp_top .pp_right {
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat; }

div.dark_rounded .pp_content_container .pp_left {
  background: url(../images/base/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y; }

div.dark_rounded .pp_content_container .pp_right {
  background: url(../images/base/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y; }

div.dark_rounded .pp_next:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat; }

div.dark_rounded .pp_previous:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat; }

div.dark_rounded .pp_expand {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat; }

div.dark_rounded .pp_expand:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat; }

div.dark_rounded .pp_contract {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat; }

div.dark_rounded .pp_contract:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat; }

div.dark_rounded .pp_close {
  width: 75px;
  height: 22px;
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat; }

div.dark_rounded .pp_description {
  margin-right: 85px;
  color: #fff; }

div.dark_rounded .pp_nav .pp_play {
  width: 14px;
  height: 15px;
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat; }

div.dark_rounded .pp_nav .pp_pause {
  width: 14px;
  height: 15px;
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat; }

div.dark_rounded .pp_arrow_previous {
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat; }

div.dark_rounded .pp_arrow_next {
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat; }

div.dark_rounded .pp_bottom .pp_left {
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat; }

div.dark_rounded .pp_bottom .pp_right {
  background: url(../images/base/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat; }

div.dark_rounded .pp_loaderIcon {
  background: url(../images/base/prettyPhoto/dark_rounded/loader.gif) center center no-repeat; }

div.dark_square .pp_content, div.dark_square .pp_left, div.dark_square .pp_middle, div.dark_square .pp_right {
  background: #000; }

div.dark_square .pp_description {
  margin: 0 85px 0 0;
  color: #fff; }

div.dark_square .pp_loaderIcon {
  background: url(../images/base/prettyPhoto/dark_square/loader.gif) center center no-repeat; }

div.dark_square .pp_expand {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat; }

div.dark_square .pp_expand:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat; }

div.dark_square .pp_contract {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat; }

div.dark_square .pp_contract:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat; }

div.dark_square .pp_close {
  width: 75px;
  height: 22px;
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat; }

div.dark_square .pp_nav {
  clear: none; }

div.dark_square .pp_nav .pp_play {
  width: 14px;
  height: 15px;
  background: url(../images/base/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat; }

div.dark_square .pp_nav .pp_pause {
  width: 14px;
  height: 15px;
  background: url(../images/base/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat; }

div.dark_square .pp_arrow_previous {
  background: url(../images/base/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat; }

div.dark_square .pp_arrow_next {
  background: url(../images/base/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat; }

div.dark_square .pp_next:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_square/btnNext.png) center right no-repeat; }

div.dark_square .pp_previous:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat; }

div.light_square .pp_expand {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat; }

div.light_square .pp_expand:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat; }

div.light_square .pp_contract {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat; }

div.light_square .pp_contract:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat; }

div.light_square .pp_close {
  width: 75px;
  height: 22px;
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat; }

div.light_square .pp_nav .pp_play {
  width: 14px;
  height: 15px;
  background: url(../images/base/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat; }

div.light_square .pp_nav .pp_pause {
  width: 14px;
  height: 15px;
  background: url(../images/base/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat; }

div.light_square .pp_arrow_previous {
  background: url(../images/base/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat; }

div.light_square .pp_arrow_next {
  background: url(../images/base/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat; }

div.light_square .pp_next:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_square/btnNext.png) center right no-repeat; }

div.light_square .pp_previous:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/light_square/btnPrevious.png) center left no-repeat; }

div.facebook .pp_top .pp_left {
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat; }

div.facebook .pp_top .pp_middle {
  background: url(../images/base/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x; }

div.facebook .pp_top .pp_right {
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat; }

div.facebook .pp_content_container .pp_left {
  background: url(../images/base/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y; }

div.facebook .pp_content_container .pp_right {
  background: url(../images/base/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y; }

div.facebook .pp_expand {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat; }

div.facebook .pp_expand:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat; }

div.facebook .pp_contract {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat; }

div.facebook .pp_contract:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat; }

div.facebook .pp_close {
  width: 22px;
  height: 22px;
  cursor: pointer;
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat; }

div.facebook .pp_description {
  margin: 0 37px 0 0; }

div.facebook .pp_loaderIcon {
  background: url(../images/base/prettyPhoto/facebook/loader.gif) center center no-repeat; }

div.facebook .pp_arrow_previous {
  width: 22px;
  height: 22px;
  margin-top: 0;
  background: url(../images/base/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat; }

div.facebook .pp_arrow_previous.disabled {
  cursor: default;
  background-position: 0 -96px; }

div.facebook .pp_arrow_next {
  width: 22px;
  height: 22px;
  margin-top: 0;
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat; }

div.facebook .pp_arrow_next.disabled {
  cursor: default;
  background-position: -32px -96px; }

div.facebook .pp_nav {
  margin-top: 0; }

div.facebook .pp_nav p {
  font-size: 15px;
  padding: 0 3px 0 4px; }

div.facebook .pp_nav .pp_play {
  width: 22px;
  height: 22px;
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat; }

div.facebook .pp_nav .pp_pause {
  width: 22px;
  height: 22px;
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat; }

div.facebook .pp_next:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/facebook/btnNext.png) center right no-repeat; }

div.facebook .pp_previous:hover {
  cursor: pointer;
  background: url(../images/base/prettyPhoto/facebook/btnPrevious.png) center left no-repeat; }

div.facebook .pp_bottom .pp_left {
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat; }

div.facebook .pp_bottom .pp_middle {
  background: url(../images/base/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x; }

div.facebook .pp_bottom .pp_right {
  background: url(../images/base/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat; }

div.pp_pic_holder a:focus {
  outline: 0; }

div.pp_overlay {
  position: absolute;
  z-index: 9500;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  background: #000; }

div.pp_pic_holder {
  position: absolute;
  z-index: 10000;
  display: none;
  width: 100px; }

.pp_content {
  min-width: 40px;
  height: 40px; }

* html .pp_content {
  width: 40px; }

.pp_content_container {
  position: relative;
  width: 100%;
  text-align: left; }

.pp_content_container .pp_left {
  padding-left: 20px; }

.pp_content_container .pp_right {
  padding-right: 20px; }

.pp_content_container .pp_details {
  float: left;
  margin: 10px 0 2px; }

.pp_description {
  display: none;
  margin: 0; }

.pp_social {
  float: left;
  margin: 0; }

.pp_social .facebook {
  width: 55px;
  margin-left: 5px; }

.pp_social .twitter {
  float: left; }

.pp_nav {
  float: left;
  clear: right;
  margin: 3px 10px 0 0; }

.pp_nav p {
  float: left;
  margin: 2px 4px;
  white-space: nowrap; }

.pp_nav .pp_pause, .pp_nav .pp_play {
  float: left;
  margin-right: 4px;
  text-indent: -10000px; }

a.pp_arrow_next, a.pp_arrow_previous {
  display: block;
  float: left;
  overflow: hidden;
  width: 14px;
  height: 15px;
  margin-top: 3px;
  text-indent: -10000px; }

.pp_hoverContainer {
  position: absolute;
  z-index: 2000;
  top: 0;
  width: 100%; }

.pp_gallery {
  position: absolute;
  z-index: 10000;
  left: 50%;
  display: none;
  margin-top: -50px; }

.pp_gallery div {
  position: relative; }

.pp_gallery ul {
  position: relative;
  float: left;
  height: 35px;
  margin: 0 0 0 5px;
  padding: 0;
  white-space: nowrap; }

.pp_gallery ul a {
  display: block;
  height: 33px;
  border: 1px solid rgba(0, 0, 0, 0.5); }

.pp_gallery ul a img {
  border: 0; }

.pp_gallery li {
  display: block;
  float: left;
  margin: 0 5px 0 0;
  padding: 0; }

.pp_gallery li.default a {
  display: block;
  width: 50px;
  height: 33px;
  background: url(../images/base/prettyPhoto/facebook/default_thumbnail.gif) no-repeat; }

a.pp_next, a.pp_previous {
  display: block;
  width: 49%;
  height: 100%;
  background: url(../images/base/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
  text-indent: -10000px; }

.pp_gallery .pp_arrow_next, .pp_gallery .pp_arrow_previous {
  margin-top: 7px !important; }

a.pp_next {
  float: right; }

a.pp_previous {
  float: left; }

a.pp_contract, a.pp_expand {
  position: absolute;
  z-index: 20000;
  top: 10px;
  right: 30px;
  display: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  text-indent: -10000px; }

.pp_loaderIcon, a.pp_close {
  position: absolute;
  display: block; }

a.pp_close {
  line-height: 22px;
  top: 0;
  right: 0;
  text-indent: -10000px; }

.pp_loaderIcon {
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px; }

.pp_fade, .pp_gallery li.default a img, div.ppt {
  display: none; }

#pp_full_res {
  line-height: 1 !important; }

#pp_full_res .pp_inline {
  text-align: left; }

#pp_full_res .pp_inline p {
  margin: 0 0 15px; }

div.ppt {
  font-size: 17px;
  z-index: 9999;
  margin: 0 0 5px 15px;
  color: #fff; }

div.light_rounded .pp_content, div.pp_default .pp_content {
  background-color: #fff; }

div.facebook #pp_full_res .pp_inline, div.facebook .pp_content .ppt, div.light_rounded #pp_full_res .pp_inline, div.light_rounded .pp_content .ppt, div.light_square #pp_full_res .pp_inline, div.light_square .pp_content .ppt, div.pp_default #pp_full_res .pp_inline {
  color: #000; }

.pp_gallery li.selected a, .pp_gallery ul a:hover, div.pp_default .pp_gallery ul li a:hover, div.pp_default .pp_gallery ul li.selected a {
  border-color: #fff; }

div.dark_rounded .pp_details, div.dark_square .pp_details, div.facebook .pp_details, div.light_rounded .pp_details, div.light_square .pp_details, div.pp_default .pp_details {
  position: relative; }

div.facebook .pp_content, div.light_rounded .pp_bottom .pp_middle, div.light_rounded .pp_content_container .pp_left, div.light_rounded .pp_content_container .pp_right, div.light_rounded .pp_top .pp_middle, div.light_square .pp_content, div.light_square .pp_left, div.light_square .pp_middle, div.light_square .pp_right {
  background: #fff; }

div.light_rounded .pp_description, div.light_square .pp_description {
  margin-right: 85px; }

div.dark_rounded .pp_gallery a.pp_arrow_next, div.dark_rounded .pp_gallery a.pp_arrow_previous, div.dark_square .pp_gallery a.pp_arrow_next, div.dark_square .pp_gallery a.pp_arrow_previous, div.light_rounded .pp_gallery a.pp_arrow_next, div.light_rounded .pp_gallery a.pp_arrow_previous, div.light_square .pp_gallery a.pp_arrow_next, div.light_square .pp_gallery a.pp_arrow_previous {
  margin-top: 12px !important; }

div.dark_rounded .pp_arrow_previous.disabled, div.dark_square .pp_arrow_previous.disabled, div.light_rounded .pp_arrow_previous.disabled, div.light_square .pp_arrow_previous.disabled {
  cursor: default;
  background-position: 0 -87px; }

div.dark_rounded .pp_arrow_next.disabled, div.dark_square .pp_arrow_next.disabled, div.light_rounded .pp_arrow_next.disabled, div.light_square .pp_arrow_next.disabled {
  cursor: default;
  background-position: -22px -87px; }

div.light_rounded .pp_loaderIcon, div.light_square .pp_loaderIcon {
  background: url(../images/base/prettyPhoto/light_rounded/loader.gif) center center no-repeat; }

div.dark_rounded .pp_bottom .pp_middle, div.dark_rounded .pp_content, div.dark_rounded .pp_top .pp_middle {
  background: url(../images/base/prettyPhoto/dark_rounded/contentPattern.png) top left; }

div.dark_rounded .currentTextHolder, div.dark_square .currentTextHolder {
  color: #c4c4c4; }

div.dark_rounded #pp_full_res .pp_inline, div.dark_square #pp_full_res .pp_inline {
  color: #fff; }

.pp_bottom, .pp_top {
  position: relative;
  height: 20px; }

* html .pp_bottom, * html .pp_top {
  padding: 0 20px; }

.pp_bottom .pp_left, .pp_top .pp_left {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px; }

.pp_bottom .pp_middle, .pp_top .pp_middle {
  position: absolute;
  right: 20px;
  left: 20px;
  height: 20px; }

* html .pp_bottom .pp_middle, * html .pp_top .pp_middle {
  position: static;
  left: 0; }

.pp_bottom .pp_right, .pp_top .pp_right {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 20px;
  height: 20px; }

/*=======================THEME BASE STYLES ===============================
==================================================================*/
#side-nav, body {
  overflow-x: hidden; }

.counter-wrapper .number-counter, .nav a, h1, h2, h3, h4, h5, h6 {
  font-family: Poppins,sans-serif; }

.Lora {
  font-family: Lora, sans-serif !important; }

.typo-light .a-active:hover, h1, h2, h3, h4, h5, h6 {
  color: #222; }

.typo-dark .a-active:hover {
  color: #aeadad; }

.lead, body, p {
  color: #434955; }

.font-weight-light, .font-weight-thin, body, p {
  font-family: 'Source Sans Pro',sans-serif; }

body, p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased; }

p {
  margin-bottom: 20px; }

.row-space .row:last-child, p:last-child {
  margin-bottom: 0; }

h1 {
  font-size: 48px;
  line-height: 62px; }

h2 {
  font-size: 40px;
  line-height: 52px; }

h3 {
  font-size: 32px;
  line-height: 42px; }

h4 {
  font-size: 24px;
  line-height: 31px; }

h5 {
  font-size: 18px;
  line-height: 28px; }

h6 {
  font-size: 16px;
  line-height: 25px; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px; }

.small {
  font-size: 14px; }

.big {
  font-size: 98px !important;
  line-height: 98px; }

.medium {
  font-size: 78px !important;
  line-height: 78px !important; }

.medium1 {
  font-size: 60px !important;
  line-height: 70px !important; }

.medium2 {
  font-size: 45px !important;
  line-height: 60px !important; }

.lead {
  font-size: 26px;
  font-weight: 300;
  line-height: 39px; }

.typo-light, .typo-light a, .typo-light h1, .typo-light h2, .typo-light h3, .typo-light h4, .typo-light h5, .typo-light h6, .typo-light p {
  color: #fff; }

.typo-dark, .typo-dark a, .typo-dark h1, .typo-dark h2, .typo-dark h3, .typo-dark h4, .typo-dark h5, .typo-dark h6, .typo-dark p, a {
  color: #171717; }

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus, a.active.focus, a.active:focus, a.focus, a:active.focus, a:active:focus, a:focus {
  outline: 0 !important; }

.typo-dgrey {
  color: #999; }

.typo-lgrey {
  color: #a5a4a4; }

.font-weight-thin {
  font-weight: 100; }

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

.font-weight-bold {
  font-weight: 900; }

.text-italic {
  font-style: italic; }

.section, section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
  background-size: cover; }

img {
  font-size: inherit;
  display: block;
  max-width: 100% !important; }

.border-rounded, .img-rounded {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px; }

img.text-center {
  margin: auto; }

.vertical-middle {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.border {
  border: 1px solid; }

.border-style1 {
  padding: 10px;
  border: 2px solid; }

.single-screen {
  padding-top: 170px !important;
  padding-bottom: 120px !important; }

.single-screen.v-image {
  padding-top: 40px !important;
  padding-bottom: 40px !important; }

ol, ul {
  margin: 0 0 2em;
  padding-left: 0; }

ol ol, ol ul, ul ol, ul ul {
  margin: inherit;
  padding-left: 20px; }

.row-space .row {
  margin-bottom: 30px; }

.bottom-margin {
  margin-bottom: 50px !important; }

.bottom-margin-vsm {
  margin-bottom: 10px !important; }

.bottom-margin-sm {
  margin-bottom: 30px !important; }

.bottom-margin-md {
  margin-bottom: 60px !important; }

.bottom-margin-lg {
  margin-bottom: 80px !important; }

.top-margin {
  margin-top: 50px !important; }

.top-margin-sm {
  margin-top: 30px !important; }

.top-margin-md {
  margin-top: 60px !important; }

.top-margin-lg {
  margin-top: 80px !important; }

.left-margin {
  margin-left: 50px !important; }

.left-margin-sm {
  margin-left: 30px !important; }

.left-margin-md {
  margin-left: 60px !important; }

.left-margin-lg {
  margin-left: 80px !important; }

.right-margin {
  margin-right: 50px !important; }

.right-margin-sm {
  margin-right: 30px !important; }

.right-margin-md {
  margin-right: 60px !important; }

.right-margin-lg {
  margin-right: 80px !important; }

.margin {
  margin: 50px !important; }

.margin-sm {
  margin: 30px !important; }

.margin-md {
  margin: 60px !important; }

.margin-lg {
  margin: 80px !important; }

.no-margin {
  margin: 0 !important; }

.no-top-margin {
  margin-top: 0 !important; }

.no-bottom-margin {
  margin-bottom: 0 !important; }

.no-left-margin {
  margin-left: 0 !important; }

.no-right-margin {
  margin-right: 0 !important; }

.tb-margin-sm {
  margin-top: 30px !important;
  margin-bottom: 30px !important; }

.margin-20 {
  margin: 20px !important; }

.tb-padding-vsm {
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

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

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

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

.bottom-padding-md {
  padding-bottom: 60px !important; }

.bottom-padding-lg {
  padding-bottom: 80px !important; }

.top-padding {
  padding-top: 50px !important; }

.top-padding-vsm {
  padding-top: 15px !important; }

.top-padding-sm {
  padding-top: 30px !important; }

.top-padding-lg {
  padding-top: 80px !important; }

.top-padding-xlg {
  padding-top: 240px !important; }

.left-padding {
  padding-left: 50px !important; }

.left-padding-sm {
  padding-left: 30px !important; }

.left-padding-md {
  padding-left: 60px !important; }

.left-padding-lg {
  padding-left: 80px !important; }

.right-padding {
  padding-right: 50px !important; }

.right-padding-sm {
  padding-right: 30px !important; }

.right-padding-md {
  padding-right: 60px !important; }

.right-padding-lg {
  padding-right: 80px !important; }

.padding {
  padding: 50px !important; }

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

.padding-md {
  padding: 60px !important; }

.padding-lg {
  padding: 80px !important; }

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

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

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

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

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

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

a.small {
  font-size: 11px; }

.inline {
  display: inline; }

.gallery-overlay img, .gallery-overlay img:hover, .trans, .trans:hover, a, a:hover {
  -webkit-transition: all 350ms ease-in-out 0s !important;
  -moz-transition: all 350ms ease-in-out 0s !important;
  -ms-transition: all 350ms ease-in-out 0s !important;
  -o-transition: all 350ms ease-in-out 0s !important;
  transition: all 350ms ease-in-out 0s !important; }

.underline {
  text-decoration: underline; }

.animated {
  visibility: hidden; }

.visible {
  visibility: visible; }

::-moz-selection {
  color: #fff;
  background: #333;
  text-shadow: none; }

::selection {
  color: #fff;
  background: #333;
  text-shadow: none; }

.wide-layout .container {
  width: 100%;
  padding-right: 40px;
  padding-left: 40px; }

.boxed, .boxed-layout {
  max-width: 1200px;
  margin: 20px auto;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1); }

#sticker {
  z-index: 1031;
  width: 100%;
  transition: all .5s ease 0s; }

.not-visible-nav {
  top: -75px; }

#sticker.sticky-navigation.not-visible-nav {
  position: static; }

#sticker.sticky-navigation.visible-nav {
  position: fixed;
  transition: all .5s ease 0s; }

.navbar-default .navbar-toggle .icon-bar, .toggle-search {
  -webkit-transition: .2s all ease-in-out;
  -moz-transition: .2s all ease-in-out;
  -ms-transition: .2s all ease-in-out;
  -o-transition: .2s all ease-in-out; }

.visible-nav {
  top: 0; }

.header-contact-details > li {
  display: inline-block; }

.header-contact-details > li.spacer, .header-top-section li.spacer {
  width: 10px; }

.header-contact-details > li.header-email:before, .header-contact-details > li.header-phone:before {
  font-family: FontAwesome;
  padding-right: 5px;
  content: '\f095';
  color: inherit; }

.header-contact-details > li.header-email::before {
  content: '\f0e0'; }

.header-contact-details > li.header-email a {
  color: #333; }

.header-social-icons > li {
  display: inline-block;
  padding: 0 8px; }

.inline-social-icons > li {
  display: inline-block;
  padding: 8px 15px 0 0; }

.inline-social-icons > li:last-child {
  padding-right: 0; }

.pad-sm.inline-social-icons > li, .side-nav .inline-social-icons > li {
  padding: 8px 5px 0 0; }

.inline-social-icons.small-icons li .fa {
  font-size: 13px; }

.header-widgets {
  margin-right: 15px !important;
  padding-top: 12px;
  padding-bottom: 8px;
  justify-content: flex-end; }

.header-widgets .widget {
  margin-bottom: 0; }

.widget-icon-box {
  display: flex;
  justify-content: flex-start;
  float: left;
  width: auto;
  padding: 8px 0;
  text-align: left;
  border-bottom: 0 none; }

.widget-icon-box .icon-box {
  margin-left: 15px;
  padding-right: 15px;
  text-align: left;
  border-right: 1px solid rgba(250, 250, 250, 0.12);
  display: inherit;
  width: auto; }

.widget-icon-box:last-child .icon-box {
  border-right: 0; }

.widget-icon-box .icon-box > .fa {
  font-size: 40px;
  float: left;
  margin-right: 10px; }

.widget-icon-box .icon-box-text {
  margin-left: 0; }

.widget-icon-box .icon-box .fa, .widget-icon-box .icon-box .icon-box-subtitle {
  color: #989898; }

.widget-icon-box .icon-box .icon-box-subtitle {
  font-size: 13px; }

.widget-icon-box .icon-box:hover .fa, .widget-icon-box .icon-box:hover .icon-box-subtitle {
  color: #ddd; }

.icon-box-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 13px;
  margin: 4px 0 0;
  color: #ddd; }

.toggle-search {
  position: absolute;
  top: 80%;
  right: 0;
  visibility: hidden;
  width: 300px;
  transition: .2s all ease-in-out;
  opacity: 0; }

.toggle-search.show-form {
  z-index: 9;
  top: 100%;
  bottom: auto;
  visibility: visible;
  opacity: 1; }

.input-group.toggle-search .form-control {
  height: 45px; }

.search-icon > span {
  min-width: 12px; }

#menu-toggle > span {
  font-size: 14px;
  padding: 10px;
  border: 1px solid #e1e1e1; }

.header-top-section .simple-search-form.extra-menu-item, .navbar-nav > li .simple-search-form.extra-menu-item {
  line-height: normal !important;
  display: table-cell;
  vertical-align: middle; }

.navbar-nav > li .simple-search-form.extra-menu-item .navbar-form, .simple-search-form .navbar-form {
  margin: 0;
  padding: 0; }

.top-menu {
  padding: 0 10px; }

.top-menu > li {
  display: inline-block;
  padding: 0 5px; }

.cart-toggle .cart-count {
  font-size: 10px;
  font-weight: 500 !important;
  line-height: 16px;
  position: relative;
  top: -10px;
  right: 4px;
  display: inline-block;
  width: 16px;
  height: 16px;
  padding-top: 1px;
  padding-left: 2px;
  text-align: center;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; }

.dropdown-cart {
  right: 0 !important;
  left: auto !important;
  min-width: 280px !important;
  padding: 15px !important; }

.dropdown-cart li .item {
  display: block;
  margin: 3px 0;
  padding: 3px 0 10px; }

.dropdown-cart li .item:after {
  font-size: 0;
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ' '; }

.dropdown-cart li .item-left {
  float: left;
  width: 75%; }

.dropdown-cart li .item-left .item-info > span {
  font-size: 14px;
  display: block;
  padding-top: 15px; }

.dropdown-cart .cart-total .cart-btn > li, .nav .flag, .navbar-brand > img {
  display: inline-block; }

.dropdown-cart li .item-left .item-info h5 {
  margin-top: 0;
  margin-bottom: 0; }

.dropdown-cart li .item-left img {
  float: left;
  margin-right: 15px; }

.dropdown-cart li .item-right {
  float: right; }

.dropdown-cart li .item-right button {
  line-height: normal;
  margin-top: 25px;
  padding: 0 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; }

.dropdown-cart .item-name {
  line-height: 1em; }

.dropdown-cart .cart-total {
  padding: 0; }

.dropdown-cart .cart-total .cart-price {
  font-size: 17px;
  padding-top: 25px; }

.dropdown-cart .cart-total .cart-btn {
  padding: 0 0 5px; }

.dropdown-cart .cart-btn .btn {
  margin-bottom: 0; }

.dropdown-cart .btn.btn-xs {
  font-size: 9px;
  width: 20px;
  height: 20px;
  line-height: 10px !important; }

.flag-dropdown {
  min-width: 85px; }

.nav .flag {
  width: 18px;
  height: 12px;
  margin-right: 10px;
  background: url(../images/flags.png) no-repeat; }

.flag.flag-au {
  background-position: -16px 0; }

.flag.flag-gb {
  background-position: -32px 0; }

.flag.flag-in {
  background-position: 0 -11px; }

.flag.flag-us {
  background-position: -16px -11px; }

.header-top-section.navbar {
  min-height: auto;
  margin: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

.header-top-section .navbar-toggle .icon-bar {
  background: #fff; }

.header-top-section .header-text-block {
  font-size: 14px; }

.header-top-section li, .header-top-section li > a {
  font-size: 12px; }

.header-top-section .navbar-nav > li > a, .header-top-section .navbar-right > li, .header-top-section .simple-search-form, .header-top-section .top-left > li, .header-top-section p {
  line-height: 35px;
  height: 35px; }

.header-top-section .top-left {
  margin-left: -15px; }

.header-top-section .nav .open > a, .header-top-section .nav .open > a:focus, .header-top-section .nav .open > a:hover {
  background-color: transparent; }

.header-top-section .navbar-nav li > a {
  color: #333; }

.header-top-section .navbar-nav li:focus > a, .header-top-section .navbar-nav li:hover > a, .header-top-section .navbar-nav > li > a:focus, .header-top-section .navbar-nav > li > a:hover {
  color: #fff; }

.header-top-section .dropdown-menu {
  line-height: normal;
  color: #333; }

.header-top-section .navbar-nav li:focus > a, .header-top-section .navbar-nav > li > a:focus, .header-top-section.header-typo-light, .header-top-section.header-typo-light .dropdown-menu li > a, .header-top-section.header-typo-light .navbar-nav li:hover > a, .header-top-section.header-typo-light .navbar-nav li > a, .header-top-section.header-typo-light .navbar-nav > li > a:hover {
  color: #fff; }

.header-top-section.dark-bg.navbar {
  opacity: .9;
  background: #171717 !important; }

.navbar {
  border: 0; }

.navbar-default {
  min-height: auto;
  margin: 0;
  color: #333;
  border-color: #e1e1e1;
  border-right: none;
  border-left: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #fff;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

.header-no-border .navbar-default {
  border: none; }

.header-border .navbar-default {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.navbar-default .navbar-nav li a, .navbar-default .navbar-nav > li > a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: inherit; }

.navbar-default .navbar-nav li a .btn {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase; }

.navbar-default .nav .open > a, .navbar-default .nav .open > a:focus, .navbar-default .nav .open > a:hover, .navbar-default .navbar-nav li.active > a, .navbar-default .navbar-nav li.active > a:focus, .navbar-default .navbar-nav li.active > a:hover, .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover, .navbar-nav li:hover > a, header .nav > li > a:focus, header .nav > li > a:hover {
  background: 0 0; }

.header-main .navbar-toggle {
  left: 0;
  float: left;
  width: 25px;
  margin: 0 0 0 15px;
  border: none; }

#side-nav, .side-nav .navbar-collapse .navbar-nav.navbar-right:last-child {
  margin-right: 0; }

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: transparent; }

.navbar-default .navbar-toggle .icon-bar {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  transition: .2s all ease-in-out;
  background-color: #000; }

.navbar-default .navbar-toggle .icon-bar:nth-child(2) {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px); }

.navbar-default .navbar-toggle .icon-bar:last-child {
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px); }

.header-main .navbar-toggle, .header-toggle-content, .navbar-brand, .navbar-nav > li .extra-menu-item, .navbar-nav > li > a {
  line-height: 80px;
  height: 80px;
  -webkit-transition: .2s all ease-in-out;
  -moz-transition: .2s all ease-in-out;
  -ms-transition: .2s all ease-in-out;
  -o-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out; }

.s-header .header-toggle-content, .s-header .navbar-brand, .s-header .navbar-nav > li .extra-menu-item, .s-header .navbar-nav > li > a, .s-header.header-main .navbar-toggle {
  line-height: 60px;
  height: 60px; }

.navbar-brand, .navbar-nav > li > .extra-menu-item, .navbar-nav > li > a {
  padding: 0 15px; }

.dropdown-menu {
  margin: 0;
  padding: 0; }

.navbar-right .dropdown-menu {
  right: auto;
  left: 0;
  min-width: 200px; }

.dropdown-menu a, .dropdown-menu > li > a {
  color: inherit; }

.header-fudark.header-sticky-fulight .dropdown-menu, .navbar-nav .open .dropdown-menu {
  border: 1px solid; }

.dropdown .dropdown-menu {
  margin-top: -1px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

.dropdown .dropdown-menu.sub-menu {
  top: 0;
  left: 100%; }

.dropdown .dropdown-menu.sub-menu.left-side {
  right: 100%;
  left: auto; }

.dropdown-menu .divider {
  background: #e1e1e1; }

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  background: 0 0; }

.mega-menu-wrapper .dropdown-menu, .mm-menu ul {
  background: 0 0 !important; }

.navbar-left .dropdown-left .dropdown-menu, .navbar-right .dropdown-left .dropdown-menu {
  right: 0;
  left: auto; }

.megamenu-compact.dropdown-right .dropdown-menu.mega-menu-wrapper, .navbar-left .dropdown-right .dropdown-menu, .navbar-right .dropdown-right .dropdown-menu {
  right: auto;
  left: 0; }

.hover-dropdown .dropdown .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none; }

.hover-dropdown .dropdown:hover > .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1; }

.mega-menu .menu-icon {
  padding: 0 10px 0 0; }

.mega-menu-wrapper.container {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.menu-title {
  font-size: 14px !important;
  padding-bottom: 15px !important;
  text-transform: uppercase; }

.nav > li.mega-dropdown.megamenu-compact {
  position: relative; }

.megamenu-compact .dropdown-menu.mega-menu-wrapper {
  position: absolute;
  right: 0;
  left: auto;
  visibility: visible;
  width: auto;
  white-space: nowrap;
  opacity: 1; }

.megamenu-compact .mega-menu-wrapper > li {
  display: inline-block !important;
  float: none !important;
  overflow: hidden;
  vertical-align: top;
  white-space: normal; }

.sticky-navigation {
  line-height: 0;
  z-index: 999;
  width: 100%; }

.is-sticky .header-main .navbar-toggle, .is-sticky .header-toggle-content, .is-sticky .navbar-brand, .is-sticky .navbar-nav > li .extra-menu-item, .is-sticky .navbar-nav > li > a {
  line-height: 65px;
  height: 65px; }

.is-sticky .navbar-default {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

.is-sticky .navbar-brand > img, .navbar-brand > img.sticky-logo {
  display: none; }

.is-sticky .navbar-brand > img.sticky-logo, .mobile-menu > li {
  display: inline-block; }

.mobile-menu {
  float: right;
  margin: 0;
  padding: 0 15px 0 0; }

@media (max-width: 1023px) {
  #nav-menu {
    display: none !important; }
  .mm-opened .header-main .navbar-toggle, .mm-opened .header-toggle-content, .mm-opened .navbar-brand, .mm-opened .navbar-nav > li .extra-menu-item, .mm-opened .navbar-nav > li > a {
    line-height: 40px;
    height: 40px; } }

@media (min-width: 1024px) {
  #mm-nav-menu {
    display: none !important; } }

.header-details-toggle .extra-nav > .navbar-nav {
  position: static; }

.header-details-toggle .header-toggle-content {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  visibility: hidden;
  opacity: 0; }

.header-details-toggle .header-toggle-content .form-control {
  background: 0 0 !important;
  font-size: 24px;
  padding: 6px 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none; }

.header-details-toggle .header-toggle-content.toggled {
  visibility: visible;
  opacity: 1; }

.extra-nav .toggle-close {
  position: absolute;
  top: 0;
  right: 15px; }

.header-details-toggle .extra-nav .header-toggle-content h3 {
  margin: 0; }

.header-details-toggle .header-toggle-content *, .header-details-toggle .header-toggle-content .form-control, .header-details-toggle .header-toggle-content > form {
  line-height: inherit;
  height: inherit; }

#page-wrapper {
  position: relative;
  right: 0;
  left: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

#side-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: auto;
  left: -370px;
  overflow-y: auto;
  width: 370px;
  height: 100%;
  margin-left: 0;
  padding: 50px 30px 40px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-right: 1px solid #e7e7e7;
  border-left: 1px solid transparent; }

.side-widgets {
  padding-top: 30px; }

.side_container_opened {
  overflow: hidden; }

body.side_container_opened .sliding_close_helper_overlay {
  display: block; }

.sliding_close_helper_overlay {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  margin-left: -342px;
  cursor: pointer;
  transition: all .3s ease-in 0s; }

#page-wrapper.toggled {
  left: 370px; }

#page-wrapper.toggled #side-nav {
  right: auto;
  left: 0; }

#page-wrapper .sticky-navigation {
  right: 0;
  left: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.btn, .btn *, .btn.btn-hvfill-bottom:after, .btn.btn-hvfill-left:after, .btn.btn-hvfill-right:after, .btn.btn-hvfill-top:after {
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s; }

#page-wrapper.toggled .sticky-navigation {
  right: auto;
  left: 370px; }

#page-wrapper.right-push.toggled {
  left: -350px; }

#page-wrapper.right-push.full-width.toggled {
  left: -370px; }

#page-wrapper.right-push #side-nav {
  right: -370px;
  left: auto; }

#page-wrapper.right-push.toggled #side-nav {
  right: 0;
  left: auto; }

#page-wrapper.right-push.toggled .sticky-navigation {
  left: -370px; }

.rev_slider_wrapper.fullscreen-container {
  left: 0 !important; }

.extra-toggle #nav-menu, .extra-toggle .extra-nav #menu-toggle span, .extra-toggle .extra-nav .dropdown-toggle.cart-toggle, .extra-toggle .extra-nav .header-toggle-icon, .extra-toggle .navbar-header, .extra-toggle .navbar-header .navbar-brand, .extra-toggle .navbar-header .navbar-toggle {
  display: none !important; }

.extra-toggle .navbar-header.logo-contact-details, .extra-toggle .navbar-header.logo-contact-details .navbar-brand {
  display: block !important; }

.nav-close-wrapper {
  position: absolute;
  top: 15px;
  right: 15px; }

#page-wrapper.right-push .nav-close-wrapper {
  top: 25px;
  right: auto;
  left: 30px; }

.side-nav .navbar-default {
  border: none; }

.side-nav .navbar-brand {
  line-height: normal;
  display: block;
  float: none;
  text-align: center; }

.side-nav .navbar-collapse {
  height: auto;
  max-height: none;
  padding-right: 0;
  padding-left: 0;
  border-top: 0;
  box-shadow: none; }

.side-nav .navbar-collapse.collapse {
  display: block !important;
  overflow: visible !important;
  width: auto !important;
  padding-bottom: 0; }

.side-nav .navbar-collapse.in {
  overflow-x: visible; }

.bg-image.content-in, .btn, .client-grid, .image-wrapper, .isotope-grid .grid-sizer, .isotope-grid .item, .tab-content {
  overflow: hidden; }

.side-nav .navbar-header, .side-nav .navbar-left, .side-nav .navbar-nav, .side-nav .navbar-nav > li, .side-nav .navbar-right {
  float: none !important; }

.side-nav .navbar-right .dropdown-menu {
  right: auto;
  left: 0; }

.side-nav .navbar-nav {
  margin: 60px 0 20px !important; }

.side-nav .navbar-nav > li > a {
  line-height: normal;
  height: auto;
  padding: 10px 15px 10px 0; }

.side-nav .navbar-nav > li > a > span {
  display: none; }

.side-nav .navbar-nav .dropdown-menu {
  position: relative;
  width: 100%;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none; }

.side-nav .dropdown-menu > .dropdown > a:after, .side-nav .dropdown-toggle:after {
  font-family: initial;
  font-size: 24px;
  font-weight: initial;
  font-weight: 100;
  position: absolute;
  top: 0;
  top: 50%;
  right: 15px;
  content: '+';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.side-nav .dropdown-menu > .dropdown.open > a:after, .side-nav .open > .dropdown-toggle:after {
  font-family: initial;
  font-size: 24px;
  font-weight: 100;
  content: '-'; }

.side-nav .dropdown .dropdown-menu.sub-menu.left-side {
  right: right;
  left: 0; }

.side-nav .form-control {
  height: 45px; }

.side-nav .input-group {
  margin-bottom: 20px; }

.side-nav li > a {
  color: #333; }

.side-nav .bottom-wrapper {
  font-size: 13px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #e1e1e1; }

.side-nav .bottom-wrapper p {
  font-size: 13px; }

.side-nav.dark-side-nav, .side-nav.dark-side-nav .bottom-wrapper {
  color: #fff;
  border-color: #333;
  background: #171717; }

.dark-side-nav.side-nav .navbar-default, .dark-side-nav.side-nav .navbar-default .dropdown-menu {
  background: #171717; }

.dark-side-nav.side-nav .dropdown-menu > li > a, .dark-side-nav.side-nav .dropdown-menu > li > a:focus, .dark-side-nav.side-nav .dropdown-menu > li > a:hover, .dark-side-nav.side-nav .navbar-nav > li > a, .dark-side-nav.side-nav li a {
  color: #fff; }

.header-dark .navbar-default, .header-sticky-dark .is-sticky .navbar-default {
  color: #fff;
  background: #000; }

.header-dark .navbar-default {
  color: #fff; }

.header-dark #menu-toggle > span, .header-dark .dropdown-menu, .header-dark .extra-nav > .navbar-nav:after, .header-dark .mega-menu-wrapper > li > a.menu-title:after, .header-dark .navbar-default, .header-sticky-dark .is-sticky #menu-toggle > span, .header-sticky-dark .is-sticky .extra-nav > .navbar-nav:after, .header-sticky-dark .is-sticky .navbar-default, .header-sticky-dark .is-sticky.dropdown-menu, .header-sticky-dark .mega-menu-wrapper > li {
  border-color: #777; }

.header-dark .dropdown-menu, .header-dark .form-control, .header-sticky-dark .is-sticky .dropdown-menu, .header-sticky-dark .is-sticky .form-control {
  color: #fff;
  border-color: #777;
  background: #2e2e2e; }

.header-dark .dropdown-menu .divider, .header-dropdown-dark .dropdown-menu .divider, .header-sticky-dark .is-sticky .dropdown-menu .divider {
  background: #777; }

.header-dark .navbar-default .navbar-toggle .icon-bar, .header-sticky-dark .is-sticky .navbar-default .navbar-toggle .icon-bar {
  background: #fff; }

.header-sticky-light .is-sticky .navbar-default .navbar-toggle .icon-bar {
  background: #000; }

.header-sticky-light .is-sticky .navbar-default {
  color: #333;
  background: #fff; }

.header-light .mega-menu-wrapper > li > a.menu-title:after, .header-sticky-light .is-sticky #menu-toggle > span, .header-sticky-light .is-sticky .extra-nav > .navbar-nav:after, .header-sticky-light .is-sticky .navbar-default, .header-sticky-light .is-sticky.dropdown-menu, .header-sticky-light .mega-menu-wrapper > li {
  border-color: #e1e1e1; }

.header-sticky-light .is-sticky .dropdown-menu, .header-sticky-light .is-sticky .form-control {
  color: #333;
  border-color: #e1e1e1;
  background: #fff; }

.header-semi-dark, .header-semi-light, .header-top-semi-dark, .header-top-semi-light, .header-top-transparent, .header-transparent {
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0; }

.header-sticky-transparent .is-sticky .navbar-default, .header-top-transparent .header-top-section.navbar, .header-transparent .navbar-default {
  background: 0 0; }

.header-dark.header-transparent .extra-nav > .navbar-nav:after, .header-dark.header-transparent .mega-menu-wrapper > li, .header-dark.header-transparent .navbar-default {
  border-color: rgba(0, 0, 0, 0.1); }

.header-dark.header-transparent #menu-toggle > span {
  border-color: rgba(255, 255, 255, 0.2); }

.header-dark.header-transparent.header-sticky-light .is-sticky #menu-toggle > span, .header-dark.header-transparent.header-sticky-light .is-sticky .extra-nav > .navbar-nav:after, .header-dark.header-transparent.header-sticky-light .is-sticky .navbar-default {
  border-color: #e1e1e1; }

.header-light.header-transparent #menu-toggle > span, .header-light.header-transparent .extra-nav > .navbar-nav:after, .header-light.header-transparent .mega-menu-wrapper > li, .header-light.header-transparent .navbar-default {
  border-color: rgba(0, 0, 0, 0.1); }

.header-light.header-transparent.header-sticky-dark .is-sticky #menu-toggle > span, .header-light.header-transparent.header-sticky-dark .is-sticky .extra-nav > .navbar-nav:after, .header-light.header-transparent.header-sticky-dark .is-sticky .navbar-default {
  border-color: #777; }

.header-semi-light .navbar-default, .header-sticky-semi-light .is-sticky .navbar-default, .header-top-semi-light .header-top-section.navbar {
  background: rgba(255, 255, 255, 0.4); }

.header-semi-dark .navbar-default, .header-sticky-semi-dark .is-sticky .navbar-default, .header-top-semi-dark .header-top-section.navbar {
  background: rgba(0, 0, 0, 0.4); }

.header-dropdown-dark .dropdown-menu, .header-dropdown-dark .is-sticky .dropdown-menu, .header-dropdown-dark .open .dropdown-menu, .header-dropdown-dark .open .is-sticky .dropdown-menu {
  color: #fff;
  border-color: rgba(0, 0, 0, 0.7);
  background: #242424; }

.header-dropdown-dark .mega-menu-wrapper > li {
  border-color: rgba(0, 0, 0, 0.7); }

.header-dropdown-dark .header-top-light .header-top-section .dropdown-menu, .header-dropdown-dark .header-top-light .header-top-section .open .dropdown-menu, .header-dropdown-dark .header-top-light .header-top-section .open .is-sticky .dropdown-menu {
  border-color: #e7e7e7;
  background: #fff !important;
  box-shadow: none; }

.header-top-light .header-top-section.navbar {
  background: #fff !important; }

.header-dark .header-boxed, .header-light .container.header-boxed {
  margin-top: 15px;
  padding-right: 30px;
  padding-left: 30px;
  background: #fff; }

.header-boxed #extra-toggle-search .form-control, .header-boxed #extra-toggle-search .toggle-close {
  margin-top: 15px; }

.header-dark .header-boxed {
  background: #171717; }

.header-dark .is-sticky .header-boxed, .header-light .is-sticky .container.header-boxed, .is-sticky .header-boxed #extra-toggle-search .form-control, .is-sticky .header-boxed #extra-toggle-search .toggle-close {
  margin-top: 0; }

.header-fulight .dropdown-menu, .header-fulight .dropdown-menu .divider, .header-fulight .navbar-default, .header-sticky-fulight .is-sticky .dropdown-menu, .header-sticky-fulight .is-sticky .dropdown-menu .divider, .header-sticky-fulight .is-sticky .navbar-default {
  color: #999;
  background: #fff; }

.header-fulight .navbar-default, .header-sticky-fulight .is-sticky .navbar-default {
  color: #999; }

.header-fulight #menu-toggle > span, .header-fulight .dropdown-menu, .header-fulight .extra-nav > .navbar-nav:after, .header-fulight .form-control, .header-fulight .navbar-default, .header-fulight .navbar-nav .open .dropdown-menu, .header-sticky-fulight .is-sticky #menu-toggle > span, .header-sticky-fulight .is-sticky .dropdown-menu, .header-sticky-fulight .is-sticky .extra-nav > .navbar-nav:after, .header-sticky-fulight .is-sticky .form-control, .header-sticky-fulight .is-sticky .navbar-default, .header-sticky-fulight .is-sticky .navbar-nav .open .dropdown-menu {
  border-color: #eee; }

.dropdown-menu > li > a:hover, .header-fulight .dropdown-menu a:hover, .header-fulight .dropdown-menu > li > a:focus, .header-fulight .dropdown.open > a, .header-fulight .navbar-default .nav .open > a, .header-fulight .navbar-default .nav .open > a:focus, .header-fulight .navbar-default .nav .open > a:hover, .header-fulight .navbar-default .navbar-nav.nav li:hover > a, .header-fulight .navbar-default .navbar-nav > li > a:focus, .header-fulight .navbar-default .navbar-nav > li > a:hover, .header-sticky-fulight .is-sticky .dropdown-menu a:hover, .header-sticky-fulight .is-sticky .dropdown-menu > li > a:focus, .header-sticky-fulight .is-sticky .dropdown.open > a, .header-sticky-fulight .is-sticky .navbar-default .nav .open > a, .header-sticky-fulight .is-sticky .navbar-default .nav .open > a:focus, .header-sticky-fulight .is-sticky .navbar-default .nav .open > a:hover, .header-sticky-fulight .is-sticky .navbar-default .navbar-nav.nav li:hover > a, .header-sticky-fulight .is-sticky .navbar-default .navbar-nav > li > a:focus, .header-sticky-fulight .is-sticky .navbar-default .navbar-nav > li > a:hover {
  color: #000; }

header.header-dropdown-fulight .dropdown-menu, header.header-dropdown-fulight .dropdown-menu .divider, header.header-dropdown-fulight .dropdown-menu a, header.header-dropdown-fulight .is-sticky .dropdown-menu, header.header-dropdown-fulight .open .dropdown-menu, header.header-dropdown-fulight .open .is-sticky .dropdown-menu {
  color: #999;
  border-color: #eee;
  background: #fff; }

.header-dropdown-fulight .dropdown-menu a:hover, .header-dropdown-fulight .dropdown-menu li:hover > a, .header-dropdown-fulight .dropdown-menu > li > a:focus, .header-dropdown-fulight .dropdown-menu > li > a:hover {
  color: #000 !important; }

.header-fudark .dropdown-menu, .header-fudark .dropdown-menu .divider, .header-fudark .navbar-default, .header-sticky-fudark .is-sticky .dropdown-menu, .header-sticky-fudark .is-sticky .dropdown-menu .divider, .header-sticky-fudark .is-sticky .navbar-default {
  color: #888;
  border: none;
  background: #000; }

.header-fudark .form-control, .header-sticky-fudark .is-sticky .form-control {
  background: #000; }

.header-fudark #menu-toggle > span, .header-fudark .dropdown-menu, .header-fudark .extra-nav > .navbar-nav:after, .header-fudark .form-control, .header-fudark .navbar-default, .header-fudark .open .dropdown-menu, .header-sticky-fudark .is-sticky #menu-toggle > span, .header-sticky-fudark .is-sticky .dropdown-menu, .header-sticky-fudark .is-sticky .extra-nav > .navbar-nav:after, .header-sticky-fudark .is-sticky .form-control, .header-sticky-fudark .is-sticky .navbar-default, .header-sticky-fudark .is-sticky .navbar-nav .open .dropdown-menu {
  border-color: #303030; }

.dropdown-menu > li > a:hover, .header-fudark .dropdown-menu a:hover, .header-fudark .dropdown-menu > li > a:focus, .header-fudark .dropdown.open > a, .header-fudark .navbar-default .nav .open > a, .header-fudark .navbar-default .nav .open > a:focus, .header-fudark .navbar-default .nav .open > a:hover, .header-fudark .navbar-default .navbar-nav.nav li:hover > a, .header-fudark .navbar-default .navbar-nav > li > a:focus, .header-fudark .navbar-default .navbar-nav > li > a:hover, .header-sticky-fudark .is-sticky .dropdown-menu a:hover, .header-sticky-fudark .is-sticky .dropdown-menu > li > a:focus, .header-sticky-fudark .is-sticky .dropdown.open > a, .header-sticky-fudark .is-sticky .navbar-default .nav .open > a, .header-sticky-fudark .is-sticky .navbar-default .nav .open > a:focus, .header-sticky-fudark .is-sticky .navbar-default .nav .open > a:hover, .header-sticky-fudark .is-sticky .navbar-default .navbar-nav.nav li:hover > a, .header-sticky-fudark .is-sticky .navbar-default .navbar-nav > li > a:focus, .header-sticky-fudark .is-sticky .navbar-default .navbar-nav > li > a:hover {
  color: #fff; }

header.header-dropdown-fudark .dropdown-menu, header.header-dropdown-fudark .dropdown-menu .divider, header.header-dropdown-fudark .dropdown-menu a, header.header-dropdown-fudark .is-sticky .dropdown-menu, header.header-dropdown-fudark .open .dropdown-menu, header.header-dropdown-fudark .open .is-sticky .dropdown-menu {
  color: #888;
  border: none;
  background: #000; }

.header-dropdown-fudark .dropdown-menu a:hover, .header-dropdown-fudark .dropdown-menu li:hover > a, .header-dropdown-fudark .dropdown-menu > li > a:focus, .header-dropdown-fudark .dropdown-menu > li > a:hover {
  color: #fff !important; }

.secondary-nav {
  display: none;
  background: #222; }

.is-sticky .secondary-nav {
  display: block; }

.secondary-nav .nav-tabs {
  margin-bottom: 0; }

.secondary-nav .nav-tabs li {
  padding: 20px;
  color: #f7f7f7;
  margin: 0 -5px;
  list-style: none; }

.section-title, .section-title.bottom-line {
  margin-bottom: 50px; }

.title-description {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0;
  color: #777; }

.title-description1 {
  font-size: 22px; }

.typo-light .title-description {
  color: #f7f7f7; }

.heading-block h1, .heading-block h2, .heading-block h3, .heading-block h4 {
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase; }

.countdown-amount, .countdown-block h1 {
  letter-spacing: 5px; }

.cta-icon-title {
  margin-top: 15px; }

.heading-block.heading-center:after {
  margin: 18px auto 0; }

.heading-block.heading-center {
  text-align: center; }

.bottom-line {
  position: relative;
  margin-bottom: 35px; }

.bottom-line:after {
  display: block;
  width: 40px;
  margin-top: 30px;
  content: '';
  border-top: 2px solid; }

.text-center .bottom-line:after, .text-center.bottom-line:after {
  margin: 30px auto 0; }

.btn.i-left i, .btn.inline, .btn.right-pad, i.right-pad {
  margin-right: 10px; }

.text-right .bottom-line:after, .text-right.bottom-line:after {
  position: absolute;
  right: 0; }

.text-right .bottom-line, .text-right.bottom-line {
  margin-bottom: 100px; }

.side-line {
  position: relative;
  margin-bottom: 30px; }

.side-line h1, .side-line h2, .side-line h3, .side-line h4, .side-line h5, .side-line h6, .side-line1 h1, .side-line1 h2, .side-line1 h3, .side-line1 h4, .side-line1 h5, .side-line1 h6 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding-right: 15px;
  background-color: #fff; }

.bottom-line.grey-line:after, .side-line.grey-line:after {
  border-top: 2px solid #e1e1e1; }

.bottom-line.dark-line:after, .side-line.dark-line:before {
  border-top: 2px solid #333; }

.bottom-line.white-line:after, .side-line.white-line:before {
  border-top: 2px solid #fff; }

.side-line:before {
  position: absolute;
  top: 53%;
  right: 0;
  left: auto;
  width: 100%;
  height: 0;
  content: '';
  border-top: 3px solid; }

.btn, .btn > span {
  position: relative; }

.side-line1 {
  height: 50px;
  margin-bottom: 20px;
  border: 0;
  background: url(../images/base/separator/hr-11.png) center center repeat-x; }

.btn {
  z-index: 1;
  margin-top: 7px;
  margin-bottom: 7px;
  padding: 8px 22px;
  border-width: 2px; }

.btn.no-margin {
  margin-bottom: 0; }

.btn.btn-deafult {
  border: 2px solid; }

.btn.btn-xs {
  padding: 1px 14px; }

.btn.btn-sm {
  padding: 6px 17px 4px; }

.btn.btn-lg {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 35px; }

.nav-tabs > li > a, label {
  font-weight: 500; }

.btn > span {
  right: 0;
  left: 0; }

.btn, .btn * {
  transition: all .3s ease 0s; }

.btn.btn-theme:hover {
  color: #fff; }

.btn.btn-square {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

.btn.btn-round {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px; }

.btn.btn-circle {
  width: 100px;
  height: 100px;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; }

.btn.btn-hv-fadeout:hover {
  color: #333;
  background: 0 0; }

.btn.i-right i, .btn.left-pad, i.left-pad {
  margin-left: 10px; }

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

i.top-pad {
  margin-top: 10px; }

.btn.btn-bottom-reveal > i, .btn.btn-left-reveal > i, .btn.btn-right-reveal > i, .btn.btn-top-reveal > i {
  line-height: 40px;
  position: absolute;
  top: 0;
  left: -32px;
  display: block;
  width: 32px;
  height: 100%;
  margin: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1); }

.btn.btn-left-reveal:hover > i {
  left: 0; }

.btn.btn-left-reveal:hover > span {
  left: 20px; }

.btn.btn-right-reveal > i {
  right: -32px;
  left: auto; }

.btn.btn-right-reveal:hover > i {
  right: 0; }

.btn.btn-right-reveal:hover > span {
  left: -20px; }

.btn:after {
  background: #333; }

.btn.btn-hvfill-bottom:after, .btn.btn-hvfill-left:after, .btn.btn-hvfill-right:after, .btn.btn-hvfill-top:after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition: all .3s ease 0s; }

.btn.btn-hvfill-right:after {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%); }

.btn.btn-hvfill-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%); }

.btn.btn-hvfill-top:after {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%); }

.btn.btn-hvfill-bottom:after {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%); }

.btn.btn-hvfill-bottom:hover:after, .btn.btn-hvfill-left:hover:after, .btn.btn-hvfill-right:hover:after, .btn.btn-hvfill-top:hover:after {
  -webkit-transform: translateX(0) translateY(0);
  -moz-transform: translateX(0) translateY(0);
  -ms-transform: translateX(0) translateY(0);
  -o-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0); }

.btn.btn-theme.btn-hvfill-bottom:hover, .btn.btn-theme.btn-hvfill-left:hover, .btn.btn-theme.btn-hvfill-right:hover, .btn.btn-theme.btn-hvfill-top:hover {
  border-color: #333; }

.btn.btn-hvborder-center, .btn.btn-hvborder-left, .btn.btn-hvborder-right {
  border: none; }

.btn.btn-hvborder-center:after, .btn.btn-hvborder-left:after, .btn.btn-hvborder-right:after {
  position: absolute;
  z-index: -1;
  right: -100%;
  bottom: 0;
  left: auto;
  width: 100%;
  height: 3px;
  content: '';
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s; }

.btn.btn-hvborder-right:hover:after {
  right: 0; }

.btn.btn-hvborder-left:after {
  right: auto;
  left: -100%; }

.btn.btn-hvborder-left:hover:after {
  left: 0; }

.btn.btn-hvborder-center:after {
  right: 0;
  left: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0); }

.btn.btn-hvborder-center:hover:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.btn.btn-hv-dark.btn-outline:after, .btn.btn-hv-dark:after {
  background: #171717; }

.btn.btn-hv-light.btn-outline:after, .btn.btn-hv-light:after {
  background: #fff; }

.btn.btn-3d {
  box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); }

.btn-hv-theme:hover, .btn-theme {
  color: #fff; }

.btn-light.btn-hv-dark:hover, .btn.btn-dark, .btn.btn-hv-dark.btn-outline:focus, .btn.btn-hv-dark.btn-outline:hover, .btn.btn-hv-dark:focus, .btn.btn-hv-dark:hover, .btn.btn-outline.btn-hv-fadein:hover {
  color: #fff;
  border-color: #171717;
  background: #171717; }

.btn-hv-light:hover, .btn.btn-hv-light.btn-outline:focus, .btn.btn-hv-light.btn-outline:hover, .btn.btn-hv-light:focus, .btn.btn-light, .btn.btn-outline.btn-light.btn-hv-fadein:hover {
  color: #333;
  border-color: #fff;
  background: #fff; }

.btn.btn-outline {
  border: 2px solid;
  background: 0 0; }

.btn.btn-light.btn-outline {
  color: #fff;
  border-color: #fff; }

.btn.btn-light.btn-hvborder-center:hover, .btn.btn-light.btn-hvborder-left:hover, .btn.btn-light.btn-hvborder-right:hover, .btn.btn-light.btn-hvfill-bottom:hover, .btn.btn-light.btn-hvfill-left:hover, .btn.btn-light.btn-hvfill-right:hover, .btn.btn-light.btn-hvfill-top:hover {
  background: #fff; }

.btn.btn-dark.btn-hvborder-center:hover, .btn.btn-dark.btn-hvborder-left:hover, .btn.btn-dark.btn-hvborder-right:hover, .btn.btn-dark.btn-hvfill-bottom:hover, .btn.btn-dark.btn-hvfill-left:hover, .btn.btn-dark.btn-hvfill-right:hover, .btn.btn-dark.btn-hvfill-top:hover {
  background: #333; }

.btn.btn-outline.btn-hvborder-center:hover, .btn.btn-outline.btn-hvborder-left:hover, .btn.btn-outline.btn-hvborder-right:hover, .btn.btn-outline.btn-hvfill-bottom:hover, .btn.btn-outline.btn-hvfill-left:hover, .btn.btn-outline.btn-hvfill-right:hover, .btn.btn-outline.btn-hvfill-top:hover {
  background: 0 0 !important; }

.btn.btn-outline.btn-hvborder-center:hover, .btn.btn-outline.btn-hvborder-left:hover, .btn.btn-outline.btn-hvborder-right:hover {
  color: #333 !important;
  border-color: #333 !important; }

.btn.btn-outline.btn-light.btn-hvborder-center:hover, .btn.btn-outline.btn-light.btn-hvborder-left:hover, .btn.btn-outline.btn-light.btn-hvborder-right:hover {
  color: #fff !important;
  border-color: #fff !important; }

.btn-default.active[disabled], .btn-default.disabled, .btn-default.disabled.active, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled:focus, .btn-default.disabled:hover, .btn-default.focus[disabled], .btn-default[disabled], .btn-default[disabled]:active, .btn-default[disabled]:focus, .btn-default[disabled]:hover, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default.active, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:hover {
  color: #ccc; }

hr.no-margin {
  margin-top: 0;
  margin-bottom: 0; }

hr.hr-sm {
  margin-top: 10px;
  margin-bottom: 10px; }

hr.hr-md {
  margin-top: 50px;
  margin-bottom: 50px; }

hr.hr-lg {
  margin-top: 80px;
  margin-bottom: 80px; }

.isotope-filters {
  margin-bottom: 50px; }

.isotope-filters .nav-tabs, .nav-tabs {
  border: none; }

.isotope-filters .nav-tabs > li {
  display: inline-block;
  float: none; }

.isotope-filters .nav-tabs > li > a {
  padding: 5px 20px; }

.nav > li > a:focus, .nav > li > a:hover {
  background-color: rgba(0, 0, 0, 0.05); }

.nav-tabs > li > a:hover {
  border-color: transparent; }

.nav-tabs > li > a {
  font-size: 13px;
  margin-right: 5px;
  padding: 8px 20px 5px;
  border: 1px solid transparent;
  border-radius: 0;
  min-width: 85px; }

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover, .nav-tabs > li > a.active {
  color: #fff; }

.nav-rounded.nav-tabs > li > a {
  border-radius: 25px !important; }

.nav-tabs.flat-style > li > a, .tabs-left .nav-tabs.flat-style > li > a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

.nav-tabs.bordered-style > li.active > a, .nav-tabs.bordered-style > li.active > a:focus, .nav-tabs.bordered-style > li.active > a:hover, .nav-tabs.bordered-style > li > a.active, .nav-tabs.bordered-style > li > a.active:focus, .nav-tabs.bordered-style > li > a.active:hover {
  color: #333;
  background: 0 0 !important; }

.nav-tabs.bordered-style > li > a {
  border: 1px solid #e1e1e1; }

.nav-tabs.dark-style.bordered-style > li > a {
  border-color: #333; }

.nav-tabs.light-style.bordered-style > li > a {
  border-color: #fff; }

.nav-tabs.dark-style > li > a.active {
  color: #fff; }

.nav.light-style > li > a:focus, .nav.light-style > li > a:hover {
  background-color: rgba(255, 255, 255, 0.05); }

.nav-tabs.transparent-style > li > a.active {
  background: 0 0; }

.nav-tabs.arrow-style > li.active > a:after, .nav-tabs.arrow-style > li > a.active:after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  content: '';
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: inherit; }

.tabs-left .nav-tabs.arrow-style > li.active > a:after, .tabs-right .nav-tabs.arrow-style > li.active > a:after {
  top: 50%;
  right: -2px;
  bottom: auto;
  left: auto;
  -webkit-transform: rotate(45deg) translateY(-50%);
  -moz-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  -o-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%); }

.tabs-right .nav-tabs.arrow-style > li.active > a:after {
  right: auto;
  left: -10px; }

.nav-tabs.bottom-line-style > li.active > a:after, .nav-tabs.bottom-line-style > li > a.active:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  content: ''; }

.nav-tabs.arrow-style-bordered > li.active > a:before, .nav-tabs.arrow-style-bordered > li > a.active:before {
  position: absolute;
  bottom: -20px;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border: 10px solid;
  border-color: #e1e1e1 transparent transparent; }

.nav-tabs.arrow-style-bordered > li.active > a:after, .nav-tabs.arrow-style-bordered > li.active > a:before, .nav-tabs.arrow-style-bordered > li > a.active:after, .nav-tabs.arrow-style-bordered > li > a.active:before {
  right: 0;
  left: 0;
  margin: 0 auto; }

.nav-tabs.arrow-style-bordered > li.active > a:after, .nav-tabs.arrow-style-bordered > li > a.active:after {
  position: absolute;
  bottom: -18px;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border: 10px solid;
  border-color: #fff transparent transparent; }

.tabs-left .nav-tabs.arrow-style-bordered > li.active > a:before, .tabs-left .nav-tabs.arrow-style-bordered > li > a.active:before {
  position: absolute;
  top: 50%;
  right: -22px;
  left: auto;
  display: block;
  width: 0;
  height: 0;
  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 10px solid;
  border-color: transparent transparent transparent #e1e1e1; }

.tabs-left .nav-tabs.arrow-style-bordered > li.active > a:after, .tabs-left .nav-tabs.arrow-style-bordered > li > a.active:after {
  position: absolute;
  top: 50%;
  right: -20px;
  left: auto;
  display: block;
  width: 0;
  height: 0;
  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 10px solid;
  border-color: transparent transparent transparent #fff; }

.tabs-right .nav-tabs.arrow-style-bordered > li.active > a:before, .tabs-right .nav-tabs.arrow-style-bordered > li > a.active:before {
  position: absolute;
  top: 50%;
  right: auto;
  left: -21px;
  display: block;
  width: 0;
  height: 0;
  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 10px solid;
  border-color: transparent #e1e1e1 transparent transparent; }

.tabs-right .nav-tabs.arrow-style-bordered > li.active > a:after, .tabs-right .nav-tabs.arrow-style-bordered > li > a.active:after {
  position: absolute;
  top: 50%;
  right: auto;
  left: -19px;
  display: block;
  width: 0;
  height: 0;
  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 10px solid;
  border-color: transparent #fff transparent transparent; }

.nav-tabs.dark-style > li.active > a, .nav-tabs.dark-style > li.active > a:focus, .nav-tabs.dark-style > li.active > a:hover, .nav-tabs.dark-style > li > a.active {
  border-color: #333;
  background: #333; }

.nav-tabs.light-style > li.active > a, .nav-tabs.light-style > li.active > a:focus, .nav-tabs.light-style > li.active > a:hover, .nav-tabs.light-style > li > a.active {
  color: #333;
  border-color: #fff;
  background: #fff; }

.tabs-left .nav-tabs.dark-style, .tabs-right .nav-tabs.dark-style {
  border-color: #7c7c7c; }

.isotope-grid .item .image-wrapper {
  margin-bottom: 0; }

.isotope-grid.grid-three-column .grid-sizer, .isotope-grid.grid-three-column .item {
  width: 20%; }

.works-grid {
  position: relative;
  width: 100%; }

.grid-sizer, .works-grid .item {
  width: 25%; }

.works-grid .item.wide, .works-grid .item.wide-tall {
  width: 50%; }

.dark-overlay, .light-overlay, .pattern-overlay, .theme-overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); }

.light-overlay {
  background-color: rgba(255, 255, 255, 0.5); }

.pattern-overlay {
  background: url(../images/pattern.png); }

.pattern-overlay.dark-overlay {
  background-color: rgba(0, 0, 0, 0.3); }

.pattern-overlay.light-overlay {
  background-color: rgba(255, 255, 255, 0.3); }

.overlay-dark, .overlay-darker, .overlay-light, .overlay-theme {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(255, 255, 255, 0.8); }

.overlay-dark {
  background: rgba(0, 0, 0, 0.5); }

.overlay-darker {
  background: rgba(0, 0, 0, 0.8); }

.white-bg {
  background: #fff; }

.light-bg, .separate-bg.s-light:after {
  background: #f7f7f7; }

.semi-light-bg, .separate-bg.s-semilight:after {
  background-color: rgba(255, 255, 255, 0.7); }

.semi-lighter-bg, .separate-bg.s-semilighter:after {
  background-color: rgba(255, 255, 255, 0.5); }

.black-bg, .separate-bg.s-black:after {
  background: #000; }

.dark-bg {
  background: #171717; }

.semi-dark-bg, .separate-bg.s-dark:after {
  background-color: rgba(0, 0, 0, 0.7); }

.semi-darker-bg, .separate-bg.s-semidarker:after {
  background-color: rgba(0, 0, 0, 0.5); }

.transparent-bg {
  background: 0 0; }

.red-bg {
  background: #eb6561; }

.bg-cover, .bg-image.content-in {
  background-size: cover; }

.bg-image {
  background-position: center top; }

.background-position-left {
  background-position: left top; }

.bg-image.content-in {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: unset;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center top; }

.bg-contain, .bg-cover, .bg-fixed {
  background-position: center; }

.bg-contain {
  background-size: auto; }

.bg-fixed {
  background-attachment: fixed; }

.bg-repeat {
  background-repeat: repeat; }

.bg-no-repeat {
  background-repeat: no-repeat; }

.bg-position-top {
  background-position: center top !important; }

.bg-position-right {
  background-position: center right !important; }

.bg-position-left {
  background-position: center left !important; }

.bg-position-bottom {
  background-position: center bottom !important; }

.bg-position-center {
  background-position: center center !important; }

.mbYTP_wrapper {
  z-index: -1 !important; }

#video-controls.vertical-middle {
  text-align: center; }

#video-controls {
  z-index: 99; }

#video-controls.bottom-right {
  position: absolute !important;
  right: 15px;
  bottom: 15px;
  text-align: right; }

#video-controls .fa {
  font-size: 10px;
  line-height: 25px;
  width: 25px;
  height: 25px; }

.image-wrapper {
  position: relative; }

.image-wrapper, .image-wrapper .overlay-dark, .image-wrapper .overlay-desc, .image-wrapper .overlay-light, .image-wrapper img {
  -webkit-transition: all .4s ease-in-out 0s;
  -moz-transition: all .4s ease-in-out 0s;
  -ms-transition: all .4s ease-in-out 0s;
  -o-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s; }

.image-wrapper .overlay-desc {
  position: absolute;
  top: 50% !important;
  right: 0;
  left: 0;
  padding: 15px;
  -webkit-transform: translateY(-50%) !important;
  -moz-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  -o-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
  opacity: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)'; }

.image-wrapper .overlay-desc.position-bottom, .image-wrapper .overlay-desc.position-top {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.image-wrapper .overlay-desc.position-right {
  right: 0;
  left: auto;
  text-align: right; }

.image-wrapper .overlay-desc.position-left {
  right: auto;
  left: 0;
  text-align: left; }

.image-wrapper .overlay-desc.position-top {
  top: 0;
  bottom: auto; }

.carousel-indicators, .owl-carousel.nav-bottom .owl-controls .owl-nav, .owl-carousel.nav-bottom-left .owl-controls .owl-nav, .owl-carousel.nav-bottom-right .owl-controls .owl-nav {
  bottom: 0; }

.image-wrapper .overlay-desc.position-bottom {
  top: auto;
  bottom: 0; }

.image-wrapper .overlay-dark, .image-wrapper .overlay-light, .image-wrapper .overlay-theme {
  opacity: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)'; }

.image-wrapper .overlay-desc.display-desc, .image-wrapper .wrapper-fade-out, .image-wrapper .wrapper-slidein-bottom .overlay-desc, .image-wrapper .wrapper-slidein-left .overlay-desc, .image-wrapper .wrapper-slidein-right .overlay-desc, .image-wrapper .wrapper-slidein-top .overlay-desc, .image-wrapper .wrapper-slideout-bottom .overlay-desc, .image-wrapper .wrapper-slideout-left .overlay-desc, .image-wrapper .wrapper-slideout-right .overlay-desc, .image-wrapper .wrapper-slideout-top .overlay-desc, .image-wrapper:hover .wrapper-fade-in, .wrapper-fade-out .overlay-desc {
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)'; }

.image-wrapper:hover .wrapper-fade-out {
  opacity: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)'; }

.image-wrapper:hover .wrapper-scale-in, .wrapper-scale-out {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)'; }

.image-wrapper:hover .overlay-dark.wrapper-scale-in, .image-wrapper:hover .overlay-light.wrapper-scale-in, .overlay-dark.wrapper-scale-out, .overlay-light.wrapper-scale-out {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)'; }

.image-wrapper:hover .wrapper-scale-out, .wrapper-scale-in {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.image-wrapper:hover .overlay-dark.wrapper-scale-out, .image-wrapper:hover .overlay-light.wrapper-scale-out, .overlay-dark.wrapper-scale-in, .overlay-light.wrapper-scale-in {
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  -o-transform: scale(0.1);
  transform: scale(0.1); }

.image-wrapper .wrapper-slidein-top, .image-wrapper:hover .wrapper-slideout-top {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%); }

.image-wrapper .wrapper-slidein-right, .image-wrapper:hover .wrapper-slideout-right {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%); }

.image-wrapper .wrapper-slidein-bottom, .image-wrapper:hover .wrapper-slideout-bottom {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%); }

.image-wrapper .wrapper-slidein-left, .image-wrapper:hover .wrapper-slideout-left {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%); }

.image-wrapper img.wrapper-slideout-bottom, .image-wrapper img.wrapper-slideout-left, .image-wrapper img.wrapper-slideout-right, .image-wrapper img.wrapper-slideout-top {
  position: relative;
  z-index: 10; }

.image-wrapper .wrapper-slidein-bottom, .image-wrapper .wrapper-slidein-left, .image-wrapper .wrapper-slidein-right, .image-wrapper .wrapper-slidein-top, .image-wrapper .wrapper-slideout-bottom, .image-wrapper .wrapper-slideout-left, .image-wrapper .wrapper-slideout-right, .image-wrapper .wrapper-slideout-top {
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)'; }

.image-wrapper .wrapper-slideout-bottom, .image-wrapper .wrapper-slideout-left, .image-wrapper .wrapper-slideout-right, .image-wrapper .wrapper-slideout-top, .image-wrapper:hover .wrapper-slidein-bottom, .image-wrapper:hover .wrapper-slidein-left, .image-wrapper:hover .wrapper-slidein-right, .image-wrapper:hover .wrapper-slidein-top {
  -webkit-transform: translateY(0) translateX(0);
  -moz-transform: translateY(0) translateX(0);
  -ms-transform: translateY(0) translateX(0);
  -o-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0); }

.image-wrapper a.pretty-link {
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.image-wrapper .overlay-buttons {
  position: relative;
  z-index: 9;
  margin: 0 0 15px; }

.overlay-buttons > li {
  display: inline-block;
  padding: 0; }

.overlay-buttons > li > a {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin: 0 2px;
  text-align: center; }

.image-wrapper:hover .fade-up {
  -webkit-animation: fadeInUp .5s linear both;
  -moz-animation: fadeInUp .5s linear both;
  -ms-animation: fadeInUp .5s linear both;
  -o-animation: fadeInUp .5s linear both;
  animation: fadeInUp .5s linear both; }

.image-wrapper:hover .fade-right {
  -webkit-animation: fadeInRight .5s linear both;
  -moz-animation: fadeInRight .5s linear both;
  -ms-animation: fadeInRight .5s linear both;
  -o-animation: fadeInRight .5s linear both;
  animation: fadeInRight .5s linear both; }

.image-wrapper:hover .fade-down {
  -webkit-animation: fadeInDown .5s linear both;
  -moz-animation: fadeInDown .5s linear both;
  -ms-animation: fadeInDown .5s linear both;
  -o-animation: fadeInDown .5s linear both;
  animation: fadeInDown .5s linear both; }

.image-wrapper:hover .fade-left {
  -webkit-animation: fadeInLeft .5s linear both;
  -moz-animation: fadeInLeft .5s linear both;
  -ms-animation: fadeInLeft .5s linear both;
  -o-animation: fadeInLeft .5s linear both;
  animation: fadeInLeft .5s linear both; }

.image-wrapper:hover .zoom-in {
  -webkit-animation: zoomIn .5s linear both;
  -moz-animation: zoomIn .5s linear both;
  -ms-animation: zoomIn .5s linear both;
  -o-animation: zoomIn .5s linear both;
  animation: zoomIn .5s linear both; }

.image-wrapper:hover .rotate-in {
  -webkit-animation: rotateIn .5s linear both;
  -moz-animation: rotateIn .5s linear both;
  -ms-animation: rotateIn .5s linear both;
  -o-animation: rotateIn .5s linear both;
  animation: rotateIn .5s linear both; }

.image-wrapper:hover .flip-x {
  -webkit-animation: flipInX .6s linear .3s both;
  -moz-animation: flipInX .6s linear .3s both;
  -ms-animation: flipInX .6s linear .3s both;
  -o-animation: flipInX .6s linear .3s both;
  animation: flipInX .6s linear .3s both; }

.image-wrapper:hover .flip-y {
  -webkit-animation: flipInY .6s linear .3s both;
  -moz-animation: flipInY .6s linear .3s both;
  -ms-animation: flipInY .6s linear .3s both;
  -o-animation: flipInY .6s linear .3s both;
  animation: flipInY .6s linear .3s both; }

.i-sm {
  width: 25px; }

.i-md {
  width: 50px; }

.i-lg {
  width: 80px; }

.fa-1x {
  font-size: 24px; }

.fa-3x {
  line-height: 1em; }

p.icon-wrapper > i {
  margin: 0 5px 15px 0; }

i {
  -webkit-transition: .4s all ease-in-out;
  -moz-transition: .4s all ease-in-out;
  -ms-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out; }

.no-style {
  margin-bottom: 20px; }

.icon-shape-circle, .icon-shape-rounded, .icon-shape-square {
  line-height: 35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center; }

ul.arrow-list li:before, ul.check-list li:before {
  top: 5px;
  left: 0;
  display: block;
  font-family: FontAwesome; }

.icon-shape-circle.fa-2x, .icon-shape-rounded.fa-2x, .icon-shape-square.fa-2x {
  line-height: 60px;
  width: 60px;
  height: 60px; }

.icon-shape-circle.fa-3x, .icon-shape-rounded.fa-3x, .icon-shape-square.fa-3x {
  line-height: 90px;
  width: 90px;
  height: 90px; }

.icon-shape-circle.fa-4x, .icon-shape-rounded.fa-4x, .icon-shape-square.fa-4x {
  line-height: 120px;
  width: 120px;
  height: 120px; }

.icon-shape-circle.fa-5x, .icon-shape-rounded.fa-5x, .icon-shape-square.fa-5x {
  line-height: 150px;
  width: 150px;
  height: 150px; }

.icon-shape-circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; }

.icon-shape-rounded {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }

.icon-shape-rounded.fa-2x, .icon-shape-rounded.fa-3x {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px; }

.icon-shape-rounded.fa-4x, .icon-shape-rounded.fa-5x {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px; }

.hv-wrapper:hover .icon-hvlight, .hv-wrapper:hover a.icon-hvlight, .icon-hvlight:hover, .icon-light, a.icon-hvlight:hover, a.icon-light {
  color: #fff; }

.hv-wrapper:hover .icon-hvgrey, .hv-wrapper:hover a.icon-hvgrey, .icon-grey, .icon-hvgrey:hover, a.icon-grey, a.icon-hvgrey:hover {
  color: #f2f2f2; }

.hv-wrapper:hover .icon-hvdark, .hv-wrapper:hover a.icon-hvdark, .icon-dark, .icon-hvdark:hover, a.icon-dark, a.icon-hvdark:hover {
  color: #333; }

.hv-wrapper:hover .icon-hvgrey-bg, .icon-grey-bg, .icon-hvgrey-bg:hover {
  background: #f2f2f2; }

.hv-wrapper:hover .icon-hvlight-bg, .icon-hvlight-bg:hover, .icon-light-bg {
  background: #fff; }

.hv-wrapper:hover .icon-hvdark-bg, .icon-dark-bg, .icon-hvdark-bg:hover {
  background-color: #333; }

.hv-wrapper:hover .icon-hvtransparent-bg, .icon-hvtransparent-bg:hover, .icon-transparent-bg {
  background-color: transparent; }

.icon-bordered-dark, .icon-bordered-grey, .icon-bordered-light, .icon-bordered-theme, .icon-bordered-transparent {
  border: 1px solid; }

.hv-wrapper:hover .icon-hvbordered-light, .icon-bordered-light, .icon-hvbordered-light:hover {
  border-color: #fff; }

.hv-wrapper:hover .icon-hvbordered-grey, .icon-bordered-grey, .icon-hvbordered-grey:hover {
  border-color: #e1e1e1; }

.hv-wrapper:hover .icon-hvbordered-dark, .icon-bordered-dark, .icon-hvbordered-dark:hover {
  border-color: #777; }

.hv-wrapper:hover .icon-hvbordered-transparent, .icon-bordered-transparent, .icon-hvbordered-transparent:hover {
  border-color: transparent; }

.social-adn-color, .social-adn-hvcolor:hover {
  color: #504e54; }

.social-adn-bg, .social-adn-hvbg:hover {
  background: #504e54; }

.social-apple-color, .social-apple-hvcolor:hover {
  color: #aeb5c5; }

.social-apple-bg, .social-apple-hvbg:hover {
  background: #aeb5c5; }

.social-android-color, .social-android-hvcolor:hover {
  color: #a5c63b; }

.social-android-bg, .social-android-hvbg:hover {
  background: #a5c63b; }

.social-bitbucket-colort, .social-bitbucket-hvcolor:hover {
  color: #036; }

.social-bitbucket-bg, .social-bitbucket-hvbg:hover {
  background: #036; }

.social-css3-color, .social-css3-hvcolor:hover {
  color: #1572b7; }

.social-css3-bg, .social-css3-hvbg:hover {
  background: #1572b7; }

.social-dribbble-color, .social-dribbble-hvcolor:hover {
  color: #f46899; }

.social-dribbble-bg, .social-dribbble-hvbg:hover {
  background: #f46899; }

.social-dropbox-color, .social-dropbox-hvcolor:hover {
  color: #018bd3; }

.social-dropbox-bg, .social-dropbox-hvbg:hover {
  background: #018bd3; }

.social-facebook-color, .social-facebook-hvcolor:hover {
  color: #3c599f; }

.social-facebook-bg, .social-facebook-hvbg:hover {
  background: #3c599f; }

.social-flickr-color, .social-flickr-hvcolor:hover {
  color: #ff0084; }

.social-flickr-bg, .social-flickr-hvbg:hover {
  background: #ff0084; }

.social-foursquare-color, .social-foursquare-hvcolor:hover {
  color: #0086be; }

.social-foursquare-bg, .social-foursquare-hvbg:hover {
  background: #0086be; }

.social-github-color, .social-github-hvcolor:hover {
  color: #070709; }

.social-github-bg, .social-github-hvbg:hover {
  background: #070709; }

.social-google-plus-color, .social-google-plus-hvcolor:hover {
  color: #cf3d2e; }

.social-google-plus-bg, .social-google-plus-hvbg:hover {
  background: #cf3d2e; }

.social-html5-color, .social-html5-hvcolor:hover {
  color: #e54d26; }

.social-html5-bg, .social-html5-hvbg:hover {
  background: #e54d26; }

.social-instagram-color, .social-instagram-hvcolor:hover {
  color: #a1755c; }

.social-instagram-bg, .social-instagram-hvbg:hover {
  background: #a1755c; }

.social-linkedin-color, .social-linkedin-hvcolor:hover {
  color: #0085ae; }

.social-linkedin-bg, .social-linkedin-hvbg:hover {
  background: #0085ae; }

.social-linux-color, .social-linux-hvcolor:hover {
  color: #fbc002; }

.social-linux-bg, .social-linux-hvbg:hover {
  background: #fbc002; }

.social-maxcdn-color, .social-maxcdn-hvcolor:hover {
  color: #f6ae1c; }

.social-maxcdn-bg, .social-maxcdn-hvbg:hover {
  background: #f6ae1c; }

.social-pagelines-color, .social-pagelines-hvcolor:hover {
  color: #241e20; }

.social-pagelines-bg, .social-pagelines-hvbg:hover {
  background: #241e20; }

.social-pinterest-color, .social-pinterest-hvcolor:hover {
  color: #cc2127; }

.social-pinterest-bg, .social-pinterest-hvbg:hover {
  background: #cc2127; }

.social-renren-color, .social-renren-hvcolor:hover {
  color: #025dac; }

.social-renren-bg, .social-renren-hvbg:hover {
  background: #025dac; }

.social-skype-color, .social-skype-hvcolor:hover {
  color: #01aef2; }

.social-skype-bg, .social-skype-hvbg:hover {
  background: #01aef2; }

.social-stack-exchange-color, .social-stack-exchange-hvcolor:hover {
  color: #245590; }

.social-stack-exchange-bg, .social-stack-exchange-hvbg:hover {
  background: #245590; }

.social-overflow-color, .social-overflow-hvcolor:hover {
  color: #ff7300; }

.social-overflow-bg, .social-overflow-hvbg:hover {
  background: #ff7300; }

.social-trello-color, .social-trello-hvcolor:hover {
  color: #265a7f; }

.social-trello-bg, .social-trello-hvbg:hover {
  background: #265a7f; }

.social-tumblr-color, .social-tumblr-hvcolor:hover {
  color: #314e6c; }

.social-tumblr-bg, .social-tumblr-hvbg:hover {
  background: #314e6c; }

.social-twitter-color, .social-twitter-hvcolor:hover {
  color: #32ccfe; }

.social-twitter-bg, .social-twitter-hvbg:hover {
  background: #32ccfe; }

.social-vimeo-color, .social-vimeo-hvcolor:hover {
  color: #229acc; }

.social-vimeo-bg, .social-vimeo-hvbg:hover {
  background: #229acc; }

.social-vk-color, .social-vk-hvcolor:hover {
  color: #375474; }

.social-vk-bg, .social-vk-hvbg:hover {
  background: #375474; }

.social-weibo-color, .social-weibo-hvcolor:hover {
  color: #d72b2b; }

.social-weibo-bg, .social-weibo-hvbg:hover {
  background: #d72b2b; }

.social-windows-color, .social-windows-hvcolor:hover {
  color: #12b6f3; }

.social-windows-bg, .social-windows-hvbg:hover {
  background: #12b6f3; }

.social-xing-color, .social-xing-hvcolor:hover {
  color: #00555c; }

.social-xing-bg, .social-xing-hvbg:hover {
  background: #00555c; }

.social-youtube-color, .social-youtube-hvcolor:hover {
  color: #c52f30; }

.social-youtube-bg, .social-youtube-hvbg:hover {
  background: #c52f30; }

.social-adn-bcolor, .social-adn-hvbcolor:hover {
  border-color: #504e54; }

.social-apple-bcolor, .social-apple-hvbcolor:hover {
  border-color: #aeb5c5; }

.social-android-bcolor, .social-android-hvbcolor:hover {
  border-color: #a5c63b; }

.social-bitbucket-bcolor, .social-bitbucket-hvbcolor:hover {
  border-color: #036; }

.social-css3-bcolor, .social-css3-hvbcolor:hover {
  border-color: #1572b7; }

.social-dribbble-bcolor, .social-dribbble-hvbcolor:hover {
  border-color: #f46899; }

.social-dropbox-bcolor, .social-dropbox-hvbcolor:hover {
  border-color: #018bd3; }

.social-facebook-bcolor, .social-facebook-hvbcolor:hover {
  border-color: #3c599f; }

.social-flickr-bcolor, .social-flickr-hvbcolor:hover {
  border-color: #ff0084; }

.social-foursquare-bcolor, .social-foursquare-hvbcolor:hover {
  border-color: #0086be; }

.social-github-bcolor, .social-github-hvbcolor:hover {
  border-color: #070709; }

.social-google-plus-bcolor, .social-google-plus-hvbcolor:hover {
  border-color: #cf3d2e; }

.social-html5-bcolor, .social-html5-hvbcolor:hover {
  border-color: #e54d26; }

.social-instagram-bcolor, .social-instagram-hvbcolor:hover {
  border-color: #a1755c; }

.social-linkedin-bcolor, .social-linkedin-hvbcolor:hover {
  border-color: #0085ae; }

.social-linux-bcolor, .social-linux-hvbcolor:hover {
  border-color: #fbc002; }

.social-maxcdn-bcolor, .social-maxcdn-hvbcolor:hover {
  border-color: #f6ae1c; }

.social-pagelines-bcolor, .social-pagelines-hvbcolor:hover {
  border-color: #241e20; }

.social-pinterest-bcolor, .social-pinterest-hvbcolor:hover {
  border-color: #cc2127; }

.social-renren-bcolor, .social-renren-hvbcolor:hover {
  border-color: #025dac; }

.social-skype-bcolor, .social-skype-hvbcolor:hover {
  border-color: #01aef2; }

.social-stack-exchange-bcolor, .social-stack-exchange-hvbcolor:hover {
  border-color: #245590; }

.social-overflow-bcolor, .social-overflow-hvbcolor:hover {
  border-color: #ff7300; }

.social-trello-bcolor, .social-trello-hvbcolor:hover {
  border-color: #265a7f; }

.social-tumblr-bcolor, .social-tumblr-hvbcolor:hover {
  border-color: #314e6c; }

.social-twitter-bcolor, .social-twitter-hvbcolor:hover {
  border-color: #32ccfe; }

.social-vimeo-bcolor, .social-vimeo-hvbcolor:hover {
  border-color: #229acc; }

.social-vk-bcolor, .social-vk-hvbcolor:hover {
  border-color: #375474; }

.social-weibo-bcolor, .social-weibo-hvbcolor:hover {
  border-color: #d72b2b; }

.social-windows-bcolor, .social-windows-hvbcolor:hover {
  border-color: #12b6f3; }

.social-xing-bcolor, .social-xing-hvbcolor:hover {
  border-color: #00555c; }

.social-youtube-bcolor, .social-youtube-hvbcolor:hover {
  border-color: #c52f30; }

.arrow-list li, .bullet-list li, .check-list li, .dashed-list li, .default-list li, .square-list li {
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
  list-style: none; }

.arrow-list li {
  padding-left: 15px; }

.check-list li {
  padding-left: 25px; }

ul.arrow-list li:before {
  font-size: 11px;
  position: absolute;
  content: '\f105'; }

ul.check-list li:before {
  font-size: 14px;
  position: absolute;
  content: '\f058'; }

.list-style-1 .list-group-item:after, ul.bullet-list li:before, ul.dashed-list li:before, ul.square-list li:before {
  content: ''; }

ul.check-list.list-light li:before {
  color: #f7f7f7; }

ul.check-list.list-dark li:before {
  color: #222; }

ul.bullet-list li:before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 20px;
  background: #ddd; }

ul.dashed-list li:before {
  float: left;
  width: 15px;
  height: 2px;
  margin: 12px 15px 0 0;
  background: #ddd; }

ul.square-list li:before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  margin-right: 10px;
  background: #ddd; }

.list-style-1 a, .list-style-1 a:hover {
  font-size: 15px;
  margin-bottom: 5px; }

.list-style-1 a {
  background: #f7f7f7 !important; }

.list-style-1 .list-group-submenu a, .list-style-1 a:hover {
  background: #ebebeb !important; }

.list-style-1 .list-group-item:last-child {
  margin-bottom: 5px; }

.list-style-1 .list-group-submenu a:hover {
  background: #f7f7f7 !important; }

.list-style-1 .list-group-item {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px; }

.list-style-1 .list-group-item:before {
  top: 11px !important;
  left: 20px !important; }

.list-style-1 .list-group-item:after {
  position: absolute;
  top: 0;
  left: 35px;
  width: 1px;
  height: 100%;
  background: #ebebeb; }

.rectangle-list a:before, .rounded-list a:before {
  font-weight: 700;
  line-height: 2em;
  content: counter(li);
  top: 50%;
  counter-increment: li;
  text-align: center; }

.list-style-1 .list-group-submenu .list-group-item:after {
  background: #e0dfdf; }

.list-style-1 .list-group-item, .list-style-1 .list-group-submenu .list-group-item {
  padding: 10px 15px 10px 50px !important; }

.ex li, .ex ol {
  padding: 0; }

.ex ol {
  margin-bottom: 2em;
  list-style: none;
  counter-reset: li;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }

.ex ol ol {
  margin: 0 0 0 2em; }

.rounded-list a {
  position: relative;
  display: block;
  margin: .5em 0;
  padding: 1em 1em 1em 4em;
  text-decoration: none;
  border-radius: .3em;
  background: #f7f7f7; }

.rounded-list a:hover {
  background: #eee; }

.rounded-list a:before {
  position: absolute;
  left: .7em;
  width: 2.5em;
  height: 2.5em;
  margin-top: -1.3em;
  transition: all .3s ease-out;
  border: .3em solid #fff;
  border-radius: 2em;
  background: #fff; }

.rectangle-list a {
  position: relative;
  display: block;
  margin: .5em 0 .5em 2.5em;
  padding: .4em .4em .4em .8em;
  transition: all .3s ease-out;
  text-decoration: none;
  color: #444;
  background: #ddd; }

.rectangle-list a:hover {
  background: #eee; }

.rectangle-list a:before {
  position: absolute;
  left: -2.5em;
  width: 2em;
  height: 2em;
  margin-top: -1em; }

.rectangle-list a:after {
  position: absolute;
  top: 50%;
  left: -1em;
  margin-top: -.5em;
  content: '';
  transition: all .3s ease-out;
  border: .5em solid transparent; }

.rectangle-list a:hover:after {
  left: -.5em; }

.circle-list li {
  padding: 1.5em 1.5em 1.5em 2.5em;
  border-bottom: 1px dashed #ccc; }

.circle-list li:last-child {
  border-bottom: none; }

.circle-list span {
  position: relative;
  margin: 0; }

.circle-list p {
  margin: 0; }

.circle-list span:before {
  line-height: 1.9em;
  position: absolute;
  z-index: -1;
  top: -5px;
  left: -2.5em;
  width: 1.9em;
  height: 1.9em;
  content: counter(li, decimal);
  counter-increment: li;
  transition: all .4s ease-out 0s;
  text-align: center;
  color: #444;
  border: 0.1em solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5em;
  background: #f5f5f5; }

.circle-list li:hover span:before {
  transform: scale(1.5);
  color: #444;
  border-width: -.8em;
  border-color: rgba(0, 0, 0, 0.08); }

.list-group-item i {
  float: right;
  padding-top: 5px;
  padding-left: 10px; }

.arrow-list .list-group-submenu .list-group-item, .ex-panel.front-toggle .list-group-item {
  padding-left: 30px; }

.list-group-item.in:hover, .list-group-submenu .list-group-item {
  background-color: #f5f5f5; }

.list-group-item.in, .list-group-item.in:focus {
  background-color: #fff; }

.ex-panel .list-group-item.in.collapsed:after, .ex-panel .list-group-item.in:after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 2px;
  content: '';
  background-color: #555; }

.ex-panel .list-group-item.in.collapsed:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 22px;
  width: 2px;
  height: 13px;
  content: '';
  background-color: #555; }

.ex-panel .list-group-item.in:before {
  content: none; }

.ex-panel.front-toggle .list-group-item:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 2px;
  content: '';
  background-color: #555; }

.ex-panel.front-toggle .list-group-item.in.collapsed:before {
  left: 5px;
  height: 12px; }

.ex-panel.front-toggle .list-group-item.in.collapsed:after {
  left: 0;
  width: 12px; }

.border-none.panel {
  box-shadow: none; }

.border-none .list-group-item, .no-border {
  border: none !important; }

.border-none .list-group-item:hover, .border-none .list-group-submenu .list-group-item {
  background-color: transparent; }

.ex-panel.border-none.front-toggle .list-group-item {
  margin-bottom: 0;
  border-bottom: 1px solid #f5f5f5; }

.ex-panel.border-none.front-toggle .list-group-item.in {
  border-bottom: 1px solid #d2d2d2; }

.ex-panel.border-none.front-toggle .list-group-item.in.collapsed {
  border-bottom: 1px solid #f5f5f5; }

.arrow-list .list-group-item:before {
  font-family: FontAwesome;
  font-size: 11px;
  position: absolute;
  top: 13px;
  left: 0;
  display: block;
  content: '\f105'; }

.arrow-list .list-group-submenu .list-group-item:before {
  left: 15px; }

.carousel-control.left, .carousel-control.right {
  background: 0 0; }

.carousel-control > span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center; }

.meta-list li:after, .owl-carousel .owl-controls .owl-nav div {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%); }

.slider-section {
  padding: 0; }

.owl-carousel .animated {
  visibility: visible; }

.owl-theme .owl-nav {
  margin-top: 0 !important; }

.owl-carousel .item.dark-overlay:after, .owl-carousel .item.light-overlay:after {
  background: rgba(0, 0, 0, 0.3); }

.owl-carousel .item.light-overlay:after {
  background: rgba(255, 255, 255, 0.3); }

.owl-carousel .owl-controls .owl-nav div {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.owl-carousel .owl-controls .owl-nav .owl-prev {
  left: 15px;
  margin-right: 7.5px; }

.owl-carousel .owl-controls .owl-nav .owl-next {
  right: 15px;
  margin-left: 7.5px; }

.owl-controls .owl-nav > div {
  line-height: 50px;
  width: 50px;
  height: 50px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.owl-theme .owl-nav > div {
  font-size: 0;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #333;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #fff;
  -khtml-border-radius: 0; }

.owl-theme .owl-nav > div:hover {
  background: rgba(255, 255, 255, 0.6); }

.owl-carousel .owl-controls .owl-nav .owl-next:after, .owl-carousel .owl-controls .owl-nav .owl-prev:after {
  font-family: FontAwesome;
  font-size: 30px;
  font-weight: 100;
  position: absolute;
  right: 0;
  left: 0;
  content: '\f104';
  color: inherit; }

.owl-carousel .owl-controls .owl-nav .owl-next:after {
  content: '\f105'; }

.owl-carousel.navigation-dark .owl-nav {
  margin-bottom: 0px; }

.owl-carousel.navigation-dark .owl-nav > div {
  color: #fff;
  background: #333; }

.owl-carousel.navigation-dark .owl-nav > div:hover {
  background: rgba(0, 0, 0, 0.6); }

.owl-carousel.navigation-colored .owl-nav .owl-next:hover:after, .owl-carousel.navigation-colored .owl-nav .owl-prev:hover:after, .owl-carousel.navigation-colored .owl-nav > div {
  color: #fff; }

.owl-carousel.navigation-dark.navigation-transparent .owl-nav > div:hover, .owl-carousel.navigation-transparent .owl-nav > div, .owl-carousel.navigation-transparent .owl-nav > div:hover .owl-carousel.navigation-dark.navigation-transparent .owl-nav > div {
  background: 0 0; }

.owl-carousel.navigation-transparent .owl-controls .owl-nav .owl-next:after, .owl-carousel.navigation-transparent .owl-controls .owl-nav .owl-prev:after {
  font-size: 60px;
  font-weight: 400; }

.owl-carousel.nav-circle .owl-controls .owl-nav > div:after, .owl-carousel.nav-mini .owl-controls .owl-nav .owl-next:after, .owl-carousel.nav-mini .owl-controls .owl-nav .owl-prev:after {
  font-size: 15px; }

.owl-carousel.nav-bottom .owl-controls .owl-nav, .owl-carousel.nav-bottom-left .owl-controls .owl-nav, .owl-carousel.nav-bottom-right .owl-controls .owl-nav, .owl-carousel.nav-top .owl-controls .owl-nav, .owl-carousel.nav-top-left .owl-controls .owl-nav, .owl-carousel.nav-top-right .owl-controls .owl-nav {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  margin: 15px; }

.owl-carousel.nav-bottom .owl-controls .owl-nav div, .owl-carousel.nav-bottom-left .owl-controls .owl-nav div, .owl-carousel.nav-bottom-right .owl-controls .owl-nav div, .owl-carousel.nav-top .owl-controls .owl-nav div, .owl-carousel.nav-top-left .owl-controls .owl-nav div, .owl-carousel.nav-top-right .owl-controls .owl-nav div {
  position: relative;
  right: 0;
  left: 0;
  display: inline-block;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.owl-carousel.nav-top .owl-controls .owl-nav, .owl-carousel.nav-top-left .owl-controls .owl-nav, .owl-carousel.nav-top-right .owl-controls .owl-nav {
  top: 0; }

.owl-carousel.nav-bottom-right .owl-controls .owl-nav, .owl-carousel.nav-bottom-right.nav-outer .owl-controls .owl-nav, .owl-carousel.nav-top-right .owl-controls .owl-nav, .owl-carousel.nav-top-right.nav-outer .owl-controls .owl-nav {
  right: 0;
  left: auto; }

.owl-carousel.nav-bottom-left .owl-controls .owl-nav, .owl-carousel.nav-top-left .owl-controls .owl-nav {
  right: auto;
  left: 0; }

.owl-carousel.nav-outer .owl-controls .owl-nav .owl-prev {
  left: -70px; }

.owl-carousel.nav-outer .owl-controls .owl-nav .owl-next {
  right: -70px; }

.owl-carousel.nav-bottom-left.nav-outer .owl-controls .owl-nav > div, .owl-carousel.nav-bottom-right.nav-outer .owl-controls .owl-nav > div, .owl-carousel.nav-bottom.nav-outer .owl-controls .owl-nav > div, .owl-carousel.nav-top-left.nav-outer .owl-controls .owl-nav > div, .owl-carousel.nav-top-right.nav-outer .owl-controls .owl-nav > div, .owl-carousel.nav-top.nav-outer .owl-controls .owl-nav > div {
  right: 0;
  left: 0; }

.owl-carousel.nav-bottom-left.nav-outer .owl-controls .owl-nav, .owl-carousel.nav-bottom-right.nav-outer .owl-controls .owl-nav, .owl-carousel.nav-bottom.nav-outer .owl-controls .owl-nav {
  bottom: -70px;
  margin: 0; }

.owl-carousel.nav-top-left.nav-outer .owl-controls .owl-nav, .owl-carousel.nav-top-right.nav-outer .owl-controls .owl-nav, .owl-carousel.nav-top.nav-outer .owl-controls .owl-nav {
  top: -70px;
  margin: 0; }

.owl-carousel.nav-rounded .owl-controls .owl-nav > div {
  border-radius: 5px; }

.owl-carousel.nav-circle .owl-controls .owl-nav > div {
  border-radius: 50%; }

.owl-carousel.nav-mini .owl-controls .owl-nav > div {
  line-height: 25px;
  width: 25px;
  height: 25px; }

.owl-carousel.nav-mini .owl-controls .owl-nav .owl-prev {
  margin-right: 2.5px; }

.owl-carousel.nav-mini .owl-controls .owl-nav .owl-next {
  margin-left: 2.5px; }

.owl-carousel.show-nav-hover .owl-controls .owl-nav .owl-prev {
  left: -15px;
  opacity: 0; }

.owl-carousel.show-nav-hover .owl-controls .owl-nav .owl-next {
  right: -15px;
  opacity: 0; }

.owl-carousel.show-nav-hover:hover .owl-controls .owl-nav .owl-prev {
  left: 15px;
  opacity: 1; }

.owl-carousel.show-nav-hover:hover .owl-controls .owl-nav .owl-next {
  right: 15px;
  opacity: 1; }

.owl-carousel .owl-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 10px; }

.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 7px;
  background: rgba(255, 255, 255, 0.5); }

.owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.8); }

.owl-theme .owl-dots .owl-dot.active span {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  background: 0 0; }

.owl-theme.dots-mini .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px; }

.owl-theme.dot-style1 .owl-dots .owl-dot {
  margin: 4px;
  border: 2px solid transparent; }

.owl-theme.dot-style1 .owl-dots .owl-dot.active, .owl-theme.dot-style1 .owl-dots .owl-dot:hover {
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }

.owl-theme.dot-style1 .owl-dots .owl-dot.active span {
  background: rgba(255, 255, 255, 0.8); }

.owl-theme.dots-square .owl-dots .owl-dot span {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

.owl-carousel.dots-bottom-right .owl-dots, .owl-carousel.dots-top-right .owl-dots {
  right: 0;
  left: auto; }

.owl-carousel.dots-bottom-left .owl-dots, .owl-carousel.dots-top-left .owl-dots {
  right: auto;
  left: 0; }

.owl-carousel.dots-top .owl-dots, .owl-carousel.dots-top-left .owl-dots, .owl-carousel.dots-top-right .owl-dots {
  top: 0; }

.owl-carousel.dots-left .owl-dots .owl-dot, .owl-carousel.dots-right .owl-dots .owl-dot {
  display: block; }

.owl-carousel.dots-left .owl-dots, .owl-carousel.dots-right .owl-dots {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%); }

.owl-carousel.dots-right .owl-dots {
  right: 0;
  left: auto; }

.owl-carousel.dots-left .owl-dots {
  right: auto;
  left: 0; }

.owl-carousel.dots-outer .owl-dots {
  bottom: -60px;
  margin: 0; }

.owl-carousel.dots-outer {
  margin-bottom: 60px; }

.owl-carousel.dots-top-left.dots-outer .owl-dots, .owl-carousel.dots-top-right.dots-outer .owl-dots, .owl-carousel.dots-top.dots-outer .owl-dots {
  top: -60px;
  margin: 0; }

.owl-carousel.dots-dark .owl-dots .owl-dot span {
  background: rgba(0, 0, 0, 0.5); }

.owl-carousel.dots-dark .owl-dots .owl-dot:hover span {
  background: rgba(0, 0, 0, 0.8); }

.owl-carousel.dots-dark .owl-dots .owl-dot.active span {
  border: 2px solid #000;
  background: 0 0; }

.vertical-align.slider-content {
  position: absolute;
  z-index: 99; }

.slider-content h2 {
  font-size: 40px;
  font-weight: 900;
  margin-top: 0; }

.slider-content p {
  font-size: 18px; }

.slider-content p.normal {
  font-size: 15px; }

.slider-content.text-center p {
  margin: 0 auto 30px; }

.slider-content.text-right p {
  margin: 0 0 30px auto; }

.slider-content.text-left p {
  margin: 0 auto 20px 0; }

.slider-content .btn {
  margin-right: 0 15px; }

.slider-content .btn.no-margin {
  margin: 0; }

.owl-item .animated {
  visibility: hidden; }

.owl-item .animated.visible {
  visibility: visible; }

.pagination > li > a, .pagination > li > span {
  font-weight: 400; }

.pagination.style1 > li > a, .pagination.style1 > li > span {
  border: none; }

.pagination.style1 > li > a:focus, .pagination.style1 > li > a:hover, .pagination.style1 > li > span:focus, .pagination.style1 > li > span:hover {
  background: 0 0; }

.pagination.style2 > li > a, .pagination.style2 > li > span {
  margin: 3px;
  padding: 6px 13px;
  border-radius: 50%; }

.pagination.style2 > li:first-child > a, .pagination.style2 > li:first-child > span, .pagination.style2 > li:last-child > a, .pagination.style2 > li:last-child > span {
  border: none; }

.pager.style3 {
  display: inherit;
  margin: 20px 0; }

.pager.style3 li > a, .pager.style3 li > span {
  display: inline-block;
  margin-right: 2px;
  margin-left: 2px;
  padding: 6px 24px;
  border: 1px solid #ddd;
  border-radius: 25px; }

.pagination.style3 li.previous > a, .pagination.style3 li.previous > span {
  float: left; }

.pagination.style3 li.next > a, .pagination.style3 li.next > span {
  float: right; }

.load-more {
  display: none; }

.load-more.active {
  display: block; }

.item-box {
  padding: 30px; }

.item-box1 {
  padding: 40px; }

.item-box2 {
  padding: 50px; }

.item-box3 {
  padding: 60px; }

.feature-box {
  margin-bottom: 30px; }

.owl-item .feature-box {
  margin-bottom: 0; }

.feature-box .feature-inner-wrapper, .feature-box .feature-title, .feature-box .icon-wrapper i {
  margin: 0 0 15px; }

.feature-box .feature-category {
  padding: 0 0 15px; }

.feature-title.bottom-line, .text-center .feature-title.bottom-line, .text-right .feature-title.bottom-line {
  margin-bottom: 50px; }

.feature-title.bottom-line:after, .text-center .feature-title.bottom-line:after, .text-right .feature-title.bottom-line:after {
  position: absolute;
  bottom: -20px; }

.text-center .feature-title.bottom-line:after {
  right: 0;
  left: 0; }

.feature-box.style-2 .feature-title, .feature-box.style-2 .icon-wrapper i {
  margin-bottom: 0; }

.feature-box.style-2 .icon-wrapper, .feature-box.style-2 .title-wrapper {
  display: inline-block;
  vertical-align: middle; }

.feature-box.style-2 .icon-wrapper, .feature-box.style-3 .icon-wrapper {
  padding-right: 25px; }

.feature-box.style-2.text-right .icon-wrapper, .feature-box.style-3.text-right .icon-wrapper {
  padding: 0 0 0 15px; }

.feature-box.style-3 .icon-wrapper, .feature-box.style-3 .inner-wrapper {
  display: table-cell;
  vertical-align: top; }

.feature-box.style-3.i-adjust .icon-wrapper {
  padding-top: 15px; }

.feature-box.style-3.text-center .icon-wrapper, .feature-box.style-3.text-center .inner-wrapper {
  display: inline-block;
  vertical-align: middle; }

.feature-box.style-3.text-center .icon-wrapper {
  padding: 0; }

.feature-box.style-4 {
  margin-top: 30px;
  padding: 15px 15px 30px;
  border: 1px solid #f7f7f7; }

.style-4-box {
  margin-top: -50px; }

.feature-box.style-5 .icon-wrapper {
  position: absolute; }

.feature-box.style-5 .title-wrapper {
  margin-left: 150px; }

.title-wrapper {
  position: relative; }

.process-step {
  font-size: 70px;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  color: #f7f7f7; }

.style-box .process-step {
  font-size: 15px;
  line-height: 40px;
  right: auto;
  left: auto;
  width: 40px;
  height: 40px;
  margin-left: -22px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -khtml-border-radius: 50%; }

.feature-box.style-6 {
  margin-top: 35px;
  border: 2px solid #f7f7f7;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -khtml-border-radius: 15px; }

.feature-box.style-6 img {
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  border-radius: 15px 15px 0 0;
  -khtml-border-radius: 15px 15px 0 0; }

.feature-box.style-6.rounded {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -khtml-border-radius: 5px; }

.feature-box.style-6.rounded img {
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  -khtml-border-radius: 5px 5px 0 0; }

.feature-box.style-6 .feature-image {
  position: relative; }

.feature-box.style-6 .feature-text {
  padding: 0 25px 25px; }

.feature-box.style-6 i {
  line-height: 70px;
  position: absolute;
  top: -35px;
  right: auto;
  left: auto;
  width: 80px;
  height: 80px;
  margin-left: -35px;
  border: 7px solid #fff; }

.feature-box.style-6:hover i {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }

.feature-image, .post-image {
  margin-bottom: 20px; }

.text-center img {
  display: inline-block !important; }

.progress {
  overflow: visible; }

.progress, .progress-bar {
  line-height: inherit;
  position: relative;
  float: none;
  color: inherit;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none; }

.progress.lable-on-top .progress-label {
  position: absolute;
  right: -17px;
  bottom: 100%;
  margin-bottom: 15px;
  padding: 5px; }

.progress.lable-on-top .progress-label.circle {
  font-size: 10px;
  line-height: 30px;
  right: -16px;
  width: 30px;
  height: 30px;
  margin-bottom: 6px; }

.progress.lable-on-top .progress-label:after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  content: '';
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: inherit; }

.progress.lable-on-top .progress-label.circle:after {
  bottom: -3px; }

.piechart {
  position: relative;
  margin-bottom: 15px;
  text-align: center; }

.piechart > canvas {
  display: inline-block; }

.piechart span {
  font-size: 30px;
  font-weight: 900; }

.piechart span::after {
  content: "%";
  font-size: 20px; }

.piechart.sm span::after {
  content: "%";
  font-size: 7px; }

.icon-wrapper.piechart span {
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  top: 11px;
  left: 17px; }

.map-canvas img {
  max-width: initial !important; }

.counter-wrapper {
  margin-bottom: 30px; }

.counter-wrapper i {
  margin-bottom: 15px; }

.counter-wrapper .bottom-line {
  margin-bottom: 30px; }

.number-counter {
  line-height: 1;
  font-size: 40px;
  margin: 0 0 15px; }

.panel-group .panel-title > a {
  display: block; }

.panel-group .panel-heading {
  position: relative;
  padding: 5px 15px; }

.panel-group .panel + .panel {
  margin-top: 0; }

.accordion-plus.panel-group .panel-title > a:after {
  font-family: FontAwesome;
  font-size: 14px;
  float: right;
  content: '\f068 '; }

.accordion-plus.panel-group .panel-title > a.collapsed:after {
  font-family: FontAwesome;
  font-size: 14px;
  content: '\f067 '; }

.accordion-arrow.panel-group .panel-title > a:after {
  font-family: FontAwesome;
  float: right;
  content: '\f107 '; }

.accordion-arrow.panel-group .panel-title > a.collapsed:after {
  font-family: FontAwesome;
  content: '\f105 '; }

.accordion-flat.panel-group .panel, .accordion-flat.panel-group .panel-heading {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -ms-box-shadow: none;
  -o-box-shadow: none; }

.accordion-bordered .panel-heading:after, .accordion-bordered-top .panel-heading:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  content: ''; }

.accordion-bordered-top .panel-heading:after {
  top: -1px;
  bottom: auto; }

.accordion-bordered .panel-group .panel-heading + .panel-collapse > .list-group, .accordion-bordered .panel-group .panel-heading + .panel-collapse > .panel-body {
  border: none; }

.panel-group.no-pad .panel-body, .panel-group.no-pad .panel-heading {
  padding-right: 0;
  padding-left: 0; }

.accordion-content-light .panel-body, .accordion-title-light .panel-default > .panel-heading {
  border-color: #e1e1e1;
  background: #fff; }

.accordion-content-dark .panel-body, .accordion-title-dark .panel-default, .accordion-title-dark .panel-default > .panel-heading {
  color: #fff;
  border-color: #7c7c7c;
  background: #333; }

.accordion-content-transparent .panel-body, .accordion-content-transparent .panel-default, .accordion-title-transparent .panel-default > .panel-heading {
  border-color: rgba(255, 255, 255, 0.2);
  background: 0 0; }

.accordion-transparent .panel-default {
  border-color: rgba(0, 0, 0, 0.5); }

.nav-tabs.text-center > li, .nav-tabs.text-right > li {
  display: inline-block;
  float: none; }

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
  background: 0 0; }

.tab-content {
  padding: 15px;
  border: 1px solid #e1e1e1; }

.tab-content.no-border {
  padding: 0;
  border: none; }

.tab-content .tab-pane {
  position: relative; }

.dark-bg.tab-content {
  border-color: #333; }

.tabs-left .nav-tabs, .tabs-right .nav-tabs {
  padding-top: 2px;
  border-bottom: none; }

.tabs-left .nav-tabs {
  padding: 0;
  border-right: 1px solid #e1e1e1; }

.tabs-right .nav-tabs {
  padding: 0;
  border-left: 1px solid #e1e1e1; }

.tabs-left .nav-tabs > li, .tabs-right .nav-tabs > li {
  float: none;
  margin-bottom: 2px; }

.tabs-left .nav-tabs > li > a, .tabs-right .nav-tabs > li > a {
  float: none;
  margin: 0 0 2px; }

.tabs-left .nav-tabs, .tabs-left .tab-content, .tabs-right .nav-tabs, .tabs-right .tab-content {
  display: table-cell;
  vertical-align: top; }

.tabs-right .tab-tabs {
  float: right; }

.tabs-left .tab-content {
  border-left: none; }

.tabs-right .tab-content {
  border-right: none; }

.tabs-left .nav-tabs > li.active > a, .tabs-left .nav-tabs > li.active > a:focus, .tabs-left .nav-tabs > li.active > a:hover {
  border-right-color: transparent; }

.tabs-right .nav-tabs > li.active > a, .tabs-right .nav-tabs > li.active > a:focus, .tabs-right .nav-tabs > li.active > a:hover {
  border-left-color: transparent; }

.tabs-left .nav-tabs > li > a {
  display: block;
  margin-right: 0;
  border-radius: 4px 0 0 4px; }

.tabs-right .nav-tabs > li > a {
  margin-right: 0;
  border-radius: 0 4px 4px 0; }

.pricing-wrapper {
  position: relative;
  text-align: center;
  border: 1px solid #e1e1e1;
  background: #fff; }

.pricing-wrapper .pricing-head {
  position: relative;
  z-index: 1;
  padding: 50px 15px 30px; }

.pricing-head .pricing-title {
  margin-bottom: 0; }

.price-sub {
  margin-top: 15px; }

.pricing-details .price, .pricing-head .price {
  font-size: 70px;
  position: relative;
  display: inline-block;
  margin-bottom: 0; }

.price.bottom-line {
  margin-bottom: 35px; }

.pricing-details .price > .duration, .pricing-details .price > .unit, .pricing-head .price > .duration, .pricing-head .price > .unit {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  top: 0;
  left: -10px;
  display: block; }

.pricing-details .price > .duration, .pricing-head .price > .duration {
  top: auto;
  right: auto;
  bottom: 0;
  left: 100%;
  min-width: 45px; }

.pricing-details ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.pricing-details ul > li {
  padding: 10px 0; }

.pricing-details li.li-border:before {
  position: relative;
  top: -10px;
  display: block;
  height: 1px;
  margin: 0 15px;
  content: '';
  border-top: 1px solid #e1e1e1; }

.pricing-details li:first-child:before {
  content: none; }

.pricing-btn-block {
  padding: 25px 15px 15px; }

.pricing-btn-block.pricing-btn1 {
  padding: 25px 15px 50px; }

.pricing-btn-block .btn {
  margin: 0; }

.pricing-wrapper.featured-price {
  margin: -25px -15px 0;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); }

.pricing-wrapper.featured-price .pricing-head {
  padding: 35px 15px; }

.pricing-wrapper .pricing-ribbon-wrapper {
  position: absolute;
  top: -3px;
  right: -4px;
  overflow: hidden;
  width: 85px;
  height: 88px; }

.pricing-wrapper .pricing-ribbon-wrapper .pricing-ribbon {
  font-size: 12px;
  position: relative;
  z-index: 9;
  top: 9px;
  left: -2px;
  width: 120px;
  padding: 5px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); }

.pricing-head.v-shape:after, .pricing-head.v-shape:before {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 50%;
  height: 101%;
  background: inherit;
  content: ''; }

.pricing-wrapper .pricing-ribbon-wrapper .pricing-ribbon:after, .pricing-wrapper .pricing-ribbon-wrapper .pricing-ribbon:before {
  position: absolute;
  bottom: -3px;
  content: '';
  border-top: 3px solid #333;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent; }

.pricing-wrapper .pricing-ribbon-wrapper .pricing-ribbon:before {
  left: 4px; }

.pricing-wrapper .pricing-ribbon-wrapper .pricing-ribbon:after {
  right: 3px; }

.price.bottom-line:after {
  right: 0;
  bottom: -30px;
  left: 0;
  margin: 0 auto; }

.pricing-head.v-shape {
  margin-bottom: 35px;
  padding-bottom: 10px !important; }

.pricing-head.v-shape:after {
  right: 0;
  -webkit-transform: skewY(-10deg);
  -moz-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  -o-transform: skewY(-10deg);
  transform: skewY(-10deg);
  -webkit-transform-origin: right top 0;
  -moz-transform-origin: right top 0;
  -ms-transform-origin: right top 0;
  -o-transform-origin: right top 0;
  transform-origin: right top 0; }

.pricing-head.v-shape:before {
  left: 0;
  -webkit-transform: skewY(10deg);
  -moz-transform: skewY(10deg);
  -ms-transform: skewY(10deg);
  -o-transform: skewY(10deg);
  transform: skewY(10deg);
  -webkit-transform-origin: left top 0;
  -moz-transform-origin: left top 0;
  -ms-transform-origin: left top 0;
  -o-transform-origin: left top 0;
  transform-origin: left top 0; }

.gallery-overlay:hover:before, .play-video a:before {
  font-family: FontAwesome;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  text-align: center; }

.pricing-wrapper .icon-wrapper {
  margin-bottom: 20px; }

.client-grid {
  width: 100%;
  list-style: none; }

.client-grid > li {
  position: relative;
  float: left;
  padding: 20px 0; }

.client-grid > li > img {
  margin: 0 auto; }

.client-grid > li:after, .client-grid > li:before {
  position: absolute;
  content: ''; }

.client-grid > li:before {
  left: -1px;
  width: 1px;
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.1); }

.client-grid > li:after {
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.client-grid.no-border > li:after, .client-grid.no-border > li:before {
  border: none; }

.client-grid.client-grid-6 > li {
  width: 16.66%; }

.client-grid.client-grid-5 > li {
  width: 20%; }

.client-grid.client-grid-4 > li {
  width: 25%; }

.client-grid.client-grid-3 > li {
  width: 33.3%; }

.client-grid.client-grid-2 > li {
  width: 50%; }

.client-grid.border-none > li:after, .client-grid.border-none > li:before {
  border: none !important; }

.gallery-overlay {
  position: relative;
  margin-right: 15px;
  margin-left: 15px;
  background: #171717; }

.gallery-overlay.circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -khtml-border-radius: 50%; }

.gallery-overlay.rounded {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px; }

.gallery-overlay:hover img {
  opacity: .5; }

.gallery-overlay:hover:before {
  font-size: 24px;
  position: absolute;
  left: 0;
  margin: 0 auto;
  content: '\f002';
  color: #fff; }

.gallery-overlay.play-video:hover:before {
  content: none; }

.play-video {
  position: relative; }

.play-video a:before {
  font-size: 60px;
  position: absolute;
  z-index: 9;
  left: 0;
  content: '\f01d';
  color: rgba(0, 0, 0, 0.5); }

.form-control, .form-control:focus {
  color: #333;
  border-color: #e1e1e1; }

.form-control.typo-light:focus {
  color: #a5a4a4; }

input.form-control {
  height: 40px; }

.contact-form input.form-control, .form-big input.form-control {
  height: 50px; }

label.checkbox-label {
  margin-left: 10px; }

.form-control, .form-control:focus, .has-error .form-control:focus, .has-success .form-control:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none; }

.input-group-addon, .input-group-btn .btn.btn-default {
  margin-bottom: 0;
  padding: 8px 14px;
  color: #fff; }

i.form-control-feedback {
  line-height: 34px; }

.contact-form .has-feedback label ~ .form-control-feedback {
  top: 39px; }

.form-flat .form-control, .form-flat .input-group-addon, .form-flat .input-group-btn .btn.btn-default {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

.form-dark .form-control {
  color: #fff;
  border-color: #7c7c7c;
  background: #333; }

.form-transparent .form-control {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: 0 0; }

.form-transparent .form-control::-moz-placeholder {
  opacity: 1;
  color: #ccc; }

.form-transparent .form-control::-webkit-input-placeholder {
  opacity: 1;
  color: #fff; }

.form-dark.form-transparent .form-control {
  border-color: rgba(0, 0, 0, 0.5);
  background: 0 0; }

.form-dark.form-transparent .form-control::-moz-placeholder {
  opacity: 1;
  color: #333; }

.form-dark.form-transparent .form-control::-webkit-input-placeholder {
  opacity: 1;
  color: #333; }

.form-theme .form-control {
  background: 0 0; }

.form-theme .form-control:focus {
  border-color: #7c7c7c; }

.form-box {
  padding: 40px;
  border: 1px solid #f7f7f7; }

.form-box.style1 {
  padding: 0;
  border: 4px double #f7f7f7; }

.form-box.style2, .form-box.style3 {
  border: none;
  background: rgba(0, 0, 0, 0.4); }

.form-box.style1 .custom-form {
  padding: 40px 80px; }

.form-box-title {
  font-weight: 800;
  padding: 30px 80px; }

.form-box.style3 {
  padding: 20px; }

.form-big .input-group-addon, .form-big .input-group-btn .btn.btn-default {
  margin-bottom: 0;
  padding: 13px 20px;
  color: #fff; }

.form-big i.form-control-feedback {
  line-height: 50px; }

.sitemap li {
  float: left;
  width: 25%; }

.contact-form .form-control {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -khtml-border-radius: 0; }

.inline-form .form-group {
  float: left;
  width: 49.2%; }

.inline-form .form-group:first-child {
  margin-right: 1.6%; }

.inline-form-3 .form-group {
  float: left;
  width: 32.3%;
  margin-right: 1%; }

.inline-form-3 .form-group:last-child {
  margin-right: 0 !important; }

.inline-form-4 .form-group {
  float: left;
  width: 24%;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-right: 1%; }

.inline-form-4 .form-group:last-child {
  margin-right: 0 !important; }

section.separator-section {
  z-index: auto;
  overflow: visible;
  padding-bottom: 160px; }

.curve-separator, .sep-btriangle, .sep-btriangle-left, .sep-btriangle-right, .slant-left, .slant-right {
  position: absolute;
  bottom: -1px; }

.sep-btriangle {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.sep-btriangle-right, .slant-right {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.curve-separator {
  z-index: 9;
  top: 100%;
  bottom: auto; }

.modal {
  background: rgba(0, 0, 0, 0.5); }

.modal-body {
  padding: 0 40px 40px; }

.modal-header {
  border: 0; }

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

.modal-dialog.sign-up {
  max-width: 400px; }

.more-link-inverse.text-white:focus, .more-link-inverse.text-white:hover, .text-white, .text-white-hover:hover, a.text-white {
  color: #fff !important; }

.more-link-inverse.text-light:focus, .more-link-inverse.text-light:hover, .text-light, a.text-light {
  color: #e7e7e7 !important; }

.more-link-inverse.text-lighter:focus, .more-link-inverse.text-lighter:hover, .text-lighter, a.text-lighter {
  color: #f5f5f5 !important; }

.more-link-inverse.text-black:focus, .more-link-inverse.text-black:hover, .text-black, a.text-black {
  color: #000 !important; }

.more-link-inverse.text-white:focus, .more-link-inverse.text-white:hover, .text-dark, a.text-dark {
  color: #555 !important; }

.more-link-inverse.text-darker:focus, .more-link-inverse.text-darker:hover, .text-darker, a.text-darker {
  color: #222 !important; }

.more-link-inverse.text-blue:focus, .more-link-inverse.text-blue:hover, .text-blue, a.text-blue {
  color: #3498db !important; }

.more-link-inverse.text-yellow:focus, .more-link-inverse.text-yellow:hover, .text-yellow, a.text-yellow {
  color: #ff6b57 !important; }

.more-link-inverse.text-green:focus, .more-link-inverse.text-green:hover, .text-green, a.text-green {
  color: #32c5d2 !important; }

.more-link-inverse.text-purple:focus, .more-link-inverse.text-purple:hover, .text-purple, a.text-purple {
  color: #b771b0 !important; }

.more-link-inverse.text-red:focus, .more-link-inverse.text-red:hover, .text-red, a.text-red {
  color: #eb5d68 !important; }

.more-link-inverse.text-gray:focus, .more-link-inverse.text-gray:hover, .text-gray, a.text-gray {
  color: #525e64 !important; }

.quote {
  font-size: 20px;
  font-weight: 300;
  position: relative;
  padding: 10px 0 10px 60px; }

.quote:after {
  font-family: arial;
  font-size: 85px;
  font-style: normal;
  position: absolute;
  top: 37px;
  left: 0;
  content: '“'; }

.client-bio {
  padding: 20px 0 0; }

.client-bio h6 {
  margin-bottom: 0; }

.posi {
  font-size: 15px;
  font-weight: 400; }

.meta-date, .occupation {
  font-size: 13px; }

.team-member-social i {
  margin: 5px; }

.member-detail {
  padding-top: 30px; }

.occupation {
  display: block; }

.client-says img {
  width: 100px !important;
  margin-bottom: 20px; }

.client-says.text-center img {
  margin: 0 auto 20px; }

.client-says .client-name {
  font-weight: 600;
  padding-top: 10px; }

.about-me-image {
  margin-top: -50px; }

.list-post {
  margin-bottom: 60px; }

.grid-post .post-item, .list-post .post-image, .post-title {
  margin-bottom: 30px; }

.grid-post .post-image img, .list-post .post-image img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -khtml-border-radius: 5px; }

.post-comments {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f7f7f7; }

.post-comments .comment-meta {
  font-size: 1.2rem; }

.comment-meta span:first-child {
  margin-left: 0; }

.comment-meta span {
  margin-right: 1rem;
  margin-left: 1rem; }

.comment-list ul, .post-comments .comment-content {
  margin-left: 10rem; }

.comment-list {
  margin-bottom: 0; }

.comment-list li {
  margin-bottom: 5rem;
  list-style: none; }

.comment-list li:last-child {
  margin-bottom: 0; }

.comment-list ul {
  margin-top: 5rem; }

.post-comments .comment-meta a {
  font-weight: 400; }

.post-comments .name {
  font-weight: 400;
  margin-bottom: 1rem; }

.comment-form textarea {
  min-height: 20rem; }

.post-comment-respond .comment-form .column {
  float: left; }

.post-author, .post-comment-respond, .post-comments {
  border-color: #eee; }

.post-comments .user-avatar {
  float: left;
  max-width: 7rem; }

.post-comments .comment-content, .post-comments .comment-content p {
  font-size: 14px; }

.comment-meta, .meta-list li {
  font-size: 13px; }

.post-comments .user-avatar img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }

.comment-reply-link {
  padding-left: 10px; }

.author-comments {
  padding: 20px;
  background: #f7f7f7; }

.z-index0 {
  z-index: 0; }

.z-index1 {
  z-index: 1; }

.z-index-1 {
  z-index: -1; }

.meta-list {
  margin: 0;
  padding: 0; }

.meta-list li {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 0 10px;
  list-style: none; }

.meta-list li:first-child {
  padding-left: 0; }

.meta-list li:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 12px;
  content: '';
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #999; }

.meta-list li:last-child:after {
  content: none; }

.meta-list li i {
  padding-right: 7px; }

.video-box {
  position: relative;
  overflow: hidden;
  height: 0;
  margin-bottom: 22px;
  padding-bottom: 56.25%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }

.video-box embed, .video-box iframe, .video-box object, .video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.audio-container.embed-container {
  line-height: 0; }

.audio, .video-box .fitvids {
  border: none; }

.right-sidebar .sidebar-content, .two-sidebar .sidebar-content {
  border-right: 1px solid #f7f7f7;
  padding-right: 30px; }

.sidebar-left-border, .sidebar-right-border, .two-sidebar .sidebar-content {
  border-left: 1px solid #f7f7f7; }

.sidebar-wrapper {
  padding: 0; }

.left-sidebar .sidebar-content {
  float: right;
  padding-left: 30px;
  border-left: 1px solid #f7f7f7; }

.two-sidebar .sidebar-content {
  padding-left: 30px; }

.left-sidebar .sidebar, .left-sidebar .sidebar-content, .right-sidebar .sidebar, .right-sidebar .sidebar-content, .two-sidebar .sidebar-content {
  padding-top: 80px;
  padding-bottom: 80px; }

.left-sidebar .sidebar {
  padding-right: 30px; }

.right-sidebar .sidebar {
  padding-left: 30px; }

.two-sidebar.right-sidebar .sidebar1 {
  padding-right: 30px !important;
  padding-left: 0 !important; }

.widget {
  margin-bottom: 40px; }

.widget-title {
  padding-bottom: 20px; }

.sidebar .widget-title {
  padding-bottom: 10px; }

.recent-item {
  margin-bottom: 25px; }

.recent-block .recent-img {
  float: left;
  width: 70px;
  min-height: 60px; }

.recent-block .recent-text {
  margin-left: 80px; }

.recent-title {
  font-size: 14px !important;
  margin-bottom: 5px; }

.tags-widget {
  display: table; }

.tags-widget li {
  float: left;
  margin: 0 3px 3px 0;
  list-style: none; }

.tags-widget li a {
  font-size: 14px;
  line-height: 30px;
  display: block;
  height: 30px;
  padding: 0 8px;
  text-decoration: none;
  background: #f7f7f7; }

.page-header, .page-header.default {
  padding: 80px 0;
  border: none;
  margin: 0; }

.page-header.default {
  border-bottom: 5px solid; }

.page-header.minimal {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03); }

.page-header h2.small, .page-header.minimal h2 {
  font-size: 21px;
  line-height: 35px;
  margin-top: 5px;
  margin-bottom: 0;
  text-transform: uppercase; }

.page-header.minimal p {
  margin-bottom: 5px; }

.breadcrumb {
  font-size: 12px;
  margin: 0;
  padding: 0;
  background: 0 0; }

.breadcrumb > li + li:before {
  content: '- '; }

.page-header.page-title-left .breadcrumb {
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  width: auto;
  margin: -10px 0 0;
  padding: 0;
  background: transparent; }

.product-filter, .product-meta {
  margin-bottom: 20px; }

.shop-review-tabs .comments, .shop-review-tabs .review-rating {
  margin-top: 30px; }

.typo-light .breadcrumb > .active {
  color: #f7f7f7; }

.typo-dark .breadcrumb > .active {
  color: #333; }

.shop-section .product-title {
  padding: 25px 0 0; }

.product-meta, .product-meta a, .product-result-count, .shop-section .product-price del .amount {
  color: #999; }

.mid-title {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  padding: 10px 7px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%); }

.product-filter {
  float: right; }

.product-filter .nav-pills .dropdown {
  min-width: 200px;
  border: 1px solid #ccc; }

.product-filter .nav-pills .dropdown-menu {
  min-width: 200px;
  margin-left: -1px; }

.product-filter .nav-pills li a, .product-meta, .product-meta a {
  font-size: 14px;
  font-weight: 300;
  padding: 2px 15px;
  color: #999; }

.product-filter .nav-pills .dropdown-toggle .caret {
  position: absolute !important;
  top: 50% !important;
  right: 15px !important; }

.product-content, .shop-review-tabs .comment-list li {
  margin-bottom: 30px; }

.product-meta span {
  font-size: 13px;
  display: block; }

.product-meta, .product-meta a {
  padding: 2px 5px; }

.product-rating {
  font-size: 14px;
  float: right; }

.shop-review-tabs .tab-content {
  padding: 30px 0;
  border: none; }

.shop-review-tabs .nav-tabs {
  border-bottom: 4px double #e1e1e1; }

.shop-review-tabs .nav-tabs li a {
  border-color: transparent !important; }

.shop-review-tabs .nav-tabs li.active a {
  border-color: #e1e1e1 !important; }

#pageloader {
  position: fixed;
  z-index: 99999;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff; }

#pageloader .loader-inner {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: translateY(-47%); }

#pageloader .loader-inner img {
  margin: 0 auto; }

.footer {
  font-size: 15px; }

.footer-top {
  padding-top: 120px;
  padding-bottom: 30px; }

.footer-bottom {
  font-size: 13px;
  padding: 20px 0; }

address .feature-box {
  margin-bottom: 10px; }

address .feature-box i {
  margin: 0 !important; }

address .icon-wrapper i.fa {
  margin-top: 7px !important; }

.footer-social-icons {
  margin-bottom: 0; }

.footer-social-icons > li {
  display: inline-block;
  padding: 0 10px; }

.footer-bottom-links {
  display: inline-block;
  margin-bottom: 0; }

.footer-bottom-links > li {
  position: relative;
  display: inline-block; }

.footer-bottom-links > li:last-child {
  border-right: 0; }

.footer-bottom-links > li:after {
  position: absolute;
  top: 30%;
  right: -2px;
  width: 1px;
  height: 10px;
  content: ''; }

.footer.light-bg .footer-bottom-links > li:after {
  background: #eee; }

.footer.dark-bg .footer-bottom-links > li:after {
  background: #aeadad; }

.footer-bottom-links > li:last-child:after {
  content: none; }

.footer-bottom-links > li a {
  font-size: 12px;
  padding: 0 10px; }

.footer-bottom-links > li a:hover {
  text-decoration: underline; }

.footer-widgets .menu li {
  float: left;
  width: 50%; }

.footer .footer-top-border, .footer.light-bg .footer-top-border {
  border-top: 1px solid #eee; }

.footer.dark-bg .footer-top-border {
  border-top: 1px solid #3b3a3a; }

.footer.light-bg, .footer.light-bg .footer-bottom-links > li a:hover, .footer.light-bg .footer-bottom-links > li:after, .footer.light-bg .footer-bottom-links > li:last-child:after, .footer.light-bg p {
  color: #666; }

.footer.dark-bg, .footer.dark-bg .footer-bottom-links > li a:hover, .footer.dark-bg .footer-bottom-links > li:after, .footer.dark-bg .footer-bottom-links > li:last-child:after, .footer.dark-bg p {
  color: #aeadad; }

.footer.dark-bg a {
  color: inherit; }

.footer.dark-bg .a-active:hover {
  color: #aeadad !important; }

.footer.light-bg .a-active:hover {
  color: #666 !important; }

.footer.dark-bg .form-control, .footer.dark-bg .form-control:focus, .footer.dark-bg h1, .footer.dark-bg h2, .footer.dark-bg h3, .footer.dark-bg h4, .footer.dark-bg h5, .footer.dark-bg h6 {
  color: #bbb; }

.l-child {
  padding-right: 0 !important; }

.footer .btn, .form-group .btn, .input-group .input-group-btn .btn, .news-letter-form .btn {
  margin-top: 0 !important; }

.footer.full-image {
  padding-bottom: 260px;
  background-position: bottom; }

#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  background: #444;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  color: #f7f7f7;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: opacity .2s ease-out;
  opacity: 0; }

#back-to-top:after {
  content: "\f106";
  font-family: FontAwesome;
  position: relative; }

#back-to-top:hover {
  background: #000; }

#back-to-top.show {
  opacity: 1; }

.column-5 {
  position: relative; }

.column-5 .c-col-5 {
  float: left;
  width: 20%;
  padding: 0 15px; }

.separate-bg:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  content: ''; }

.separate-bg.s-style1:after {
  margin-right: -100px;
  transform: skew(-10deg); }

.s-left {
  padding-right: 80px; }

.s-right {
  padding-left: 80px; }

.separate-bg.ss1:after {
  width: 60%; }

.separate-bg .container {
  position: relative;
  z-index: 4; }

@media only screen and (max-width: 768px) {
  .column-5 .c-col-5 {
    float: none;
    width: 100%;
    padding: 0 15px; } }

.timeline-v, .timeline-v li {
  padding: 1em 0; }

.timeline-v {
  position: relative;
  width: 660px;
  margin: 20px auto 0;
  list-style-type: none; }

.timeline-v.timeline-blog {
  width: 100%; }

.timeline-v:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: ' ';
  display: block;
  width: 6px;
  height: 100%;
  margin-left: -3px;
  background: #505050;
  background: -moz-linear-gradient(top, rgba(80, 80, 80, 0) 0, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #1e5799), color-stop(100%, #7db9e8));
  background: -webkit-linear-gradient(top, rgba(80, 80, 80, 0) 0, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: -o-linear-gradient(top, rgba(80, 80, 80, 0) 0, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: -ms-linear-gradient(top, rgba(80, 80, 80, 0) 0, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: linear-gradient(to bottom, rgba(80, 80, 80, 0) 0, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  z-index: 5; }

.direction-l, .direction-r {
  width: 300px;
  position: relative; }

.timeline-v li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.direction-l {
  float: left;
  text-align: right; }

.direction-r {
  float: right; }

.timeline-blog .direction-l, .timeline-blog .direction-r {
  width: 47.3%; }

.flag-wrapper {
  position: relative;
  display: inline-block;
  text-align: center; }

.flag {
  position: relative;
  display: inline;
  background: #f8f8f8;
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: 600;
  text-align: left; }

.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15); }

.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15); }

.direction-l .flag:before, .direction-r .flag:before {
  position: absolute;
  top: 50%;
  right: -40px;
  content: ' ';
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border-radius: 10px;
  border: 4px solid;
  z-index: 10; }

.direction-l .flag:after, .direction-r .flag:after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  margin-top: -8px;
  pointer-events: none;
  top: 50%; }

.direction-r .flag:before {
  left: -40px; }

.direction-l .flag:after {
  left: 100%;
  border: solid transparent;
  border-left-color: #f8f8f8;
  border-width: 8px; }

.direction-r .flag:after {
  right: 100%;
  border: solid transparent;
  border-right-color: #f8f8f8;
  border-width: 8px; }

.time-wrapper {
  display: inline;
  line-height: 1em;
  font-size: .66666em;
  color: #fa5050;
  vertical-align: middle; }

.direction-l .time-wrapper {
  float: left; }

.direction-r .time-wrapper {
  float: right; }

.time {
  display: inline-block;
  padding: 4px 6px;
  background: #f8f8f8; }

.desc {
  margin: 1em .75em 0 0;
  font-size: .77777em;
  font-style: italic;
  line-height: 1.5em; }

.direction-r .desc {
  margin: 1em 0 0 .75em; }

@media screen and (max-width: 660px) {
  .timeline-v {
    width: 100%;
    padding: 4em 0 1em; }
  .timeline-v li {
    padding: 2em 0; }
  .direction-l, .direction-r {
    float: none;
    width: 100%;
    text-align: center; }
  .flag-wrapper {
    text-align: center; }
  .flag {
    background: #fff;
    z-index: 15; }
  .direction-l .flag:before, .direction-r .flag:before {
    position: absolute;
    top: -30px;
    left: 50%;
    content: ' ';
    display: block;
    width: 20px;
    height: 20px;
    margin-left: -9px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid;
    z-index: 10; }
  .direction-l .flag:after, .direction-r .flag:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -8px;
    height: 0;
    width: 0;
    margin-left: -8px;
    border: solid transparent;
    border-bottom-color: #fff;
    border-width: 8px;
    pointer-events: none; }
  .time-wrapper {
    display: block;
    position: relative;
    margin: 4px 0 0;
    z-index: 14; }
  .direction-l .time-wrapper, .direction-r .time-wrapper {
    float: none; }
  .desc {
    position: relative;
    margin: 1em 0 0;
    padding: 1em;
    background: #f5f5f5;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 15; }
  .direction-l .desc, .direction-r .desc {
    position: relative;
    margin: 1em 1em 0;
    padding: 1em;
    z-index: 15; } }

@media screen and (min-width: 400px) and (max-width: 660px) {
  .direction-l .desc, .direction-r .desc {
    margin: 1em 4em 0; } }

.cd-horizontal-timeline ol, .cd-horizontal-timeline ul {
  list-style: none; }

.cd-horizontal-timeline li, .cd-horizontal-timeline ol, .cd-horizontal-timeline ul {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

.cd-horizontal-timeline {
  opacity: 0;
  margin: 0 auto;
  -webkit-transition: opacity .2s;
  -moz-transition: opacity .2s;
  transition: opacity .2s; }

.cd-horizontal-timeline::before {
  content: 'mobile';
  display: none; }

.cd-horizontal-timeline.loaded {
  opacity: 1; }

.cd-horizontal-timeline .timeline {
  position: relative;
  height: 100px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto; }

.cd-horizontal-timeline .timeline:before {
  background: 0 0; }

.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden; }

.cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 20px; }

.cd-horizontal-timeline .events {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 49px;
  height: 2px;
  background: #dfdfdf;
  -webkit-transition: -webkit-transform .4s;
  -moz-transition: -moz-transform .4s;
  transition: transform .4s; }

.cd-horizontal-timeline .filling-line {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform .3s;
  -moz-transition: -moz-transform .3s;
  transition: transform .3s; }

.cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1.3rem;
  padding-bottom: 15px;
  color: #383838;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

.cd-horizontal-timeline .events a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  background-color: #f8f8f8;
  -webkit-transition: background-color .3s,border-color .3s;
  -moz-transition: background-color .3s,border-color .3s;
  transition: background-color .3s,border-color .3s; }

.cd-horizontal-timeline .events a.selected {
  pointer-events: none; }

@media only screen and (min-width: 1100px) {
  .cd-horizontal-timeline::before {
    content: 'desktop'; } }

.cd-timeline-navigation a {
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: border-color .3s;
  -moz-transition: border-color .3s;
  transition: border-color .3s; }

.cd-timeline-navigation a::after {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(../images/base/cd-arrow.svg) no-repeat; }

.cd-timeline-navigation a.prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg); }

.cd-timeline-navigation a.next {
  right: 0; }

.cd-timeline-navigation a.inactive {
  cursor: not-allowed; }

.cd-timeline-navigation a.inactive::after {
  background-position: 0 -16px; }

.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf; }

.cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  margin: 2em 0;
  overflow: hidden;
  -webkit-transition: height .4s;
  -moz-transition: height .4s;
  transition: height .4s; }

.cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-animation-duration: .4s;
  -moz-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; }

.cd-horizontal-timeline .events-content li.selected {
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

.cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right; }

.cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left; }

.cd-horizontal-timeline .events-content li.leave-left, .cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse; }

.cd-horizontal-timeline .events-content li > * {
  max-width: 100%; }

.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto; }

.cd-horizontal-timeline .events-content em::before {
  content: '- '; }

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@-moz-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }

@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@-moz-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }

@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); } }

.countdown-block {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.countdown-row, .special-btn {
  position: relative; }

.countdown-rtl {
  direction: rtl; }

.daycounter-container {
  margin: 0 aut0; }

.countdown-holding span {
  color: #888; }

.countdown-row {
  display: inline-block;
  clear: both;
  margin: 0 auto;
  padding: 0;
  text-align: center; }

.countdown-section {
  font-size: 75%;
  line-height: 100px;
  position: relative;
  display: block;
  float: left;
  width: 85px;
  height: 100px;
  margin: 15px;
  padding-left: 5px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7); }

.countdown-amount {
  font-family: arial,sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff; }

.countdown-period {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  display: block; }

.countdown-descr {
  display: block;
  width: 100%; }

.image-wrapper.border {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.9); }

.special-btn .btn, .top-social {
  position: absolute; }

.special-btn .btn:focus, .special-btn .btn:hover {
  background: #333 !important; }

.top-social {
  right: 0;
  left: 0; }

.footer-top-border5 {
  border-top: 5px solid; }

.special-btn .center-btn {
  display: inline-block;
  padding: 10px 20px; }

.cta-text {
  font-size: 19px;
  float: left;
  padding: 29px 0 27px; }

.cta-btn {
  float: right;
  padding: 23px 0 22px; }

.cta-btn button:last-child {
  margin-left: 7px !important; }

.footer .btn-hv-dark:hover {
  background: #000; }

.item-new, .new-popup {
  background: red;
  color: #fff;
  position: absolute; }

.bottom-shadow, .btn.bottom-shadow {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2) !important;
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2) !important; }

.bottom-shadow1, .btn.bottom-shadow1 {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6) !important;
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6) !important;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6) !important; }

.no-overflow, section.no-overflow {
  overflow: inherit !important; }

.no-overflow.up-lg {
  padding-bottom: 250px; }

.no-overflow.up-md {
  padding-bottom: 150px; }

.top-up-lg {
  margin-top: -250px; }

.top-up-md {
  margin-top: -160px; }

.demo-showcase .feature-image {
  padding: 15px; }

.demo-showcase .feature-image img {
  box-shadow: -1px 3px 7px rgba(0, 0, 0, 0.1);
  opacity: .8; }

.demo-showcase .feature-box:hover .feature-image img {
  opacity: 1; }

.item-new {
  top: -15px;
  font-size: 8px;
  padding: 2px 4px 0; }

.item-new1 {
  background: red;
  color: #fff;
  font-size: 9px;
  line-height: 10px;
  margin-left: 10px;
  padding: 2px 4px 1px;
  position: absolute; }

.new-popup {
  width: 40px;
  height: 40px;
  font-size: 11px;
  font-weight: 500;
  line-height: 40px;
  margin: 0 auto;
  left: 0;
  top: 0; }

.blink_me {
  animation: blinker 1s linear infinite;
  -moz-animation: blinker 1s linear infinite;
  -webkit-animation: blinker 1s linear infinite; }

@keyframes blinker {
  50% {
    opacity: 0; } }

/*=======================THEME RESPONSIVE STYLES ===============================
==================================================================*/
@media only screen and (min-width: 1024px) {
  .header-top-section > .container, .header-top-section > .container-fluid {
    padding: 0; }
  .header-contact-details, .header-social-icons, .header-text-block {
    padding: 0 15px; }
  #nav-menu .navbar-right {
    margin: 0; }
  .navbar-nav > li > a > .menu-icon {
    font-size: 12px;
    padding: 0 5px; }
  .navbar-nav > li > a > .menu-icon.position-center {
    display: block;
    padding: 0;
    text-align: center; }
  .dropdown-menu > .dropdown > a:after {
    font-family: FontAwesome;
    font-size: 80%;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    top: 50%;
    right: 15px;
    content: '\f054';
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-decoration: inherit; }
  .navbar-nav .mega-menu-wrapper li:hover > a {
    background: 0 0; }
  .nav > li.mega-dropdown {
    position: static; }
  .dropdown-menu.mega-menu-wrapper {
    right: 0;
    left: 0;
    margin: 0 auto;
    padding: 0; }
  .dropdown-menu.mega-menu-wrapper .mega-menu-col {
    padding: 20px 10px 15px; }
  .dropdown-menu.mega-menu-wrapper .menu-title {
    font-weight: 800; }
  .dropdown .dropdown-menu.mega-menu {
    position: relative;
    display: block;
    visibility: visible;
    width: 100%;
    opacity: 1;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none; }
  .dropdown-menu > li > a {
    padding: 12px 15px; }
  .mega-menu-wrapper > li > a {
    position: relative;
    padding: 5px 15px; }
  .mega-menu-wrapper > li {
    border-right: 1px solid; }
  .mega-menu-wrapper > li:last-child {
    border: none; }
  .extra-nav > .navbar-nav {
    position: relative; }
  .extra-nav > .navbar-nav:after {
    position: absolute;
    top: 50%;
    right: 0;
    left: -2px;
    width: 1px;
    height: 28px;
    content: '';
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-left: 1px solid #e1e1e1; }
  .header-logo-right .navbar-header {
    float: right; }
  .header-logo-right #nav-menu > .navbar-nav > li:first-child > a {
    padding-left: 0; }
  .header-logo-right .navbar-header .navbar-brand {
    margin-right: -15px; }
  .header-logo-top-center .navbar-brand, .header-logo-top-center .navbar-default, .header-logo-top-center .navbar-header {
    width: 100%;
    text-align: center; }
  .header-logo-top-center #extra-nav, .header-logo-top-center #nav-menu {
    display: inline-block; }
  .header-logo-top-center #nav-menu:before {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #e1e1e1; }
  .header-logo-center .navbar-brand {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: auto;
    text-align: center; }
  .circle-bg {
    width: 500px;
    height: 500px;
    padding: 70px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }
  .circle-bg.text-center {
    margin: 0 auto; }
  .header-vertical {
    width: auto;
    margin-left: 280px; }
  .header-vertical .side-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 280px;
    height: 100%; }
  .header-vertical .side-nav .navbar {
    padding: 40px; }
  .bottom-wrapper .header-social-icons {
    margin: 0 0 1em; }
  .f-child, .f-child > li:first-child > a {
    padding-left: 0 !important; } }

@media only screen and (max-width: 1023px) {
  .header-semi-dark, .header-semi-light, .header-top-semi-dark, .header-top-semi-light, .header-top-transparent, .header-transparent {
    position: relative; }
  .header-vertical .side-nav .navbar-toggle {
    display: block;
    margin-top: 21px;
    border: none !important; }
  .header-vertical .dark-side-nav.side-nav .navbar-toggle .icon-bar {
    background: #fff !important; }
  .header-main .navbar-toggle, .header-toggle-content, .header-vertical .header-main .navbar-toggle, .header-vertical .header-toggle-content, .header-vertical .navbar-brand, .header-vertical .navbar-nav > li > a, .header-vertical.navbar-nav > li .extra-menu-item, .navbar-brand, .navbar-nav > li .extra-menu-item, .navbar-nav > li > a {
    line-height: 60px;
    height: 60px; }
  .mm-opened .navbar-nav > li, .mm-opened .navbar-right {
    float: none !important; }
  .header-boxed {
    margin-top: 0 !important; }
  .menu-toggle {
    padding: 0 !important; }
  .header-main .navbar-toggle, .header-top-section .navbar-toggle {
    display: block;
    margin: 0; }
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: 0; }
  .header-main.is-sticky .navbar-toggle {
    line-height: 70px;
    height: 70px; }
  .extra-nav .navbar-nav > li > a, .navbar-nav > li > .extra-menu-item {
    padding: 0 10px; }
  .mm-panel .dropdown-menu a, .mm-panel .dropdown-menu > li > a, .mm-panel .nav > li > a, .mm-panel .sub-menu a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase; }
  .mm-title {
    text-transform: uppercase; }
  .mm-listview .btn {
    margin: 0 !important; }
  .header-top-section .navbar-right, .header-top-section .top-left {
    text-align: center; }
  .header-main .navbar-header, .header-top-section .simple-search-form {
    display: inline-block; }
  .header-dark.header-transparent, .header-dark.header-transparent .dropdown-menu, .header-dark.header-transparent .sticky-wrapper {
    position: relative;
    background: #171717; }
  .dropdown-menu, .extra-nav .nav > li.search-dropdown {
    position: static; }
  .dropdown-menu, .dropdown-menu > li > a.mm-next:focus, .dropdown-menu > li > a.mm-next:hover, .nav > li > a.mm-next:focus, .nav > li > a.mm-next:hover {
    background: 0 0; }
  #nav-menu .navbar-nav > li > a {
    line-height: normal;
    height: auto;
    padding: 10px 10px 10px 20px; }
  .navbar-nav > li > a > .menu-icon {
    display: none; }
  .dropdown-menu {
    float: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -ms-box-shadow: none;
    -o-box-shadow: none; }
  .extra-nav, .header-main .simple-search-wrapper {
    float: right; }
  #nav-menu .dropdown .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1; }
  .dropdown-toggle .caret {
    display: none; }
  .cart-toggle .cart-count {
    top: -13px; }
  .extra-nav > ul.navbar-nav {
    margin: 0; }
  .extra-nav .nav > li {
    display: inline-block;
    font-size: 20px; }
  .extra-nav .navbar-nav.navbar-right {
    margin-right: 0; }
  .dropdown .dropdown-menu.dropdown-cart {
    position: absolute;
    right: 0;
    left: auto; }
  .navbar-nav .open .flag-dropdown.dropdown-menu {
    position: absolute;
    right: 0;
    left: 0;
    max-width: 85px;
    margin: 0 auto;
    border: 1px solid #e1e1e1;
    background: #fff; }
  .circle-bg {
    padding: 50px; }
  .copyright, .footer-social-icons {
    text-align: center !important; }
  .cta-btn, .cta-text {
    text-align: center;
    float: none; }
  .cta-text {
    padding: 30px 0 10px; }
  .cta-btn {
    padding: 10px 0 30px; }
  .single-screen .top-padding-lg, .single-screen .top-padding-xlg {
    padding-top: 20px !important; }
  .pad-md {
    padding-right: 15px !important;
    padding-left: 15px !important; }
  .page-header.page-title-left .breadcrumb {
    position: relative;
    right: auto;
    margin-top: 5px; }
  .sidebar .recent-block .recent-img {
    float: none; }
  .sidebar .recent-block .recent-text {
    margin-top: 15px;
    margin-left: 0; }
  .two-sidebar .sidebar-content {
    float: none;
    padding: 80px 15px 20px;
    border-left: none; }
  .two-sidebar.right-sidebar .sidebar {
    padding-right: 15px !important;
    padding-left: 15px !important; }
  .left-sidebar .sidebar-content, .right-sidebar .sidebar-content {
    float: none;
    padding: 80px 15px 20px;
    border-right: none;
    border-left: none; }
  .left-sidebar .sidebar, .right-sidebar .sidebar, .two-sidebar.right-sidebar .sidebar1 {
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px; }
  .sitemap li {
    width: 33.33%; }
  .post-image-sm {
    padding-bottom: 30px; } }

@media only screen and (max-width: 768px) {
  .header-main .navbar-toggle {
    margin-right: 0 !important;
    margin-left: 15px !important; }
  .client-grid > li {
    width: 33.333% !important; }
  .separate-bg {
    width: 100%;
    height: 350px;
    margin-bottom: -350px; }
  .s-left, .s-right {
    height: auto;
    padding-top: 350px;
    padding-right: 15px;
    padding-left: 15px; }
  .separate-bg.s-style1:after, .separate-bg:after {
    width: auto;
    margin-right: 0;
    transform: skew(0); }
  .slider-section.half-screen .owl-carousel .vertical-middle, .slider-section.single-screen .full-screen .vertical-middle, .slider-section.single-screen .owl-carousel .vertical-middle {
    position: relative;
    top: 0;
    padding: 0 !important;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none; }
  .single-screen {
    padding-top: 50px !important;
    padding-bottom: 50px !important; }
  .single-screen .top-padding-lg, .single-screen .top-padding-xlg {
    padding-top: 20px !important; }
  .slider-section.half-screen .owl-carousel .owl-controls .owl-nav div {
    top: 100px !important; }
  .half-screen .semi-dark-bg {
    background: rgba(0, 0, 0, 0.9); }
  .sitemap li {
    width: 50%; }
  p:last-child {
    margin-bottom: 10px; }
  .owl-carousel h2.top-padding, .owl-carousel h2.top-padding-lg {
    padding-top: 10px !important; }
  .owl-carousel h2.medium1 {
    font-size: 35px !important;
    line-height: 43px !important; } }

@media only screen and (min-width: 680px) {
  .nav-tabs.nav-tab-style1 > li > a {
    padding: 20px; }
  .nav-tabs.nav-tab-style1 > li.active > a, .nav-tabs.nav-tab-style1 > li.active > a:focus, .nav-tabs.nav-tab-style1 > li > a {
    margin: -4px;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999; }
  .nav-tabs.nav-tab-style1 > li:first-child > a, .nav-tabs.nav-tab-style1 > li:first-child > a:focus {
    padding-left: 50px;
    border-left: 1px solid #999;
    border-radius: 50px 0 0 50px; }
  .nav-tabs.nav-tab-style1 > li:last-child > a, .nav-tabs.nav-tab-style1 > li:last-child > a:focus {
    padding-right: 50px;
    border-right: 1px solid #999;
    border-radius: 0 50px 50px 0; } }

@media only screen and (max-width: 680px) {
  .big, .medium, .medium1 {
    font-size: 48px !important; }
  #pp_full_res iframe, #pp_full_res img, .pp_content, .pp_fade {
    height: 100% !important;
    width: 100% !important; }
  .big {
    line-height: 48px; }
  .medium, .medium1 {
    line-height: 48px !important; }
  .inline-form .form-group {
    float: none;
    width: 100%; }
  .inline-form .form-group:first-child {
    margin-right: 0; }
  .form-box-title, .form-box.style1 .custom-form {
    padding: 20px !important; }
  .inline-form-4 .form-group {
    width: 48%; }
  .inline-form-4 .form-group, .inline-form-4 .form-group:last-child {
    margin-right: 1% !important;
    margin-left: 1% !important; }
  .pp_pic_holder.pp_default {
    width: 90% !important;
    left: 5% !important;
    right: 5% !important; }
  .pp_details {
    width: 100% !important;
    margin-top: -2px !important;
    padding: 20px 4% 10px 3%; }
  a.pp_close {
    right: 10px !important;
    top: 20px !important; }
  div.pp_default .pp_content_container .pp_right {
    padding-right: 18px; } }

@media only screen and (max-width: 480px) {
  .toggled #side-nav {
    width: 100%; }
  .slider-content h2 {
    font-size: 18px;
    line-height: 28px; }
  .big, h2.big {
    font-size: 45px !important;
    line-height: 48px; }
  .medium, .medium1, .medium2, h2.medium {
    font-size: 45px !important;
    line-height: 48px !important; }
  .owl-carousel h2.medium1 {
    font-size: 20px !important;
    line-height: 25px !important; }
  .owl-carousel h2.top-padding, .owl-carousel h2.top-padding-lg {
    padding-top: 10px !important; }
  .owl-carousel.navigation-transparent .owl-controls .owl-nav .owl-next::after, .owl-carousel.navigation-transparent .owl-controls .owl-nav .owl-prev::after {
    font-size: 25px; }
  .owl-controls .owl-nav > div {
    height: 30px;
    line-height: 30px;
    width: 30px; }
  .slider-content p {
    font-size: 8px; }
  .slider-content .btn, .slider-content .btn.btn-lg {
    font-size: 14px;
    margin-bottom: 15px;
    padding: 8px 15px; }
  .navbar-nav > li > a.header-toggle-icon {
    font-size: 12px;
    padding: 0 5px; }
  .client-grid > li {
    width: 50% !important; }
  .countdown-section {
    font-size: 75%;
    line-height: 80px;
    position: relative;
    display: block;
    float: left;
    width: 50px;
    height: 80px;
    margin: 5px;
    padding-left: 5px; }
  .countdown-amount {
    font-family: arial,sans-serif;
    font-size: 20px; }
  .sitemap li {
    width: 100%; }
  .inline-form-4 .form-group {
    float: none;
    width: 99%; }
  .dropdown .dropdown-menu.dropdown-cart {
    margin-right: -50px !important; }
  .process-step {
    top: -56px; }
  .style-box .process-step {
    top: 0; }
  .nav-tabs > li {
    float: left !important;
    width: 50% !important; }
  #back-to-top {
    bottom: 20px;
    right: 20px; } }

@media only screen and (max-width: 340px) {
  .cta-btn button:last-child {
    display: block;
    margin: 10px auto !important; }
  .medium, .medium1, .medium2, h2.medium {
    font-size: 38px !important;
    line-height: 48px !important; }
  .btn.right-pad {
    margin-right: 0; }
  .btn.left-pad {
    margin-left: 0; } }

/*------ COLOR SCHEME ------*/
a:focus,
a:hover {
  color: #e54234; }

.theme-bg,
.separate-bg.s-theme:after,
.style-box .process-step,
.border-style1:hover,
.cd-horizontal-timeline .events a.selected::after,
.no-touch .cd-horizontal-timeline .events a:hover::after,
.cd-horizontal-timeline .filling-line {
  background: #e54234; }

.text-color,
.text-color,
.text-color h1,
.text-color h2,
.text-color h3,
.text-color h4,
.text-color h5,
.text-color h6,
.text-color p,
.text-color a,
.text-color,
h1.text-color,
h2.text-color,
h3.text-color,
h4.text-color,
h5.text-color,
h6.text-color,
p.text-color,
a.text-color,
.footer.dark-bg a:hover,
.recent-item:hover a .recent-title,
.breadcrumb > .active,
.page-header.default,
.play-video a:hover:before,
.header-transparent .toggle-close,
ul.check-list li:before {
  color: #e54234; }

.a-active,
.light-style a.active,
.light-style a.hover,
.light-style a.focus {
  color: #e54234 !important; }

.separate-bg.s-semitheme:after {
  background: rgba(229, 66, 52, 0.6); }

.direction-l .flag:before,
.direction-r .flag:before,
.cd-horizontal-timeline .events a.selected::after,
.cd-horizontal-timeline .events a.older-event::after,
.no-touch .cd-horizontal-timeline .events a:hover::after,
.no-touch .cd-timeline-navigation a:hover {
  border-color: #e54234; }

/* ===================================================================
							HEADER
======================================================================*/
/* HEADER TOP */
.header-top-section.navbar,
.cart-toggle .cart-count {
  background: #e54234; }

.header-top-transparent .header-top-section .navbar-nav > li > a:hover,
.header-top-transparent .header-top-section .navbar-nav > li > a:focus,
.header-top-transparent .header-top-section .navbar-nav li:hover > a,
.header-top-transparent .header-top-section .navbar-nav li:focus > a,
.header-top-semi-light .header-top-section .navbar-nav > li > a:hover,
.header-top-semi-light .header-top-section .navbar-nav > li > a:focus,
.header-top-semi-light .header-top-section .navbar-nav li:hover > a,
.header-top-semi-light .header-top-section .navbar-nav li:focus > a,
.header-top-semi-dark .header-top-section .navbar-nav > li > a:hover,
.header-top-semi-dark .header-top-section .navbar-nav > li > a:focus,
.header-top-semi-dark .header-top-section .navbar-nav li:hover > a,
.header-top-semi-darkt .header-top-section .navbar-nav li:focus > a,
.header-top-light .header-top-section .navbar-nav > li > a:hover,
.header-top-light .header-top-section .navbar-nav > li > a:focus,
.header-top-light .header-top-section .navbar-nav li:hover > a,
.header-top-light .header-top-section .navbar-nav li:focus > a {
  color: #e54234; }

.navbar-default .navbar-nav.nav li:hover > a,
.navbar-default .navbar-nav li.active > a:hover,
.navbar-default .navbar-nav li.active > a:focus,
.navbar-default .navbar-nav li.active > a,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .nav .open > a,
.dropdown.open > a,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
.navbar-default .nav .open > a:focus,
.navbar-default .nav .open > a:hover,
.side-nav li > a:focus,
.side-nav li > a:hover,
.header-dropdown-dark .item-info a:hover,
.header-dropdown-dark .is-sticky .item-info a:hover,
.header-top-section.dark-bg .navbar-nav li > a:hover {
  color: #e54234; }

/* ===================================================================
							CONTENT
======================================================================*/
/* Page Title */
.bottom-line:after {
  background: #e54234; }

.bottom-line:after,
.side-line:before {
  border-color: #e54234; }

/* ===================================================================
							BUTTONS
======================================================================*/
.btn-theme,
.btn-hv-theme:hover,
.btn-hv-theme:focus,
.btn-hv-theme:active,
.btn-hv-theme:active:focus,
.btn-hv-theme:active:hover,
.btn-hv-theme.btn-outline:hover,
.btn-hv-theme.btn-outline:focus,
.btn-hv-theme.btn-outline:active,
.btn-hv-theme.btn-outline:active:focus,
.btn-hv-theme.btn-outline:active:hover,
.btn.btn-outline.btn-theme.btn-hv-fadein:hover {
  border-color: #e54234;
  background: #e54234; }

.btn-theme.btn-outline {
  color: #e54234; }

.btn-theme.btn-hv-fadeout:hover,
.btn-theme.btn-outline {
  border-color: #e54234; }

.btn.btn-hv-theme:after,
.btn.btn-hv-theme.btn-outline:after {
  background: #e54234; }

.btn.btn-theme.btn-hvfill-right:hover,
.btn.btn-theme.btn-hvfill-left:hover,
.btn.btn-theme.btn-hvfill-top:hover,
.btn.btn-theme.btn-hvfill-bottom:hover,
.btn.btn-theme.btn-hvborder-right:hover,
.btn.btn-theme.btn-hvborder-left:hover,
.btn.btn-theme.btn-hvborder-center:hover {
  background: #e54234; }

.btn.btn-outline.btn-theme.btn-hvborder-right:hover,
.btn.btn-outline.btn-theme.btn-hvborder-left:hover,
.btn.btn-outline.btn-theme.btn-hvborder-center:hover {
  color: #e54234 !important;
  border-color: #e54234 !important; }

/* OWL CAROUSEL */
.owl-carousel .owl-nav .owl-prev:hover:after,
.owl-carousel .owl-nav .owl-next:hover:after {
  color: #e54234; }

.owl-carousel.navigation-colored .owl-nav > div {
  background: #e54234; }

.owl-carousel.navigation-colored .owl-nav > div:hover {
  background: rgba(229, 66, 52, 0.6); }

/* DOTS COLORED */
.owl-carousel.dots-colored .owl-dots .owl-dot span {
  background: #e54234; }

.owl-carousel.dots-colored .owl-dots .owl-dot:hover span {
  background: rgba(229, 66, 52, 0.8); }

.owl-carousel.dots-colored .owl-dots .owl-dot.active span {
  border-color: #e54234; }

/* Pagination */
.pagination > li > a,
.pagination > li > span {
  color: #e54234; }

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  border-color: #e54234;
  background: #e54234; }

/* ===================================================================
							PORTFOLIO
======================================================================*/
.nav-tabs > li > a.active,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border-color: #e54234;
  background: #e54234; }

.nav-tabs.arrow-style-bordered > li > a.active:before,
.nav-tabs.arrow-style-bordered > li.active > a:before {
  border-top-color: #e54234; }

.tabs-left .nav-tabs.arrow-style-bordered > li > a.active:before,
.tabs-left .nav-tabs.arrow-style-bordered > li.active > a:before {
  border-left-color: #e54234; }

.tabs-right .nav-tabs.arrow-style-bordered > li > a.active:before,
.tabs-right .nav-tabs.arrow-style-bordered > li.active > a:before {
  border-right-color: #e54234; }

.nav-tabs.bordered-style > li > a.active,
.nav-tabs.bordered-style > li > a.active:hover,
.nav-tabs.bordered-style > li > a.active:focus,
.nav-tabs.bordered-style > li.active > a:hover,
.nav-tabs.bordered-style > li.active > a:focus,
.nav-tabs.bordered-style > li.active > a {
  border-color: #e54234; }

.nav-tabs.bottom-line-style > li > a.active:after,
.nav-tabs.bottom-line-style > li.active > a:after {
  background: #e54234; }

.nav-tabs.bordered-style > li > a.active {
  border-color: #e54234; }

/* ===================================================================
							ICONS
======================================================================*/
.icon-theme,
.icon-hvtheme:hover,
.hv-wrapper:hover .icon-hvtheme {
  color: #e54234; }

.icon-theme-bg,
.icon-hvtheme-bg:hover,
.hv-wrapper:hover .icon-hvtheme-bg {
  background: #e54234; }

.icon-bordered-theme,
.icon-hvbordered-theme:hover,
.hv-wrapper:hover .icon-hvbordered-theme {
  border-color: #e54234; }

/* ===================================================================
							ACCORDION
======================================================================*/
.accordion-bordered .panel-heading:after,
.accordion-bordered-top .panel-heading:after {
  background: #e54234; }

/* THEME OVERLAY */
.theme-overlay:after,
.theme-bg-opacity,
.theme-overlay,
.overlay-theme {
  background: rgba(229, 66, 52, 0.6); }

.pattern-overlay.theme-overlay:after,
.theme-bg-lopacity {
  background: rgba(229, 66, 52, 0.3); }

/* ===================================================================
							FORM STYLES
======================================================================*/
.form-control:focus,
.form-theme .form-control {
  border-color: #e54234; }

.input-group-addon,
.input-group-addon:hover,
.input-group-addon:focus,
.input-group-btn .btn-default,
.input-group-btn .btn-default:hover,
.input-group-btn .btn-default:focus {
  border-color: #e54234;
  background: #e54234; }

/* Footer */
.footer-top-border5 {
  border-color: #e54234; }

.border-top, .border-both {
  border-top: 1px solid #c5c9d2; }

.border-bottom, .border-both {
  border-bottom: 1px solid #c5c9d2; }

.img-responsive img {
  width: 100%;
  height: auto;
  max-width: none !important; }

.padding-vertical {
  padding-top: 60px;
  padding-bottom: 60px; }

h2 {
  font-size: 45px;
  color: #e8412c;
  margin-bottom: 20px;
  margin-top: 50px;
  font-weight: 700;
  line-height: 50px; }

.rounded-list h2 {
  margin: 0; }

h3 {
  font-size: 30px;
  line-height: 37px;
  font-weight: 400;
  margin-top: 25px;
  margin-bottom: 20px;
  color: #002b4c; }

.add-padding-right-15 {
  padding-right: 15px !important; }

.add-padding-left-15 {
  padding-left: 15px !important; }

.add-padding-top-15 {
  padding-top: 15px !important; }

.section, section {
  padding: 40px 0; }

.topbar-wrapper {
  padding: 7px 0;
  background-color: #f7f7f7; }

.topbar-menu {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0; }
  .topbar-menu li {
    display: inline-block; }
    .topbar-menu li a {
      display: block;
      padding: 3px 10px;
      color: #4d4d4d;
      font-size: 12px;
      line-height: 1;
      border-right: 1px solid #808080; }
      .topbar-menu li a.active {
        font-weight: bold;
        color: #e54234; }
      .topbar-menu li a:hover {
        color: #e54234; }
    .topbar-menu li:last-child a {
      border-right: none; }
  @media screen and (max-width: 992px) {
    .topbar-menu {
      display: block;
      text-align: center;
      margin-bottom: 10px; } }

.topbar-btn-menu {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0; }
  .topbar-btn-menu li {
    position: relative;
    display: inline-block; }
    .topbar-btn-menu li a {
      display: block;
      padding: 10px 15px;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      color: #fff;
      border-radius: 25px;
      background-color: #e54234; }
      .topbar-btn-menu li a.active {
        background-color: #000; }
      .topbar-btn-menu li a:hover {
        color: #fff;
        background-color: #222222; }
    .topbar-btn-menu li:last-child a {
      border-right: none; }
  @media screen and (max-width: 992px) {
    .topbar-btn-menu {
      display: block;
      text-align: center; } }

.login-box-wrapper {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 500;
  width: 250px;
  padding: 20px;
  border-left: 3px solid #f7f7f7;
  border-right: 3px solid #f7f7f7;
  border-bottom: 3px solid #f7f7f7;
  background-color: #fff; }
  @media screen and (max-width: 992px) {
    .login-box-wrapper {
      top: 80px;
      width: 100%; } }
  .login-box-wrapper .login-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 1; }
  .login-box-wrapper h4 {
    text-align: center; }
  .login-box-wrapper form input {
    width: 100%;
    display: block;
    padding-left: 5px;
    padding-right: 5px; }
    .login-box-wrapper form input + input {
      margin-top: 10px; }
  .login-box-wrapper .login-submit {
    display: block;
    margin-top: 10px;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    border-radius: 35px;
    text-transform: uppercase;
    background-color: #e54234; }
  .login-box-wrapper .login-forgot {
    padding: 10px 0 0;
    font-size: 12px;
    text-align: center;
    line-height: 1.2; }


.suivi-box-wrapper {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 500;
  width: 300px;
  padding: 10px;
  border-left: 3px solid #f7f7f7;
  border-right: 3px solid #f7f7f7;
  border-bottom: 3px solid #f7f7f7;
  background-color: #fff; 
    
}
  @media screen and (max-width: 992px) {
    .suivi-box-wrapper {
      top: 80px;
      width: 100%; } }
  .suivi-box-wrapper .suivi-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 1; }
  .suivi-box-wrapper h4 {
    text-align: center; }
  .suivi-box-wrapper form input {
    width: 100%;
    display: block;
    padding-left: 5px;
    padding-right: 5px; }
    .suivi-box-wrapper form input + input {
      margin-top: 10px; }
  .suivi-box-wrapper .login-submit {
    display: block;
    margin-top: 10px;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    border-radius: 35px;
    text-transform: uppercase;
    background-color: #e54234; }
  


.stcp-box-wrapper {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 500;
  width: 300px;
  padding: 10px;
  border-left: 3px solid #f7f7f7;
  border-right: 3px solid #f7f7f7;
  border-bottom: 3px solid #f7f7f7;
  background-color: #fff; 
    
}
  @media screen and (max-width: 992px) {
    .stcp-box-wrapper {
      top: 80px;
      width: 100%; } }
  .stcp-box-wrapper .stcp-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 1; }
  .stcp-box-wrapper h4 {
    text-align: center; }
  .stcp-box-wrapper form input {
    width: 100%;
    display: block;
    padding-left: 5px;
    padding-right: 5px; }
    .stcp-box-wrapper form input + input {
      margin-top: 10px; }
  .stcp-box-wrapper .login-submit {
    display: block;
    margin-top: 10px;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    border-radius: 35px;
    text-transform: uppercase;
    background-color: #e54234; }
  





.navbar-header .navbar-brand .main-logo {
  max-height: 75%; }

.navbar-header .navbar-brand .sticky-logo {
  max-height: 70%; }

@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .nav.navbar-nav.navbar-right li a {
    padding: 0 10px; } }

@media screen and (min-width: 1024px) {
  .search-trigger {
    height: 80px; } }

@media screen and (max-width: 1023px) {
  .search-trigger {
    height: 60px; } }

@media screen and (min-width: 1024px) {
  .is-sticky .search-trigger {
    height: 65px; } }

.banner-title {
  padding-top: 45px;
  text-transform: uppercase; }

.slider-section {
  background-attachment: inherit; }
  .slider-section .item .slider-content p strong {
    font-weight: 700; }

.owl-carousel {
  position: relative; }
  .owl-carousel .item {
    padding-top: 170px;
    padding-bottom: 60px;
    height: 520px;
    background-position: center; }
    .owl-carousel .item .slider-content h2 {
      width: 70%;
      margin: 0 auto;
      padding-top: 30px !important; }
    @media screen and (max-width: 992px) {
      .owl-carousel .item .slider-content .slider-sous-phrase {
        display: none; } }
    @media screen and (max-width: 992px) {
      .owl-carousel .item {
        padding-top: 90px;
        height: 320px;
        background-size: cover; } }

@media screen and (max-width: 992px) {
  .home-intro-feature + .home-intro-feature {
    margin-top: 30px; } }

.home-intro-feature h6 {
  display: block;
  margin-top: 15px;
  line-height: 1; }

.feature-box .feature-inner-wrapper .title-wrapper h3.feature-title {
  font-size: 18px;
  line-height: 28px; }

.rounded-list h2 {
  font-size: 22px; }

.container p strong, .container p b, .container li strong, .container li b, .container a strong, .container a b, .container h1 strong, .container h1 b, .container h2 strong, .container h2 b, .container h3 strong, .container h3 b, .container h4 strong, .container h4 b, .container h5 strong, .container h5 b {
  font-weight: 600; }

.container a {
  color: #e54234; }
  .container a.btn-theme {
    color: #fff; }
  .container a:hover {
    color: #000; }

.text-cta {
  display: table-cell;
  vertical-align: middle;
  height: 50px; }
  .text-cta h2 {
    margin: 0;
    padding: 0;
    font-size: 26px;
    line-height: 1.2; }
  @media screen and (max-width: 992px) {
    .text-cta {
      text-align: center; } }

@media screen and (max-width: 992px) {
  .button-cta {
    text-align: center; } }

.reduce-bottom-padding {
  margin-bottom: 5px; }

.promos-header {
  font-size: 42px;
  font-weight: bold; }

.promo-wrapper h3 {
  font-weight: bold;
  color: #e54234; }
  .promo-wrapper h3 span {
    display: block;
    font-size: 22px;
    font-weight: normal;
    color: #fff; }

.search-header {
  margin-top: 20px; }

.search-result-header {
  margin-top: 0; }

.ouverture-compte .form-wrapper {
  padding: 30px;
  background-color: #f7f7f7; }
  .ouverture-compte .form-wrapper h3:first-child {
    margin-top: 0; }

.field-wrapper {
  margin-bottom: 10px; }
  .field-wrapper .error ul {
    border: 1px solid #ff0000;
    padding: 20px 20px 20px 30px; }
    .field-wrapper .error ul li {
      color: #b30000; }

#footer {
  background-color: #0c2b4c; }


.home .owl-item, .home .owl-stage{
    width:100% !important;
}

.home .owl-carousel .item{
    padding-top:170px;
}

.home h2{
    font-size: 50px;
}


@media screen and (max-width: 992px) {
  .home .owl-carousel .item {
      padding-top: 30px;
  }

  
  .home h2{
      line-height: 50px;
      width:95% !important;
  }
}
