@charset "UTF-8";



/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url(//kuechenberatung.online/wp-content/themes/trusted/css/fonts/fontawesome-webfont.eot?v=4.7.0);src:url(//kuechenberatung.online/wp-content/themes/trusted/css/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(//kuechenberatung.online/wp-content/themes/trusted/css/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(//kuechenberatung.online/wp-content/themes/trusted/css/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(//kuechenberatung.online/wp-content/themes/trusted/css/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(//kuechenberatung.online/wp-content/themes/trusted/css/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
/*
Theme Name: Trusted
Theme URI: https://uxlthemes.com/theme/trusted/
Author: UXL Themes
Author URI: https://uxlthemes.com
Description: Trusted WordPress theme is simple yet elegant with a fully responsive design. It has been designed to be modern and fresh and is suitable for many type of website, blog or e-commerce store. It is designed to integrate with the WooCommerce plugin to give your site an attractive shop front. The colors can be changed in the customizer and previewed fast in real time. The header has both dark and light styles and features telephone number as well as WooCommerce account/login/register and shopping cart. The static front page features 3 (three) featured services with icon selection, WooCommerce tabs to showcase your products and a full width phone/call-to-action panel. There is also a Blank Canvas page template with no page title or sidebar, containing only the masthead and footer, ideal for use with page builder plugins. The Trusted theme also comes with 9 (nine) widget areas including 4 (four) distinct sidebars for blog, page, home page and shop. Other widget areas allow you to add your own content to the top bar, 3 (three) footer columns and an extra middle footer area. It also supports a main primary navigation menu and a footer menu which has support for social media icons/links.
Version: 1.11.0
Requires at least: 5.9
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trusted
Tags: one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, full-width-template, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, footer-widgets, blog, e-commerce

This theme, like WordPress, is licensed under the GPL.
*/

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

body{
	margin: 0;
}

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

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

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

[hidden],
template{
	display: none;
}

a{
	background-color: transparent;
}

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

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

b,
strong{
	font-weight: bold;
}

dfn{
	font-style: italic;
}

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

small{
	font-size: 80%;
}

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

sup{
	top: -0.5em;
}

sub{
	bottom: -0.25em;
}

img{
	border: 0;
}

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

figure{
	margin: 0;
}

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

pre{
	overflow: auto;
}

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

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

button{
	overflow: visible;
}

button,
select{
	text-transform: none;
}

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

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

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

input{
	line-height: normal;
}

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

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

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

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

legend{
	border: 0;
	padding: 0;
}

textarea{
	overflow: auto;
}

optgroup{
	font-weight: bold;
}

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

th{
	padding: 0.3em;
	border: 1px solid #f5f5f5;
	background: #f9f9f9;
}
td{
	padding: 0.3em;
	border: 1px solid #f5f5f5;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea{
	color: #323b44;
	font-family: 'Open Sans', Helvetica, Arial, Verdana, sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.68;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wc-block-grid__product-title{
	color: #323b45;
	font-weight: 400;
	line-height: 1.2;
	font-family: 'Montserrat', Helvetica, Arial, Verdana, sans-serif;
	margin: 0;
}

h1{
	font-size: 26px;
	margin-bottom: 30px;
}

h2{
	font-size: 24px;
	margin-bottom: 25px;
}

h3{
	font-size: 22px;
	margin-bottom: 20px;
}

h4{
	font-size: 20px;
	margin-bottom: 15px;
}

h5{
	font-size: 18px;
	margin-bottom: 10px;
}

h6{
	font-size: 16px;
	margin-bottom: 10px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6{
	position: relative;
	padding-bottom: 5px;
}

.entry-content h1:before,
.entry-content h2:before,
.entry-content h3:before,
.entry-content h4:before,
.entry-content h5:before,
.entry-content h6:before{
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	height: 4px;
	background-color: #00bc96;
	background-image: url(//kuechenberatung.online/wp-content/themes/trusted/images/content-heading-bg.png);
	background-position: left center;
	background-repeat: repeat-y;
	border-radius: 2px;
}
.entry-content h1:after,
.entry-content h2:after,
.entry-content h3:after,
.entry-content h4:after,
.entry-content h5:after,
.entry-content h6:after{
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	height: 4px;
	background: rgba(0,0,0,0.03);
	border-radius: 2px;
}

.entry-content h1:before{
	width: 66px;
}
.entry-content h1:after{
	width: 170px;
}
.entry-content h1.center:before{
	left: 50%;
	margin-left: -33px;
}
.entry-content h1.center:after{
	left: 50%;
	margin-left: -85px;
}
.entry-content h1.right:before{
	left: auto;
	right: 0;
}
.entry-content h1.right:after{
	left: auto;
	right: 0;
}

.entry-content h2:before{
	width: 40px;
}
.entry-content h2:after{
	width: 106px;
}
.entry-content h2.center:before{
	left: 50%;
	margin-left: -20px;
}
.entry-content h2.center:after{
	left: 50%;
	margin-left: -53px;
}
.entry-content h2.right:before{
	left: auto;
	right: 0;
}
.entry-content h2.right:after{
	left: auto;
	right: 0;
}

.entry-content h3:before{
	width: 26px;
	height: 2px;
}
.entry-content h3:after{
	width: 66px;
	height: 2px;
}
.entry-content h3.center:before{
	left: 50%;
	margin-left: -13px;
}
.entry-content h3.center:after{
	left: 50%;
	margin-left: -33px;
}
.entry-content h3.right:before{
	left: auto;
	right: 0;
}
.entry-content h3.right:after{
	left: auto;
	right: 0;
}

.entry-content h4:before{
	width: 16px;
	height: 2px;
}
.entry-content h4:after{
	width: 40px;
	height: 2px;
}
.entry-content h4.center:before{
	left: 50%;
	margin-left: -8px;
}
.entry-content h4.center:after{
	left: 50%;
	margin-left: -20px;
}
.entry-content h4.right:before{
	left: auto;
	right: 0;
}
.entry-content h4.right:after{
	left: auto;
	right: 0;
}

.entry-content h5:before{
	width: 10px;
	height: 1px;
}
.entry-content h5:after{
	width: 26px;
	height: 1px;
}
.entry-content h5.center:before{
	left: 50%;
	margin-left: -5px;
}
.entry-content h5.center:after{
	left: 50%;
	margin-left: -13px;
}
.entry-content h5.right:before{
	left: auto;
	right: 0;
}
.entry-content h5.right:after{
	left: auto;
	right: 0;
}

.entry-content h6:before{
	width: 6px;
	height: 1px;
}
.entry-content h6:after{
	width: 16px;
	height: 1px;
}
.entry-content h6.center:before{
	left: 50%;
	margin-left: -3px;
}
.entry-content h6.center:after{
	left: 50%;
	margin-left: -8px;
}
.entry-content h6.right:before{
	left: auto;
	right: 0;
}
.entry-content h6.right:after{
	left: auto;
	right: 0;
}

p{
	margin:0 0 15px;
}

dfn,
cite,
em,
i{
	font-style: italic;
}

blockquote{
	margin: 0 15px;
}

address{
	margin: 0 0 15px;
}

pre{
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code{
	background-color: #f2f2f2;
	padding: 0.125em 0.25em;
}

code,
kbd,
tt,
var{
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym{
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins{
	background: #fff9c0;
	text-decoration: none;
}

big{
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html{
	box-sizing: border-box;
}

*,
*:before,
*:after{ /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body{
	background: #f7f7f7; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after{
	content: "";
}

q:before{
	font-family: 'FontAwesome';
	content: "\f10d";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 12px;
}
q:after{
	font-family: 'FontAwesome';
	content: "\f10e";
	position: absolute;
	top: 0;
	right: 0;
	font-size: 12px;
}

blockquote{
	quotes: "" "";
	font-size: 105%;
	background: rgba(0,0,0,0.03);
  	border-left: 10px solid rgba(0,0,0,0.2);
  	margin: 1.5em 10px;
  	padding: 0.5em 10px;
	border-radius: 3px;
}

q{
	quotes: "" "";
	position: relative;
	padding: 0 17px;
}

hr{
	background-color: rgba(0,0,0,0.2);
	border: 0;
	height: 1px;
	margin-bottom: 15px;
}

ul,
ol{
	margin: 0 0 15px 20px;
	padding: 0;
}

ul{
	list-style: disc;
}

ol{
	list-style: decimal;
}

li > ul,
li > ol{
	margin-bottom: 0;
	margin-left: 15px;
}

dt{
	font-weight: bold;
}

dd{
	margin: 0 15px 15px;
}

img{
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
	vertical-align: middle;
}

table{
	margin: 0 0 15px;
	width: 100%;
	border: 1px solid #f5f5f5;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
#infinite-handle span button,
#infinite-handle span button:hover,
#infinite-handle span button:focus,
#infinite-handle span button:active{
	background: #00bc96;
	padding: 0 20px;
	color: #fff;
	border: 0;
	border-radius: 3px;
	line-height: 36px;
	height: 36px;
	box-shadow: inset 0 0 0 rgba(0,0,0,.15);
	transition: all .5s;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
#infinite-handle span button:hover{
	box-shadow: inset 0 -100px 0 transparent;
	transition: all linear 1s;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
#infinite-handle span button:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active,
#infinite-handle span button:active{
	outline: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea{
	color: #404040;
	border: 1px solid #DDD;
	border-radius: 3px;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	height: 36px;
	width: 100%;
}

select{
	border: 1px solid #DDD;
	padding: 3px 40px 3px 8px;
	height: 36px;
	background-color: transparent;
	background-color: #fff;
	line-height: 100%;
	outline: 0;
	background-image: url(//kuechenberatung.online/wp-content/themes/trusted/images/select-arrow.png);
	background-position: right center;
	background-repeat: no-repeat;
	position: relative;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 3px;
}
select::-ms-expand {
	display: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus{
	outline: 0;
	border: 1px solid rgba(0,0,0,0.2);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"]{
	padding: 3px 8px;
}

textarea{
	padding: 3px 8px;
	width: 100%;
	min-height: 100px;
}

input[type="search"]{
	width: auto;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a{
	color: #00bc96;
	text-decoration: none;
}

a:visited{

}

a:hover,
a:focus,
a:active{
	color: #00bc96;
}

a:focus{
	outline: 0;
}

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

.single-entry-content a{
	color: #00bc96;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	font-weight: 500;
}

a.read-more{
	font-size: 90%;
}

a.more-tag{
	display: none;
}

.tag-read-more a.more-tag{
	display: inline-block;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text{
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus{
	background-color: #f1f1f1;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft{
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright{
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter{
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clearfix:before,
.clearfix:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.nav-links:before,
.nav-links:after{
	content: "";
	display: table;
}

.clearfix:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.nav-links:after{
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget{
	margin: 0 0 30px;
}

.widget ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget ul ul{
	margin-left: 10px;
}

.widget a{
	text-decoration: none;
	color: #000;
}

.widget .post-date{
	font-size: 80%;
	color: #bbb;
	padding-right: 50%;
	white-space: nowrap;
}

#colophon .widget{
	margin: 0;
}

/* Make sure select elements fit in widgets. */
.widget select{
	max-width: 100%;
}

/* Search widget. */
.widget_search .search-submit{
	display: none;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky{
	display: block;
}

.hentry{
	margin: 0 0 30px;
}

.updated:not(.published){
	display: none;
}

.single-entry-content{
	font-size: 15px;
}

.page-links{
	clear: both;
	margin: 0 0 15px;
}

#primary{
	background: transparent;
	width: 66%;
	float: left;
	transform: translateY(0);
}
#primary.full-width{
	width: auto;
	float: none;
}

#secondary{
	background: transparent;
	width: 31%;
	float: right;
	transform: translateY(0);
}

article{
	position: relative;
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 20px;
}

.blank-canvas-full-width article{
	position: relative;
	background: #fff;
	border-radius: 0;
	padding: 0;
	margin-bottom: 0;
}

article.post{
	background: #fff;
	padding: 20px;
	border-top: 1px solid rgba(0,0,0,0.02);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}

article.post:hover{
	transition: .2s box-shadow ease-out;
	box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1);
}

.search-results article{
	background: #fff;
	padding: 20px;
	border-top: 1px solid rgba(0,0,0,0.02);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}

.search-results article:hover{
	transition: .2s box-shadow ease-out;
	box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1);
}

.single article,
.single article:hover{
	padding: 20px;
	border: none;
	box-shadow: none;
}

.entry-figure{
	text-align: center;
	margin-bottom: 15px;
}

.post-wrapper{
}

.entry-header{
	text-align: left;
	margin-bottom: 15px;
}

.entry-header .entry-title{
	position: relative;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

article.post.sticky .entry-header .entry-title{
	margin-bottom: 30px;
}

.entry-header .entry-title:before{
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	height: 4px;
	width: 65px;
	background-color: #00bc96;
	background-image: url(//kuechenberatung.online/wp-content/themes/trusted/images/content-heading-bg.png);
	background-position: left center;
	background-repeat: repeat-y;
	border-radius: 2px;
	transition: .2s width ease-out;
}
.entry-header .entry-title:after{
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	height: 4px;
	width: 100%;
	background: rgba(0,0,0,0.03);
	border-radius: 2px;
}
article.post.sticky .entry-header .entry-title:before,
article.post.sticky .entry-header .entry-title:after{
	height: 20px;
	border-bottom: 3px solid rgba(0,0,0,0.03);
}
article.post.sticky .entry-header .entry-title:after{
	font-family: 'FontAwesome';
	content: "\f08d";
	font-size: 20px;
	text-align: right;
	color: #00bc96;
	line-height: 1;
	padding-right: 10px;
	transition: .2s color ease-in;
}

article:hover .entry-header .entry-title:before{
	width: 100%;
	transition: .4s width ease-in-out;
}
article.post.sticky:hover .entry-header .entry-title:after{
	color: #fff;
	transition: .4s color ease-in;
}

article.post .entry-header .trusted-entry-icon:before,
article.post .entry-header .trusted-entry-icon:after{
	font-family: 'FontAwesome';
	font-style: normal;
	content: "";
}

article.post.format-aside .entry-header .trusted-entry-icon:before{
	content: "\f15b";
	margin-right: 10px;
}

article.post.format-image .entry-header .trusted-entry-icon:before{
	content: "\f03e";
	margin-right: 10px;
}

article.post.format-video .entry-header .trusted-entry-icon:before{
	content: "\f03d";
	margin-right: 10px;
}

article.post.format-quote .entry-header .trusted-entry-icon:before{
	content: "\f10e";
	margin-right: 10px;
}

article.post.format-link .entry-header .trusted-entry-icon:before{
	content: "\f0c1";
	margin-right: 10px;
}

article.post.format-quote .entry-header .trusted-entry-icon:before{
	content: "\f10e";
	margin-right: 10px;
}

article.post.format-gallery .entry-header .trusted-entry-icon:before{
	content: "\f03e\f03e";
	margin-right: 10px;
}

article.post.format-audio .entry-header .trusted-entry-icon:before{
	content: "\f001";
	margin-right: 10px;
}

article.post.format-status .entry-header .trusted-entry-icon:before{
	content: "\f075";
	margin-right: 10px;
}

article.post.format-chat .entry-header .trusted-entry-icon:before{
	content: "\f086";
	margin-right: 10px;
}

article.post.post-password-required .entry-header .trusted-entry-icon:after,
article.post.post-password-protected .entry-header .trusted-entry-icon:after{
	content: "\f023";
	margin-right: 10px;
}

.entry-header .entry-title a{
	text-decoration: none;
	color: #323b45;
}

.entry-meta,
.entry-footer{
	font-size: 14px;
	color: rgba(68,68,68,0.5);
	font-style: normal;
}

.entry-footer .edit-link{
	display: block;
	margin: 20px 0;
	clear: both;
}

.entry-meta span,
.entry-footer span{
	margin-right: 10px;
}

.entry-meta span .fa,
.entry-footer span .fa{
	margin-right: 5px;
	background: #00bc96;
	color: #fff;
	border-radius: 100%;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
}

.entry-meta a,
.entry-footer a{
	text-decoration: none;
}

.single .entry-meta{
	margin-bottom: 20px;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
aside{
	background: #fff;
}

#secondary .widget .widget-title{
	color: #323b45;
	font-weight: 300;
	position: relative;
	margin-bottom: 25px;
	font-size: 18px;
	text-align: left;
	text-transform: uppercase;
}

#secondary .widget .widget-title:before{
	position: absolute;
	content: "";
	height: 13px;
	width: 4px;
	background-color: #00bc96;
	top: 4px;
	left: -10px;
	border-radius: 2px;
	transition: .2s all ease-in-out;
}

#secondary .widget:hover .widget-title:before{
	height: 31px;
	top: -5px;
	transition: .2s all ease-in-out;
}

.widget-area ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget-area ul ul{
	border-top: 1px solid #f2f2f2;
	margin-top: 5px;
}

.widget-area ul ul li{
	padding-left: 10px;
}

.widget-area ul ul li:last-child{
	border-bottom: 0;
	padding-bottom: 0;
}

.widget-area li{
	padding: 6px 0;
	border-bottom: 1px solid #f2f2f2;
}

.widget-area a{
	text-decoration: none;
	color: #000;
}

.widget-area a:hover{
	text-decoration: underline;
	color: #00bc96;
}

.widget-area .widget{
	padding: 20px;
	margin-bottom: 25px;
	border-radius: 5px;
	border: 1px solid #dbdbdb;
}
.widget-area .widget.widget_image{
	padding: 5px;
	margin-bottom: 25px;
	border-radius: 5px;
	border: 1px solid #dbdbdb;
}
.widget-area .widget.widget_image img{
	border-radius: 3px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a{
	word-wrap: break-word;
}

.bypostauthor{
	display: block;
}

.author-email-url{
	margin-left: -2%;
}

.comment-form-author{
	float: left;
	width: 32%;
}
.comment-form-email,
.comment-form-url{
	float: left;
	margin-left: 2%;
	width: 32%;
}

.author-email-url input{
	width: 100%;
}

.comment-form .form-submit{
	margin-bottom: 0
}

#comments{
	background: #fff;
	padding: 30px;
	margin-bottom: 25px;
	border-radius: 5px;
	border-top: 1px solid rgba(0,0,0,0.02);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.12);
}
#comments:hover{
	transition: .2s box-shadow ease-out;
	box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1);
}

h3#reply-title,
h3.comments-title{
	position: relative;
	padding-bottom: 10px;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 15px;
}

h3#reply-title:before,
h3.comments-title:before{
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	height: 4px;
	width: 25px;
	background-color: #00bc96;
	background-image: url(//kuechenberatung.online/wp-content/themes/trusted/images/content-heading-bg.png);
	background-position: left center;
	background-repeat: repeat-y;
	border-radius: 2px;
}
h3#reply-title:after,
h3.comments-title:after{
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	height: 4px;
	width: 65px;
	background: rgba(0,0,0,0.03);
	border-radius: 2px;
}

.logged-in-as,
.comment-notes{
	font-size: 13px;
}

#comments ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

#comments li.comment{
	margin: 0 0 20px;
}

#comments li.comment .children{
	display: block;
	margin: 20px 0 0 30px;
	padding: 0px;
	list-style: none;
}

.comment-list a{
	color: #404040;
}

.comment-list a:hover{
	color: #00bc96;
}

.comment-list .comment-respond{
	margin-top: 20px;
	border: 1px solid #EEE;
	padding: 20px;
}

.comment-list .vcard img{
	border-radius: 50%;
	margin-right: 10px;
}

.comment-list .vcard .fn{
	font-weight: normal;
	font-size: 16px;
}

.comment-list .edit-link{
	position: absolute;
	top: 0;
	left: auto;
}

.comment-list .edit-link a{
	font-size: 13px;
	display: inline-block;
	padding: 10px;
}

.comment-list .comment-meta{
	margin-bottom: 15px;
} 

.comment-list .comment-metadata{
	position: absolute;
	bottom: 0;
	padding-top: 10px;
	font-size: 13px;
}

.comment-list .comment-metadata a{
	float: left;
}

.comment-list .reply{
	float: right;
	font-size: 13px;
}

#cancel-comment-reply-link{
	float: right;
	font-size: 13px;
}

.comment-navigation .nav-previous a,
.comment-navigation .nav-next a{
	background: #00bc96;
	color: #fff;
	display: inline-block;
	padding: 0 10px;
	font-size: 12px;
	line-height: 22px;
	position: relative;
}

.comment-navigation .nav-next a{
	margin-right: 13px;
}

.comment-navigation .nav-next a:after{
	content: "";
	position: absolute;
	border-left: 11px solid #00bc96;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	top: 0;
	right: -11px;
}

.comment-navigation .nav-previous a{
	margin-left: 11px;
}

.comment-navigation .nav-previous a:after{
	content: "";
	position: absolute;
	border-right: 11px solid #00bc96;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	top: 0;
	left: -11px;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley{
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object{
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption{
	margin-bottom: 15px;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"]{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text{
	margin: 0.8075em 0;
}

.wp-caption-text{
	background: #f9f9f9;
	border: 1px solid #f5f5f5;
	text-align: center;
	font-size: 16px;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery{
	margin-bottom: 15px;
}

.gallery-item{
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item{
	max-width: 50%;
}

.gallery-columns-3 .gallery-item{
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item{
	max-width: 25%;
}

.gallery-columns-5 .gallery-item{
	max-width: 20%;
}

.gallery-columns-6 .gallery-item{
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item{
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item{
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item{
	max-width: 11.11%;
}

.gallery-caption{
	display: block;
	margin: 0 10px 10px 10px;
}

/*--------------------------------------------------------------
## General
--------------------------------------------------------------*/
.container{
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 10px 0 10px;
}

.container.blank-canvas-full-width{
	max-width: 100%;
	padding: 0;
}

.site-content{
	position: relative;
	z-index: 99;
}

.trusted-overlay{
	background-color: rgba(0,0,0,0.8);
	bottom: 0;
	cursor: default;
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	z-index: 1;
	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	-ms-transition: opacity .5s;
	-o-transition: opacity .5s;
	transition: opacity .5s;
}

.trusted-overlay:target{
	visibility: visible;
	opacity: 1;
}

.trusted-modal{
	background-color: #4f5e70;
	display: inline-block;
	left: 50%;
	opacity: 0;
	padding: 10px 40px 40px 40px;
	position: fixed;
	text-align: justify;
	top: 40%;
	visibility: hidden;
	z-index: 1010;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity .5s, top .5s;
	-moz-transition: opacity .5s, top .5s;
	-ms-transition: opacity .5s, top .5s;
	-o-transition: opacity .5s, top .5s;
	transition: opacity .5s, top .5s;
	border-radius: 5px;
	border: 1px solid #f7f7f7;
	max-width: 99%;
}

.trusted-overlay:target+.trusted-modal{
	top: 50%;
	opacity: 1;
	visibility: visible;
}

.trusted-modal p, .trusted-modal div{
	margin-bottom: 10px;
}

.trusted-modal .close-this{
	display: block;
	margin-bottom: 20px;
	text-align: right;
}

.trusted-modal a.fa-close{
	font-size: 20px;
	font-weight: normal;
}

.trusted-modal select#product_cat.postform{
	border-right-color: transparent;
}

.trusted-modal select{
	text-overflow: ellipsis;
	max-width: 99%;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
#masthead{
	width: 100%;
	background: rgba(79,94,112,0.8);
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999;
	font-family: 'Ubuntu', Helvetica, Arial, Verdana, sans-serif;
	min-height: 70px;
	transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-webkit-transition: all 0.6s ease-in-out;
	height: auto;
}
#masthead.above,
#masthead.scrolled{
	background: #4f5e70;
}

#top-bar{
	display: block;
	margin: 0;
	padding: 10px 0 10px 0;
	background: rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(0,0,0,0.05);
	color: #ddd;
	font-size: 12px;
	line-height: 1.6;
	opacity: 1;
	max-height: 999px;
	transform: translateY(0px);
	transition: padding 0.3s, opacity 0.3s, max-height 0.3s, transform 0.3s ease-in-out;
	-moz-transition: padding 0.3s, opacity 0.3s, max-height 0.3s, transform 0.3s ease-in-out;
	-webkit-transition: padding 0.3s, opacity 0.3s, max-height 0.3s, transform 0.3s ease-in-out;
}

#top-bar a{
	color: #fff;
}
#top-bar a:hover{
	color: #00bc96;
}
#top-bar a.button,
#top-bar button, #top-bar input[type="button"], #top-bar input[type="reset"], #top-bar input[type="submit"]{
	background: #00bc96;
}
#top-bar a.button:hover,
#top-bar button:hover, #top-bar input[type="button"]:hover, #top-bar input[type="reset"]:hover, #top-bar input[type="submit"]:hover{
	color: #fff;
}

#top-bar .fa{
	position: relative;
	top: 1px;
	color: #00bc96;
	font-size: 14px;
	padding: 0 10px;
}

#top-bar .fa:hover{
	color: #fff;
}

#top-bar a.button, #top-bar a.button:hover,
#top-bar button, #top-bar input[type="button"], #top-bar input[type="reset"], #top-bar input[type="submit"],
#top-bar input[type="text"], #top-bar input[type="email"], #top-bar input[type="url"], #top-bar input[type="password"], #top-bar input[type="search"], #top-bar input[type="number"], #top-bar input[type="tel"], #top-bar input[type="range"], #top-bar input[type="date"], #top-bar input[type="month"], #top-bar input[type="week"], #top-bar input[type="time"], #top-bar input[type="datetime"], #top-bar input[type="datetime-local"], #top-bar input[type="color"], #top-bar textarea{
	height: auto;
	padding: 2px 5px;
	font-size: 12px;
	line-height: 1.2;
	margin: 2px 0;
	max-width: 160px;
}

#top-bar p,
#top-bar .widget,
#top-bar .widget p{
	margin: 0;
	padding: 0;
	background: transparent;
}

#top-bar .widget{
	display: inline-block;
	width: 48%;
	vertical-align: top;
}

#top-bar .widget:nth-child(odd){
	text-align: left;
	margin-right: 1%;
}
#top-bar .widget:nth-child(even){
	text-align: right;
	margin-left: 1%;
}

#top-bar ul{
	position: relative;
	list-style: none;
}

#top-bar li{
	display: inline-block;
	margin-left: 12px;
}

#top-bar li:first-child{
	margin-left: 0;
}

#top-bar ul > li > ul{
	display: none;
	background: #4f5e70;
	border: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.1);
	border-top: 0;
	border-radius: 0 0 3px 3px;
	margin-top: 2px;
}

#top-bar ul > li.menu-item-has-children:hover > ul{
	position: absolute;
	display: block;
	margin-left: 0;
	text-align: left;
	z-index: 101;
}
#top-bar ul > li.menu-item-has-children:hover > ul > li{
	display: block;
	margin-left: 0;
	padding: 5px;
}

#top-bar ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul,
#top-bar ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul:hover{
	display: none;
}

#masthead.scrolled #top-bar{
	padding: 0;
	opacity: 0.01;
	max-height: 0px;
	transform: translateY(-999px);
	transition: padding 0.3s, opacity 0.3s, max-height 0.3s, transform 0.9s ease-in-out;
	-moz-transition: padding 0.3s, opacity 0.3s, max-height 0.3s, transform 0.9s ease-in-out;
	-webkit-transition: padding 0.3s, opacity 0.3s, max-height 0.3s, transform 0.9s ease-in-out;
}

#site-branding{
	float: left;
	width: 20%;
	padding: 20px 0 20px 0;
}

#site-description{
	width: 30%;
	float: left;
	text-align: right;
	color: #00bc96;
	padding: 20px 0 0 0;
	font-size: 12px;
	line-height: 1;
}
#site-description.eighty{
	width: 80%;
	padding-right: 15px;
	font-size: 14px;
}

#masthead.scrolled #site-branding{
	padding: 10px 0 10px 0;
}

#masthead.scrolled #site-branding img{
	max-height: 70px;
	width: auto;
}

#masthead.scrolled #site-description{
	padding: 10px 0 0 0;
}

.masthead-block{
	background: transparent;
	height: 70px;
}

.main-header{
	background-color: #ced2d7;
	background-repeat: no-repeat;
	background-position: 65% 0;
	background-size: cover;
	background-attachment: scroll;
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
	min-height: 300px;
}

.home .main-header{
	min-height: 580px;
}

.main-header > .container{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
}

.blank-canvas-header,
.blank-canvas-header-full-width{
	margin-top: 25px;
}

.main-header .header-title{
	opacity: 0;
	transition: opacity .05s linear;
}

.main-header.has-smoothing-effect .header-title{
	opacity: 1;
	transition: opacity .05s linear;
}

.header-title.align-left{
	text-align: left;
}
.header-title.align-center{
	text-align: center;
}
.header-title.align-right{
	text-align: right;
}

.header-title{
	padding: 20px 0;
}

.header-title .fa,
.header-title .main-title-img{
	font-size: 24px;
	font-weight: normal;
	text-align: center;
	margin-right: 15px;
	top: -5px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #fff;
	color: #4f5e70;
	box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.45);
	border-radius: 100%;
	display: inline-block;
}

.main-title{
	display: inline-block;
	margin: 0;
	font-family: 'Ubuntu', Helvetica, Arial, Verdana, sans-serif;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	text-align: left;
	position: relative;
	padding: 13px 20px;
	background: rgba(0,188,150,0.8);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	border-radius: 5px;
}
.main-title.zero-bottom-left-radius{
	border-bottom-left-radius: 0;
}
.main-title.zero-bottom-right-radius{
	border-bottom-right-radius: 0;
}
.main-title .fa.fa-not-a-real-icon{
	display: none;
}

.main-title .main-title-img img{
	width: 40px;
	max-width: 40px;
	height: 40px;
	max-height: 40px;
	border-radius: 100%;
	vertical-align: top;
}

.main-excerpt,
.main-excerpt h1,
.main-excerpt h2,
.main-excerpt h3,
.main-excerpt h4,
.main-excerpt h5,
.main-excerpt h6{
	color: #fff;
}

.main-excerpt blockquote,
.main-excerpt q{
	margin: 0;
	padding: 0;
	background: rgba(255,255,255,0.2);
	border-left: 10px solid rgba(255,255,255,0.4);
}

.main-excerpt blockquote p,
.main-excerpt q p{
	margin: 0;
	border-radius: 0;
}

.main-excerpt p{
	display: inline-block;
	text-align: left;
	font-size: 16px;
	color: #fff;
	text-shadow: 0 1px 0 #4f5e70;
	font-weight: 300;
	background: rgba(79,94,112,0.8);
	padding: 15px;
	border-radius: 5px;
}

.header-title.align-left .main-excerpt p:first-child{
	border-top-left-radius: 0;
}

.header-title.align-right .main-excerpt p:first-child{
	border-top-right-radius: 0;
}

.main-excerpt.zero-top-right-radius p:first-child{
	border-top-right-radius: 0;
}
.main-excerpt.zero-top-left-radius p:first-child{
	border-top-left-radius: 0;
}

.site-title{
	font-family: 'Ubuntu', Helvetica, Arial, Verdana, sans-serif;
	font-weight: 400;
	margin: 8px 0 5px;
	font-size: 28px;
	line-height: 1;
}

#masthead.scrolled .site-title{
	margin: 2px 0 5px;
	font-size: 24px;
}

.site-title a{
	text-decoration: none;
	color: #fff;
}

#top-info{
	float: right;
	width: 50%;
	text-align: right;
	padding: 0;
	margin: 0;
}
#top-info.no-woo{
	display: none;
}

.top-tel{
	float: right;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	padding: 5px 15px;
	background: rgba(0,0,0,0.2);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

#masthead.scrolled .top-tel{
	padding: 0 15px;
}

.top-tel .mobile-clear{
	display: inline-block;
	float: left;
}

.top-tel .mobile-clear a,
.top-tel .mobile-clear a:hover{
	color: #fff;
}

.top-tel .fa{
	font-size: 24px;
	font-weight: normal;
	color: #00bc96;
	text-align: center;
	line-height: 40px;
	width: 40px;
	height: 40px;
	background: rgba(0,0,0,0.2);
	position: relative;
	top: 1px;
	margin-right: 15px;
	border-radius: 50%;
}

.top-login{
	display: inline-block;
	float: left;
	position: relative;
	margin-left: 10px;
	padding-left: 15px;
	padding-bottom: 2px;
	background: rgba(0,0,0,0.1);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.top-login-dropdown{
	visibility: hidden;
	position: absolute;
	top: 42px;
	right: 0;
	min-width: 240px;
	padding: 10px;
	background-color: #4f5e70;
	background-image: url(//kuechenberatung.online/wp-content/themes/trusted/images/mini-cart-bg.png);
	background-position: left center;
	background-repeat: repeat;
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	z-index: 100;
	border-radius: 3px;
	opacity: 0;
	-webkit-transition: all .25s;   
	-webkit-transition-delay: .25s; 
	-moz-transition: all .25s;   
	-moz-transition-delay: .25s; 
	-ms-transition: all .25s;   
	-ms-transition-delay: .25s; 
	-o-transition: all .25s;   
	-o-transition-delay: .25s;
	transition: all .25s;   
	transition-delay: .25s;
}

.top-login:hover .top-login-dropdown,
.top-login .top-login-dropdown.locked{
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-ms-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}

.top-login-dropdown p{
	margin: 0 0 7px;
}

.top-login-dropdown p.top-login-header{
	width: 100%;
}

.top-login-dropdown p.top-login-footer{
	width: 100%;
	padding-top: 15px;
	border-top: 1px solid rgba(255,255,255,0.15);
}

.top-login-dropdown .top-login-login:before{
	font-family: 'FontAwesome';
	font-weight: normal;
	content: "\f063";
	margin-right: 5px;
}

.top-login-dropdown .top-login-register:before{
	font-family: 'FontAwesome';
	font-weight: normal;
	content: "\f061";
	margin-right: 5px;
	color: #00bc96;
}

.top-login-dropdown input{
	padding: 2px 4px;
	height: 24px;
}

.top-login-dropdown .woocommerce-MyAccount-navigation{
	width: 100%;
}

.top-login-dropdown form .form-row .required{
    color: red;
}

.woocommerce .top-login-dropdown form .form-row .required{
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .25s;   
	-webkit-transition-delay: .25s; 
	-moz-transition: all .25s;   
	-moz-transition-delay: .25s; 
	-ms-transition: all .25s;   
	-ms-transition-delay: .25s; 
	-o-transition: all .25s;   
	-o-transition-delay: .25s;
	transition: all .25s;   
	transition-delay: .25s;
}
.woocommerce .top-login:hover .top-login-dropdown form .form-row .required{
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-ms-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}

div.top-login-dropdown form.login{
	border: none;
	padding: 0;
	margin: 0;
}

div.top-login-dropdown .form-row,
div.top-login-dropdown .form-row-first,
span.top-login-dropdown .form-row-last{
	width: 100%;
	float: left;
}

div.top-login-dropdown form.login input{
	height: 32px;
}

.top-login .woocommerce-form__label-for-checkbox{
	margin-left: 15px;
	display: inline !important;
}

.top-login input#rememberme.woocommerce-form__input.woocommerce-form__input-checkbox{
	vertical-align: bottom;
}

.top-cart{
	display: inline-block;
	float: left;
	position: relative;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 2px;
	background: rgba(0,0,0,0.1);
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-left: 1px solid rgba(255,255,255,0.05);
}

.top-tel .mobile-clear:hover .fa,
.top-login:hover .fa,
.top-cart:hover .fa{
	background: #fff;
}

.top-login .fa,
.top-cart .fa{
	background: rgba(0,0,0,0.2);
}

.top-login.no-background{
	margin-left: 0;
	padding-left: 0;
	padding-bottom: 0;
	background: transparent;
}

.top-cart.no-background{
	padding-right: 0;
	padding-bottom: 0;
	background: transparent;
	border-left: 1px solid rgba(255,255,255,0.1);
}

.top-cart .cart-icon:before{
	content: "\f07a";
}

.top-cart .item-count{
	position: absolute;
	top: 4px;
	right: -2px;
	background: #fff;
	font-weight: normal;
	border: 1px solid transparent;
	border-radius: 100%;
	padding: 0;
	text-align: center;
	font-size: 10px;
	color: #4f5e70;
	min-width: 16px;
	height: 16px;
	line-height: 14px;
}

.top-cart:hover .item-count{
	background: #00bc96;
	border: 1px solid #fff;
	color: #fff;
}

.top-login-mini-cart{
	visibility: hidden;
	position: absolute;
	top: 42px;
	right: 0;
	min-width: 240px;
	padding: 10px;
	background-color: #4f5e70;
	background-image: url(//kuechenberatung.online/wp-content/themes/trusted/images/mini-cart-bg.png);
	background-position: left center;
	background-repeat: repeat;
	font-size: 60%;
	font-weight: normal;
	text-align: left;
	line-height: 1.2;
	z-index: 100;
	border-radius: 3px;
	opacity: 0;
	-webkit-transition: all .25s;   
	-webkit-transition-delay: .25s; 
	-moz-transition: all .25s;   
	-moz-transition-delay: .25s; 
	-ms-transition: all .25s;   
	-ms-transition-delay: .25s; 
	-o-transition: all .25s;   
	-o-transition-delay: .25s;
	transition: all .25s;   
	transition-delay: .25s;
}

.top-cart:hover .top-login-mini-cart{
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-ms-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}

.top-login-mini-cart ul.cart_list{
	list-style: none;
	padding: 0;
	margin: 0;
}

.top-login-mini-cart ul.cart_list li:after, .top-login-mini-cart ul.cart_list li:before, .top-login-mini-cart ul.product_list_widget li:after, .top-login-mini-cart ul.product_list_widget li:before{
	content: ' ';
	display: table;
}

.top-login-mini-cart ul.cart_list li:after{
	clear: both;
}

.top-login-mini-cart ul.cart_list li{
	padding: 4px 0;
	margin: 0;
	list-style: none;
}

.top-login-mini-cart ul.cart_list li a{
	display: block;
}

.top-login-mini-cart a.remove{
	display: block;
	font-size: 2em;
	height: 1em;
	width: 1em;
	text-align: center;
	line-height: 1;
	border-radius: 100%;
	color: red !important;
	text-decoration: none;
	border: 0;
	float: right;
	opacity: 0.7;
}

.top-login-mini-cart a.remove:hover{
	color: #fff !important;
	background: red;
	opacity: 1;
}

.top-login-mini-cart ul.cart_list li img{
	float: right;
	margin-left: 4px;
	width: 32px;
	height: auto;
	box-shadow: none;
}

.top-login-dropdown #respond input#submit, .top-login-dropdown a.button, .top-login-dropdown button.button, .top-login-dropdown input.button,
.top-login-mini-cart #respond input#submit, .top-login-mini-cart a.button, .top-login-mini-cart button.button, .top-login-mini-cart input.button{
	background: #00bc96;
	border-radius: 3px;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	font-size: 14px;
	margin: 0;
	line-height: 1;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	overflow: visible;
	padding: .618em 1em;
	left: auto;
	border: 0;
	white-space: nowrap;
	display: inline-block;
	background-image: none;
	text-shadow: none;
	box-shadow: inset 0 0 0 rgba(0,0,0,.15);
	transition: all .5s;
}

.top-login-dropdown #respond input#submit:hover, .top-login-dropdown a.button:hover, .top-login-dropdown button.button:hover, .top-login-dropdown input.button:hover,
.top-login-mini-cart #respond input#submit:hover, .top-login-mini-cart a.button:hover, .top-login-mini-cart button.button:hover, .top-login-mini-cart input.button:hover{
	box-shadow: inset 0 -100px 0 transparent;
	transition: all linear 1s;
}

.top-login-mini-cart a.button.checkout{
	float: right;
}

.top-login-mini-cart li.empty{
	list-style: none;
	text-align: center;
}

.top-login-mini-cart dt{
	font-weight: normal;
}

.top-login-mini-cart dd{
	margin: 0 0 0 10px;
}

.top-login-mini-cart p{
	margin: 0;
}
.top-login-mini-cart p.woocommerce-mini-cart__total{
	margin: 10px 0;
}

.taxonomy-description p{
	display: inline-block;
	text-align: left;
	font-size: 16px;
	color: #fff;
	text-shadow: 0 1px 0 #4f5e70;
	font-weight: 300;
	background: rgba(79,94,112,0.8);
	padding: 15px;
	border-radius: 5px;
}

.header-title.align-left .taxonomy-description p:first-child{
	border-top-left-radius: 0;
}

.header-title.align-right .taxonomy-description p:first-child{
	border-top-right-radius: 0;
}

.taxonomy-description.zero-top-right-radius p:first-child{
	border-top-right-radius: 0;
}

.taxonomy-description.zero-top-left-radius p:first-child{
	border-top-left-radius: 0;
}

.title-tagline-hidden .site-title,
.title-tagline-hidden .site-description{
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
}

/*--------------------------------------------------------------
## Menu
--------------------------------------------------------------*/
.site-navigation{
	font-family: 'Hind', Helvetica, Arial, Verdana, sans-serif;
	width: 80%;
	float: right;
}
.site-navigation.centered{
	width: 100%;
	float: none;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.toggle-nav{
	display: none;
}

#primary-menu{	
	margin: 0;
	float: right;
}

.site-navigation.centered #primary-menu{
	width: 100%;
	float: none;
	text-align: center;
}

#primary-menu li{
	float: left;
	position: relative;
	list-style: none;
}
.site-navigation.centered #primary-menu li{
	float: none;
	display: inline-block;
}
.site-navigation.centered #primary-menu .sub-menu li{
	float: left;
	display: block;
}

#primary-menu li a{
	display: block;
	color: #fff;
	padding: 10px 15px;
}

#primary-menu li.menu-item-has-children a{
	padding: 10px 25px 10px 15px;
}

#masthead.scrolled #primary-menu li a,
#primary-menu.scrolled li.menu-item-has-children a{
	padding-top: 1px;
	padding-bottom: 1px;
}

.menu-item-has-children:after{
	font-family: 'FontAwesome';
	font-size: 16px;
	font-weight: normal;
	text-shadow: none;
	content: '\f107';
	color: #bebebe;
	position: absolute;
	top: 8px;
	right: 8px;
}
.menu-item-has-children .menu-item-has-children:after{
	content: '\f105';
	top: 5px;
}

#masthead.scrolled .menu-item-has-children:after{
	top: 0;
}

#primary-menu li:hover a{
	color: #fff;
}
#primary-menu li a:hover{
	display: block;
	color: #00bc96;
}
#primary-menu li.current-menu-item > a{
	display: block;
	color: #00bc96;
}

#primary-menu > li > a{
	font-size: 16px;
	font-weight: 300;
}
#primary-menu ul{
	position: absolute;
	visibility: hidden;
	opacity: 0;
	background: #4f5e70;
	min-width: 180px;
	font-size: 16px;
	font-weight: 300;
	text-align: left;
	top: 140%;
	margin: 0;
	border-radius: 0 0 3px 3px;
	z-index: 10;
}
#primary-menu li:hover > ul{
	opacity: 1;
	visibility: visible;
	top: 100%;
}
#primary-menu ul li{
	width: 100%;
	background: none;
}
#primary-menu ul li a{
	position: relative;
	overflow: hidden;
	color: #ffffff;
}
#primary-menu ul li a:hover{
	background: rgba(255,255,255,0.03);
	color: #00bc96;
}
#primary-menu ul ul{
	left: 100%;
	top: 5px;
}
#primary-menu ul li:hover ul{
	top: 5px;
	left: 100%;
}

#primary-menu li.menu-item-has-children .sub-menu ul{
	border-radius: 0 3px 3px 3px;
}
.sub-menu li{
	border-bottom: 1px solid rgba(255,255,255,0.03);
}
.sub-menu li:last-child{
	border: 0;
}
.sub-menu a,
#primary-menu li.menu-item-has-children .sub-menu a,
#masthead.scrolled .sub-menu a,
#masthead.scrolled #primary-menu li.menu-item-has-children .sub-menu a{
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 14px;
}

.page-links,
.comments-pagination{
	text-align: center;
	font-weight: bold;
	margin-bottom: 25px;
}

.page-links a,
.comments-pagination .page-numbers{
	padding: 0 10px;
}

.posts-navigation,
.post-navigation{
	background: #fff;
	padding: 20px;
	border: none;
	box-shadow: none;
	margin: 0 0 25px;
	border-radius: 5px;
	overflow: hidden;
}

.posts-navigation .nav-previous,
.post-navigation .nav-previous{
	float: left;
	width: 50%;
}

.posts-navigation .nav-next,
.post-navigation .nav-next{
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
## Featured Post
--------------------------------------------------------------*/
#featured-post-section{
	margin-top: -65px;
	width: 100%;
}

#featured-post-section.top-margin{
	margin-top: 65px;
}

.featured-post{
	width: 31%;
	margin-right: 3.5%;
	float: left;
	padding: 20px;
	position: relative;
	text-align: center;
	border-radius: 5px;
	border-bottom: 3px solid #00bc96;
	background: #fff;
	margin-bottom: 25px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.12);
	transition: top 0.3s ease-in-out;
	top: 0px;
	display: grid;
}
.featured-post:hover{
	top: -10px;
	transition: 0.3s box-shadow top ease-in-out;
	box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1);
}
.featured-post3{
	margin-right: 0 !important;
}

.featured-post:hover .featured-icon{
	background: #00bc96;
	box-shadow: 0px 0px 0px 4px rgba(0,188,150,0.45);
}
.featured-post .featured-icon{
	font-size: 40px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	display: block;
	color: #fff;
	margin: -58px auto 0px auto;
	text-align: center;
	background: #4f5e70;
	border-radius: 60px;
	box-shadow: 0px 0px 0px 4px rgba(50, 59, 68, 0.45);
	transition: all 0.3s ease-in-out;
}
.featured-post .featured-icon .fa.fa-not-a-real-icon{
	display: none;
}

.featured-post h4{
	position: relative;
	margin: 10px 0 10px 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: 300;
	color: #323b45;
}

.featured-post h4 a{
	color: #323b45;
}

.featured-post .featured-excerpt{
	text-align: center;
	font-weight: 300;
	align-self: end;
}

.featured-readmore{
	color: #323b44;
	background: #fff;
	display: inline-block;
	border-color: rgba(0,0,0,0.2);
	border-style: solid;
	border-width: 1px;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}
.featured-readmore:hover{
	color: #323b44;
	background-color: rgba(0,0,0,0.1);
	border-color: rgba(0,0,0,0.3);
}

/*--------------------------------------------------------------
## About Section
--------------------------------------------------------------*/
#about-section{
	position: relative;
	margin-bottom: 30px;
	background: #fff;
	border-radius: 5px;
	padding: 20px;
}

#about-section h2{
	text-transform: uppercase;
}

#about-section img{
	border-radius: 5px;
}

#about-section .about-left{
	float: left;
	width: 48%;
}

#about-section .about-right{
	float: right;
	width: 48%;
}

#about-section.style2 .about-left{
	float: right;
}

#about-section.style2 .about-right{
	float: left;
}

#about-section.style3 .about-left,
#about-section.style3 .about-right{
	float: none;
	width: auto;
}

#about-section.style4 .about-left,
#about-section.style4 .about-right{
	float: none;
	width: auto;
	text-align: center;
}

#about-section.no-image .about-left{
	float: none;
	width: auto;
}
#about-section.no-image .about-right{
	display: none;
}

/*--------------------------------------------------------------
## CTA Section
--------------------------------------------------------------*/
#cta-section{
	padding: 50px 0;
	background-color: rgba(79,94,112,0.8);
	background-position-x: 50%;
	background-position-y: 50%;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	text-align: center;
}

#cta-section .cta-icon .fa{
	font-size: 40px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	display: block;
	color: #00bc96;
	margin: 0px auto;
	text-align: center;
	background: #fff;
	border-radius: 60px;
	box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.45);
}

#cta-section .cta-tel{
	font-size: 66px;
	position: relative;
}

#cta-section a:hover .cta-icon .fa{
	color: #fff;
	background: #00bc96;
	box-shadow: 0px 0px 0px 4px rgba(0,188,150,0.45);
}

#cta-section .cta-tel a,
#cta-section .cta-tel a:hover,
#cta-section a .cta-tel,
#cta-section a:hover .cta-tel{
	color: #fff;
}

.cta-tel-before{
	content: '';
	display: inline-block;
	position: relative;
	top: -17px;
	margin-right: 15px;
	width: 30px;
	height: 4px;
	background: transparent;
	border: 2px solid rgba(255,255,255,0.45);
	border-radius: 2px;
}
.cta-tel-after{
	content: '';
	display: inline-block;
	position: relative;
	top: -17px;
	margin-left: 15px;
	width: 30px;
	height: 4px;
	background: transparent;
	border: 2px solid rgba(255,255,255,0.45);
	border-radius: 2px;
}

#cta-section a:hover .cta-tel-before,
#cta-section a:hover .cta-tel-after{
	border-color: #00bc96;
}

#cta-section .cta-button{
	padding-top: 15px;
	font-size: 18px;
}

#cta-section a.button{
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	background: #00bc96;
	padding: 10px 20px;
	border-radius: 3px;
	box-shadow: inset 0 0 0 rgba(0,0,0,.15);
	transition: all .5s;
}
#cta-section a.button:hover{
	box-shadow: inset 0 -100px 0 transparent;
	transition: all linear 1s;
}

/*--------------------------------------------------------------
## Recent Posts Section
--------------------------------------------------------------*/
#recent-posts-section{
	margin: 40px 0;
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	clear: both;
}

#recent-posts-section h2{
	text-transform: uppercase;
	margin-bottom: 20px;
}

.home-posts-wrap .home-post{
	float: left;
	text-align: center;
	width: 32%;
	margin-left: 2%;
}

.home-posts-wrap .home-post:first-child,
.home-posts-wrap .home-post:nth-child(3n+1){
	margin-left: 0;
}

.home-posts-wrap .home-post:nth-child(3n+1){
	clear: both;
}

.home-posts-wrap .home-post h3{
	margin-top: 15px;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
#colophon{
	font-family: 'Hind', Helvetica, Arial, Verdana, sans-serif;
	font-size: 14px;
	color: #bebebe;
	background: #4f5e70;
}

#colophon aside{
	background: transparent;
}

.site-footer ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer ul ul{
	margin-left: 10px;
}

.site-footer a{
	color: #fff;
	text-decoration: none;
	position: relative;
}
.site-footer a:hover{
	color: #fff;
	text-decoration: underline;
	position: relative;
}

#colophon h5.widget-title{
	letter-spacing: 1px;
	color: #fafafa;
	font-weight: 400;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

#colophon h5.widget-title:after{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background: rgba(255,255,255,0.1);
	border-radius: 2px;
}

#top-footer{
	padding: 20px 0 0;
}

#top-footer .container{
	padding-bottom: 30px;
}

.top-footer{
	margin-left: -3%;
}

.footer{
	float: left;
	width: 30.3333333333%;
	margin-left: 3%;
}

.footer img.footer-logo{
	max-width: 100%;
	margin-bottom: 20px;
}

#middle-footer{
	background: rgba(0,0,0,0.15);
}

#middle-footer .container{
	padding-top: 20px;
	padding-bottom: 20px;
}

#middle-footer .widget,
#middle-footer p:last-child{
	margin-bottom: 0;
}

#bottom-footer{
	padding: 25px 0;
	line-height: 1.2;
	background: rgba(0,0,0,0.3);
}

.site-info{
	float: left;
	width: 45%;
}

#footer-menu ul{
	float: right;
	width: 45%;
	text-align: right;
	list-style-type: none;
	list-style: none;
	list-style-image: none;
	line-height: 32px;
	margin-top: -7px;
}
#footer-menu li{
	padding: 0 8px;
	display: inline;
}

#footer-menu a:before{
	color: #4f5e70;
}

#footer-menu a[href*="codepen.io"],
#footer-menu a[href*="digg.com"],
#footer-menu a[href*="dribbble.com"],
#footer-menu a[href*="dropbox.com"],
#footer-menu a[href*="facebook.com"],
#footer-menu a[href*="flickr.com"],
#footer-menu a[href*="foursquare.com"],
#footer-menu a[href*="plus.google.com"],
#footer-menu a[href*="github.com"],
#footer-menu a[href*="instagram.com"],
#footer-menu a[href*="linkedin.com"],
#footer-menu a[href*="pinterest.com"],
#footer-menu a[href*="getpocket.com"],
#footer-menu a[href*="reddit.com"],
#footer-menu a[href*="skype.com"],
#footer-menu a[href*="stumbleupon.com"],
#footer-menu a[href*="tumblr.com"],
#footer-menu a[href*="twitter.com"],
#footer-menu a[href*="vimeo.com"],
#footer-menu a[href*="wordpress.com"],
#footer-menu a[href*="wordpress.org"],
#footer-menu a[href*="youtube.com"],
#footer-menu a[href^="mailto:"],
#footer-menu a[href*="spotify.com"],
#footer-menu a[href*="twitch.tv"],
#footer-menu a[href$="/feed/"]{
	font-size: 1px;
	letter-spacing: -1px;
	color: transparent !important;
	filter: Alpha(Opacity=100);
	opacity: 1;
	position: relative;
	margin-right: 0px;
	margin-left: 26px;
}

#footer-menu a[href*="codepen.io"]:before,
#footer-menu a[href*="digg.com"]:before,
#footer-menu a[href*="dribbble.com"]:before,
#footer-menu a[href*="dropbox.com"]:before,
#footer-menu a[href*="facebook.com"]:before,
#footer-menu a[href*="flickr.com"]:before,
#footer-menu a[href*="foursquare.com"]:before,
#footer-menu a[href*="plus.google.com"]:before,
#footer-menu a[href*="github.com"]:before,
#footer-menu a[href*="instagram.com"]:before,
#footer-menu a[href*="linkedin.com"]:before,
#footer-menu a[href*="pinterest.com"]:before,
#footer-menu a[href*="getpocket.com"]:before,
#footer-menu a[href*="reddit.com"]:before,
#footer-menu a[href*="skype.com"]:before,
#footer-menu a[href*="stumbleupon.com"]:before,
#footer-menu a[href*="tumblr.com"]:before,
#footer-menu a[href*="twitter.com"]:before,
#footer-menu a[href*="vimeo.com"]:before,
#footer-menu a[href*="wordpress.com"]:before,
#footer-menu a[href*="wordpress.org"]:before,
#footer-menu a[href*="youtube.com"]:before,
#footer-menu a[href^="mailto:"]:before,
#footer-menu a[href*="spotify.com"]:before,
#footer-menu a[href*="twitch.tv"]:before,
#footer-menu a[href$="/feed/"]:before{
	font-family: 'FontAwesome';
	text-align: center;
	width: 26px;
	position: absolute;
	font-size: 14px;
	letter-spacing: normal;
	height: 26px;
	background: #fff;
	border-radius: 100%;
	line-height: 26px;
	top: -16px;
	right: 0;
	box-shadow: inset 0 0 0 #00bc96;
	transition: all .5s;
}

#footer-menu a[href*="codepen.io"]:hover:before,
#footer-menu a[href*="digg.com"]:hover:before,
#footer-menu a[href*="dribbble.com"]:hover:before,
#footer-menu a[href*="dropbox.com"]:hover:before,
#footer-menu a[href*="facebook.com"]:hover:before,
#footer-menu a[href*="flickr.com"]:hover:before,
#footer-menu a[href*="foursquare.com"]:hover:before,
#footer-menu a[href*="plus.google.com"]:hover:before,
#footer-menu a[href*="github.com"]:hover:before,
#footer-menu a[href*="instagram.com"]:hover:before,
#footer-menu a[href*="linkedin.com"]:hover:before,
#footer-menu a[href*="pinterest.com"]:hover:before,
#footer-menu a[href*="getpocket.com"]:hover:before,
#footer-menu a[href*="reddit.com"]:hover:before,
#footer-menu a[href*="skype.com"]:hover:before,
#footer-menu a[href*="stumbleupon.com"]:hover:before,
#footer-menu a[href*="tumblr.com"]:hover:before,
#footer-menu a[href*="twitter.com"]:hover:before,
#footer-menu a[href*="vimeo.com"]:hover:before,
#footer-menu a[href*="wordpress.com"]:hover:before,
#footer-menu a[href*="wordpress.org"]:hover:before,
#footer-menu a[href*="youtube.com"]:hover:before,
#footer-menu a[href^="mailto:"]:hover:before,
#footer-menu a[href*="spotify.com"]:hover:before,
#footer-menu a[href*="twitch.tv"]:hover:before,
#footer-menu a[href$="/feed/"]:hover:before{
	color: #4f5e70;
	background: #00bc96;
	box-shadow: inset 0 -40px 0 #00bc96;
	transition: all linear .5s;
}

#footer-menu a[href*="codepen.io"]:before{
	content: "\f1cb";
}
#footer-menu a[href*="digg.com"]:before{
	content: "\f1a6";
}
#footer-menu a[href*="dribbble.com"]:before{
	content: "\f17d";
}
#footer-menu a[href*="dropbox.com"]:before{
	content: "\f16b";
}
#footer-menu a[href*="facebook.com"]:before{
	content: "\f09a";
}
#footer-menu a[href*="flickr.com"]:before{
	content: "\f16e";
}
#footer-menu a[href*="foursquare.com"]:before{
	content: "\f180";
}
#footer-menu a[href*="plus.google.com"]:before{
	content: "\f0d5";
}
#footer-menu a[href*="github.com"]:before{
	content: "\f09b";
}
#footer-menu a[href*="instagram.com"]:before{
	content: "\f16d";
}
#footer-menu a[href*="linkedin.com"]:before{
	content: "\f0e1";
}
#footer-menu a[href*="pinterest.com"]:before{
	content: "\f0d2";
}
#footer-menu a[href*="getpocket.com"]:before{
	content: "\f265";
}
#footer-menu a[href*="reddit.com"]:before{
	content: "\f1a1";
}
#footer-menu a[href*="skype.com"]:before{
	content: "\f17e";
}
#footer-menu a[href*="stumbleupon.com"]:before{
	content: "\f1a4";
}
#footer-menu a[href*="tumblr.com"]:before{
	content: "\f173";
}
#footer-menu a[href*="twitter.com"]:before{
	content: "\f099";
}
#footer-menu a[href*="vimeo.com"]:before{
	content: "\f27d";
}
#footer-menu a[href*="wordpress.com"]:before,
#footer-menu a[href*="wordpress.org"]:before{
	content: "\f19a";
}
#footer-menu a[href*="youtube.com"]:before{
	content: "\f167";
}
#footer-menu a[href^="mailto:"]:before{
	content: "\f0e0";
}
#footer-menu a[href*="spotify.com"]:before{
	content: "\f1bc";
}
#footer-menu a[href*="twitch.tv"]:before{
	content: "\f1e8";
}
#footer-menu a[href$="/feed/"]:before{
	content: "\f09e";
}

/*--------------------------------------------------------------
## Pagination CSS
--------------------------------------------------------------*/
.pagination{
	text-align: center;
	margin-bottom: 30px;
}

.pagination span,
.pagination .dots,
.pagination a{
	background: #fff;
	padding: 2px 8px;
	border: 1px solid #EDEDED;
	margin: 0 4px;
	font-size: 18px;
	font-weight: normal;
	color: #323b44;
	border-radius: 3px;
}

.pagination a:hover,
.pagination .current{
	background: #fff;
	color: #00bc96;
	border: 1px solid #00bc96;
}

/*--------------------------------------------------------------
## Breadcrumbs CSS
--------------------------------------------------------------*/
.breadcrumbs{
	color: #fff;
	margin-bottom: 20px;
}

.breadcrumbs a{
	color: #fff;
}
.breadcrumbs a:hover{
	color: #fff;
	text-decoration: underline;
}

.breadcrumbs .trail-items{
	background: rgba(0,188,150,0.7);
	border-radius: 3px;
	margin: 0;
	padding: 5px 5px 2px 5px;
}

.breadcrumbs .trail-browse,
.breadcrumbs .trail-items,
.breadcrumbs .trail-items li{
	display: inline-block;
	text-indent: 0;
	line-height: 16px;
}

.breadcrumbs .trail-browse{
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	color: inherit;
}

.breadcrumbs .trail-items{
	list-style: none;
}

.breadcrumbs .trail-items li{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 200px;
	padding: 2px 10px 5px 10px;
}

.breadcrumbs .delimiter{
	position: relative;
	margin-left: 20px;
}
.breadcrumbs .delimiter:after{
	position: absolute;
	content: "";
	background: transparent;
	top: -6px;
	right: 12px;
	width: 23px;
	height: 23px;
	border-top: 1px solid rgba(255,255,255,0.6);
	border-right: 1px solid rgba(255,255,255,0.6);
	border-radius: 3px;
	transform: rotate(45deg);
}

.breadcrumbs.overheight .delimiter:after{
	font-family: 'FontAwesome';
	content: "\f105";
	top: -2px;
	right: 8px;
	width: 10px;
	border: none;
	transform: none;
}

/*--------------------------------------------------------------
## Woocommerce CSS
--------------------------------------------------------------*/
#home-shop-section{
	margin-top: 40px;
	clear: both;
}

.term-description p,
.page-description p{
	display: inline-block;
	text-align: left;
	font-size: 16px;
	color: #fff;
	text-shadow: 0 1px 0 #4f5e70;
	font-weight: 300;
	background: rgba(79,94,112,0.8);
	padding: 15px;
	border-radius: 5px;
}

.header-title.align-left .term-description p:first-child,
.header-title.align-left .page-description p:first-child{
	border-top-left-radius: 0;
}

.header-title.align-right .term-description p:first-child,
.header-title.align-right .page-description p:first-child{
	border-top-right-radius: 0;
}

.term-description.zero-top-right-radius p:first-child,
.page-description.zero-top-right-radius p:first-child{
	border-top-right-radius: 0;
}

.term-description.zero-top-left-radius p:first-child,
.page-description.zero-top-left-radius p:first-child{
	border-top-left-radius: 0;
}

.woocommerce-products-header{
	background: #fff;
}

.woocommerce .woocommerce-result-count{
	background: #fff;
	border-radius: 5px;
	padding: 5px 10px;
}

.woocommerce .woocommerce-ordering{
	background: #fff;
	border-radius: 5px;
	padding: 0;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message{
	background: #fff;
	border-radius: 5px;
}

.woocommerce nav.woocommerce-pagination{
	text-align: center;
	margin-bottom: 30px;
}

.woocommerce nav.woocommerce-pagination ul{
	border: 0;
	margin: 0;
	padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li{
	border: 0;
	float: none;
	margin: 0 4px;
	line-height: 1.5;
}

.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span{
	background: #fff;
	padding: 2px 8px;
	border: 1px solid #EDEDED;
	font-size: 18px;
	font-weight: normal;
	color: #323b44;
	line-height: 1.5;
	border-radius: 3px;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover, 
.woocommerce nav.woocommerce-pagination ul li span.current{
	background: #fff;
	padding: 2px 8px;
	color: #00bc96;
	border: 1px solid #00bc96;
	border-radius: 3px;
}





.wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product,
.wc-block-grid.has-5-columns:not(.alignfull) .wc-block-grid__product,
.wc-block-grid.has-6-columns:not(.alignfull) .wc-block-grid__product,
.wc-block-grid.has-7-columns .wc-block-grid__product,
.wc-block-grid.has-8-columns .wc-block-grid__product{
	font-size: 1em;
}

.wc-block-grid__product{
	margin: 0 3.8% 2.992em 0;
	text-align: left;
}

.wc-block-grid.has-2-columns .wc-block-grid__product{
	flex: 1 0 48%;
	max-width: 48%;
}

.wc-block-grid.has-3-columns .wc-block-grid__product{
	flex: 1 0 30.75%;
	max-width: 30.75%;
}

.wc-block-grid.has-4-columns .wc-block-grid__product{
	flex: 1 0 22.05%;
	max-width: 22.05%;
}

.wc-block-grid.has-5-columns .wc-block-grid__product{
	flex: 1 0 16.95%;
	max-width: 16.95%;
}

.wc-block-grid.has-6-columns .wc-block-grid__product{
	flex: 1 0 13.5%;
	max-width: 13.5%;
}

.wc-block-grid.has-2-columns .wc-block-grid__product:nth-child(2n),
.wc-block-grid.has-3-columns .wc-block-grid__product:nth-child(3n),
.wc-block-grid.has-4-columns .wc-block-grid__product:nth-child(4n),
.wc-block-grid.has-5-columns .wc-block-grid__product:nth-child(5n),
.wc-block-grid.has-6-columns .wc-block-grid__product:nth-child(6n){
	margin-right: 0;
}













.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product,
.wc-block-grid__product{
	background: #fff;
	padding: 0;
	border-radius: 5px;
	border-top: 1px solid rgba(0,0,0,0.02);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.12);
}
.woocommerce ul.products li.product:hover, 
.woocommerce-page ul.products li.product:hover,
.wc-block-grid__product:hover{
	transition: .2s box-shadow ease-out;
	box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product a img,
.wc-block-grid__product-image img{
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin-bottom: 0;
	border-bottom: 1px solid rgba(0,0,0,0.02);
	width: 100%;
}

.wc-block-grid__product-image img{
	width: 100%;
}

.woocommerce ul.products li.product:hover a img,
.wc-block-grid__product:hover .wc-block-grid__product-image img{
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.wc-block-grid__product-image{
	margin: 0;
}

.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button,
.woocommerce a.added_to_cart{
	position: absolute;
	right: 10px;
	top: 50%;
	background: #00bc96;
	color: #fff;
	border-radius: 3px;
	margin: 0;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 13px;
	filter: Alpha(Opacity=0);/*IE7 fix*/
	opacity: 0;
	visibility: hidden;
	height: auto;
	padding: 8px 10px;
	line-height: 1;
	transition: .2s box-shadow ease-out;
	box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1);
}



.wc-block-grid__product-add-to-cart{
	position: absolute;
	right: 10px;
	top: 50%;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-grid__product-add-to-cart a.added_to_cart{
	background: #00bc96;
	color: #fff;
	border-radius: 3px;
	margin: 0;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 13px;
	filter: Alpha(Opacity=0);/*IE7 fix*/
	opacity: 0;
	visibility: hidden;
	height: auto;
	padding: 8px 10px;
	line-height: 1;
	transition: .2s box-shadow ease-out;
	box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1);
}
.wc-block-grid__product-add-to-cart .wp-block-button__link:hover{
	color: #fff;
}








.woocommerce ul.products li.product .button.add_to_cart_button.loading{
	padding-right: 34px;
}

.woocommerce ul.products li.product:hover .button.add_to_cart_button,
.woocommerce ul.products li.product:hover .button{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	visibility: visible;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.woocommerce ul.products li.product:hover .button.add_to_cart_button.added{
	filter: Alpha(Opacity=0);/*IE7 fix*/
	opacity: 0;
	visibility: hidden;
}

.woocommerce a.added_to_cart{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	visibility: visible;
}

.wc-block-grid__product:hover .wc-block-grid__product-add-to-cart .wp-block-button__link{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	visibility: visible;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.wc-block-grid__product:hover .wc-block-grid__product-add-to-cart .wp-block-button__link.added{
	filter: Alpha(Opacity=0);/*IE7 fix*/
	opacity: 0;
	visibility: hidden;
}

.wc-block-grid__product-add-to-cart a.added_to_cart{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	visibility: visible;
}







.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce-page ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title{
	padding: 15px 15px 22px 15px;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title:before,
.woocommerce-page ul.products li.product .woocommerce-loop-category__title:before,
.woocommerce ul.products li.product .woocommerce-loop-product__title:before,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title:before,
.woocommerce ul.products li.product .woocommerce-loop-category__title:after,
.woocommerce-page ul.products li.product .woocommerce-loop-category__title:after,
.woocommerce ul.products li.product .woocommerce-loop-product__title:after,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title:after{
	background: none;
}

.wc-block-grid__product-title{
	font-size: 1em;
}

.woocommerce ul.products li.product .star-rating,
.woocommerce-page ul.products li.product .star-rating,
.wc-block-grid__product-rating .star-rating{
	margin: 0 15px 15px 15px;
	font-size: 1em;
}

.wc-block-grid__product-rating{
	margin-bottom: 0;
}

.woocommerce ul.products li.product .price,
.wc-block-grid__product-price{
	white-space:nowrap;
	position:absolute;
	top: -8px;
	left: -1px;
	display:inline-block;
	height:26px;
	border-radius: 1px 3px 3px 1px;
	padding: 0 10px 0 10px;
	background:#00bc96;
	border: 1px solid rgba(0,0,0,0.08);
	color:#fff;
	font-weight: normal;
	font-size: .857em;
	line-height:24px;
}
.woocommerce ul.products li.product .price:before,
.wc-block-grid__product-price:before{
	position:absolute;
	background:#00bc96;
	content:"\25CF";
	color:#fff;
	text-shadow: 0 0 1px #ccc;
	font-size:12px;
	line-height:13px;
	text-indent:6px;
	top:3px;
	left:-10px;
	width: 18px;
	height: 18px;
	transform: rotate(45deg);
	border-left:1px solid rgba(0,0,0,0.1);
	border-bottom:1px solid rgba(0,0,0,0.1);
	border-radius: 1px 0 1px 3px;
}

.woocommerce ul.products li.product.sale .price,
.wc-block-grid__product.sale .wc-block-grid__product-price{
	top: 20px;
}

.woocommerce ul.products li.product.sale .button.add_to_cart_button,
.woocommerce ul.products li.product.sale .button,
.woocommerce ul.products li.product.sale .price,
.woocommerce ul.products li.product.sale .price:before,
.wc-block-grid__product.sale .wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-grid__product.sale .wc-block-grid__product-add-to-cart a.added_to_cart,
.wc-block-grid__product.sale .wc-block-grid__product-price,
.wc-block-grid__product.sale .wc-block-grid__product-price:before{
	background: #009de1;
}

.woocommerce ul.products li.product .price del{
	float: left;
}
.woocommerce ul.products li.product .price del span.amount{
	margin-right: 10px;
	text-decoration: line-through;
}

.woocommerce ul.products li.product .price ins,
.wc-block-grid__product-price ins{
	background: none;
	text-decoration: none;
	font-weight: 700;
}

.woocommerce ul.products li.product mark{
	background: transparent;
}

.woocommerce span.onsale,
.wc-block-grid__product-onsale{
	background: #009de1;
	min-height: 0;
	min-width: 0;
	border-radius: 3px;
	line-height: 1.5;
	font-size: 14px;
	text-transform: uppercase;
	padding: 4px 8px;
	margin: 0;
	font-weight: 400;
	top: -4px;
	left: 0;
	right: auto;
}
.woocommerce ul.products li.product .onsale,
.wc-block-grid__product .wc-block-grid__product-onsale{
	padding: 2px 6px;
	right: auto;
	left: -4px;
	top: -2px;
	margin: -.5em -.5em 0 0;
}

.woocommerce .woocommerce-product-rating .star-rating{
	font-size: 20px;
	color: #FFD700;
	margin: 3px 15px 0 0;
}

.woocommerce div.product{
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 20px;
}

.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image{
	border-radius: 3px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger{
	width: 40px;
	height: 40px;
	background: #00bc96;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:hover{
	top: calc(.5em - 2px);
	right: calc(.5em - 2px);
	width: 44px;
	height: 44px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after{
	width: 4px;
	height: 11px;
	background: #fff;
	top: 20px;
	left: 23px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:hover:after{
	top: 22px;
	left: 25px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before{
	width: 10px;
	height: 10px;
	border: 3px solid #fff;
	top: 10px;
	left: 10px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:hover:before{
	top: 12px;
	left: 12px;
}

.woocommerce div.product p.price{
	white-space:nowrap;
	position:relative;
	margin:0 5px 10px 15px;
	display:inline-block;
	height:33px;
	border-radius: 2px 5px 5px 2px;
	padding: 0 15px 0 15px;
	background:#00bc96;
	border: 1px solid rgba(0,0,0,0.05);
	color:#fff;
	font-weight: normal;
	line-height:31px;
}
.woocommerce div.product p.price:before{
	position:absolute;
	background:#00bc96;
	content:"\25CF";
	color:#fff;
	text-shadow: 0 0 1px #fff;
	font-size:16px;
	line-height:19px;
	text-indent:6px;
	top:4px;
	left:-12px;
	width: 23px;
	height: 23px;
	transform: rotate(45deg);
	border-left:1px solid rgba(0,0,0,0.1);
	border-bottom:1px solid rgba(0,0,0,0.1);
	border-radius: 1px 0 1px 3px;
}

.woocommerce div.product p.price del span.amount{
	text-decoration: line-through;
}

.woocommerce div.product .woocommerce-variation-price{
	margin-bottom: 10px;
}

.woocommerce div.product .woocommerce-variation-price span.amount{
	color: #fff;
	font-weight: normal;
}

.woocommerce-variation-price del span.amount{
	text-decoration: line-through;
}

.woocommerce div.product form.cart,
.woocommerce div.product p.cart{
	margin-top: 20px;
	padding: 0;
}

.woocommerce div.product form.variations_form.cart,
.woocommerce div.product p.variations_form.cart{
	background: #4f5e70;
	color: #fff;
	margin-top: 10px;
	padding: 10px;
	border-radius: 3px;
}

.woocommerce .quantity .qty{
	width: 65px
}

.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt{
	background: #00bc96;
	padding: 8px 20px;
	border-radius: 3px;
	font-weight: 400;
	text-transform: uppercase;
	height: 36px;
	box-shadow: inset 0 0 0 rgba(0,0,0,.15);
	transition: all .5s;
}

.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover{
	background: #00bc96;
	box-shadow: inset 0 -100px 0 transparent;
	transition: all linear 1s;
}

.woocommerce div.product.sale #respond input#submit.alt, 
.woocommerce div.product.sale a.button.alt, 
.woocommerce div.product.sale button.button.alt,
.woocommerce div.product.sale input.minus,
.woocommerce div.product.sale input.plus,
.woocommerce div.product.sale input.button.alt,
.woocommerce div.product.sale #respond input#submit.alt:hover, 
.woocommerce div.product.sale a.button.alt:hover, 
.woocommerce div.product.sale button.button.alt:hover, 
.woocommerce div.product.sale input.button.alt:hover,
.woocommerce div.product.sale .price,
.woocommerce div.product.sale .price:before{
	background: #009de1;
}

.woocommerce div.product.sale .woocommerce-variation-price .price{
	background: transparent;
}

.woocommerce div.product form.cart .variations label{
	font-weight: 400;
}

.woocommerce div.product form.cart .variations td.label{
	padding-top: 6px;
}

.woocommerce div.product form.cart .reset_variations{
	font-size: 13px;
	text-transform: uppercase;
}

input.minus,
input.plus{
	font-weight: bold;
}

.single.single-product .quantity .input-text.qty.text,
.p-quantity .input-text.qty.text,
.woocommerce .quantity .qty{
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.single.single-product .quantity .input-text.qty.text::-webkit-inner-spin-button,
.p-quantity .input-text.qty.text::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button{
	-webkit-appearance: none;
	margin: 0;
}

.woocommerce section.products{
	clear: both;
}

.woocommerce h2{
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 5px;
}

.woocommerce h2:before{
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	height: 4px;
	width: 40px;
	background-color: #00bc96;
	background-image: url(//kuechenberatung.online/wp-content/themes/trusted/images/content-heading-bg.png);
	background-position: left center;
	background-repeat: repeat-y;
	border-radius: 2px;
}
.woocommerce h2:after{
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	height: 4px;
	width: 105px;
	background: rgba(0,0,0,0.03);
	border-radius: 2px;
}

.woocommerce #respond input#submit.alt.disabled, 
.woocommerce #respond input#submit.alt.disabled:hover, 
.woocommerce #respond input#submit.alt:disabled, 
.woocommerce #respond input#submit.alt:disabled:hover, 
.woocommerce #respond input#submit.alt:disabled[disabled], 
.woocommerce #respond input#submit.alt:disabled[disabled]:hover, 
.woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, 
.woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, 
.woocommerce a.button.alt:disabled[disabled], 
.woocommerce a.button.alt:disabled[disabled]:hover, 
.woocommerce button.button.alt.disabled, 
.woocommerce button.button.alt.disabled:hover, 
.woocommerce button.button.alt:disabled, 
.woocommerce button.button.alt:disabled:hover, 
.woocommerce button.button.alt:disabled[disabled], 
.woocommerce button.button.alt:disabled[disabled]:hover, 
.woocommerce input.button.alt.disabled, 
.woocommerce input.button.alt.disabled:hover, 
.woocommerce input.button.alt:disabled, 
.woocommerce input.button.alt:disabled:hover, 
.woocommerce input.button.alt:disabled[disabled], 
.woocommerce input.button.alt:disabled[disabled]:hover{
	background: #00bc96;
	filter: Alpha(Opacity=85);/*IE7 fix*/
	opacity: 0.85;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button{
	background: #00bc96;
	border-radius: 3px;
	font-weight: 400;
	text-transform: uppercase;
	font-weight: 400;
	color: #fff;
	font-size: 14px;
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, .woocommerce button.button:hover, 
.woocommerce input.button:hover{
	background: #00bc96;
	color: #fff;
}

.woocommerce .woocommerce-error .button, 
.woocommerce .woocommerce-info .button, 
.woocommerce .woocommerce-message .button,
.woocommerce #review_form #respond .form-submit input{
	height: auto;
	font-size: 13px;
}

.woocommerce .woocommerce-message{
	border-top-color: transparent;
}

.woocommerce .woocommerce-message:before{
	color: #00bc96
}

.woocommerce .woocommerce-info{
	border-top-color: transparent;
}

.woocommerce .woocommerce-info:before{
	color: #00bc96
}

.woocommerce .woocommerce-error{
	border: 1px solid #DD1F26;
}

.woocommerce .woocommerce-error:before{
	color: #DD1F26
}

.page .woocommerce-tabs .wc-tabs:before,
.woocommerce div.product .woocommerce-tabs .wc-tabs:before{
	border: 0;
}

.woocommerce div.product .woocommerce-tabs .wc-tabs li:before{
	display: none;
}

.page .woocommerce-tabs .wc-tabs li:after,
.woocommerce div.product .woocommerce-tabs .wc-tabs li:after{
	box-shadow: none;
	border: 0;
}

.page .woocommerce-tabs .wc-tabs{
	list-style: none;
	border-bottom: none;
	padding: 0;
	margin: 0 0 2.618em;
	overflow: visible;
}
.woocommerce div.product .woocommerce-tabs .wc-tabs{
	list-style: none;
	padding: 0 5px;
	margin: 1.618em 0 1.618em;
	overflow: visible;
	background: #fdfdfd;
	border-radius: 5px;
}

.page .woocommerce-tabs .wc-tabs li{
	display: inline-block;
	border-top: 1px solid transparent;
	border-radius: 3px;
	position: relative;
	padding: 10px;
	margin: 0 20px 0 0;
	background: transparent;
	transition: .2s all ease-out;
}

.page .woocommerce-tabs .wc-tabs li:hover,
.page .woocommerce-tabs .wc-tabs li.active{
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.02);
	box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.12);
	transition: .2s all ease-out;
}

.page .woocommerce-tabs .wc-tabs li:before{
	position: absolute;
	content: "";
	height: 15px;
	width: 4px;
	background: #00bc96;
	top: 18px;
	left: 0;
	border-radius: 3px 0 0 3px;
}

.page .woocommerce-tabs .wc-tabs li:hover:before,
.page .woocommerce-tabs .wc-tabs li.active:before{
	top: 0;
	height: 100%;
	transition: .2s all ease-in-out;
}

.page .woocommerce-tabs .wc-tabs li.sale_tab:before{
	background: #009de1;
}

.woocommerce div.product .woocommerce-tabs .wc-tabs li,
.woocommerce div.product .woocommerce-tabs .wc-tabs li.active{
	display: inline-block;
	border: 0;
	background: transparent;
	margin: 0 20px 0 0;
	border-radius: 0;
	padding: 0;
	position: relative;
}

.woocommerce div.product .woocommerce-tabs .wc-tabs li:after{
	content: "";
	height: 4px;
	width: 30%;
	top: 100%;
	left: 0;
	position: absolute;
}

.woocommerce div.product .woocommerce-tabs .wc-tabs li.active:after{
	content: "";
	height: 4px;
	width: 100%;
	background-color: #00bc96;
	background-image: url(//kuechenberatung.online/wp-content/themes/trusted/images/content-heading-bg.png);
	background-position: left center;
	background-repeat: repeat-y;
	top: 100%;
	left: 0;
	right: 0;
	border-radius: 2px;
	position: absolute;
	transition: .3s all ease-in-out;
}

.page .woocommerce-tabs .wc-tabs li a{
	color: #323b45;
	font-family: 'Montserrat', Helvetica, Arial, Verdana, sans-serif;
	font-weight: 300;
	font-size: 18px;
	text-transform: uppercase;
}
.page .woocommerce-tabs .wc-tabs li:hover a{
	color: #323b45;
}
.page .woocommerce-tabs .wc-tabs li.active a{
	color: #323b45;
}

.woocommerce div.product .woocommerce-tabs .wc-tabs li a{
	color: #323b45;
	font-family: 'Montserrat', Helvetica, Arial, Verdana, sans-serif;
	font-weight: 300;
	font-size: 18px;
	text-transform: uppercase;
	padding: 15px 0 0 0;
}

.woocommerce div.product .woocommerce-tabs .wc-tabs li a:hover{
	color: #00bc96;
}

.woocommerce #reviews #comments{
	border: 0;
	padding: 0;
	border-radius: 3px;
	border-top: none;
	box-shadow: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text{
	border-radius: 3px;
}

.woocommerce .star-rating span:before,
.wc-block-grid__product-rating .star-rating span:before{
	color: #FFD74F;
}

.woocommerce #reviews h3:after{
	display: none;
}

#reviews #review_form form{
	background: #F6F6F6;
	padding: 20px;
}

.woocommerce #review_form #respond p.stars{
	font-size: 20px;
}

.woocommerce #review_form #respond .comment-form-author{
	width: 48%;
}
.woocommerce #review_form #respond .comment-form-email{
	width: 48%;
	margin-left: 2%;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{
	font-size: 15px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong{
	font-weight: 400;
	color: #000;
}

.woocommerce table.shop_table{
	border-radius: 0;
}

.woocommerce table.shop_table td{
	padding: 10px 12px;
}

.woocommerce table.shop_table th{
	font-weight: 400;
	text-transform: uppercase;
	padding: 15px 10px;
}

.woocommerce #content table.cart td.actions .input-text, 
.woocommerce table.cart td.actions .input-text, 
.woocommerce-page #content table.cart td.actions .input-text, 
.woocommerce-page table.cart td.actions .input-text{
	width: 140px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text{
	line-height: 36px;
}

.woocommerce-cart table.cart img{
	width: 72px;
	border: 1px solid #EEE;
}

.woocommerce table.shop_table tbody th, 
.woocommerce table.shop_table tfoot td, 
.woocommerce table.shop_table tfoot th{
	font-weight: 400
}

.woocommerce-cart .cart-collaterals .cart_totals table td, 
.woocommerce-cart .cart-collaterals .cart_totals table th{
	vertical-align: middle;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button{
	padding: 20px 10px !important;
	height: auto !important;
}

.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register{
	border: 1px solid #DDD;
	border-radius: 3px;
}

.woocommerce form.checkout_coupon p{
	margin-bottom: 0
}

.woocommerce .widget_shopping_cart .cart_list li, 
.woocommerce.widget_shopping_cart .cart_list li{
	padding-top: 4px;
}

.woocommerce ul.cart_list li a, 
.woocommerce ul.product_list_widget li a{
	font-weight: 400;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove, 
.woocommerce.widget_shopping_cart .cart_list li a.remove{
	top: 10px;
}

.woocommerce .widget_layered_nav ul li{
	padding: 6px 0;
}

.woocommerce .widget_recent_reviews .reviewer{
	font-size: 13px;
	color: #999;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{
	background: transparent;
	border: 1px solid #DDD;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range{
	background: #DDD;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{
	background: #00bc96;
	border-radius: 9px;
}

.select2-container .select2-choice{
	border-radius: 0;
	border: 1px solid #DDD;
	height: 36px;
}

.select2-drop.select2-drop-above.select2-drop-active{
	border-top: 1px solid #DDD;
	border-radius: 0
}

.select2-drop,
.select2-drop-active{
	border-color: #DDD
}

.woocommerce div.product div.images .flex-control-thumbs{
	margin: 2.75% 0 0 0;
}

.woocommerce div.product div.images .flex-control-thumbs li{
	width: 22.9375%;
	margin-right: 2.75%;
	margin-bottom: 2.75%;
}
.woocommerce div.product div.images .flex-control-thumbs li:nth-child(4n){
	margin-right: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li img{
	border-bottom: 2px solid transparent;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active, .woocommerce div.product div.images .flex-control-thumbs li img:hover{
	border-bottom: 2px solid #00bc96;
}

.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th{
	background: transparent;
	padding: 0;
}

.woocommerce div.product form.cart .variations select{
	width: 100%;
}

.woocommerce table.shop_attributes{
	border: 1px solid #f5f5f5;
	border-top: 1px solid #f5f5f5;
}

.woocommerce table.shop_attributes th{
	background: none;
	border-bottom: 1px solid rgba(0,0,0,.03);
	background: #f9f9f9;
	text-align: left;
}

.woocommerce table.shop_attributes td{
	border-bottom: 1px solid #f5f5f5;
	font-style: normal;
}

.woocommerce table.shop_attributes td p{
	padding: 8px;
}

.woocommerce table.shop_attributes tr:nth-child(2n) td{
	background: inherit;
}
.woocommerce table.shop_attributes tr:nth-child(2n) th{
	background: #f9f9f9;
}

.product .product_meta > span{
	display: block;
}

.quantity.hidden .minus,
.quantity.hidden .plus{
	display: none;
}

/*--------------------------------------------------------------
## Light Style
--------------------------------------------------------------*/

#masthead.light{
	background: rgba(255,255,255,0.8);
}
#masthead.light.above,
#masthead.light.scrolled{
	background: #fff;
}

#masthead.light #top-bar{
	background: rgba(0,0,0,0.02);
	border-bottom: 1px solid rgba(0,0,0,0.02);
	color: #323b44;
}

#masthead.light #top-bar a,
#masthead.light #top-bar .fa:hover{
	color: #00bc96;
}

#masthead.light .top-tel{
	background: rgba(0,0,0,0.02);
	font-weight: normal;
	color: #323b44;
}

#masthead.light .top-login,
#masthead.light .top-cart{
	background: rgba(0,0,0,0.02);
}

#masthead.light .top-tel .fa{
	background: rgba(0,0,0,0.02);
}

#masthead.light .top-tel .mobile-clear a,
#masthead.light .top-tel .mobile-clear a:hover{
    color: #323b44;
}

#masthead.light .top-tel .mobile-clear:hover .fa,
#masthead.light .top-login:hover .fa,
#masthead.light .top-cart:hover .fa{
    background: #4f5e70;
    color: #fff;
}

#masthead.light .top-login-dropdown,
#masthead.light .top-login-mini-cart{
	background-color: #fff;
	background-image: none;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}

#masthead.light .top-login-dropdown p.top-login-footer{
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

#masthead.light #primary-menu li a{
	color: #323b44;
}
#masthead.light #primary-menu li a:hover{
    color: #00bc96;
}

#masthead.light .site-navigation.centered{
	border-top: 1px solid rgba(0,0,0,0.02);
}

#masthead.light #primary-menu ul{
	background: #fff;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}

.main-header.light .main-excerpt p,
.main-header.light .term-description p,
.main-header.light .page-description p,
.main-header.light .taxonomy-description p{
	color: #323b44;
	text-shadow: none;
	background: rgba(255,255,255,0.8);
}

/*--------------------------------------------------------------
## Sticky Footer CSS
--------------------------------------------------------------*/
html,body{
	height: 100%;
}

#page.trusted-sticky-footer{
	position: relative;
	min-height: 100%;
}

#colophon.trusted-sticky-footer{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

/*--------------------------------------------------------------
## Blocks CSS
--------------------------------------------------------------*/
.site-content{
	overflow-x: hidden;
}

p.has-background{
	padding: 15px 20px;
	border-radius: 5px;
}

#primary.full-width .entry-content .alignfull{
	margin-left: -webkit-calc(-50vw + 50%);
	margin-left: calc(-50vw + 50%);
	margin-right: -webkit-calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: 100vw;
	width: 100vw;
}
#primary.full-width .entry-content .alignfull img{
	max-width: 100%;
	width: 100%;
}

.blank-canvas-full-width .entry-content .alignwide{
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.entry-content .alignfull,
.entry-content .alignwide{
	margin-left: -20px;
	margin-right: -20px;
	width: -webkit-calc(100% + 40px);
	width: calc(100% + 40px);
}
.entry-content .alignfull img,
.wp-block-image.alignfull img,
.entry-content .alignwide img,
.wp-block-image.alignwide img{
	max-width: -webkit-calc(100% + 40px);
	max-width: calc(100% + 40px);
	width: -webkit-calc(100% + 40px);
	width: calc(100% + 40px);
}

/*--------------------------------------------------------------
## Jetpack CSS
--------------------------------------------------------------*/

.infinite-scroll #main nav.pagination{
	display: none;
}

.infinite-loader{
	color: #00bc96;
	margin-bottom: 20px;
}

.infinite-loader .spinner{
	left: 50% !important;
}

#infinite-handle{
	text-align: center;
	margin-bottom: 20px;
}

#infinite-handle span{
	background: transparent;
	font-size: inherit;
	padding: 0;
}

/*--------------------------------------------------------------
## Responsive CSS
--------------------------------------------------------------*/

@media screen and (max-width: 1120px){

	.header-title .fa{
		font-size: 22px;
		width: 36px;
		height: 36px;
		line-height: 36px;
	}

	.main-title{
		font-size: 26px;
	}
	.main-excerpt p,
	.term-description p,
	.page-description p,
	.taxonomy-description p{
		font-size: 14px;
	}

	.container{
		padding: 0 10px;
	}

	.woocommerce ul.products li.product .price{
		left: 2px;
	}

	.woocommerce ul.products li.product .onsale{
		left: -1px;
	}

}

@media screen and (max-width: 1024px){
	.site-navigation{
		width: 100%;
		float: none;
	}

	.toggle-nav{
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1000;
		width: 47px;
		height: 47px;
	}
	.toggle-nav.is-visible{
		top: 0 !important;
		margin-right: -250px
	}
	#masthead.scrolled .toggle-nav{
		top: 0 !important;
	}

	.toggle-nav span,
	.toggle-nav span:before,
	.toggle-nav span:after,
	#primary-menu,
	#page,
	#masthead,
	#colophon{
		-webkit-transition: all .2s;
		-moz-transition:    all .2s;
		transition:         all .2s;
	}
	.toggle-nav span{
		background: #fff;
		height: 3px;
		position: absolute;
		left: 7px;
		top: calc(50% - 1px);
		width: 23px;
		border-radius: 3px;
	}
	.toggle-nav span:before{
		content: "";
		position: absolute;
		background: #fff;
		border-radius: 3px;
	}
	.toggle-nav span:after{
		content: "";
		position: absolute;
		background: #fff;
		border-radius: 3px;
	}
	.menu-item-has-children .sub-trigger:before,
	.menu-item-has-children .sub-trigger:after{
		content: "";
		position: absolute;
		background: #fff;
	}
	.toggle-nav span:before,
	.toggle-nav span:after{
		backface-visibility: hidden;
		height: 100%;
		width: 100%;
		-webkit-transform: translateZ(0);
		-moz-transform:    translateZ(0);
		-ms-transform:     translateZ(0);
		-o-transform:      translateZ(0);
		transform:         translateZ(0);
	}
	.toggle-nav span:before{
		-webkit-transform: translateY(-6px);
		-moz-transform:    translateY(-6px);
		-ms-transform:     translateY(-6px);
		-o-transform:      translateY(-6px);
		transform:         translateY(-7px);
	}
	.toggle-nav span:after{
		-webkit-transform: translateY(6px);
		-moz-transform:    translateY(6px);
		-ms-transform:     translateY(6px);
		-o-transform:      translateY(6px);
		transform:         translateY(7px);
	}
	.toggle-nav.is-visible span{
		background: none;
		left: 3px;
		width: 28px;
	}
	.toggle-nav.is-visible span:before{
		-webkit-transform: translateY(0) rotate(-45deg);
		-moz-transform:    translateY(0) rotate(-45deg);
		-ms-transform:     translateY(0) rotate(-45deg);
		-o-transform:      translateY(0) rotate(-45deg);
		transform:         translateY(0) rotate(-45deg);
	}
	.toggle-nav.is-visible span:after{
		-webkit-transform: translateY(0) rotate(45deg);
		-moz-transform:    translateY(0) rotate(45deg);
		-ms-transform:     translateY(0) rotate(45deg);
		-o-transform:      translateY(0) rotate(45deg);
		transform:         translateY(0) rotate(45deg);
	}

	#primary-menu,
	.site-navigation.centered #primary-menu{
		background: #4f5e70;
		text-align: left;
		height: 100vh;
		overflow: auto;
		position: fixed;
		right: -250px;
		padding-top: 50px;
		width: 250px;
		z-index: 100;
	}
	.admin-bar #primary-menu,
	.admin-bar .site-navigation.centered #primary-menu{
		padding-top: 97px;
	}

	#page.is-visible{
		margin-left: -250px;
		margin-right: 250px;
	}
	#page.is-visible #colophon{
		left: -250px;
		right: 250px;
	}
	#masthead.is-visible{
		left: -250px;
		border-right: 1px solid rgba(255,255,255,0.1);
	}
	#page.is-visible #primary-menu,
	#masthead.is-visible #primary-menu{
		top: 0;
		right: 0;
	}
	#primary-menu li{
		position: relative;
		width: 100%;
	}
	#primary-menu > li::after{
		display: none;
	}
	#primary-menu li a,
	#masthead.scrolled #primary-menu li a{
		padding: 8px 20px;
		margin: 0;
	}
	#primary-menu li.menu-item-has-children a,
	#primary-menu li.menu-item-has-children a:hover,
	#masthead.scrolled #primary-menu li.menu-item-has-children a,
	#masthead.scrolled #primary-menu li.menu-item-has-children a:hover{
		padding: 8px 40px 8px 20px;
	}
	.menu-item-has-children:after{
		display: none;
	}
	.menu-item-has-children .menu-item-has-children:after{
		display: none;
	}
	#primary-menu li a:hover{
		padding: 8px 20px;
		margin: 0;
	}
	#primary-menu > li.current-menu-item,
	#primary-menu > li:hover,
	#primary-menu > li.current-menu-item:hover{
		background-image: none;
	}
	.menu-item-has-children .sub-trigger{
		position: absolute;
		width: 36px;
		height: 36px;
		right: 10px;
		top: 0;
		z-index: 100;
		cursor: pointer;
		display: block;
	}
	.menu-item-has-children .sub-trigger:before{
		height: 2px;
		left: calc(50% - 9px);
		top: calc(50% - 1px);
		width: 18px;
	}
	.menu-item-has-children .sub-trigger:after{
		height: 18px;
		left: calc(50% - 1px);
		top: calc(50% - 9px);
		width: 2px;
	}
	.menu-item-has-children .sub-trigger.is-open:after{
		background: none;
	}
	#primary-menu .sub-menu,
	#primary-menu li:hover > .sub-menu{
		left: 0;
		width: 250px;
		display: none;
		opacity: 1;
		visibility: visible;
		position: relative;
		top: 0;
		-webkit-transition: none;
		-moz-transition:    none;
		transition:         none;
	}
	#primary-menu .sub-menu li{
		padding: 0;
		text-transform: none;
		border: 0;
	}

	#site-description{
		width: 73%;
		margin-top: 5px;
		margin-bottom: 5px;
		padding: 10px 0 0 0;
	}
	#masthead.scrolled #site-description{
		padding: 0;
	}

	#top-info{
		width: 73%;
		float: right;
		padding: 0;
		margin-top: 8px;
		margin-right: 7%;
	}

	.top-tel{
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
	}

	.top-tel .fa{
		font-size: 18px;
		line-height: 34px;
		width: 34px;
		height: 34px;
		top: 0;
		margin-right: 13px;
	}

	.top-login-dropdown,
	.top-login-mini-cart{
		top: 39px;
	}

	.top-cart .item-count{
		top: 3px;
		right: -3px;
		font-size: 9px;
		min-width: 14px;
		height: 14px;
		line-height: 14px;
	}

	.header-title .fa{
		font-size: 21px;
		width: 35px;
		height: 35px;
		line-height: 35px;
	}

	#masthead.light .toggle-nav span,
	#masthead.light .toggle-nav span:before,
	#masthead.light .toggle-nav span:after{
		background: #323b44;
	}

	#masthead.light .toggle-nav.is-visible span{
		background: none;
	}

	#masthead.light .toggle-nav.is-visible span:before,
	#masthead.light .toggle-nav.is-visible span:after{
		background: #fff;
	}

	#masthead.light #primary-menu li a{
		color: #fff;
	}

}

@media screen and (max-width: 768px){

	#top-bar .widget{
		display: block;
		width: 100%;
	}

	#top-bar .widget:nth-child(odd){
		text-align: center;
		margin-right: 0;
	}
	#top-bar .widget:nth-child(even){
		text-align: center;
		margin-left: 0;
	}

	#top-bar li{
		margin-left: 7px;
	}

	#top-bar li:first-child{
		margin-left: 0;
	}

	#masthead.scrolled{
		min-height: 40px;
	}

	#site-branding{
		width: 100%;
		text-align: center;
		padding: 5px 0 5px 0;
	}

	#site-description{
		width: 100%;
		text-align: center;
		margin: 7px 0 7px 0;
		padding: 0;
	}

	#site-description.eighty{
		width: 100%;
		padding-right: 0;
	}

	#masthead.scrolled #site-branding{
		padding: 0 0 2px 0;
	}

	#masthead.scrolled #site-branding img{
		max-height: 30px;
		width: auto;
	}

	#masthead.scrolled .site-title{
		font-size: 18px;
		margin: 2px 0 2px;
	}

	#masthead.scrolled #site-description{
		display:none;
	}

	#top-info{
		float: none;
		width: 100%;
		text-align: center;
	}

	#masthead.scrolled #top-info{
		margin-top: 2px;
		padding-bottom: 3px;
	}

	.top-tel{
		float: none;
		text-align: center;
		background: transparent;
		font-size: 20px;
	}

	#masthead.scrolled .top-tel{
		font-size: 18px;
	}

	.top-tel .fa{
		font-size: 16px;
		line-height: 30px;
		width: 30px;
		height: 30px;
		top: -1px;
		margin-right: 11px;
	}

	#masthead.scrolled .top-tel .fa{
		font-size: 15px;
		line-height: 28px;
		width: 28px;
		height: 28px;
		top: -1px;
		margin-right: 10px;
	}

	.top-login-dropdown,
	.top-login-mini-cart{
		top: 35px;
	}

	.top-tel .mobile-clear{
		float: none;
	}

	.top-login{
		float: none;
	}

	.top-cart{
		float: none;
		padding-left: 10px;
		margin-left: -7px;
	}

	.header-title .fa{
		font-size: 20px;
		width: 33px;
		height: 33px;
		line-height: 33px;
	}

	.main-title{
		font-size: 24px;
	}
	.main-excerpt p,
	.term-description p,
	.page-description p,
	.taxonomy-description p{
		font-size: 12px;
	}

	#masthead.light .top-tel{
		background: transparent;
	}

	#featured-post-section{
		margin-top: 0px;
		padding-bottom: 0px;
	}

	.featured-post{
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 65px;
	}

	#about-section .about-left{
		float: none;
		width: auto;
	}

	#about-section .about-right{
		float: none;
		width: auto;
	}

	#cta-section .cta-tel{
		font-size: 32px;
	}
	.cta-tel-before{
		top: -9px;
		margin-right: 12px;
		width: 25px;
		height: 3px;
		background: rgba(255,255,255,0.45);
		border: 0px;
		border-radius: 2px;
	}
	.cta-tel-after{
		top: -9px;
		margin-left: 12px;
		width: 25px;
		height: 3px;
		background: rgba(255,255,255,0.45);
		border: 0px;
		border-radius: 2px;
	}

	.footer{
		width: 47%;
	}

	.footer:nth-child(3){
		clear: both;
	}

	.footer:nth-child(3),
	.footer:nth-child(4){
		margin-top: 25px;
	}

	.site-info{
		float: none;
		width: 100%;
		text-align: center;
	}

	#footer-menu ul{
		float: none;
		width: 100%;
		text-align: center;
		margin-top: 15px;
	}

	#primary{
		width: auto !important;
		float: none !important;
		margin-bottom: 25px;
	}

	.blank-canvas-full-width #primary{
		margin-bottom: 0;
	}

	#secondary{
		width: auto;
		float: none !important;
	}

	.home-posts-wrap .home-post{
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}

	.home-posts-wrap .home-post:last-child{
		margin-bottom: 0;
	}

	.wc-block-grid.has-2-columns .wc-block-grid__product,
	.wc-block-grid.has-3-columns .wc-block-grid__product,
	.wc-block-grid.has-4-columns .wc-block-grid__product,
	.wc-block-grid.has-5-columns .wc-block-grid__product,
	.wc-block-grid.has-6-columns .wc-block-grid__product{
		flex: 1 0 48%;
		max-width: 48%;
		margin-right: 4%;
	}

	.wc-block-grid.has-2-columns .wc-block-grid__product:nth-child(2n),
	.wc-block-grid.has-3-columns .wc-block-grid__product:nth-child(2n),
	.wc-block-grid.has-4-columns .wc-block-grid__product:nth-child(2n),
	.wc-block-grid.has-5-columns .wc-block-grid__product:nth-child(2n),
	.wc-block-grid.has-6-columns .wc-block-grid__product:nth-child(2n){
		margin-right: 0;
	}

	.wc-block-grid.has-3-columns .wc-block-grid__product:nth-child(3n),
	.wc-block-grid.has-5-columns .wc-block-grid__product:nth-child(5n){
		margin-right: 4%;
	}

}

@media screen and (max-width: 580px){
	#site-branding{
		margin: 0 60px 0 60px;
		width: calc(100% - 120px);
	}

	.header-title .fa{
		font-size: 18px;
		width: 30px;
		height: 30px;
		line-height: 30px;
	}

	.main-title{
		font-size: 22px;
	}

	.post-wrapper{
		width: 98%;
	}
	.post-wrapper.no-overlap{
		width: 100%;
		margin: 0px;
	}
	.entry-figure.no-overlap{
		margin-bottom: 0px;
		min-height: 0px;
	}

	#comments{
		padding: 15px;
	}

	.woocommerce .woocommerce-result-count, 
	.woocommerce-page .woocommerce-result-count{
		float: none;
		margin-bottom: 15px;
	}

	.woocommerce .woocommerce-ordering, 
	.woocommerce-page .woocommerce-ordering{
		float: none;
		margin-bottom: 25px;
	}
}

@media screen and (max-width: 480px){

	.top-tel .mobile-clear{
		width: 100%;
	}

	.top-login{
		margin-left: 0;
	}

	.top-login-dropdown{
		left: 0;
		right: auto;
		min-width: 200px;
		max-width: 220px;
	}

	.top-login-mini-cart{
		min-width: 200px;
		max-width: 220px;
	}

	.top-login-mini-cart a.button.checkout{
		float: none;
		margin-top: 7px;
	}

	.header-title .fa{
		font-size: 16px;
		width: 27px;
		height: 27px;
		line-height: 27px;
	}	

	.top-footer{
		margin: 0;
	}

	.footer{
		width: auto;
		float: none;
		margin: 0 0 20px !important;
	}

	.footer:last-child{
		margin: 0 !important;
	}

	#bottom-footer{
		text-align: center;
	}

	#comments{
		padding: 10px;
	}

	.author-email-url{
		margin-left: 0
	}

	.comment-form-author, 
	.comment-form-email, 
	.comment-form-url{
		width: auto;
		margin-left: 0;
		float: none;
	}

	.woocommerce ul.products li.product, 
	.woocommerce-page ul.products li.product, 
	.woocommerce-page[class*=columns-] ul.products li.product, 
	.woocommerce[class*=columns-] ul.products li.product{
		width: auto !important;
		float: none !important;
	}

	.woocommerce ul.products li.product:hover, 
	.woocommerce-page ul.products li.product:hover, 
	.woocommerce-page[class*=columns-] ul.products li.product:hover, 
	.woocommerce[class*=columns-] ul.products li.product:hover{
		width: auto !important;
		float: none !important;
	}

	.wc-block-grid.has-2-columns .wc-block-grid__product,
	.wc-block-grid.has-3-columns .wc-block-grid__product,
	.wc-block-grid.has-4-columns .wc-block-grid__product,
	.wc-block-grid.has-5-columns .wc-block-grid__product,
	.wc-block-grid.has-6-columns .wc-block-grid__product{
		flex: 1 0 100%;
		max-width: 100%;
		margin-right: 0 !important;
	}

}

@media screen and (max-width: 380px){

	.site-title{
		font-size: 26px;
	}
	.cta-tel-before,
	.cta-tel-after{
		display: none;
	}

}

@media screen and (max-width: 320px){
	.site-title{
		font-size: 24px;
	}
}

/*--------------------------------------------------------------
## Print CSS
--------------------------------------------------------------*/
@media print{
	#masthead,
	.main-header,
	#featured-post-section,
	#secondary,
	#cta-section,
	#colophon,
	#respond{
		display: none;
	}
}