/*COLORS*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 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;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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 {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: 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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 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);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-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);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-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 {
  0% {
    -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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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, -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);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-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);
  }
  100% {
    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);
    -ms-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);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-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-animation-duration: .75s;
  animation-duration: .75s;
}

@-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);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-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);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-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);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-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);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 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% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.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% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    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);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-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);
    -ms-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-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  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);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-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);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    -ms-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);
    -ms-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-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    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-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0, 0, 1, 45deg);
    transform: rotate(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0, 0, 1, 45deg);
    -ms-transform: rotate(0, 0, 1, 45deg);
    transform: rotate(0, 0, 1, 45deg);
    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-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-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;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    -ms-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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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 {
  0% {
    opacity: 1;
  }
  100% {
    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 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-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 {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-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);
    -ms-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 {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-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);
    -ms-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 {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-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);
    -ms-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 {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-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);
    -ms-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 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    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);
  }
  100% {
    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);
    -ms-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);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -ms-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;
    -ms-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);
  }
  100% {
    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);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    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);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: 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);
  }
  100% {
    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);
    -ms-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);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -ms-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;
    -ms-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;
}

/*
- BUTTONS
-----------------------------------------------------------------------------*/
.btn-transparent {
  background-color: transparent;
}

.btn-borders {
  border: 1px solid #000;
}

.btn,
.btn-style-default {
  border: 1px solid #444645;
  border-radius: 0px;
  color: #444645;
}
.btn:active, .btn:hover, .btn:focus,
.btn-style-default:active,
.btn-style-default:hover,
.btn-style-default:focus {
  color: #fff;
  background-color: #66ccff;
  border-color: #66ccff;
}
.btn:hover:focus,
.btn-style-default:hover:focus {
  background-color: #80d4ff;
  border-color: #66ccff !important;
  color: #fff;
}

.btn-info,
.btn-success,
.btn-danger,
.btn-warning {
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-weight: bold;
  padding: 10.5px 29px;
}

.btn-success:hover, .btn-success:focus, .btn-success:active {
  background-color: #5cfb5c;
  border-color: #5cfb5c;
}

.btn-info:hover, .btn-info:focus, .btn-info:active {
  background-color: #77cfff;
  border-color: #77cfff;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
  background-color: #ffad4e;
  border-color: #ffad4e;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  background-color: #f9534f;
  border-color: #f9534f;
}

.btn-small {
  padding: 7.5px 14.5px !important;
}

.color-black {
  color: #000;
}

.pagination-container .title {
  letter-spacing: -0.1px;
  line-height: 34px;
}
.pagination-container .title span {
  display: block;
  line-height: 34px !important;
  color: #b2b2b2;
  font: 14px "Istok Web";
}

.pagination {
  margin: 0 -5px 0 0;
}
.pagination .prev
> a, .pagination .next > a {
  border-radius: 0 !important;
}
.pagination > li:first-child > a {
  border-radius: 0;
}
.pagination li {
  display: block;
  float: left;
  margin: 0;
}
.pagination li > a {
  border-color: #ebebeb;
  color: #b2b2b2;
  display: block;
  text-align: center;
}
.pagination .active a,
.pagination .active a:focus,
.pagination .active a:hover,
.pagination li > a:focus,
.pagination li > a:hover {
  color: #8a8a8a;
  background-color: transparent;
  border-color: #cacaca;
}

.no-number {
  width: 100%;
}
.no-number .prev-project
, .no-number .next-project {
  display: block;
  float: left;
}
.no-number .prev-project
a, .no-number .next-project a {
  border: solid 1px #d5d5d5;
  color: #999999;
  display: block;
  font-size: 11px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  width: 35px;
}
.no-number .next-project a {
  border-left: none;
}

.pagination-normal {
  height: 34px;
}
.pagination-normal li,
.pagination-normal li a {
  height: 34px;
  width: 34px;
}
.pagination-normal li {
  margin-right: 5px;
}

.pagination-image .prev-project
, .pagination-image .next-project {
  padding: 0 15px;
  position: relative;
  width: 33.33333333333333%;
}
.pagination-image .prev-project:hover
, .pagination-image .next-project:hover {
  background-color: white;
  opacity: 0.7;
}
.pagination-image .prev-project:hover
.image-comment, .pagination-image .next-project:hover .image-comment {
  display: block;
}
.pagination-image .image img {
  max-width: 100%;
}
.pagination-image .image-comment {
  top: -webkit-calc(50% - 10px);
  top: calc(50% - 10px);
  display: none;
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.pagination-image .image-comment a {
  color: #555555;
  font: 19px "Roboto Condensed";
  text-decoration: none;
}
.pagination-image .image-comment a span i:before {
  font-size: 12px;
  line-height: 23px !important;
  vertical-align: top !important;
}
.pagination-image .prev-project {
  float: left;
}
.pagination-image .next-project {
  float: right;
}

@media (max-width: 479px) {
  .pagination-container .title {
    float: none !important;
  }
  .pagination-container ul.pull-right {
    float: none !important;
  }
}
.btn-thin-border {
  border: 1px solid #444645;
}

.btn-normal-border {
  border: 2px solid #444645;
}

.btn-xlg {
  padding: 15px 30px;
}

.btn-xl {
  padding: 15px 25px;
}

.btn-lg {
  padding: 11px 20px;
}

.btn-md {
  font-size: 13px;
  line-height: 1;
  padding: 10px 15px;
}

.btn-sm {
  padding: 7.5px 14.5px;
}

.btn-xs {
  font-size: 12px !important;
  padding: 8px 15px !important;
}

.btn-custom {
  color: #ffffff;
  background-color: #84af9b;
  border-color: transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active,
.btn-custom.active,
.open .dropdown-toggle.btn-custom {
  color: #fff;
  background-color: #c9c8aa;
  border-color: transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-custom-2 {
  color: #fff !important;
  background-color: #444645;
  border-color: #444645;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.btn-custom-2:hover,
.btn-custom-2:focus,
.btn-custom-2:active,
.btn-custom-2.active,
.open .dropdown-toggle.btn-custom-2 {
  color: #fff !important;
  background-color: #84af9b;
  border-color: #84af9b;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-custom-3 {
  color: #fff;
  background-color: #575a59;
  border-color: #5c5f5e;
  -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-custom-3:hover,
.btn-custom-3:focus,
.btn-custom-3:active,
.btn-custom-3.active,
.open .dropdown-toggle.btn-custom-3 {
  color: #fff;
  background-color: #84af9b;
  border-color: #84af9b;
  -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-default {
  background: transparent;
  border: 1px solid #444645;
  color: #444645;
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10.5px 29px;
  text-shadow: none;
}
.btn-default:active, .btn-default:hover, .btn-default:focus {
  color: #FFF;
  background-color: #66ccff;
  border-color: #66ccff;
}
.btn-default:hover:focus {
  background-color: #80d4ff;
  border-color: #66ccff !important;
  color: #FFF;
}

.btn-primary {
  background: transparent;
  border: 1px solid #444645;
  color: #444645;
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10.5px 29px;
  text-shadow: none;
}
.btn-primary:active, .btn-primary:hover, .btn-primary:focus {
  color: #FFF;
  background-color: #66ccff;
  border-color: #66ccff;
}
.btn-primary:hover:focus {
  background-color: #80d4ff;
  border-color: #66ccff !important;
  color: #FFF;
}

.btn-default.narrow {
  padding: 10.5px 17px;
}

/*-----------------------------------------------------------------------------
- CALL_TO_ACTIONS
-----------------------------------------------------------------------------*/
.tiny-size-icon {
  border: 1px solid #ebebeb;
  color: #e6e6e6;
  display: block !important;
  font-size: 14px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  width: 34px;
}
.tiny-size-icon.active, .tiny-size-icon:hover {
  color: #cacaca;
  border: 1px solid #cacaca;
}

/*-----------------------------------------------------------------------------

- custom carousel
-----------------------------------------------------------------------------*/
/* ARROWS */
/* VARIABLES */
.nav_icon, .rev_pesto.tparrows {
  min-width: 46px;
  min-height: 36px;
  background: #000;
  background: transparent;
  border-radius: 0px;
  border: 2px solid #444645;
}

.rev-slider {
  display: none;
}

.rev_pesto {
  /* BULLETS */
  /* THUMBS */
  /* TABS */
}
.rev_pesto.tparrows {
  cursor: pointer;
  position: absolute;
  display: block;
  z-index: 100;
}
.rev_pesto.tparrows:before {
  font-family: "revicons";
  font-size: 20px;
  color: #444645;
  display: block;
  line-height: 36px;
  text-align: center;
  z-index: 2;
  position: relative;
}
.rev_pesto.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.rev_pesto.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.rev_pesto .tp-title-wrap {
  position: absolute;
  z-index: 1;
  display: inline-block;
  background: #000;
  background: transparent;
  top: 0px;
  margin-left: 0px;
  overflow: hidden;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
}
.rev_pesto.tparrows:hover .tp-title-wrap {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.rev_pesto.tp-rightarrow .tp-title-wrap {
  right: 0px;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-transform-origin: 100% 50%;
  border-radius: 35px;
  padding-right: 20px;
  padding-left: 10px;
}
.rev_pesto.tp-leftarrow .tp-title-wrap {
  padding-left: 20px;
  padding-right: 10px;
}
.rev_pesto .tp-arr-titleholder {
  letter-spacing: 3px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: translateX(200px);
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 36px;
  white-space: nowrap;
  padding: 0px 20px;
  margin-left: 11px;
  opacity: 0;
}
.rev_pesto .tp-arr-imgholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-size: cover;
}
.rev_pesto .tp-arr-img-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
}
.rev_pesto.tp-rightarrow .tp-arr-titleholder {
  transform: translateX(-200px);
  margin-left: 0px;
  margin-right: 11px;
}
.rev_pesto.tparrows:hover .tp-arr-titleholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition-delay: 0.1s;
  opacity: 1;
}
.rev_pesto.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #555555;
  /* old browsers */
  background: -moz-linear-gradient(top, #555555 0%, #222222 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #555555), color-stop(100%, #222222));
  /* chrome,safari4+ */
  background: -webkit-linear-gradient(top, #555555 0%, #222222 100%);
  /* chrome10+,safari5.1+ */
  background: -o-linear-gradient(top, #555555 0%, #222222 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(top, #555555 0%, #222222 100%);
  /* ie10+ */
  background: linear-gradient(to bottom, #555555 0%, #222222 100%);
  /* w3c */
  filter: progid:dximagetransform.microsoft.gradient( startcolorstr="$color-header-top-hover", endcolorstr="#222222",gradienttype=0 );
  /* ie6-9 */
  padding: 10px 15px;
  margin-left: -15px;
  margin-top: -10px;
  box-sizing: content-box;
  border-radius: 10px;
  box-shadow: 0px 0px 2px 1px rgba(33, 33, 33, 0.3);
}
.rev_pesto .tp-bullet {
  width: 13px;
  height: 13px;
  position: absolute;
  background: #111;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
}
.rev_pesto .tp-bullet:hover,
.rev_pesto .tp-bullet.selected {
  background: #e5e5e5;
  /* old browsers */
  background: -moz-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e5e5e5), color-stop(100%, #999999));
  /* chrome,safari4+ */
  background: -webkit-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  /* chrome10+,safari5.1+ */
  background: -o-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  /* ie10+ */
  background: linear-gradient(to bottom, #e5e5e5 0%, #999999 100%);
  /* w3c */
  filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="$color-light",gradienttype=0 );
  /* ie6-9 */
  border: 1px solid #555;
  width: 12px;
  height: 12px;
}
.rev_pesto .tp-thumb {
  opacity: 1;
}
.rev_pesto .tp-thumb-over {
  background: #000;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.rev_pesto .tp-thumb-more:before {
  font-family: "revicons";
  font-size: 12px;
  color: #aaa;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 12px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.rev_pesto .tp-thumb-more:before {
  content: "\e825";
}
.rev_pesto .tp-thumb-title {
  font-family: "Raleway";
  letter-spacing: 1px;
  font-size: 12px;
  color: #fff;
  display: block;
  line-height: 15px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 20px 35px 20px 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-weight: 500;
}
.rev_pesto .tp-thumb.selected .tp-thumb-more:before,
.rev_pesto .tp-thumb:hover .tp-thumb-more:before {
  color: #aaa;
}
.rev_pesto .tp-thumb.selected .tp-thumb-over,
.rev_pesto .tp-thumb:hover .tp-thumb-over {
  background: #fff;
}
.rev_pesto .tp-thumb.selected .tp-thumb-title,
.rev_pesto .tp-thumb:hover .tp-thumb-title {
  color: #000;
}
.rev_pesto .tp-tab-title {
  color: #a8d8ee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Roboto Slab";
  margin-bottom: 5px;
}
.rev_pesto .tp-tab-desc {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 25px;
  font-family: "Roboto Slab";
}
.rev_pesto .tp-thumb-icon-circle {
  background-color: transparent;
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
  font-size: 10px;
}
.rev_pesto .tp-thumb-icon-circle i {
  line-height: 20px;
}
.rev_pesto .selected .tp-thumb-icon-circle i,
.rev_pesto .tp-thumb-icon-circle:hover i {
  font-size: 16px !important;
}
.rev_pesto .tp-thumb {
  height: 20px;
  text-align: center;
  width: 20px;
}
.rev_pesto .tp-thumb-mask {
  height: 20px !important;
}

.rev_slider {
  position: relative;
}

.rev_slider2 {

}

#rev_slider1 .rev_pesto.tparrows {
  height: 40px;
  width: 50px;
}
#rev_slider1 .rev_pesto.tparrows.tp-leftarrow:active, #rev_slider1 .rev_pesto.tparrows.tp-leftarrow:hover, #rev_slider1 .rev_pesto.tparrows.tp-rightarrow:active, #rev_slider1 .rev_pesto.tparrows.tp-rightarrow:hover {
  background-color: #66ccff;
  border-color: #66ccff;
}
#rev_slider1 .rev_pesto.tparrows.tp-leftarrow:active:before, #rev_slider1 .rev_pesto.tparrows.tp-leftarrow:hover:before, #rev_slider1 .rev_pesto.tparrows.tp-rightarrow:active:before, #rev_slider1 .rev_pesto.tparrows.tp-rightarrow:hover:before {
  color: white;
}

.rev_slider3 .rev_pesto.tparrows {
  width: 48px;
  height: 48px;
  line-height: 48px;
}
.rev_slider3 .rev_pesto.tparrows:before {
  font: normal normal normal 16px/1 pesto;
  color: #444645;
  display: block;
  line-height: 48px;
  text-align: center;
  z-index: 2;
  position: relative;
}
.rev_slider3 .rev_pesto.tparrows.tp-leftarrow:before {
  content: "\e831";
}
.rev_slider3 .rev_pesto.tparrows.tp-rightarrow:before {
  content: "\e830";
}
.rev_slider3 .rev_pesto.tparrows.tp-leftarrow {
  border: none;
  border-right: 1px solid #444645;
}
.rev_slider3 .rev_pesto.tparrows.tp-rightarrow {
  border: none;
  border-left: 1px solid #444645;
}
.rev_slider3 .rev_pesto.tparrows.tp-leftarrow:hover, .rev_slider3 .rev_pesto.tparrows.tp-rightarrow:hover {
  border: 1px solid #444645;
}

.theme-owl-carousel.owl-theme .item {
  color: #FFF;
  margin: 0px;
  padding: 0px 0px;
  text-align: center;
}
.theme-owl-carousel.owl-theme .item img {
  display: block;
  height: 100%;
  width: 100%;
}
.theme-owl-carousel.owl-theme  .owl-dots {
  bottom: 6px;
  position: absolute;
  width: 100%;
  text-align: center;
}

.theme-owl-carousel.owl-theme .owl-dots .owl-dot {
  background-color: transparent;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 2px;
}
.theme-owl-carousel.owl-theme .owl-dots .owl-dot span {
  border-radius: 4px;
  background-color: #444645;
  display: inline-block;
  height: 8px;
  margin: 6px;
  width: 8px;
}
.theme-owl-carousel.owl-theme .owl-dots .owl-dot.active span, .theme-owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  border-radius: 7px;
  height: 14px;
  width: 14px;
  margin: 3px;
}
.theme-owl-carousel.right-comment .image {
  padding-right: 0.9333333333333333em;
}
.theme-owl-carousel.right-comment .image-comment {
  padding-left: 14px;
}
.theme-owl-carousel.right-comment .image-comment h2 {
  color: #6a645a;
}
.theme-owl-carousel.right-comment .image-comment p {
  color: #8f8c83;
  font: 15px 'Arial';
  line-height: 23px;
  margin-bottom: 21px;
}
.theme-owl-carousel.right-comment .image-comment a {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.87px;
}
.theme-owl-carousel.right-comment .owl-controls {
  height: 28px;
  position: absolute;
  top: -72px;
  text-align: center;
  width: 100%;
}
.theme-owl-carousel.right-comment .owl-controls .owl-nav .owl-prev
, .theme-owl-carousel.right-comment .owl-controls .owl-nav .owl-next {
  display: inline-block;
}
.theme-owl-carousel.right-comment .owl-controls .owl-nav .owl-prev
span, .theme-owl-carousel.right-comment .owl-controls .owl-nav .owl-next span {
  border: solid 2px #d5d5d5;
  color: #999999;
  display: block;
  font-size: 11px;
  height: 28px;
  line-height: 26px;
  width: 34px;
}
.theme-owl-carousel.right-comment .owl-controls .owl-nav .owl-prev
span:hover, .theme-owl-carousel.right-comment .owl-controls .owl-nav .owl-next span:hover {
  background-color: #66ccff;
  border-color: #66ccff;
  color: white;
}
.theme-owl-carousel.right-comment .owl-controls .owl-nav .owl-prev span {
  border-right-width: 1px;
}
.theme-owl-carousel.right-comment .owl-controls .owl-nav .owl-next span {
  border-left-width: 1px;
}
.theme-owl-carousel.over-comment .item {
  position: relative;
}
.theme-owl-carousel.over-comment .image-comment {
  top: -webkit-calc(50% - 86px);
  top: calc(50% - 86px);
  position: absolute;
  text-align: center;
  width: 100%;
}
.theme-owl-carousel.over-comment .image-comment h3 {
  color: #444444;
  font-weight: normal;
  letter-spacing: 1.2px;
  margin-bottom: 25px;
  margin-top: 0;
}
.theme-owl-carousel.over-comment .image-comment p {
  color: #666666;
  font: normal 17px "PT sans";
  letter-spacing: 1.2px;
  line-height: 1.3;
  margin: 0 auto 23px;
  width: 80%;
}

.menu-slider .item {
  color: #FFF;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
}
.menu-slider .item .image {
  margin-bottom: 0 !important;
}
.menu-slider .item .image img {
  display: block;
  height: auto;
  width: 100%;
}
.menu-slider .item .image-over-comment {
  background-color: transparent;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.menu-slider .item .image-over-comment:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.menu-slider .item .image-over-comment > div {
  display: inline-block;
  margin-left: -5px;
  max-width: 100%;
  vertical-align: middle;
}
.menu-slider .item .image-over-comment .title {
  color: #555555;
  display: block;
  font: 13px "Istok Web";
  letter-spacing: 1.2px;
  line-height: 20px;
  margin-top: 16px;
}
.menu-slider .item .image-over-comment .attribute {
  color: #555555;
  display: block;
  font: 20px "Roboto Condensed";
  letter-spacing: 1.2px;
  line-height: 34px;
  margin-bottom: 10px;
}
.menu-slider .owl-controls {
  position: relative;
}
.menu-slider .owl-controls .owl-dots {
  margin-top: -34px;
  text-align: center;
}
.menu-slider .owl-controls .owl-dots .owl-dot {
  background-color: transparent;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0px;
}
.menu-slider .owl-controls .owl-dots .owl-dot span {
  border-radius: 4px;
  background-color: #444645;
  display: block;
  height: 8px;
  margin: 6px;
  width: 8px;
}
.menu-slider .owl-controls .owl-dots .owl-dot.active span, .menu-slider .owl-controls .owl-dots .owl-dot:hover span {
  border-radius: 7px;
  height: 14px;
  width: 14px;
  margin: 3px;
}

@media (max-width: 991px) {
  .advertisement {
    display: none;
  }

  .menu-slider .item .image-comment {
    display: none;
    position: relative;
  }
}
@media (min-width: 585px) {
  .right-comment .item .image {
    float: left;
    width: 57.09401709401709%;
  }
  .right-comment .item .image-comment {
    float: left;
    width: 42.90598290598291%;
  }
}
@media (max-width: 584px) {
  .right-comment .item .image,
  .right-comment .item .image-comment {
    float: none;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 340px) {
  .theme-owl-carousel.over-comment .image-comment p {
    display: none;
  }
}
/*-----------------------------------------------------------------------------
- SELECTS
-----------------------------------------------------------------------------*/
.inputbox-type1 {
  display: inline-block;
  height: 21px;
  position: relative;
  width: 21px;
  color: #bdbdbd;
}
.inputbox-type1 input {
  height: 21px;
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 21px;
  z-index: 99;
}
.inputbox-type1 input:hover {
  cursor: pointer;
}
.inputbox-type1 .input-skin {
  border: 2px solid #bdbdbd;
  font-size: 11px;
  height: 21px;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 21px;
}
.inputbox-type1 .input-skin i {
  line-height: 17px;
}
.inputbox-type1 .input-skin.checked .visible-checked {
  display: block !important;
}
.inputbox-type1 .input-skin.checked .visible-unchecked {
  display: none !important;
}
.inputbox-type1 .visible-checked {
  display: none;
}
.inputbox-type1 .visible-unchecked {
  display: block;
}

.input-container {
  display: inline-block;
  height: 14px;
  position: relative;
  width: 14px;
  color: #d1d1d1;
  margin-top: -3px;
}
.input-container input {
  height: 14px;
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 14px;
  z-index: 99;
}
.input-container input:hover {
  cursor: pointer;
}
.input-container .input-skin {
  height: 14px;
  left: 0;
  position: absolute;
  top: 0;
  width: 14px;
}
.input-container .input-skin.checked .visible-checked {
  display: block !important;
}
.input-container .input-skin.checked .visible-unchecked {
  display: none !important;
}
.input-container .visible-checked {
  color: #d2d1d1;
  display: none;
}
.input-container .visible-unchecked {
  color: #efefef;
  display: block;
}

.inputbox-container {
  display: inline-block;
  height: 25px;
  position: relative;
  width: 25px;
  color: #939393;
}
.inputbox-container input {
  height: 25px;
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 25px;
  z-index: 99;
}
.inputbox-container input:hover {
  cursor: pointer;
}
.inputbox-container .input-skin {
  border: 1px solid #efefef;
  height: 25px;
  left: 0;
  position: absolute;
  top: 0;
  width: 25px;
}
.inputbox-container .input-skin.checked .visible-checked {
  display: block !important;
}
.inputbox-container .input-skin.checked .visible-unchecked {
  display: none !important;
}
.inputbox-container .input-skin i {
  width: 100%;
  text-align: center;
  line-height: 25px;
  font-size: 12px;
}
.inputbox-container .visible-checked {
  display: none;
}
.inputbox-container .visible-unchecked {
  display: block;
}

.input-text {
  color: #9e9e9e;
  font-size: 14px;
  margin-left: 10px;
}

.inputbox-type1,
.input-container,
.inputbox-container {
  vertical-align: middle;
}
.inputbox-type1 + label,
.input-container + label,
.inputbox-container + label {
  margin: 0px 0px 0px 10px;
  overflow: auto;
  padding: 0px;
  vertical-align: middle;
}

#contactForm .row input:not([type='submit']),
#contactForm .row textarea,
#contactForm .row .form-control, #reviewForm .row input:not([type='submit']),
#reviewForm .row textarea,
#reviewForm .row .form-control {
  border-radius: 0px;
  border-color: #f3f3f3;
  box-shadow: none;
  border-width: 1px;
}

#reviewForm .row input {
  height: 40px;
}

.contactus.type1 #contactForm input[type="text"] {
  height: 50px;
}
.contactus.type1 #contactForm textarea {
  height: 200px;
}
.contactus.type1 #contactForm input[type="submit"] {
  width: 167px;
  height: 43px;
}

.contactus.type3 #contackForm {
  height: 230px;
}

.cart {
  padding-top: 23px;
}
.cart .add-cart {
  border: 1px solid #444645;
  color: #444645;
  font-size: 13.01px;
  font-weight: bold;
  padding: 7px 24px;
  display: block;
}
.cart .qty, .cart a.add-wish, .cart a.add-compare {
  border-radius: 0px;
  border: 1px solid #e0e0e0;
  display: block;
  height: 35px;
  line-height: 35px;
  text-align: center;
  width: 35px;
}
.cart a.add-wish i, .cart a.add-compare i {
  line-height: 28px;
}

.content-header h4 {
  color: #888888;
  font-family: "Roboto Condensed";
  font-size: 20px;
  letter-spacing: 1.6px;
}

h1, h2, h3, h4, h5, h6 {
  color: #777777;
  font-family: "Istok Web";
}

.contactus.type1 h1, .contactus.type1 h2, .contactus.type1 h3, .contactus.type1 h4, .contactus.type1 h5, .contactus.type1 h6 {
  font-family: "Roboto Condensed";
}

.blog.type1 h1, .blog.type1 h2, .blog.type1 h3, .blog.type1 h4, .blog.type1 h6 {
  font-family: "Roboto Condensed";
}
.blog.type1 h1 {
  letter-spacing: 1.6px;
  margin: 10px 0;
}
.blog.type1 h3 {
  font-size: 23px;
}
.blog.type1 h5 {
  font-family: "Roboto Condensed";
  font-size: 14px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1.large {
  font-size: 55px;
  font-weight: semi-bold;
  margin: 28px 0;
  letter-spacing: 8px;
}

h1.medium {
  font-size: 40px;
}

h1.small {
  font-size: 25px;
}

h1.smaller {
  font-size: 14px;
}

h2.medium {
  font-size: 20px !important;
}

h2.small {
  font-size: 17px;
}

h2.large {
  font-size: 23px !important;
}

h2.larger {
  font-size: 45px;
  letter-spacing: 4.5px;
}

h2.largest {
  font-size: 50px;
  letter-spacing: 4.5px;
  line-height: 50px;
}

.breadcrumb-header h2 {
  font-family: "Roboto Condensed";
  font-size: 20px;
  letter-spacing: 1.6px;
  margin: 10px 0;
}

h3.small {
  font-size: 25px;
}

h3.medium {
  font-size: 30px;
}

h4.larger {
  font-size: 140px;
  line-height: 140px;
}

h4.large {
  font-size: 55px;
  line-height: 55px;
}

h4.medium {
  font-size: 22px;
}

h4.small {
  font-size: 18px;
}

h4.smaller {
  font-size: 16px;
}

h5.larger {
  font-size: 30px;
  line-height: 30px;
}

@media (max-width: 1170px) {
  h4.larger {
    font-size: 100px;
    line-height: 100px;
  }

  h4.large {
    font-size: 47px;
  }

  h1.large {
    font-size: 45px;
    font-weight: semi-bold;
    letter-spacing: 8px;
  }

  h2.larger {
    font-size: 35px;
    letter-spacing: 4.5px;
  }

  h2.largest {
    font-size: 40px;
    letter-spacing: 4.5px;
    line-height: 50px;
  }

  h5.larger {
    font-size: 25px;
    line-height: 20px;
  }
}
@media (max-width: 992px) {
  h4.larger {
    font-size: 75px;
    line-height: 75px;
  }

  h4.large {
    font-size: 32px;
  }

  h1.large {
    font-size: 40px;
    font-weight: semi-bold;
    letter-spacing: 8px;
  }

  h2.larger {
    font-size: 25px;
    letter-spacing: 4.5px;
  }

  h2.largest {
    font-size: 30px;
    letter-spacing: 4.5px;
    line-height: 50px;
  }

  h5.larger {
    font-size: 22px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  h4.larger {
    font-size: 55px;
    line-height: 55px;
  }

  h4.large {
    font-size: 16px;
  }

  h1.large {
    font-size: 35px;
    font-weight: semi-bold;
    letter-spacing: 8px;
  }

  h2.larger {
    font-size: 25px;
    letter-spacing: 4.5px;
  }

  h2.largest {
    font-size: 30px;
    letter-spacing: 4.5px;
    line-height: 50px;
  }

  h5.larger {
    font-size: 22px;
    line-height: 22px;
  }
}
.icon-button {
  text-align: center;
  border: solid 1px #e0e0e0;
  display: block;
  padding: 0;
}
.icon-button.large {
  height: 45px;
  line-height: 45px;
  width: 45px;
}
.icon-button.larger {
  height: 50px;
  line-height: 50px;
  width: 50px;
}
.icon-button.medium {
  height: 40px;
  line-height: 40px;
  width: 40px;
}
.icon-button.small {
  height: 35px;
  line-height: 35px;
  width: 35px;
}
.icon-button:hover {
  background-color: #91dbff;
  border-color: #91dbff;
  color: white !important;
}
.icon-button.smaller {
  height: 32px;
  line-height: 32px;
  width: 32px;
}
.icon-button.xsmall {
  height: 27px;
  line-height: 27px;
  width: 27px;
}

/* Icons */
.theme-icon-rotate-45:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.theme-icon-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.theme-icon-rotate-135:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.theme-icon-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.theme-icon-rotate-225:before {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.theme-icon-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.theme-icon-rotate-315:before {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}

.theme-icon {
  line-height: 1;
}
.theme-icon:before {
  margin-left: 0;
  margin-right: 0;
  width: auto;
  font-size: inherit;
}

.fontawesome-icon-list a,
.bs-glyphicons-list li {
  color: #5a5a5a;
  display: block;
  padding: 0.3em 0.6em;
}

.fontawesome-icon-list a .fa,
.bs-glyphicons-list li .glyphicon {
  margin-right: 0.5em;
  width: 1.5em;
}

.fontawesome-icon-list a, .bs-glyphicons-list li {
  color: #5a5a5a;
  display: block;
  padding: 0.3em 0.6em;
}

.pesto-icon-loving:before {
  margin-left: 0;
}

label {
  color: #8d8c8c;
}

/* ---------------------------------
----------- List Groups --------  */
ul {
  padding: 0;
  list-style: none;
}

.select .size li {
  border: 1px solid #e0e0e0;
  height: 32px;
  line-height: 32px;
  margin-right: 5px;
  text-align: center;
  width: 32px;
}
.select .size li a {
  color: #b4b4b4;
  font: 12px "Verdana";
}
.select .color li {
  margin-right: 5px;
  margin-left: 0;
  padding: 0;
}
.select .color li a {
  display: block;
  height: 32px;
  text-decoration: none;
  width: 32px;
}

.list-float-left li {
  display: block;
  float: left;
}

.list-float-right li {
  display: block;
  float: right;
}

ul.share {
  margin-left: 2px;
}
ul.share li {
  border: 1px solid #e0e0e0;
  height: 30px;
  line-height: 30px;
  margin-right: 7px;
  text-align: center;
  width: 30px;
}

.tag-cloud .tag-list li {
  display: inline-block;
  font-family: "Istok Web";
  font-size: 12px;
  border: 1px solid #f1f1f1;
  margin: 5px 0;
  padding: 5px 15px;
}

/* Predefined List style types */
ul.list-style {
  padding-left: 20px;
  list-style: initial;
}

.list-style.list-disc {
  list-style-type: disc;
}

.list-style.list-circle {
  list-style-type: circle;
}

.list-style.list-square {
  list-style-type: square;
}

.list-style.list-decimal {
  list-style-type: decimal;
}

.list-style.list-lower-alpha {
  list-style-type: lower-alpha;
}

.list-style.list-upper-alpha {
  list-style-type: upper-alpha;
}

.list-style.list-lower-roman {
  list-style-type: lower-roman;
}

.list-style.list-upper-roman {
  list-style-type: upper-roman;
}

.fa-ul > li {
  margin-bottom: 10px;
}

.list-group {
  margin-bottom: 20px;
}

.list-group-item {
  padding: 10px 15px;
}

a.list-group-item {
  color: #555555;
}

a.list-group-item .list-group-item-heading {
  color: #444645;
  margin-bottom: 10px;
}

a.list-group-item:hover,
a.list-group-item:focus {
  background-color: #f2f2f2;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  background-color: #84af9b;
  border-color: #84af9b;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #fff;
}

/*
- BUTTONS
-----------------------------------------------------------------------------*/
iframe {
  border-width: 0;
}

.filter-container:hover .over-menu {
  display: block;
}

.over-menu {
  background-color: white;
  display: none;
  position: absolute;
  right: -15px;
  top: 0;
}

.panel-group {
  margin-bottom: 55px;
}
.panel-group .panel-group-heading {
  border-bottom: 2px solid #cccccc;
  height: 33px;
}
.panel-group .panel-group-heading .title {
  color: #787878;
  font-family: "Roboto Condensed";
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin: -2px 0 0 0;
  position: relative;
}
.panel-group .panel-group-heading a.toggle {
  display: block;
  height: 16px;
  margin-top: -8px;
  position: absolute;
  right: 8px;
  text-align: center;
  text-decoration: blink;
  top: 50%;
  width: 16px;
}
.panel-group .panel-group-body {
  margin-top: 18px;
}
.panel-group .panel-group-body .checkbox-list {
  margin: 0;
  padding: 0;
}
.panel-group .panel-group-body .checkbox-list li {
  padding: 8px 0 .1px;
}
.panel-group .panel-group-body .checkbox-list li .checkbox-text {
  margin-left: 5px;
}
.panel-group .panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.panel-group .panel > .panel-heading {
  background-color: white;
  position: relative;
  border-bottom: 1px solid #f4f4f4;
  padding-left: 10px;
  padding-bottom: 9px;
}
.panel-group .panel > .panel-heading h5 {
  color: #9e9e9e;
  font-family: "Istok Web";
  font-size: 14px;
}
.panel-group .panel > .panel-heading a.toggle {
  display: block;
  height: 19px;
  line-height: 19px;
  margin-top: -10px;
  position: absolute;
  right: 2px;
  text-align: center;
  text-decoration: blink;
  top: 50%;
  width: 19px;
}
.panel-group .panel > .panel-heading a.toggle i {
  line-height: 19px;
}
.panel-group .panel .panel-body {
  border: none !important;
  border-bottom: 1px solid #f4f4f4 !important;
  padding: 10px 15px;
}
.panel-group .panel .panel-body ul {
  padding-left: 5px;
}
.panel-group .panel .panel-body ul li {
  padding-bottom: 4.5px;
  padding-top: 4px;
}
.panel-group .panel .panel-body a {
  color: #9e9e9e;
  font-family: "Istok Web";
  font-size: 14px;
}

/*-----------------------------------------------------------------------------
- SELECTS
-----------------------------------------------------------------------------*/
select.bs-select-hidden {
  display: none;
}

.dropdown-menu {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  color: #333;
  min-width: 180px;
  padding: 5px 0px;
}

.dropdown-header:first-child {
  margin-top: 5px;
}

.dropdown-menu > li {
  margin-bottom: 1px;
  position: relative;
}

.dropdown-header {
  color: #999999;
  font-size: 11px;
  line-height: 1.82;
  margin-top: 10px;
  padding: 8px 15px;
  text-transform: uppercase;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  background-color: #2196F3;
  color: #FFF;
  outline: 0px none;
  text-decoration: none;
}

.dropdown-menu > li > a {
  padding: 8px 15px;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus,
.close:focus,
.close:hover,
.dropdown-menu > li > a,
.form-control:focus,
.nav > li > a:focus,
a,
a:focus,
button,
input,
input[type="radio"]:focus, input[type="checkbox"]:focus,
input[type="file"]:focus, textarea {
  outline: 0px none;
}

.bootstrap-select {
  height: 32px;
}
.bootstrap-select .btn-default span {
  color: #b2b2b2;
}
.bootstrap-select select {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  border: 0px none;
  border-radius: 0px;
  box-shadow: none;
  margin: 0px;
  padding: 0px;
  position: static;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu > li > a .text, .bootstrap-select.btn-group.show-tick .dropdown-menu > li.active a .check-mark {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu > li > a .check-mark {
  display: none;
  margin-right: 0px;
  margin-top: -11px;
  right: 10px;
  position: absolute;
  top: 50%;
}
.bootstrap-select.btn-group .dropdown-toggle .bs-caret .caret {
  border: none;
  color: #c6c6c6;
  height: 34px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 2px;
  width: 34px;
}
.bootstrap-select.btn-group .dropdown-toggle .bs-caret .caret:after {
  content: "\e824";
  display: block;
  font-family: 'pesto';
  font-size: 12px;
  line-height: 34px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.bootstrap-select.type_sortby .pull-left:before {
  content: "Sort By: ";
}
.bootstrap-select.type_sortby .pull-left {
  margin: 0;
}
.bootstrap-select.type_show .pull-left:before {
  content: "Show: ";
  line-height: 1;
}
.bootstrap-select > .btn-default {
  border: 1px solid #ebebeb;
  color: #b2b2b2;
  padding-left: 100px;
  padding-right: 29px;
  width: 100%;
  font-family: "Istok Web";
  font-size: 14px;
  font-weight: normal;
  padding: 10.5px 32px 9.5px 14px;
  letter-spacing: 0;
  line-height: 1;
}
.bootstrap-select > .btn-default:active, .bootstrap-select > .btn-default:hover, .bootstrap-select > .btn-default:focus, .bootstrap-select > .btn-default:hover:focus {
  background-color: transparent !important;
  outline: none !important;
  border-color: #cacaca;
}
.bootstrap-select > .btn-default:active .caret, .bootstrap-select > .btn-default:hover .caret, .bootstrap-select > .btn-default:focus .caret, .bootstrap-select > .btn-default:hover:focus .caret {
  color: #fff !important;
  background-color: #cacaca;
  border-color: #cacaca;
}

div.select_show .bootstrap-select {
  min-width: 120px;
  width: auto !important;
}

div.select_sortby .bootstrap-select {
  min-width: 190px;
  width: auto !important;
}

/*
Checkbox
*/
.ed-checkbox {
  position: relative;
}
.ed-checkbox > span.inc {
  animation: 0.3s ease 0s normal none 1 running growCircle;
}
.ed-checkbox > .check {
  -moz-border-top-colors: none;
  -moz-border-right-colors: none;
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  border-width: medium 2px 2px medium;
  border-style: none solid solid none;
  border-color: -moz-use-text-color #D0D7DE #D0D7DE -moz-use-text-color;
  border-image: none;
  left: 6px;
  height: 20px;
  width: 10px;
  opacity: 0;
  top: -2px;
  transform: rotate(180deg);
  transition-delay: 0.3s;
  z-index: 5;
}
.ed-checkbox input[type="checkbox"] {
  visibility: hidden;
  position: absolute;
}
.ed-checkbox label {
  cursor: pointer;
  padding-left: 30px;
}
.ed-checkbox label > .box {
  top: 4px;
  height: 15px;
  width: 15px;
  border: 2px solid #D0D7DE;
  z-index: 5;
  transition-delay: 0.2s;
}
.ed-checkbox label > .check {
  top: 2px;
  left: 4px;
  width: 8px;
  height: 15px;
}
.ed-checkbox label > .inc {
  left: -12px;
  top: -8px;
}
.ed-checkbox label > span {
  display: block;
  position: absolute;
  left: 0px;
  transition-duration: 0.3s;
}
.ed-checkbox label > span.inc {
  background: #FFF none repeat scroll 0% 0%;
  left: -10px;
  top: -10px;
  height: 40px;
  width: 40px;
  opacity: 0;
  border-radius: 50% !important;
}
.ed-checkbox label > span {
  display: block;
  position: absolute;
  left: 0px;
  transition-duration: 0.3s;
}

/*-----------------------------------------------------------------------------
- SLIDERS
-----------------------------------------------------------------------------*/
.slider-range,
.slider-default,
.slider-range-max,
.slider-range-min {
  border: none;
  background-color: transparent;
  height: 13px;
}
.slider-range .ui-slider-handle,
.slider-default .ui-slider-handle,
.slider-range-max .ui-slider-handle,
.slider-range-min .ui-slider-handle {
  border: none;
  height: 13px !important;
  margin-left: -4px;
  top: 0px !important;
  width: 9px !important;
  background: none;
  background-color: #777777 !important;
  border-radius: 0;
}
.slider-range .ui-slider-handle.ui-state-focus,
.slider-default .ui-slider-handle.ui-state-focus,
.slider-range-max .ui-slider-handle.ui-state-focus,
.slider-range-min .ui-slider-handle.ui-state-focus {
  background-color: #333 !important;
}
.slider-range .ui-total-slider-range,
.slider-default .ui-total-slider-range,
.slider-range-max .ui-total-slider-range,
.slider-range-min .ui-total-slider-range {
  background-color: #eaeaea;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 6px;
}
.slider-range .ui-slider-range,
.slider-default .ui-slider-range,
.slider-range-max .ui-slider-range,
.slider-range-min .ui-slider-range {
  background: none;
  background-color: #888888;
  height: 1px;
  top: 6px;
}

.price-amount {
  width: 37%;
}

.cart-table {
  width: 100%;
}
.cart-table th {
  background-color: #f9f9f9;
  border: none;
  color: #888888;
  font: 14px "Roboto Condensed";
  height: 58px;
  letter-spacing: 1.2px;
  text-align: center;
}
.cart-table td {
  text-align: center;
  vertical-align: top;
}
.cart-table .product-name {
  width: 41.88034188034188%;
}
.cart-table .product-name .image
, .cart-table .product-name .image-comment {
  float: left;
}
.cart-table .product-name .image {
  width: 40%;
}
.cart-table .product-name .image img {
  max-width: 100%;
}
.cart-table .product-name .image-comment {
  padding-left: 24px;
  text-align: left;
  width: 60%;
}
.cart-table .product-name .image-comment h2 {
  color: #777777;
  line-height: 20px;
  margin-bottom: 8px;
  margin-top: 20px;
}
.cart-table .product-name .image-comment span {
  color: #bababa;
  display: block;
  font: 13px "Verdana";
  line-height: 22px;
}
.cart-table td.product-name {
  padding: 30px;
}
.cart-table .product-code {
  width: 14.7008547008547%;
}
.cart-table td.product-code {
  padding-top: 51px;
  color: #999999;
  font: 14px "Verdana";
}
.cart-table .unit-price ins, .cart-table .quantity ins {
  color: #686868;
  font: 17px "Roboto Condensed";
  text-decoration: none;
}
.cart-table .unit-price del, .cart-table .quantity del {
  color: #cccccc;
  font: 14px "Roboto Condensed";
  padding-left: 2px;
}
.cart-table .unit-price {
  width: 11.96581196581197%;
}
.cart-table td.unit-price {
  padding-top: 48px;
}
.cart-table .quantity {
  width: 13.84615384615385%;
}
.cart-table .quantity input {
  border-color: #f2f2f2;
  border-style: solid;
  border-width: 1px;
  color: #888888;
  font: 15px "Istok Web";
  height: 35px;
  text-align: center;
  width: 95px;
}
.cart-table td.quantity {
  padding-top: 40px;
}
.cart-table .subtotal {
  width: 11.96581196581197%;
}
.cart-table .delete {
  font-size: 12px;
}
.cart-table td.delete {
  padding-top: 50px;
}
.cart-table td.subtotal {
  padding-top: 48px;
  color: #686868;
  font: 17px "Roboto Condensed";
}
.cart-table tr.subtotal td:first-child, .cart-table tr.shipping td:first-child, .cart-table tr.tax td:first-child, .cart-table tr.total td:first-child {
  text-align: right;
}
.cart-table tr.subtotal td, .cart-table tr.shipping td, .cart-table tr.tax td, .cart-table tr.total td {
  color: #888888;
  font: 16px "Roboto Condensed";
  padding: 23px 56px;
}
.cart-table tr.total td {
  background-color: #f9f9f9;
}
.cart-table .last .product-name {
  padding-bottom: 31px;
}

.cart-table.table-bordered,
.total-table.table-bordered {
  border: none;
}
.cart-table.table-bordered > thead,
.total-table.table-bordered > thead {
  border: solid 1px #f2f2f2;
}
.cart-table.table-bordered > thead > tr > th,
.total-table.table-bordered > thead > tr > th {
  border: none;
}
.cart-table.table-bordered > tbody > tr > td,
.cart-table.table-bordered > tbody > tr > th,
.cart-table.table-bordered > tfoot > tr > td,
.cart-table.table-bordered > tfoot > tr > th,
.total-table.table-bordered > tbody > tr > td,
.total-table.table-bordered > tbody > tr > th,
.total-table.table-bordered > tfoot > tr > td,
.total-table.table-bordered > tfoot > tr > th {
  border-color: #f2f2f2;
}
.cart-table.table-bordered > tfoot > tr > td,
.total-table.table-bordered > tfoot > tr > td {
  letter-spacing: 1.1px;
}
.cart-table.table-bordered > tfoot > tr > td:first-child,
.total-table.table-bordered > tfoot > tr > td:first-child {
  letter-spacing: 0.7px;
}

.total-table {
  width: 100%;
}
.total-table td {
  color: #888888;
  font: 16px "Roboto Condensed";
  height: 59px;
  text-align: center;
  width: 45.94594594594595%;
}
.total-table tfoot {
  background-color: #f9f9f9;
}
.total-table tfoot td {
  height: 67px;
}
.total-table tfoot td:first-child {
  padding-left: 30px;
  text-align: left;
}
.total-table .total-table-title {
  letter-spacing: 0.4px;
  padding-left: 30px;
  text-align: left;
  text-transform: uppercase;
  width: 54.05405405405405%;
}

.detail-table {
  border: solid 1px #f3f3f3;
}
.detail-table > tbody > tr:nth-of-type(even) {
  background-color: #fbfbfb;
}
.detail-table > tbody > tr:nth-of-type(odd) {
  background-color: white;
}
.detail-table > tbody > tr > td {
  border-top: none;
  border-bottom: solid 1px #f6f6f6;
  color: #acacac;
  font: 14px/40px "Istok Web";
  letter-spacing: 0.1px;
  padding: 0px 29px;
}
.detail-table > tbody > tr > td:first-child {
  border-right: solid 1px #f6f6f6;
  color: #848383;
  width: 280px;
}

@media (max-width: 1169px) {
  .cart-table td {
    padding: 2.65% 2.73%;
  }
}
@media (max-width: 991px) {
  .cart-table .product-name .image
  , .cart-table .product-name .image-comment {
    float: none;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cart-table tr {
    border: solid 1px #dddddd;
  }
  .cart-table td:not(.delete) {
    border: none !important;
    display: block;
    padding: 10px 0;
    width: 100% !important;
  }
  .cart-table .product-code
  , .cart-table .unit-price
  , .cart-table .quantity
  , .cart-table .subtotal {
    display: none;
  }
  .cart-table .delete {
    width: 65px !important;
  }
  .cart-table .product-name {
    width: -webkit-calc(100% - 65px);
    width: calc(100% - 65px);
  }
}
/*-----------------------------------------------------------------------------
- TABS
-----------------------------------------------------------------------------*/
/* Vertical */
.tabs-vertical {
  border: 1px solid #F3F3F3;
  display: table;
  padding: 0;
  width: 100%;
  min-height: 300px;
}
.tabs-vertical .tab-content {
  display: table-cell;
  vertical-align: top;
}
.tabs-vertical .tab-content h1 {
  color: #999999;
  font-family: 'Verdana';
  letter-spacing: -0.02px;
  margin-bottom: 16px;
  margin-top: 0;
}
.tabs-vertical .nav-tabs {
  display: table-cell;
  border-bottom: none;
  float: none;
  height: 100%;
  padding: 0;
  vertical-align: top;
  width: auto;
}
.tabs-vertical .nav-tabs > li {
  display: block;
  float: none;
  margin-bottom: 0;
  margin-left: -1px;
  margin-right: -1px;
  width: 238px;
}
@media (max-width: 480px) {
  .tabs-vertical .nav-tabs > li {
    width: 120px;
  }
}
.tabs-vertical .nav-tabs > li a {
  display: block;
  border: none;
  border-bottom: 1px solid #f3f3f3;
  font: 14px/58px "Roboto Condensed";
  height: 55px;
  letter-spacing: 0.5px;
  padding: 0 25px;
  width: 100%;
  word-spacing: 3.8px;
}
.tabs-vertical .nav-tabs > li a, .tabs-vertical .nav-tabs > li a:hover, .tabs-vertical .nav-tabs > li a:focus {
  border-radius: 0px;
}
.tabs-vertical .nav-tabs > li.active > a, .tabs-vertical .nav-tabs > li.active > a:hover, .tabs-vertical .nav-tabs > li.active > a:focus {
  border-top: none;
  border-bottom: 1px solid #f3f3f3;
}

/* Horizontal */
.tabs-Horizontal {
  border: 1px solid #F3F3F3;
  padding: 0;
  overflow: hidden;
  width: 100%;
}
.tabs-Horizontal .nav-tabs > li {
  display: block;
  margin-left: -1px;
}
.tabs-Horizontal .nav-tabs > li a {
  display: block;
  font-family: "Roboto Condensed";
  font-size: 14px;
  height: 100%;
  letter-spacing: 1.2px;
  padding: 20px 25px;
  word-spacing: 1.4px;
  line-height: 1;
  border: 1px solid #f3f3f3;
  width: 100%;
  height: 56px;
}
.tabs-Horizontal .nav-tabs > li a, .tabs-Horizontal .nav-tabs > li a:hover, .tabs-Horizontal .nav-tabs > li a:focus {
  border-radius: 0px;
}

.tabs-left .nav-tabs {
  border-right: 1px solid #f3f3f3;
}
.shop.type1 .tabs-left .nav-tabs {
  width: 20.5125282%;
}
.shopping-cart .tabs-left .nav-tabs {
  width: 35.06493506493506%;
}
.tabs-left .nav-tabs > li.active a,
.tabs-left .nav-tabs > li a:hover,
.tabs-left .nav-tabs > li a:focus {
  border-left: 1px solid #666666;
  border-right: none;
  color: #666666;
}
.tabs-left .tab-content {
  padding-bottom: 23px;
}
.shop.type1 .tabs-left .tab-content {
  width: 79.487179%;
}
.shop.type1 .tabs-left .tab-content > div {
  padding: 30px 40px;
}
.shop.type1 .tabs-left .tab-content .explanation i {
  color: #0eaefb;
}
.shopping-cart .tabs-left .tab-content {
  width: 64.93506493506494%;
}
.shopping-cart .tabs-left .tab-content > div {
  padding: 20px 30px 10px 30px;
}
.shopping-cart .tabs-left .tab-content > div::after {
  clear: both;
  content: "";
  display: table;
}
.tabs-left .tab-pane .comments-header h3 {
  color: #c2bfbf;
  font: normal 19px "Roboto Condensed";
  letter-spacing: 1.4px;
  margin-bottom: 28px;
  margin-top: 8px;
  word-spacing: 1.1px;
}
.tabs-left .tab-pane .comments-header h3 span.comment-title {
  color: #848484;
  letter-spacing: 2.4px;
  padding-right: 2px;
}
.tabs-left .tab-pane .comments-header .pull-right {
  margin-right: 2px;
}
.tabs-left .tab-pane .comments-header .pull-right span {
  color: #a0a0a0;
  display: block;
  padding-top: 7px;
  padding-right: 8px;
}
.tabs-left .tab-pane .form-row {
  padding: 3px 0 7px;
}
.tabs-left .tab-pane .form-row .title {
  color: #999999;
  display: block;
  float: left;
  font: 14px/43px "Verdana";
  width: 27.27272727272727%;
}
.tabs-left .tab-pane .form-row .content {
  display: block;
  float: left;
  width: 72.72727272727273%;
}
.tabs-left .tab-pane .form-row .content input[type="text"] {
  width: -webkit-calc(93.75% - 130px);
  width: calc(93.75% - 130px);
  border-color: #ebebeb;
  border-radius: 0px;
  box-shadow: none;
  color: #b2b2b2;
  float: left;
  height: 43px;
  margin-right: 6.25%;
  padding: 0 6.25%;
}
.tabs-left .tab-pane .form-row .content input[type="submit"] {
  float: left;
  font-weight: bold;
  height: 43px;
  padding: 0px;
  width: 130px;
  letter-spacing: 1.2px;
}
.tabs-left .tab-pane .form-row .content .bootstrap-select {
  height: auto;
}
.tabs-left .tab-pane .form-row .content .bootstrap-select button {
  padding-bottom: 9px;
  padding-top: 10px;
}
.tabs-left .tab-pane .form-row .content .bootstrap-select span {
  font: 15px "Istok Web";
}
.tabs-left .tab-pane .reviews .review {
  margin-bottom: 15px;
  margin-left: 2px;
}
.tabs-left .tab-pane .reviews .review::after {
  clear: both;
  content: "";
  display: table;
}
.tabs-left .tab-pane .reviews .review .image,
.tabs-left .tab-pane .reviews .review .image-comment {
  color: #acacac;
  float: left;
  margin-bottom: 22px;
}
.tabs-left .tab-pane .reviews .review .image {
  padding: 14px 0;
  width: 70px;
}
.tabs-left .tab-pane .reviews .review .image img {
  border-radius: 50%;
}
.tabs-left .tab-pane .reviews .review .image-comment {
  margin-left: 16px;
  margin-top: 4px;
  letter-spacing: -0.7px;
  line-height: 22px;
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
}
.tabs-left .tab-pane .reviews .review .image-comment p {
  color: #acacac;
  font: normal 14px "Verdana";
  letter-spacing: 0.7px;
  line-height: 23px;
  margin: 8px 2px;
  word-spacing: 0.6px;
}
.tabs-left .tab-pane .reviews .review .image-comment p + span {
  display: block;
  letter-spacing: 0.1px;
  padding-left: 4px;
  word-spacing: -1.5px;
}
.tabs-left .tab-pane .reviews .review .image-comment span.review-title {
  color: #777777;
  font-size: 18px;
  letter-spacing: 0.1px;
  word-spacing: -1.6px;
}
.tabs-left .tab-pane .reviews .review .image-comment span {
  color: #c2c1c1;
  font-family: "Arial";
  font-size: 14px;
}
.tabs-left .tab-pane .reviews .review .image-comment .pull-right {
  margin-right: -3px;
  margin-top: -2px;
}
.tabs-left .tab-pane .review-customer {
  letter-spacing: 2px;
  margin-top: 23px;
  margin-bottom: 17px;
}
.tabs-left .tab-pane .review-customer h3 {
  color: #848484;
  letter-spacing: 2px;
  margin-bottom: 31px;
  margin-top: 0;
}
.tabs-left .tab-pane .review-customer .rating {
  color: #ababab;
  letter-spacing: -0.5px;
  margin-left: 1px;
}
.tabs-left .tab-pane .review-customer .rating .star-rating {
  letter-spacing: 5px;
}
.tabs-left .tab-pane .review-customer #reviewForm {
  margin-left: 2px;
  margin-right: 2px;
}
.tabs-left .tab-pane .review-customer #reviewForm input[type="submit"] {
  font: bold 13.01px "Roboto Condensed";
  letter-spacing: 1.2px;
  padding: 0 18px;
}
.tabs-left .tab-pane .review-customer #reviewForm input[type="submit"]:not(:hover) {
  border: solid 1px #444645;
  color: #444645;
}
.tabs-left .tab-pane .review-customer #reviewForm .row .form-control {
  color: #ababab;
}
.tabs-left .tab-pane .review-customer #reviewForm .row .form-control::-webkit-input-placeholder {
  color: #ababab;
}
.tabs-left .tab-pane .review-customer #reviewForm .row .form-control::-moz-placeholder {
  color: #ababab;
}
.tabs-left .tab-pane .review-customer #reviewForm .row .form-control:-moz-placeholder {
  color: #ababab;
}
.tabs-left .tab-pane .review-customer #reviewForm .row .form-control:-ms-input-placeholder {
  color: #ababab;
}

.tabs-top .nav-tabs {
  float: none;
  border-top: none;
  border-bottom: 1px solid #f3f3f3;
}
.tabs-top .nav-tabs > li {
  margin-bottom: -1px;
  margin-top: -1px;
}
.tabs-top .nav-tabs > li.active a,
.tabs-top .nav-tabs > li a:hover,
.tabs-top .nav-tabs > li a:focus {
  border-bottom: none;
  border-top: 1px solid #666666;
  color: #666666;
}

.tabs-bottom .nav-tabs {
  float: none;
  border-top: 1px solid #f3f3f3;
  border-bottom: none;
}
.tabs-bottom .nav-tabs > li {
  margin-top: -1px;
}
.tabs-bottom .nav-tabs > li.active a,
.tabs-bottom .nav-tabs > li a:hover,
.tabs-bottom .nav-tabs > li a:focus {
  border-top: none;
  border-bottom: 1px solid #666666;
  color: #666666;
}

.tabs-right .nav-tabs {
  border-left: 1px solid #f3f3f3;
}
.tabs-right .nav-tabs > li.active a,
.tabs-right .nav-tabs > li a:hover,
.tabs-right .nav-tabs > li a:focus {
  border-left: none;
  border-right: 1px solid #666666;
  color: #666666;
}

.tabs-default > div {
  padding: 20px;
}
.tabs-default > div p {
  color: #acacac;
}

/* Vertical */
.resp-vtabs {
  border: 1px solid #f2f2f2;
  min-height: 300px;
  padding: 0;
}
.resp-vtabs::after {
  clear: both;
  content: "";
  display: table;
}
.resp-vtabs .resp-tabs-container {
  border-radius: 0;
  border: none;
  border-left: 1px solid #f2f2f2 !important;
  margin-left: -1px;
  min-height: 300px;
}
.resp-vtabs .resp-tabs-container h1 {
  color: #999999;
  font-family: 'Verdana';
  letter-spacing: -0.02px;
  margin-bottom: 16px;
  margin-top: 0;
}
.resp-vtabs .resp-tabs-container .tab-pane::after {
  clear: both;
  content: "";
  display: table;
}
.resp-vtabs .resp-tab-content {
  border: none;
}
.resp-vtabs .resp-tabs-list {
  border-radius: 0;
  border: solid 1px #f2f2f2;
  border-top: none;
  border-bottom: none;
  height: 100%;
  margin: -1px 0 -1px -1px !important;
}
.resp-vtabs .resp-tabs-list li {
  background-color: white !important;
  border: solid 1px #f2f2f2 !important;
  padding: 0 !important;
  margin: 0 -1px -1px -1px !important;
}
.resp-vtabs .resp-tabs-list li:hover, .resp-vtabs .resp-tabs-list li:focus, .resp-vtabs .resp-tabs-list li:active {
  background: transparent;
  border-left: solid 1px #666666;
  border-right: solid 1px white;
  color: #666666;
}
.resp-vtabs .resp-tabs-list li:hover a, .resp-vtabs .resp-tabs-list li:focus a, .resp-vtabs .resp-tabs-list li:active a {
  background: transparent;
}
.resp-vtabs .resp-tabs-list li a {
  background: transparent;
  display: block;
  font: 14px/59px "Roboto Condensed";
  letter-spacing: 0.8px;
  padding: 0 25px;
  width: 100%;
  word-spacing: 1.4px;
}
.resp-vtabs .resp-tabs-list li a:hover,
.resp-vtabs .resp-tabs-list li a:focus,
.resp-vtabs .resp-tabs-list li a:active {
  color: #666666;
  background: transparent;
}
.resp-vtabs .resp-tabs-list li.resp-tab-active {
  background: transparent;
  border-left: solid 1px #666666 !important;
  border-right: solid 1px white !important;
}
.resp-vtabs .resp-tabs-list li.resp-tab-active a {
  color: #666666;
}
.resp-vtabs .resp-tab-content {
  padding: 21px 29px;
}
.resp-vtabs .resp-tab-content .explanation i {
  color: #0eaefb;
}

@media (max-width: 767px) {
  .resp-vtabs {
    min-height: 0;
  }
  .resp-vtabs .resp-arrow {
    margin-top: 22px;
  }
  .resp-vtabs .resp-tabs-container {
    min-height: 1px !important;
    width: 100% !important;
  }
  .resp-vtabs .resp-tab-content {
    padding: 32px 50px;
  }
  .resp-vtabs h2.resp-accordion {
    background-color: #f9f9f9;
    display: block;
    font: 14px "Roboto Condensed";
    height: 56px;
    letter-spacing: 1.2px;
    line-height: 56px;
    padding: 0 25px;
    width: 100%;
    word-spacing: 1.4px;
  }
  .resp-vtabs h2.resp-accordion:hover, .resp-vtabs h2.resp-accordion:active {
    background: transparent;
  }
  .resp-vtabs h2.resp-tab-active {
    border-color: #efefef !important;
    padding: 0 25px !important;
  }
  .resp-vtabs .tab-pane #quote_form {
    margin-top: -10px;
  }
  .resp-vtabs .tab-pane .form-row {
    padding: 10px 0;
  }
  .resp-vtabs .tab-pane .title,
  .resp-vtabs .tab-pane .content {
    float: none;
    padding: 0;
    width: 100%;
  }
  .resp-vtabs .tab-pane .title input[type="text"],
  .resp-vtabs .tab-pane .content input[type="text"] {
    float: none;
    width: 100%;
  }
  .resp-vtabs .tab-pane .title input[type="submit"],
  .resp-vtabs .tab-pane .content input[type="submit"] {
    display: block;
    float: none;
    margin-top: 10px;
  }
}
.resp-htabs {
  border: 1px solid #f2f2f2;
  padding: 0;
}
.resp-htabs::after {
  clear: both;
  content: "";
  display: table;
}
.resp-htabs .resp-tabs-container {
  border-radius: 0;
  border: none;
}
.resp-htabs .resp-tabs-container h1 {
  color: #999999;
  font-family: 'Verdana';
  letter-spacing: -0.02px;
  margin-bottom: 16px;
  margin-top: 0;
}
.resp-htabs .resp-tabs-container .tab-pane::after {
  clear: both;
  content: "";
  display: table;
}
.resp-htabs .resp-tab-content {
  border: none;
}
.resp-htabs .resp-tabs-list {
  border-radius: 0;
  margin: -1px -1px 0 -1px !important;
  border: solid 1px #f2f2f2;
  border-left: none;
}
.resp-htabs .resp-tabs-list li {
  background-color: white !important;
  border: solid 1px #f2f2f2 !important;
  padding: 0 !important;
  margin: -1px -1px -1px 0 !important;
}
.resp-htabs .resp-tabs-list li:hover, .resp-htabs .resp-tabs-list li:focus, .resp-htabs .resp-tabs-list li:active {
  background: transparent;
  border-top: solid 1px #666666;
  border-bottom: solid 1px white;
  color: #666666;
}
.resp-htabs .resp-tabs-list li:hover a, .resp-htabs .resp-tabs-list li:focus a, .resp-htabs .resp-tabs-list li:active a {
  background: transparent;
}
.resp-htabs .resp-tabs-list li a {
  background: transparent;
  display: block;
  font: 14px/59px "Roboto Condensed";
  letter-spacing: 0.8px;
  padding: 0 25px;
  width: 100%;
  word-spacing: 1.4px;
}
.resp-htabs .resp-tabs-list li a:hover,
.resp-htabs .resp-tabs-list li a:focus,
.resp-htabs .resp-tabs-list li a:active {
  color: #666666;
  background: transparent;
}
.resp-htabs .resp-tabs-list li.resp-tab-active {
  background: transparent;
  border-top: solid 1px #666666 !important;
  border-bottom: solid 1px white !important;
}
.resp-htabs .resp-tabs-list li.resp-tab-active a {
  color: #666666;
}
.resp-htabs .resp-tab-content {
  padding: 21px 29px;
}
.resp-htabs .resp-tab-content .explanation i {
  color: #0eaefb;
}

@media (max-width: 767px) {
  .resp-htabs .resp-arrow {
    margin-top: 22px;
  }
  .resp-htabs .resp-tabs-container {
    min-height: 1px !important;
    width: 100% !important;
  }
  .resp-htabs .resp-tab-content {
    padding: 32px 50px;
  }
  .resp-htabs h2.resp-accordion {
    background-color: #f9f9f9;
    display: block;
    font: 14px "Roboto Condensed";
    height: 56px;
    letter-spacing: 1.2px;
    line-height: 56px;
    padding: 0 25px;
    width: 100%;
    word-spacing: 1.4px;
  }
  .resp-htabs h2.resp-accordion:hover, .resp-htabs h2.resp-accordion:active {
    background: transparent;
  }
  .resp-htabs h2.resp-tab-active {
    border-color: #efefef !important;
    padding: 0 25px !important;
  }
  .resp-htabs .tab-pane #quote_form {
    margin-top: -10px;
  }
  .resp-htabs .tab-pane .form-row {
    padding: 10px 0;
  }
  .resp-htabs .tab-pane .title,
  .resp-htabs .tab-pane .content {
    float: none;
    padding: 0;
    width: 100%;
  }
  .resp-htabs .tab-pane .title input[type="text"],
  .resp-htabs .tab-pane .content input[type="text"] {
    float: none;
    width: 100%;
  }
  .resp-htabs .tab-pane .title input[type="submit"],
  .resp-htabs .tab-pane .content input[type="submit"] {
    display: block;
    float: none;
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .title {
    font-size: 42px;
  }
}
.title-bg .title {
  padding-left: 8px;
  font-size: 40px;
  margin-bottom: 15px;
}

.title-desc {
  font: 17px/1.5 "PT Sans", Arial, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.reverse .title {
  padding-left: 0;
  padding-right: 8px;
  text-align: right;
}

.reverse .title-bg {
  text-align: right;
}

.reverse .title-desc {
  text-align: right;
}

.title-bg .title {
  margin: 7.5px 0;
}

.title-bg > h1, .title-bg > h2, .title-bg > h3, .title-bg > h4, .title-bg > h5 {
  position: relative;
  display: inline-block;
  left: 0;
  padding-right: 30px;
  z-index: 1;
  background: #fff;
}

.title-bg, .title-bg-double {
  position: relative;
}

.title-bg:after {
  content: '';
  background: #dcdcdc;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5px;
  display: block;
  width: 100%;
  height: 1px;
  z-index: 0;
}

.reverse .title-bg > h1, .reverse .title-bg > h2, .reverse .title-bg > h3, .reverse .title-bg > h4, .reverse .title-bg > h5 {
  padding-left: 30px;
}

.sub-title {
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 0;
}

.sub-title.reverse {
  text-align: right;
}

.explanation {
  color: #777777;
  padding: 10px 0;
}
.explanation p {
  font: 15px 'Arial';
  letter-spacing: 0.15px;
  line-height: 23px;
  margin-bottom: 15px;
}
.explanation .title {
  font: 28px "Istok Web";
}

.fans {
  color: #a6a5a5;
  font: 15px "Roboto Condensed";
}

.quote::after {
  clear: both;
  content: "";
  display: table;
}
.explonation.type1 .quote {
  margin-bottom: 6px;
}
.quote span {
  float: left;
  font-size: 22px;
  height: 32px;
  line-height: 32px;
  width: 32px;
}
.quote p {
  width: -webkit-calc(100% - 32px);
  width: calc(100% - 32px);
  float: left;
}
.type1 .quote p {
  padding: 8px 5px;
}
.type2 .quote p {
  margin-bottom: 13px;
  padding: 9px 5px;
}

.post-date span, .date span {
  color: #dadada;
  font-family: "Verdana";
}
.post-date .day, .date .day {
  font-size: 27px;
}
.post-date .month, .post-date .divider, .post-date .comment-length, .date .month, .date .divider, .date .comment-length {
  font-size: 13px;
}

.category {
  color: #dadada;
  font-family: "Verdana";
  font-size: 14px;
}
.category.large {
  font-size: 15px;
}

highlight {
  padding: 0 0.3em;
  background: #dcdcdc;
}

.highlight.reverse {
  color: #fff;
  background: #7c807e;
}

.highlight.first-color {
  color: #fff;
  background: #84af9b;
}

.first-color {
  color: #84af9b;
}

.highlight.second-color {
  color: #fff;
  background: #c9c8aa;
}

.second-color {
  color: #c9c8aa;
}

.highlight.third-color {
  color: #fff;
  background: #ff847f;
}

.third-color {
  color: #ff847f;
}

.highlight.fourth-color {
  color: #fff;
  background: #84af9b;
}

.fourth-color {
  color: #84af9b;
}

.first-color {
  color: #84af9b;
}

.second-color {
  color: #c9c8aa;
}

.third-color {
  color: #ff847f;
}

.dropcap, .dropcap-bg {
  font-size: 3.8em;
  line-height: 1;
  padding-right: 0.1em;
  float: left;
  text-transform: uppercase;
}

.dropcap-bg {
  padding: 0.03em 0.06em;
  color: #7c807e;
  margin-right: 0.15em;
  background: #f1f1f1;
}

.dropcap, .dropcap-bg {
  font-size: 3.8em;
  line-height: 1;
  padding-right: 0.1em;
  float: left;
  text-transform: uppercase;
}

.dropcap.first-color {
  color: #84af9b;
}

.dropcap.second-color {
  color: #c9c8aa;
}

.dropcap-bg.second-color {
  background: #c9c8aa;
  color: #fff;
}

.dropcap.third-color {
  color: #ff847f;
}

.dropcap-bg.third-color {
  background: #ff847f;
  color: #fff;
}

.dropcap.fourth-color {
  color: #84af9b;
}

.dropcap-bg.fourth-color {
  background: #84af9b;
  color: #fff;
}

.quote p {
  margin-bottom: 13px;
  padding: 9px 5px;
}

.left-map {
  height: 700px;
  width: 100%;
}

.top-map {
  height: 500px;
  width: 100%;
}

.bottom-map {
  height: 300px;
  width: 100%;
}

#google_map div.gmnoprint,
#google_map div.gmnoscreen,
#google_map div.gm-style-cc {
  display: none;
}
#google_map img[src="http://maps.gstatic.com/mapfiles/api-3/images/google_white2.png"], #google_map a[href^="https://maps.google.com"] {
  display: none !important;
}

/*# sourceMappingURL=theme-elements.css.map */
