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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
#loader {
  position: fixed;
  z-index: 1000000;
  width: 100%;
  height: 100vh;
  background-color: #502512;
  display: block;

  -webkit-transition: opacity 3s ease-in-out;
  -moz-transition: opacity 3s ease-in-out;
  -ms-transition: opacity 3s ease-in-out;
  -o-transition: opacity 3s ease-in-out;
   opacity: 1;
}

#loader.load-anim {
    opacity: 0;
}

.md-spinner.md-theme-default.md-indeterminate {
    margin-top: -75px;
    top: 50vh;
}

@keyframes ease-in-out {
  0%,100% { opacity: 0 }
  50% { opacity: 1 }
}

/* Firefox < 16 */
@-moz-keyframes ease-in-out {
  0%,100% { opacity: 0 }
  50% { opacity: 1 }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes ease-in-out {
  0%,100% { opacity: 0 }
  50% { opacity: 1 }
}

/* Internet Explorer */
@-ms-keyframes ease-in-out {
  0%,100% { opacity: 0 }
  50% { opacity: 1 }
}

/* Opera < 12.1 */
@-o-keyframes ease-in-out {
    from { opacity: 1; }
    to   { opacity: 0; }
}



/* ---------Footer----------- */
footer {
    overflow:hidden;
    background-attachment: scroll;
    background-image: url(https://csaladireceptkonyv.hu/img/bg/bottom.png);
    background-repeat: repeat-x;
    background-position: center top;
    height: 97px;
    width: 100%;
    clear: both;
}


.md-layout.max-width.center.textbox {
    color: #fff;
    margin-top: 30px;
    background-color: rgba(41, 21, 11, 0.5);
    padding: 10px 20px;
    border-radius: 10px;

    -moz-box-shadow:    inset 0 0 14px #000000;
    -webkit-box-shadow: inset 0 0 14px #000000;
    box-shadow:         inset 0 0 14px #000000;
}
/* ------------ VÉGE Footer------------ */

body{
  background-attachment: scroll;
  background-color: #853C05;
  background-image: url(https://csaladireceptkonyv.hu/img/bg/bg.jpg);
  background-repeat: repeat;
}

.just-mobil-show{
    display: none;
}

.just-web-show{
    display: block;
}

.container-own {
  padding-top: 60px;
}

h1, h1 input { /*Recept címe*/
font-family: 'Berkshire Swash', cursive!important;
  font-size: 30px;
  color:#322620;
  margin-bottom:0px;
  line-height:35px;
  }

#book-mid h1 {width:400px;}
h1:first-letter, h1 input:first-letter   {
font-size:45px;
color:#AC0000;
text-transform:uppercase;
/*margin-left:-10px;*/
}

.color1{
  color: #AE0000 !important;
}
.color2 {
    color: #322620 !important;
}

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

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

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

.italic {
  font-style: italic;
}

.margin-25 {
    margin: 25px;
}

.padding-25 {
    padding: 0 25px;
}

.max-width-500 {
    max-width: 500px;
}

a {
    color: #ff9800;
    text-decoration: none;
}

h2 { /*hozzávalók, elkészítés*/
  font-family: 'Berkshire Swash', cursive;
  font-size: 18px;
  color:#AE0000;
  margin-top:6px;
  }

  h2.cim {
    font-size: 27px;
    line-height: 100%;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
    color: #FFFFFF;
    font-family: 'Berkshire Swash', cursive;
    text-align: center;
}

h3{ /*Trükkök, Kinek, Tipus*/
  font-family: 'Berkshire Swash', cursive;
  font-size: 15px;
  color:#AE0000;
  margin-top:18px;
  }
h3 span { /*tartalomjegyzet jobb oldalan csaladnev*/
  color:#322620;
  }

h4 { /*írtak a receptet*/
  font-family: 'Berkshire Swash', cursive;
  font-size: 12px;
  color:#AE0000;
  text-align: right;
  margin-bottom:-13px;
  margin-top: -4px;
  }
h4 span { /*receptíró neve spanban*/
  color:#322620;
  }

h5 { /*elkészítési idő, adag, nehézség*/
  font-family: 'Berkshire Swash', cursive;
  font-size: 13px;
  color:#AE0000;
  float:left;
 /* margin-top:13px;*/
  margin-bottom:12px;
  margin-right:10px;
  }
h5 span { /*szöveg neve spanban*/
  color:#322620;
  }

  .center-text{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
	 width: 100%;
  }

  .left-text{
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    display: block;
	 width: 100%;
  }

  .right-text{
	 text-align: right;
	 margin-left: auto;
	 margin-right: auto;
	 display: block;
	 width: 100%;
  }

  .width-100{
    width: 100%
  }

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

#kajakep img {
    width: 100%;
}


  .first-font{
      font-family: 'Berkshire Swash', cursive!important;
  }

  .md-tooltip {
    color: rgba(0, 0, 0, .87);
    background-color: #ff9800;
    font-size: 14px;
    font-weight: 500;
  }

  .md-layout.max-width.center {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
  }

  #app .profile-menu .md-theme-default.md-toolbar {
      background-color: #502512 !important;
  }

  .md-layout.md-hide-small h2.md-title a, .md-layout.md-hide-medium h2.md-title a {
    color: #fff !important;
}
.md-layout.md-hide-small h2.md-title a:hover {
  text-decoration: none;
}

  .md-list-text-container .menu-alcim{
    color: #d89a7f;
    line-height: 100%;
}

.profile-menu .md-list-text-container {
    margin-top: 5px;
}

.family-members i.new_user.material-icons {
    margin: 0px 1px;
}

.md-list-text-container span.first-font {
    margin-bottom: 6px;
}

span.tagline {
    font-family: 'Berkshire Swash', cursive!important;
    clear: both;
    display: block;
    color: #905b45;
    margin-bottom: 4px;
    font-size: 14px;
}

.profile-menu .md-list>.md-subheader:first-of-type {
    margin-bottom: -16px;
    font-family: 'Berkshire Swash', cursive!important;
    font-size: 14px;
    color: #905b45;
    padding-left: 16px;
}

.profile-menu ul.md-list.custom-list.md-triple-line.md-theme-default {
    border-top: #e6d5ce 1px solid;
    margin-top: 25px;
}

.md-avatar img {
	width: auto;
	height: auto;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
}

.family-members {
  padding: 10px 16px;
  background-color: #5d2812;
  border-top: solid 1px #8a4323;
}

.altalanos-cimsor {
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
    color: #FFFFFF;
    font-family: 'Berkshire Swash', cursive;
    text-align: center;
	 font-size: 27px;
	 line-height: 100%;
	 display: block;
	 width: 100%;
}

#app .family-members .md-avatar.md-theme-default.add-member{
    background-color: #ff9800;
}

#app .family-members .md-avatar.md-theme-default.add-member .add-member-font{
    color: #5d2812;
}

#book-contet-header #hozzavalok {
  font-size:14px;
  padding-left:2px;
  margin-top:7px;
  margin-bottom:16px;
  line-height:18px;
  font-style:italic;
  }

#top h2.md-title {
      color: #fff;
      font-size: 32px !important;
      text-shadow: 0px 2px 0px rgba(0, 0, 0, 1);
      display: block;
      margin-top: -18px;
      margin-right: 18px;
  }

#top {
    background-image: url(https://csaladireceptkonyv.hu/img/bg/top-line.png);
    background-repeat: repeat-x;
    background-position: center top;
}

#top button.md-button.md-icon-button.h-menu.md-theme-default,
#top button.md-button.md-theme-default.login-signup-btn{
    display: none;
}

#app .md-theme-default.md-toolbar{
    background-color: transparent !important;
}

#kereso-input {
    height: 40px;
    padding: 4px 4px 4px 16px;
    background-color: #833C1D;
    box-shadow: 2px 2px 0 #828181 inset;
    border: 1px solid #CE8559;
    border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px 4px 4px 4px;
    box-shadow: inset 2px 3px 8px 2px #34170C;
}

#kereso .md-input-container {
	margin: -15px 0 0 10px;
  }

#kereso .md-input-container:after {
    display: none;
  }

#kereso .md-flex-40 {
	min-width: 50%;
	max-width: 100%;
	-ms-flex: 0 1 80%;
	flex: 0 1 100%;
  }

#app .md-avatar.md-theme-default {
    border: 2px #58341e solid;
}

#app .md-avatar.md-theme-default {
    margin-top: 0px;
}


#top p, #top .md-hide-small, #top .md-hide-medium  {
    margin-top: 0px;
    font-weight: 500;
    margin-right: 12px;
    font-size: 18px;
    font-family: 'Berkshire Swash', cursive!important;
    color: #fff;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 1);
    text-decoration: none;
    text-transform: none;
}

#results p {
      color: #ac0000;
      text-shadow: none;
      margin-top: 10px;
  }

  p.min-char {
     margin-left: 12px;
 }

#top button.md-button.md-theme-default.h-menu {
    margin-top: -16px;
    margin-right: -8px;
}

#top button.md-button.md-theme-default {
  margin-top: 6px;
  margin-right: 0px;
}

#top button.md-buttonlogin-signup-btn.md-theme-default {
  margin-right: -8px;
}

#top .md-avatar.md-avatar-icon.md-theme-default {
  margin-top: 6px;
  border: 2px solid #fff;
  margin-left: 10px;
  float: right;
}

#top .h-menu i.md-icon.md-theme-default.material-icons {
    font-size: 40px;
    width: auto;
    min-width: auto;
    height: auto;
    min-height: auto;
}

#app .md-theme-default.md-toolbar, #app .md-theme-default.md-tabs > .md-tabs-navigation {
    /*background-color: #502512;*/
    background-color: rgba(47, 21, 10, 0.9);
}

#menu-right {
    background-attachment: scroll;
    background-image: url(https://csaladireceptkonyv.hu/img/bg/top-menu.png);
    background-repeat: no-repeat;
    width: 445px;
    height: 71px;
    text-align: right;
    align: right;
    padding-right: 34px;
}

.profile-menu .md-theme-default.md-list .md-list-item.md-primary .md-list-item-container, .profile-menu .md-theme-default.md-list .md-list-item.md-primary .md-list-item-container i{
    color: #AC0000 !important;
}

.md-fab.md-fab-bottom-right, .md-speed-dial.md-fab-bottom-right{
    position: fixed;
	 display: none;
}

i.md-icon.md-theme-default.material-icons.font-set {
    font-size: 20px !important;
    margin: 1px -2px !important;
}


nav.md-whiteframe.md-tabs-navigation.md-whiteframe-0dp.md-has-label.md-fixed.md-centered {
    /*margin-top: 60px;*/
}

#app .phone-viewport.complete-example {
    position: fixed;
    width: 100%;
    z-index: 3;
    background-color: transparent !important;
}

#top .md-theme-default.md-toolbar {
    background-color: transparent !important;
}

.search-gg i.md-icon.md-theme-default.material-icons {
    font-size: 35px;
    width: auto;
    height: auto;
}

#top button.md-button.md-theme-default.search-gg {
    margin-top: -5px;
}

.md-left li.md-list-item {
    display: block;
}

.md-sidenav-content{
  list-style-type: none;
}

.md-sidenav-content .md-list-item.signlog{
  background: #e88703;
  margin: 0 6px 0 6px;
  border-radius: 10px;
}
.md-sidenav-content .md-list-item.signlog a{
  color: #fff;
  padding-left: 10px;
}
.md-sidenav-content .md-list-item.signlog .md-icon{
  color: #fff;
}

.md-sidenav-content .md-list-item.signlog.signup{
  margin-top: 15px;
  background: #e88703;
}

.md-sidenav-content .md-list-item.signlog.login{
  margin-top: 7px;
  margin-bottom: 7px;
  background: #c18d46;
}



/* ---------Kezdooldal----------- */

.md-tabs-content {
    z-index: 2;
}

#book {
  background-attachment: scroll;
  background-image: url(https://csaladireceptkonyv.hu/img/bg/book.png);
  background-repeat: no-repeat;
  background-position: center top;
  width:527px;
  height:728px;
  margin-right: auto;
  margin-left: auto;
  }

#book #kezdo-csaladnev{
  margin-top: 160px;
  width:527px;
  position:absolute;
  }

#book #kezdo-csaladnev h1{
  font-size:30px;
  color: #D19F54;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 1);
  text-align: center;
  margin-left: 40px;
  margin-top: 0px;
  }

  #book h1:first-letter {
    font-family: 'Berkshire Swash', cursive;
    font-size: 30px;
    margin-bottom: 0px;
    line-height: 35px;
    color: #D19F54;
    text-transform: uppercase;
    margin-left: 0px;
}


#kezdooldal {
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
  color:#FFFFFF;
  font-family: 'Berkshire Swash', cursive;
  text-align:center;
  }

#kezdooldal .kezdo-szoveg-nagy {
  font-size:50px;
  display: block;
  margin-top: 25px;
  margin-bottom: 6px;
  line-height: 95%;
  }

#kezdooldal .kezdo-szoveg-kicsi {
  font-size:27px;
  line-height: 100%;
  }

#kezdo-szoveg-bel {
  margin-top: 280px;
  width:310px;
  position:absolute;
  text-align: center;
  margin-left: 135px;
  color:#D19F53;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
  }

#kezdo-szoveg-bel b{
  color:#fff;
  }

  #kezdo-szoveg-bel p {
    margin-bottom: 6px;
    line-height: 15px;
    font-size: 13px;
    margin-top: 4px;
    margin-bottom: 14px;
}

#book #tartalom {
    margin-top: 530px;
    width: 527px;
    position: absolute;
    text-align: center;
    margin-left: 20px;
}

#book #tartalom .md-button {
      font-family: 'Berkshire Swash', cursive;
      color: #512512;
      text-decoration: none;
      font-size: 18px;
      background-color: #D1A056;
      padding: 6px 42px;
      text-transform: none;
      border-radius: 4px 4px 4px 4px;
      -moz-border-radius: 4px 4px 4px 4px;
      -webkit-border-radius: 4px 4px 4px 4px;
}

.md-sidenav-content {
    position: fixed !important;
}


/* ---------Kártya----------- */
.kartya .md-card-area .md-title, .kartya .md-card-header .md-title.category  {
  font-family: 'Berkshire Swash', cursive !important;
  font-size: 28px;
  color:#322620;
  margin-bottom:0px;
  line-height:35px;
  }

  .kartya {
    z-index: 2;
}

.padding-16 {
    padding: 16px;
}

.margin-top-20{
    margin-top: 20px;
}

  .md-layout.md-flex-30.line2 h5 {
    margin-bottom: 0;
    margin-top: 11px;
	 width: 100%;
}

#nyomt form{
    float: right;
    margin: 6px -4px;
}

a.md-button.md-fab.md-mini.md-theme-default {
    margin: 8px 2px;
}

.md-layout.md-flex-30.line2 h5:nth-child(2) {
    margin-top: -8px;
}

.card-layout.kartya .md-card-area {
    min-height: 550px;
}

a.md-button.favorite.md-icon-button.active.md-theme-default i.md-icon, a.md-button.bookmark.md-icon-button.active.md-theme-default i.md-icon {
    color: #ac0000 !important;
}

.kartya .md-card-area .md-title:first-letter, .kartya .md-card-header .md-title.category:first-letter  {
font-size:45px;
color:#AC0000;
text-transform:uppercase;
/*margin-left:-10px;*/
}

.kartya .md-card-actions .md-subhead {
    text-align: left;
    float: left;
    left: 20px;
    position: absolute;
}

.kartya .md-card-content p {
    line-height: 130%;
    font-style: italic;
    font-size: 13px;
    border-bottom: 1px solid #d7c0b6;
    padding: 12px 0;
    border-top: 1px solid #d7c0b6;
}

.kartya .md-card-area .md-subhead {
    color: #ac0000;
    font-weight: 500 !important;
    font-size: 16px !important;
    margin: 5px 5px !important;
    opacity: .8;
}

.kartya .md-card-media {
    max-height: 200px;
    overflow: hidden;
}

#app .kartya .bookmark-love-container{
    position: absolute;
    z-index: 2;
    margin-top: -15px;
    padding: 0px 10px;
    right: 0;
}

#app .kartya .md-avatar.md-theme-default.bookmark-love{
    margin-right: 5px;
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
}


.card-layout {
  margin: 16px 15%;
  display: flex;
}

  .column {
    flex: 1;
  }

.column {
      margin-left: 8px;
    }

  .md-card + .md-card {
    margin-top: 8px;
  }

 .member .md-card.md-theme-default {
	margin: 15px 7px 0px 7px;
	width: 48%;
}

.md-layout.hold-member-cont.padding-25.md-flex-100 {
    margin-bottom: 40px;
 }

.card-layout.kartya .md-theme-default.md-card {
      background-color: #fff;
      color: #502512;
		z-index: 3;
  }

.card-layout.kartya .md-card-area {
    background-color: #ecdcd5;
}

.card-layout.kartya .md-card-actions {
    background-color: #fff3ed;
	 min-height: 40px;
}

.card-layout.kartya .md-theme-default.md-card .md-card-actions .md-icon-button:not(.md-primary):not(.md-warn):not(.md-accent) .md-icon {
    color: rgb(80, 37, 18);
	 z-index: 2;
}

.card-layout.kartya .md-layout.md-flex-xsmall-100.md-flex-small-50.md-flex-medium-50.md-flex-large-33.md-flex-xlarge-25 {
    padding: 4px;
}
/* ---------Vég kártya----------- */



/* ---------Login Modal----------- */

.md-backdrop {
    background-color: rgba(0,0,0,0.85);
}

p.problem {
    display: block;
    padding: 5px 13px;
    background-color: #b30404;
    color: #fff;
    text-align: center;
}

p.problem:empty {
    display: none;
}

.Login .md-dialog.md-reference .md-layout.main-cont::after {
    content: "";
    background: url(https://csaladireceptkonyv.hu/img/bg/cook3.jpg) no-repeat;
    opacity: 0.15;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    background-size:100%;
}
.register.md-dialog-container, .setup.md-dialog-container, .member.md-dialog-container{
      position: absolute;
    }

.register .md-dialog, .setup .md-dialog {
    max-height: none;
    margin: 20px 0px;
    position: absolute;
    top:0;
  }

  .longpopup .md-dialog {
      max-height: none;
      margin: 20px 0px;
      position: absolute;
      top:0;
    }

.register .md-dialog.md-reference .md-layout.main-cont::after {
    content: "";
    background: url(https://csaladireceptkonyv.hu/img/bg/cook2.jpg) no-repeat;
    opacity: 0.15;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    background-size: 100%;
}

.register .md-toolbar.md-theme-default {
    min-width: 650px;
}

.Login .md-layout.main-cont .md-layout.md-flex-50 {
    min-width: 490px;
}

.Login span.cs-subtext.center-text {
    width: 90%;
    font-size: 13px;
    color: #666;
}

.md-dialog.md-reference h2 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 22px;
    color: #ffffff;
    margin: 10px 15px;
}


button.btn.btn-round.facebook-btn, a.btn.btn-round.facebook-btn {
	font-size: 13px;
	text-transform: uppercase;
	color: #fff;
	background-color: #2a50b5;
	font-weight: 500;
	margin-top: 15px;
	padding-left: 20px;
	padding-right: 20px;
	width: auto;
	display: table;
}

#toogle-select-btn.md-button-toggle>.md-button{
    border-radius: 0px;
    min-width:240px;
    opacity: 0.55;
}
#toogle-select-btn.md-button-toggle>.md-button:hover, #toogle-select-btn.md-button-toggle>.md-button.md-toggle{
    opacity: 1;
}

#toogle-select-btn.md-button-toggle>.md-button:first-child{
    background-color: #f4574a;
    color: #fff;
    border-radius: 5px 0px 0px 5px;
}

#toogle-select-btn.md-button-toggle>.md-button:last-child{
    background-color: #2a50b5;
    color: #fff;
    border-radius: 0px 5px 5px 0px;
}


.Login .md-layout.main-cont .md-layout.md-flex-50.left{
  border-right: 1px solid #ccc;
  margin: 30px 0px;
}

.md-dialog.md-reference .md-toolbar.md-theme-default {
    background-color: rgba(47, 21, 10, 1);
}

.md-dialog.md-reference .md-dialog-actions {
    background-color: #ecdcd5;
}

.md-dialog.md-reference .md-dialog-actions {
    border-top: 2px solid rgba(0, 0, 0, .32);
}

.Login .modal-container {
    min-width: 400px;
    margin: 8px 45px 0px 45px;
    width: 100%;
}

.register .md-layout.main-cont {
    margin: 8px 45px 40px 45px;
}

.md-button.md-icon-button.close-mod {
  right: 0;
  position: absolute;
}

.md-dialog.md-reference a.standalon-link{
    float: right;
    margin-top: 18px;
}

.md-dialog.md-reference .close-md{
    position: absolute;
    left: 12px;
}

button.md-button.md-raised.md-primary.md-theme-default {
    margin: 2px 2px;
    padding: 2px 35px;
}

button#custom {
    background-color: #ff9800;
    margin: 4px 6px !important;
    padding: 1px 20px;
}

#menu-right .login button#custom {
    background-color: rgba(209, 160, 86, 0.8);
}

#menu-right .register button#custom {
    background-color: rgba(255, 152, 0, 0.8);
}

#menu-right .login, #menu-right .register {
  float:left;
}

#menu-right .login{
  margin-left: 20px;
  margin-right: -7px;
}

.register label.md-checkbox-label {
    font-size: 11px;
    font-weight: 500;
    color: #999;
}

.md-theme-default.md-button:not([disabled]).md-primary.md-raised.fb-spec-reg {
    background-color: #2a50b5;
    color: rgba(255, 255, 255, .87);
    padding: 0 25px;
}



/* ---------VÉGE Login Modal ----------- */












.noselect {
    pointer-events: none;
    z-index: 1;
}

#petrezselyem {
  position:absolute;
    width:50%;
    top:40px;
    left:0px;
    bottom:0px;
  height:500px;
    background: url(https://csaladireceptkonyv.hu/img/bg/petrezselyem.png) no-repeat left top;
}

#vagodeszka {
  position:absolute;
  width:50%;
  top:260px;
  left:0px;
  bottom:0px;
  background: url(https://csaladireceptkonyv.hu/img/bg/vagodeszka.png) no-repeat left top;
  height: 100%;
  max-height: 700px;
  z-index: 0;
}

#hagyma {
  position:absolute;
    width:50%;
    top:520px;
    left:0px;
    bottom:0px;
    background: url(https://csaladireceptkonyv.hu/img/bg/hagyma.png) no-repeat left top;
  height: 470px;
}

#paprika {
    position:absolute;
    width:50%;
    top:50px;
    right:0px;
    bottom:0px;height:1000px;
    background: url(https://csaladireceptkonyv.hu/img/bg/paprika.png) no-repeat right top;
}

#fakanal {
    position:absolute;
    width:50%;
    top:750px;
    right:0px;
    bottom:0px;
    background: url(https://csaladireceptkonyv.hu/img/bg/fakanal.png) no-repeat right top;
    height: 250px;
}










.fade-enter-active, .fade-leave-active {
  transition: opacity .5s
}
.fade-enter, .fade-leave-to /* .fade-leave-active in <2.1.8 */ {
  opacity: 0
}





.app-example {
  .page-layout {
    display: flex;
  }

  .column {
    flex: 1;
    background-color: rgba(#000, .06);

    + .column {
      margin-left: 16px;
    }
  }

  .md-list {
    background: none;
  }

  .md-subheading {
    padding: 16px;
    display: block;
  }

  .item-text {
    flex: 1;
  }

  .md-checkbox {
    margin-right: 16px;
  }

  .md-button {
    margin-left: 16px;
  }
}






/* ---------VÉGE Box-ok ----------- */

.panel-heading {
    background-color: #3e1b0e !important;
    border: none;
    font-weight: 500;
    color: #fff !important;
    padding: 15px;
    font-size: 18px;
}


.panel.panel-default {
    margin-top: 40px;
    background-color: #833c1d;
    border: none;
    color: #fff;
}

.btn-primary {
    color: #fff;
    background-color: #e98702;
    border-color: #e68501;
}

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

/* ---------VÉGE Box-ok ----------- */



/* --------- Kereső auto comp ----------- */
.pagination li a {
  padding: 10px;
  height: 44px;
}

#results {
	position: absolute;
	 top: 38px;
	 left: 0;
	 width: 100%;

	 background-color: rgba(255, 255, 255, 0.95);;
	 box-shadow: 2px 2px 0 #828181 inset;
	 border: 1px solid #CE8559;
	 border-top: 0px;
	 border-radius: 0px 0px 4px 4px;
	 -moz-border-radius: 0px 0px 4px 4px;
	 -webkit-border-radius: 0px 0px 4px 4px;
	 box-shadow: 0px 5px 13px 2px rgba(0, 0, 0, 0.6);
}
.found { padding: 4px 4px 4px 16px; }
.half { float: left; width: 50%; padding-right: 20px;}

#results  ul {
    padding-left: 2px;
}

#results ul li {
    padding: 5px 8px;
}

#results ul li:nth-child(2n+0) {
	background-color: rgba(204, 204, 204, 0.2);
   border-radius: 3px;
}

#results h2 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 18px;
    color: #AE0000;
    margin-top: 6px;
    margin-bottom: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ae0000;
}

#results ul:not(.md-list) > li + li {
    margin-top: 0px;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#results li.paginate_button {
    padding: 8px 12px;
    float: left;
    display: block;
    border: 1px solid #dedede;
    background-color: #eaeaea;
    margin: 1px;
    border-radius: 3px;
}

#results li.paginate_button.active {
	 color:#fff;
    border: 1px solid #ff9800;
    background-color: #ff9800;
}

#results li.paginate_button.active a{
	 color:#fff;
}

/* --------- VÉGE Kereső auto comp ----------- */



/* --------- családtag hozzáadás ----------- */
.member .md-layout.main-cont {
    width: 900px;
}




/* --------- VÉGE családtag hozzáadás ----------- */

.pagination li.paginate_button a {
    padding: 12px 15px;
}

.pagination li.paginate_button.active a {
    color: #fff;
    background-color: #ff9800;
    border: #ff9800;
}

ul.pagination.pagination-sm.no-margin {
    margin-left: auto;
    margin-right: auto;
}


/* --------- avatar ----------- */

div#avatar {
    width: 100%;
}

#adatlap .card-layout.kartya .md-theme-default.md-card{
    background-color: rgba(255, 255, 255, 0.85);
}

.md-avatar.md-big.md-theme-default {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
	 top: 160px;
}

#avatar.md-card .md-card-content {
    padding: 10px 40px 22px 40px;
 }

 #avatar.md-card .md-card-content .avatar-name {
	  margin-bottom: 10px;
	  padding-bottom: 10px;
  }

 #avatar .avatar-content {
	 margin-top: 10px;
    padding-bottom: 1px;
}

#avatar .avatar-content:last-child {
	border-bottom: none;
}
#avatar .md-card-media {
    overflow: hidden;
    background-attachment: scroll;
    background-image: url(/img/bg-avatar.png);
    background-repeat: repeat-x;
    background-position: center top;
    height: 200px;
}

.recept-kep {
    width: 25%;
    float: left;
    max-height: 200px;
    overflow: hidden;
}

.md-card .md-card-media .recept-kep img {
    max-width: none;
    width: auto;
}

button.avatar-edit {
    display: block;
    /* position: absolute; */
    /* right: 0; */
    /* top: 0; */
    width: 100%;
    padding: 6px 0px;
    background-color: #ff9800 !important;
    margin-bottom: 20px !important;
}

.kezdo-cim {
    font-size: 27px;
    line-height: 100%;
	 text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
    color: #FFFFFF;
    font-family: 'Berkshire Swash', cursive;
    text-align: center;
	 width: 100%;
	 display: block;
}

.center button.md-button {
    margin-left: auto;
    margin: auto;
    display: block;
}

button.md-button.md-fab.md-clean.md-mini.editing-btn.md-theme-default {
    position: absolute;
    bottom: 0px;
    left: 5px;
	 width: 24px;
    height: 24px;
	 min-width: 24px;
	 min-height: 24px;
	 background-color: #ff9800;
}

.md-button.md-fab.editing-btn .md-icon{
	 font-size: 20px;
}

/* --------- VÉGE avatar ----------- */


li.md-list-item.md-menu-item.md-option.md-checked .md-list-item-container.md-button .md-checkbox.md-primary.md-theme-default .md-checkbox-container {
    background-color: #ad0000;
}

.counter {
    position: absolute;
    width: 220px !important;
    padding: 35px 20px 20px 20px;
    display: inline-table;
    height: auto;
    text-align: center;
    background-color: rgba(86, 43, 24, 0.73);
    border-radius: 10px;
    color: #dcb891;
    box-shadow: inset 0 0 14px #000000;
	 text-transform: uppercase;
}

.counter-left {
    margin-top: 280px;
    margin-left: -202px;
}

.counter-right {
    margin-top: 280px;
    margin-left: 510px;
}

.counter b {
    font-size: 55px;
    font-weight: 600;
}

.popover,
.popover.tour,
.tour-backdrop,
.tour-step-background {
	 z-index: 2;
}

.popover {
    max-width: 450px;
	 width: 450px;
 }

 .popover-title {
    margin: 0;
    padding: 12px 18px;
    font-size: 18px;
    color: white;
    background-color: #833c1d;
    border-bottom: 1px solid #823c1d;
    border-radius: 5px 5px 0 0;
}

.popover[class*=tour-] {
    color: #833c1d;
    font-weight: 500;
 }

 .popover[class*=tour-] .btn.btn-sm.btn-default{
    cursor: pointer;
    background-color: #833c1d;
    color: #fff;
    border: none;
    padding: 6px 20px;
}

.popover[class*=tour-] .popover-navigation {
	 padding: 10px 10px;
    background: #fff5e8;
    border-top: 1px solid #e0d7ca;
}

.popover .btn.btn-sm.btn-default.close-btn {
    background-color: transparent;
    color: #AE0000;
    font-weight: 700;
    font-size: 12px;
}

#step-0 .b-tour-img {
    width: 100%;
    height: 152px;
    display: block;
    background-image: url(/img/b-tour-1.jpg);
}



#kereso #results li.paginate_button.active {
    border: none;
    background-color: none;
}


#kereso #results li.paginate_button {
   padding: 0;
	border: 0px solid #dedede;
	background-color:none;
	margin: 2px -1px;
}

#kereso .pull-right {
		float: left !important;
}

span.update-time {
    color: #984c31;
    font-size: 12px;
    font-weight: 900;
}

span.tip {
    color: #3c1e10;
    font-weight: 500;
    margin: -5px 15px 15px 15px;
    /* padding: 15px; */
    display: block;
}

.md-layout.md-gutter-8 {
    z-index: 2;
}

div#tamogato {
    text-align: left;
    display: block;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #ce8559;
}

li.hibauzenet {
    width: 800px;
    margin: 25px auto -5px auto;
    text-align: center;
    padding: 8px 10px;
    background-color: #bb1111;
    color: #fff;
    border-radius: 6px;
    list-style-type: none;
}

.forum .md-card.md-theme-default {
    width: 100%;
}

.input-holder {
    border: 1px solid #999;
    border-radius: 50px 10px 10px 50px;
    padding: 3px;
	 background-color: #fff;
	 border-bottom: 1px solid #ccc;
}

input#uzenet-input {
    width: calc(100% - 50px);
    height: 36px;
    border: none;
}

.input-cont {
    padding: 15px;
    background-color: #ecdcd5;
}

.forum li {
    display: block;
}

.forum .md-list-text-container {
    width: calc(100% - 55px);
    float: left;
}

.forum .md-card-content .md-avatar.md-theme-default {
    float: left;
	 margin-right: 10px;
}

.forum span.csaladnev-forum a {
    color: #ffc876;
}

.forum .md-list-text-container {
    padding: 12px;
    background-color: #f5f5f5;
    border-radius: 5px;
	 margin-bottom: 4px;
}

.forum.kartya .md-card-content p {
    border: none;
}

.forum.kartya .md-card-content p {
	    margin-top: 13px;
	    padding: 12px 0px 12px 0;
	    margin-bottom: 6px;
	    border-top: 1px solid #d7c0b6;
	    border-bottom: 1px solid #d7c0b6;
	    color: #502512;
}

.input-holder.reply {
    margin-top: 8px;
}

a.icon-cont {
    margin-left: 14px;
}

.input-holder.reply .md-avatar.md-theme-default {
    min-width: 28px;
    width: 28px;
    min-height: 28px;
    height: 28px;
}

.input-holder.reply input#uzenet-input {
    width: calc(100% - 50px);
    height: 28px;
    border: none;
}




.save-alert {
    padding: 10px 12px;
    font-size: 11px;
    line-height: 14px;
    background-color: #bb0000;
    color: #fff;
    border-radius: 4px;
}

.report-link {
    color: #ae0000;
    font-size: 10px;
	 margin-top: 16px;
    text-decoration: underline;
}

.report-link i.md-icon.md-theme-default.material-icons {
    font-size: 22px;
}
div#chat-container {
   display: none;
}

div#chat-contener {
    width: 440px;
    position: fixed;
    z-index: 100;
    bottom: 0;
    right: 20px;
}

div#chat {
    height: 50px;
    width: 440px;
    background: #ffffff;
    z-index: 100;
    bottom: 0px;
    right: 20px;
    border-radius: 4px 4px 0 0;
    box-shadow: 0px 2px 10px 3px rgba(0,0,0,0.5);
    margin-top: 0px;
    float: left;
}

div#profil {
    width: 50px;
    background-color: #ecdcd5;
    height: 50px;
    border-top-left-radius: 4px;
    float: left;
}

div#message {
    float: left;
}

#chat .md-avatar.md-theme-default {
    margin: 5px 5px;
    border: 2px #58341e solid;
    z-index: 1;
}

#message form {
    height: 42px;
    width: 335px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    margin: 4px;
    box-shadow: inset 1px 1px 3px 0px rgba(0,0,0,0.2);
}

#chat input[type="text"] {
    border: none;
    height: 36px;
    width: 250px;
    margin: 2px 10px;
    float: left;
}

#chat input[type="text"]:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

#chat input[type="submit"] {
    background-color: #391a0d;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    margin-top: 2px;
    display: block;
    float: left;
}

#chat .close {
    padding: 12px;
    color: #ac0000;
    opacity: 1;
}

.post-message {
    height: auto;
    width: 440px;
    margin-bottom: 10px;
    float: left;
    position: relative;
}

.post-message .md-avatar.md-theme-default {
    float: left;
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    margin: 10px 6px;
    z-index: 1;
}

.post-message .arrow {
    width: 0;
    height: 0px;
    border-top: 11px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.85);
    margin: 15px 40px;
    display: block;
    position: absolute;
}

.message-content {
    background-color: rgba(255, 255, 255, 0.85);
    float: right;
    width: calc(100% - 50px);
    padding: 15px 15px 5px 15px;
    border-radius: 10px 20px 10px 20px;
    box-shadow: 0 1px 5px 2px rgba(0,0,0,.2);
    font-size: 13px;
    color: #666;
}

.post-message b {
    color: #901e13;
}







.message-box {
    height: 1px;
    width: 440px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0 2px 10px 3px rgba(0,0,0,.3);
    margin-bottom: 0px;
    /*display: none;*/
    visibility: hidden;
    z-index: -1;
    overflow: auto;
    padding: 20px 0px;
    position: relative;
}

/*div#chat:hover  ~ .message-box {*/
div#chat-contener:hover .message-box{
    height: 500px;
    /*display: block;*/
    visibility: visible;
}

div#chat-contener:hover .post-message {
    display: none;
}

.message-box .post-message {
    width: calc(100% - 25px);
    margin: 5px 0px;
}

.message-box .md-avatar.md-theme-default {
    margin-top: 10px !important;
}

.message-box .post-message .arrow {
    border-right: 10px solid #fff;
}

.message-box .message-content {
    background-color: rgb(255, 255, 255);
}


.post-message.myself .md-avatar.md-theme-default {
    float: right;
}

.post-message.myself .arrow {
    border-left: 10px solid #fff3ed;
    right: 32px;
    margin: 15px 0px;
}

.post-message.myself {
    float: right;
}

div#chat-contener:hover .message-box .post-message {
    display: block;
}

.post-message.myself .message-content {
    background-color: #fff3ed;
    margin-right: 3px;
}


.openChat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #e58601;
    padding: 20px;
    color: #fff;
    border-radius: 50%;
    z-index: 9999;
   /* display: none; */
    cursor:pointer;
}

.openChat i {
    color: #fff;
}
#book-outer {
    position: relative;
    min-height: 750px;
    z-index: 1;
	 display: grid;
}

#book-outer:after {
    content: "";
    position: absolute;
    top: 158px;
    left: 0;
    right: 0;
    bottom: 347px;
    /* background: url(http://lorempixel.com/400/200) repeat-y; */
    background: url(https://csaladireceptkonyv.hu/img/bg/book-mid.png) repeat-y;
}

#book-top {
    background-attachment: scroll;
    background-image: url(https://csaladireceptkonyv.hu/img/bg/book-top.png);
    background-repeat: no-repeat;
    background-position: center top;
    width: 1086px;
    position: relative;
    z-index: 10;
    min-height: 750px;
}

#book-bottom {
    background-attachment: scroll;
    background-image: url(https://csaladireceptkonyv.hu/img/bg/book-bottom.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 1086px;
    position: relative;
    z-index: 9;
    padding-bottom: 40px;
    min-height: 750px;
}

#center960 #book-top hr {
    border: 0;
    background-image: url(https://csaladireceptkonyv.hu/img/bg/line.png);
    height: 4px;
    clear: both;
    display: block;
    margin-top: 4px;
    margin-bottom: 8px;
}

#book-top #tartalom-aszf {
      width: 895px;
      column-fill: auto;
      margin: auto;
      -moz-column-count: 2;
      -webkit-column-count: 2;
      column-count: 2;
      -moz-column-gap: 70px;
      -webkit-column-gap: 70px;
      column-gap: 55px;
      padding-left: 24px;
}

#book-content {
    display: table;
}

#book-content-header, #book-content-header-right {
    display: table-cell;
    vertical-align: top;
}

#book-content-header {
    width: 410px;
    /* min-height: 500px; */
    padding-top: 48px;
    padding-left: 117px;
}

#book-content-header-right {
    width: 472px;
    padding-top: 48px;
    padding-left: 65px;
}

#book-top hr {
    border: 0;
    background-image: url(https://csaladireceptkonyv.hu/img/bg/line.png);
    height: 4px;
    clear: both;
    display: block;
    margin-top: 4px;
    margin-bottom: 8px;
}

#book #kezdo-csaladnev a {
    color: #D19F54;
    display: block;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
    margin-left: 40px;
    margin-top: -10px;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 1);
}

#book #kezdo-csaladnev a:hover {
    color: #fff;
    text-decoration: underline;
}

#book #kezdo-csaladnev.tartalomcim {
    margin-top: 220px;
    width: 527px;
    position: absolute;
}

#book .family-members-bookmark{
    width: 290px;
    margin: 25px 145px;
}

#book .family-members-bookmark span.tagline {
    text-align: center;
}

#book .family-members-bookmark .md-avatar.md-theme-default {
    border-radius: 4px;
}


#book-content-left, #book-content-right {
    display: table-cell;
    vertical-align: top;
}

#book-content-left {
    width:517px;
    min-height: 0;
    padding-top: 48px;
    padding-left: 117px;
    padding-bottom: 30px;
}
#book-content-right {
    width: 475px;
    min-height: 0;
    padding-top: 48px;
    padding-left: 62px;
    padding-bottom: 30px;
}

#receptfelvitel input[type=text], #receptfelvitel textarea {
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px dashed #cec6b7;
    border-radius: 5px;
    color: #2d261c;
    font-family: Arial, Helvetica, Sans-serif;
    font-size: 12px;
    padding: 5px;
    resize: none;
    width: 100%;
    box-shadow: inset 0px 0px 15px -4px rgba(0,0,0,0.45);
}

#receptfelvitel #book-content-left input[type=text], #receptfelvitel textarea {
    min-height: 200px;
	 resize: vertical;
}

#receptfelvitel #book-content-left  h1.szerkesztheto input {
    font-family: 'Berkshire Swash', cursive!important;
    font-size: 30px;
    color: #322620;
    margin-bottom: 0px;
    line-height: 35px;
    min-height: 60px;
}

#book-content-right #kajakep {
    width: 420px;
    /*height: 265px;*/
    margin-top: 5px;
    margin-bottom: 15px;
    float: left;
    background-color: #AEA188;
    border: solid 2px #99806F;
	 overflow: hidden;
}

#book-content-right #kajakep a {
  display: block;
  width: 110px;
  height: 120px;
  margin-bottom: 70px;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
}

#book-content-right #kajakep i.material-icons {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.8);
}

#book-content-right .adatosszegzo {
  margin-top: 8px;
  display: block;
}

#szerk-nyomt button {
    margin-top: 26px;
}

#nyomt button {
	 margin: 0px 10px;
}

.szerkesztheto.min-margin{
    margin-top: -15px;
}


#book-top #tartalomjegyzek {
    width: 870px;
    padding-left: 16px;
    margin: auto;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    -moz-column-gap: 55px;
    -webkit-column-gap: 55px;
    column-gap: 55px;
    /* overflow: hidden; */
    min-height: 540px;
    height: 596px;
    column-fill: auto;
    word-wrap: break-word;
	 padding-bottom: 30px;
}

#receptlista #book-content-left {
    padding-bottom: 0px;
    padding-top: 25px;
}
#receptlista #book-content-right {
    padding-bottom: 0px;
    padding-top: 45px;
}

#book-top #tartalomjegyzek a:hover {
    color: #AC0000;
    text-decoration: underline;
}

#book-top #tartalomjegyzek a {
    text-align: left;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #322721;
    text-decoration: none;
    margin-top: 7px;
    margin-left: 5px;

	 text-overflow: ellipsis;
	display: block;
	white-space: nowrap;
	overflow: hidden;
}


#book-top #tartalomjegyzek h2 a {
  font-family: 'Berkshire Swash', cursive;
  font-size: 18px;
  color:#AE0000;
  margin-top:6px;
  }

#book-top #tartalomjegyzek h2 a .oldalszam {
  color: #888;
  margin-left: 10px;
  font-size: 16px;
}

#book-top #tartalomjegyzek h2 a .receptszam {
    float: right;
	 font-family: Arial, Helvetica, sans-serif;
    color: #322721;
    text-decoration: none;
	 margin-right: 5px;
	 font-size: 12px;
    font-style: italic;
}

div#hozzavalok {
    max-width: 400px;
}

#book-content-right .md-layout.line2.md-flex-30:empty {
    display: none;
}

.btn-cont-right {
    text-align: right;
    display: block;
}

#receptnezet #book-content-left {
  padding-top: 15px;
}

.fb-page-contaner {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 500px;
    width: 100%;
}

#receptnezet #book-content-right {
  padding-top: 15px;
}

.fam-member-cont{
  color:#322620;
  font-family: 'Berkshire Swash', cursive;
  margin-bottom: 4px;
}

#lablec, #lablec a{
    font-family: 'Berkshire Swash', cursive;
    color: #322620;
    font-size: 13px;
}

#book-content-left-lablec {
    width: 517px;
    padding-top: 10px;
    padding-left: 117px;
    padding-bottom: 16px;
    float: left;
}

#book-content-right-lablec {
    width: 475px;
    padding-top: 10px;
    padding-left: 62px;
    padding-bottom: 16px;
    float: left;
}

a.external i.md-icon.bookmark.md-theme-default.material-icons {
    color: #b4ac9e;
}

a.external i.md-icon.bookmark.md-theme-default.material-icons:hover {
    color: #AC0000;
}

#book #kezdo-csaladnev .md-avatar.md-theme-default a {
    margin: 0;
}

.breadcrumbs {
  background-color: rgba(47, 21, 10, 0.9);
  width:100%;
  height: 50px;
  color: #dcb891;
}

.breadcrumbs .md-layout.max-width.center a{
  text-decoration: underline;
}

.breadcrumbs i.material-icons {
    font-size: 13px;
    color: #d1a056;
	 margin: 0px 10px;
}

.breadcrumbs .md-layout.max-width.center {
    padding-top: 14px;
}

.counter {
  background-color: rgba(47, 21, 10, 0.9);
  border-radius: 10px;
  width:100px;
  height: 50px;
  color: #dcb891;
}

a.tartalomjegyzek-nyomt {
    position: absolute;
    right: 90px;
    top: 38px;
}

.md-avatar.new-user-container.md-theme-default {
	background-color: #d1a056;
	color: #512512;
	padding: 6px 5px;
}

div#hozzavalok p {
    column-count: 2;
    column-gap: 10px;
}

div#receptnezet {
    min-height: 506px;
}

a.md-button.favorite.md-primary.receptkonyv-kedvenc.md-theme-default {
    padding: 0;
    clear: both;
    margin: 0;
}

a.md-button.favorite.md-primary.receptkonyv-kedvenc.md-theme-default .has_favorite, a.md-button.favorite.md-primary.receptkonyv-kedvenc.md-theme-default.active .has_none{
	display: inherit;
}

a.md-button.favorite.md-primary.receptkonyv-kedvenc.md-theme-default.active .has_favorite, a.md-button.favorite.md-primary.receptkonyv-kedvenc.md-theme-default .has_none{
	display: none;
}

a.md-button.favorite.md-primary.receptkonyv-kedvenc.md-theme-default.active {
	color: #ac0000;
}

.face-share {
    float: right;
    width: 100%;
    margin-top: -25px;
    text-align: right;
}

#book-top #tartalomjegyzek {
    height: auto;
 }

 .banner{
  margin: 10px 0px 20px;
}

.banner.receptalatt{
  margin: 10px 0 40px;
}

.banner.receptfelett{
  margin: 30px 0px 0px;
}

/*----------------háttérben lévő zőldségek---------------*/
@media only screen and (max-width: 1500px) {
 #petrezselyem {
      /* ?? */
      background-position:right 500px top 0px;
    }
      #vagodeszka {
      /* ?? */
      background-position:right 450px top 0px;
    }
    #hagyma {
      /* ?? */
      background-position:right 500px top 0px;
}

}
@media only screen and (max-width: 1700px) {

    #paprika {
       /* ?? */
      background-position: left 550px top 0px;
    }
}
@media only screen and (max-width: 2400px) {
      #fakanal {
      /* ?? */
      background-position: left 440px top 0px;
    }
} /*----------------VÉGE háttérben lévő zőldségek---------------*/



/*----------------960 szabályzó---------------*/
@media only screen and (max-width: 960px) {

  .banner{
    margin: 20px 15px;
  }

  .banner.receptalatt{
    margin: 40px 15px;
  }

  .banner.receptfelett{
    margin: 30px 15px 10px;
  }

	#paprika {
		display: none;
	}

#menu-right.md-row-small {
      background: none;
      padding-right: 4px;
      width: 410px;
        padding-top: 1px;
        width: auto;
  }

.md-tabs .md-tabs-navigation-container {
    overflow-x: hidden !important;
}

.counter {
    display: none !important;
}

.btn-connect {
    width: auto;
    float: left;
    display: flex;
}

#kereso .md-flex-40 {
    min-width: 50%;
    max-width: 100%;
    -ms-flex: 0 1 80%;
    flex: 0 1 100%;
}

#book-top {
    background-image: none;
    width: 100%;
    position: relative;
    z-index: 10;
    min-height: 750px;
}

#book-bottom {
    background-image: none;
    width: 100%;
    position: relative;
    z-index: 9;
	 padding-bottom: 15px;
    min-height: 0;
}

#book-mid h1 {
	 width: 100%;
    margin-top: 10px;
}

#book-content-right #kajakep {
    width: 100%;
    height: auto;
}

div#hozzavalok {
    max-width: 100%;
}

#book-outer {
    position: relative;
    min-height: 750px;
    z-index: 1;
    display: grid;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
	 background-color: rgba(255, 255, 255, 0.90);
   margin-top: 20px;
   padding: 20px;
   border-radius: 3px;
}

#book-outer:after {
    content: "";
    position: absolute;
    top: 158px;
    left: 0;
    right: 0;
    bottom: 347px;
    background: none;
}

#book-content-left {
    width: 100%;
    min-height: 0;
    padding-top: 0 !important;
    padding-left: 0;
    padding-bottom: 0;
    clear: both;
	     float: left;
}

#book-content-right {
    width: 100%;
    min-height: 0;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    float: left;
}

#book-content-right .md-layout {
    display: block;
}

.md-layout.btn-cont-right.md-flex-40 {
    position: absolute;
    top: -4px;
    right: 5px;
}

#receptlista #book-content-right {
    padding-top: 15px;
}

#book-outer h2 {
    margin-top: 25px;
}

div#book-content-right-lablec {
    display: none;
}

#book-content-left-lablec {
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
    padding-bottom: 0;
    float: left;
}

.md-layout.max-width.center > span {
    width: 100%;
}

.breadcrumbs {
	height: inherit;
	padding: 0px 10px 14px 14px;
}

#book-top #tartalomjegyzek {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
	 width: 100%;
 }

#receptlista a.md-button.md-fab.md-mini.tartalomjegyzek-nyomt.md-theme-default {
    position: absolute;
    top: -10px;
    right: 0;
}

#receptlista div#book-content-right hr {
    display: none;
}

#receptlista div#book-content-right h3 {
	margin: -10px 0 0 0;
}

div#chat-contener {
    display: none !important;
}

.md-layout.md-flex-30.line2 h5:nth-child(2) {
  margin-top: 11px;
}


}/*---------------- VÉGE  960 szabályzó---------------*/



/*----------------600 szabályzó---------------*/
@media only screen and (max-width: 600px) {

	div#book {
	    transform: scale(0.6);
		 transform-origin: left;
		 margin-top: -140px;
	}

	.face-share {
    float: left;
    width: 100%;
    margin-top: 12px;
    text-align: right;
    display: block;
    text-align: left;
}

.just-mobil-show{
    display: block;
}

.just-web-show{
    display: none;
}

#receptfelvitel div#szerk-nyomt button.md-button.md-raised.md-accent.md-theme-default {
    min-width: 100%;
}

#receptfelvitel #book-content-right {
    padding-bottom: 245px;
}

#receptfelvitel #book-content-right .md-layout:first-child {
	position: absolute;
   bottom: 0;
	width: 100%;
}

#receptfelvitel h5 {
    width: 100%;
}

#receptfelvitel select#diff {
    width: 100%;
}

#receptfelvitel .md-layout.md-flex-25 {
	position: relative !important;
	    display: block;
	    float: left;
	    flex: 0 1 100%;
	    min-width: 100%;
	    bottom: unset !important;
}

#receptfelvitel #szerk-nyomt button {
    margin-top: 5px;
}


#book-top #tartalomjegyzek a {
    text-overflow: inherit;
    display: block;
    white-space: normal;
    width: 95%;
 }

	#top button.md-button.md-icon-button.h-menu.md-theme-default,
  #top button.md-button.md-theme-default.login-signup-btn{
	    display: block;
	}

	#kezdooldal .kezdo-szoveg-nagy {
    font-size: 8vw;
 }

 #kezdooldal .kezdo-szoveg-kicsi {
    font-size: 5vw;
 }

 .card-layout {
    margin: 2px;
 }

 .card-layout.kartya .md-card-area {
    min-height: 300px;
}

.md-layout.md-gutter-8 {
    width: 100%;
}

#results {
    position: fixed;
    top: 54px;
    left: 0;
    width: 100%;
    right: 0;
 }
/*
 #menu-right.md-row-small {
 		display: none;
   }
*/

.counter {
	display: none !important;
}

.md-fab.md-fab-bottom-right, .md-speed-dial.md-fab-bottom-right{
	 display: flex;
}

.Login .md-layout.main-cont .md-layout.md-flex-50, .register .md-toolbar.md-theme-default  {
    min-width: 100%;
}

.Login .md-layout.left.md-flex-50, .register .md-layout.left.md-flex-50 {
    flex: 0 1 100%;
}

.register .md-flex-50, .Login .md-flex-50 {
	flex: 0 1 100%;
}

.Login .modal-container, .register .modal-container {
	min-width: auto;
	margin: 0px 20px 0px 20px;
	width: auto;
}

.Login .md-dialog.md-reference .md-layout.main-cont::after {
    background-size: auto;
}

.Login .md-dialog.md-reference a.standalon-link, .register .md-dialog.md-reference a.standalon-link {
    float: left;
    margin-top: 4px;
    margin-bottom: 30px;
}

button.md-button.md-primary.close-md.wantRegister.md-theme-default {
    float: left;
    width: 100%;
	 display: none;
}

.Login button#submit, .register button#submit {
    float: left;
    display: block;
    width: 100%;
}

.Login .md-dialog-actions, .register .md-dialog-actions {
    margin: 0;
    padding: 18px;
}

.Login .md-dialog, .register .md-dialog{
    max-width: 95%;
	 max-height: 100%;
	 margin-top: 10px;
 }

 .Login .md-checkbox.md-theme-default, .register .md-checkbox.md-theme-default {
    float: left;
    margin: 8px 0px;
    width: 100%;
}

.register .md-dialog.md-reference .md-layout.main-cont::after {
    background: url(https://csaladireceptkonyv.hu/img/bg/cook2.jpg) no-repeat center;
    background-size: cover;
}

.Login .md-layout.main-cont .md-layout.md-flex-50.left {
    border-right: none;
    margin: 8px 0px;
    padding: 0px 0px 30px 0px;
    border-bottom: 1px solid #bfbfbf;
}

.md-dialog-container.Login, .md-dialog-container.register {
    position: absolute;
	 justify-content: start;
 }

 .register .md-layout.main-cont {
    margin: 8px 0px 40px 0px;
}

.register .modal-container {
	border-top: 2px dotted #f4574a;
}

div#chat-contener {
    display: none !important;
}


}/*---------------- VÉGE  600 szabályzó---------------*/







@import url("xmass.css");

 

#popup { display: none; position: fixed; background: #fff; z-index: 2222; top: 50%; left: 50%; width: 600px; height: 450px; margin-top: -225px; margin-left: -300px; }

#popup:after { content: "";  background: url(https://csaladireceptkonyv.hu/img/bg/cook2.jpg) no-repeat;  opacity: 0.15;  top: 0;  left: 0;  bottom: 0;  right: 0;  position: absolute;  z-index: -1;  background-size: 100%; }

#popup .title { background: #2f150a; font-family: 'Berkshire Swash', cursive; font-size: 22px; color: #ffffff; padding: 13px 15px 20px 15px; }
#popup .title i { float: right; }

#popup .md-input-container { margin-bottom: 0; }
#popup .md-checkbox { font-size: 13px; margin-bottom: 0; }

#popup .footer { border-top: 2px solid rgba(0, 0, 0, .32); background: #ecdcd5; min-height: 20px; text-align: right; padding: 10px; }
#popup .containers { padding: 0 20px; }
#popup .success { padding: 20px; background: #45dc45; color: #333; }

#overlay { display: none; position: fixed; top: 0; left: 0; z-index:999; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }



/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInJlc291cmNlcy9hc3NldHMvc2Fzcy93ZWIuc2NzcyJdLCJzb3VyY2VzQ29udGVudCI6WyJAaW1wb3J0IFwiZ2VuZXJhbC5jc3NcIjtcclxuQGltcG9ydCBcInBvcHVwLmNzc1wiOyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLENBQVAsZ0JBQU87QUFDUCxPQUFPLENBQVAsY0FBTyJ9 */