@charset "UTF-8";

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

Copyright (c) 2015 Daniel Eden
*/

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

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

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

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

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

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -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 {
  0%, 20%, 53%, 80%, 100% {
    -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 {
  0%, 50%, 100% {
    opacity: 1;
  }

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

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes tada {
  0% {
    -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);
  }

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

@keyframes tada {
  0% {
    -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);
  }

  100% {
    -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 {
  0% {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.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)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

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

  22.2% {

    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.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)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}



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

            transform-origin: center
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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);
  }

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

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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);
  }

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

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

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -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, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

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

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

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-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, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

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

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

.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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

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

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

  100% {
    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);
  }

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

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

  100% {
    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);
  }

  100% {
    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);
  }

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

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

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

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    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 {
  0% {
    opacity: 1;
  }

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

@keyframes rollOut {
  0% {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    opacity: 1;
  }

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

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

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

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* loader 1*/

#loader-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    margin: 350px 0 0 -200px;
}

.loader {
    display: block;
    overflow: hidden;
    margin-bottom: 15%;
    font-size: 0;
}
.loader--slideBoth {
    position: relative;
    width: 80px;
    overflow: visible;
}

.loader--slideBoth::before {
    content: '';
    position: absolute;
    top: 9px;
    left: -12px;
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgb(55, 93, 129);
}

.loader-item {
    display: inline-block;
    width: 5px;
    height: 10px;
    margin-left: 2px;
    background-color: rgb(55, 93, 129);
    color: rgba(61, 92, 126, 0.7);
    animation-duration: 2000ms;
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-iteration-count: infinite;
}
.loader-item:nth-child(1) {
    animation-delay: 100ms;
}
.loader-item:nth-child(2) {
    animation-delay: 200ms;
}
.loader-item:nth-child(3) {
    animation-delay: 300ms;
}
.loader-item:nth-child(4) {
    animation-delay: 400ms;
}
.loader-item:nth-child(5) {
    animation-delay: 500ms;
}
.loader-item:nth-child(6) {
    animation-delay: 600ms;
}
.loader-item:nth-child(7) {
    animation-delay: 700ms;
}
.loader-item:nth-child(8) {
    animation-delay: 800ms;
}
.loader-item:nth-child(9) {
    animation-delay: 900ms;
}
.loader-item:nth-child(10) {
    animation-delay: 1000ms;
}
.loader-item:nth-child(11) {
    animation-delay: 1100ms;
}
.loader-item:nth-child(12) {
    animation-delay: 1200ms;
}

.loader--slideBoth .loader-item {
    animation-name: slideBoth;
    animation-duration: 1000ms;
    transform-origin: bottom left;
    animation-timing-function: linear;
}

@keyframes slideBoth {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

/* loader 2 */

.circ .eye {
    width: 20px; height: 8px;
    background-color: #eee;
    border-radius:0px 0px 20px 20px;
    position: relative;
    top: 40px;
    left: 10px;
    box-shadow:  40px 0px 0px 0px #eee;
}

.circ .head {
    -webkit-backface-visibility: hidden;
    position: relative;
    margin: -250px auto;
    width: 80px; height: 80px;
    background-color: #183152;
    border-radius:50px;
    box-shadow: inset -4px 2px 0px 0px #eee;
    -webkit-animation:node 1.5s infinite alternate;
    -webkit-animation-timing-function:ease-out;
}
.circ .body {
    position: relative;
    margin: 90px auto;
    width: 140px; height: 120px;
    background-color: #375d81;
    border-radius: 50px/25px ;
    box-shadow: inset -5px 2px 0px 0px #eee;
    -webkit-animation:node2 1.5s infinite alternate;
    -webkit-animation-timing-function:ease-out;
}

@-webkit-keyframes node
{
    0%{ top:0px; }
    50%{ top:10px; }
    100% { top:0px;}
}

@-webkit-keyframes node2
{
    0%{ top:-5px; }
    50%{ top:10px; }
    100% { top:-5px;}
}

.circ {
    -webkit-backface-visibility: hidden;
    margin: 60px auto;
    width: 180px; height: 180px;
    background-color: #111;
    border-radius: 0px 0px 50px 50px;
    position: relative;
    z-index: -1;
    left: 0%;
    top: 20%;
    overflow: hidden;
}

.circ .hands {
    -webkit-backface-visibility: hidden;
    margin-top: 140px;
    width: 120px;height: 120px;
    position: absolute;
    background-color: #375d81;
    border-radius:20px;
    box-shadow:-1px -4px 0px 0px #eee;
    -webkit-transform:rotate(45deg);
    top:75%;left: 16%;
    z-index: 1;
    -webkit-animation:node2 1.5s infinite alternate;
    -webkit-animation-timing-function:ease-out;
}

.circ .load {  position: absolute;
    width: 100px; height: 20px;
    margin: -10px auto;
    -webkit-font-smoothing: antialiased;
    font-family: 'Julius Sans One', sans-serif;
    font-size:30px;
    font-weight:400;
    color:#eee;
    left: 10%;
    top: 5%;
}

/*loader 3*/
.loader-text {
    position: relative;
    margin: 300px auto;
    width: 350px;
    color: white;
    font-size: 250%;
    background: linear-gradient(180deg, #222 0, #375d81 100%);
    box-shadow: inset 0 5px 20px black;
    text-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.loader-text:after {
    content: "";
    display: table;
    clear: both;
}

.loader-text span {
    float: left;
    height: 100px;
    line-height: 120px;
    width: 50px;
    text-align: center;
}

.loader-text > span {
    border-left: 1px solid #444;
    border-right: 1px solid #222;
}

.covers {
    position: absolute;
    height: 100%;
    width: 100%;
}

.loader-text .covers span {
    background: linear-gradient(180deg, #ececec 0, #ececec 100%);
    animation: loader-up 2s infinite;
}

@keyframes loader-up {
    0%   { margin-bottom: 0; }
    16%  { margin-bottom: 100%; height: 20px; }
    50% { margin-bottom: 0; }
    100% { margin-bottom: 0; }
}

.loader-text .covers span:nth-child(2) { animation-delay: .142857s; }
.loader-text .covers span:nth-child(3) { animation-delay: .285714s; }
.loader-text .covers span:nth-child(4) { animation-delay: .428571s; }
.loader-text .covers span:nth-child(5) { animation-delay: .571428s; }
.loader-text .covers span:nth-child(6) { animation-delay: .714285s; }
.loader-text .covers span:nth-child(7) { animation-delay: .857142s; }

/*loader finger*/

.cssload-loading *{
    -khtml-box-sizing: border-box;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.cssload-loading {
    position: absolute;
    left: 50%;
    margin: 227px 0 0 -196px;
    width: 420px;
    height: 245px;
    *zoom: 1;
}
.cssload-loading:before,
.cssload-loading:after {
    display: table;
    content: "";
}
.cssload-loading:after {
    clear: both;
}
.cssload-loading .cssload-finger {
    float: left;
    margin: 0 7px 0 0;
    width: 70px;
    height: 100%;
}
.cssload-loading .cssload-finger-1 {
    animation: cssload-finger-1-animation 2.6s infinite ease-out;
    -o-animation: cssload-finger-1-animation 2.6s infinite ease-out;
    -ms-animation: cssload-finger-1-animation 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-1-animation 2.6s infinite ease-out;
    -moz-animation: cssload-finger-1-animation 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-1 span {
    animation: cssload-finger-1-animation-span 2.6s infinite ease-out;
    -o-animation: cssload-finger-1-animation-span 2.6s infinite ease-out;
    -ms-animation: cssload-finger-1-animation-span 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-1-animation-span 2.6s infinite ease-out;
    -moz-animation: cssload-finger-1-animation-span 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-1 i {
    animation: cssload-finger-1-animation-i 2.6s infinite ease-out;
    -o-animation: cssload-finger-1-animation-i 2.6s infinite ease-out;
    -ms-animation: cssload-finger-1-animation-i 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-1-animation-i 2.6s infinite ease-out;
    -moz-animation: cssload-finger-1-animation-i 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-2 {
    animation: cssload-finger-2-animation 2.6s infinite ease-out;
    -o-animation: cssload-finger-2-animation 2.6s infinite ease-out;
    -ms-animation: cssload-finger-2-animation 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-2-animation 2.6s infinite ease-out;
    -moz-animation: cssload-finger-2-animation 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-2 span {
    animation: cssload-finger-2-animation-span 2.6s infinite ease-out;
    -o-animation: cssload-finger-2-animation-span 2.6s infinite ease-out;
    -ms-animation: cssload-finger-2-animation-span 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-2-animation-span 2.6s infinite ease-out;
    -moz-animation: cssload-finger-2-animation-span 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-2 i {
    animation: cssload-finger-2-animation-i 2.6s infinite ease-out;
    -o-animation: cssload-finger-2-animation-i 2.6s infinite ease-out;
    -ms-animation: cssload-finger-2-animation-i 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-2-animation-i 2.6s infinite ease-out;
    -moz-animation: cssload-finger-2-animation-i 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-3 {
    animation: cssload-finger-3-animation 2.6s infinite ease-out;
    -o-animation: cssload-finger-3-animation 2.6s infinite ease-out;
    -ms-animation: cssload-finger-3-animation 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-3-animation 2.6s infinite ease-out;
    -moz-animation: cssload-finger-3-animation 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-3 span {
    animation: cssload-finger-3-animation-span 2.6s infinite ease-out;
    -o-animation: cssload-finger-3-animation-span 2.6s infinite ease-out;
    -ms-animation: cssload-finger-3-animation-span 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-3-animation-span 2.6s infinite ease-out;
    -moz-animation: cssload-finger-3-animation-span 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-3 i {
    animation: cssload-finger-3-animation-i 2.6s infinite ease-out;
    -o-animation: cssload-finger-3-animation-i 2.6s infinite ease-out;
    -ms-animation: cssload-finger-3-animation-i 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-3-animation-i 2.6s infinite ease-out;
    -moz-animation: cssload-finger-3-animation-i 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-4 {
    animation: cssload-finger-4-animation 2.6s infinite ease-out;
    -o-animation: cssload-finger-4-animation 2.6s infinite ease-out;
    -ms-animation: cssload-finger-4-animation 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-4-animation 2.6s infinite ease-out;
    -moz-animation: cssload-finger-4-animation 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-4 span {
    animation: cssload-finger-4-animation-span 2.6s infinite ease-out;
    -o-animation: cssload-finger-4-animation-span 2.6s infinite ease-out;
    -ms-animation: cssload-finger-4-animation-span 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-4-animation-span 2.6s infinite ease-out;
    -moz-animation: cssload-finger-4-animation-span 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-4 i {
    animation: cssload-finger-4-animation-i 2.6s infinite ease-out;
    -o-animation: cssload-finger-4-animation-i 2.6s infinite ease-out;
    -ms-animation: cssload-finger-4-animation-i 2.6s infinite ease-out;
    -webkit-animation: cssload-finger-4-animation-i 2.6s infinite ease-out;
    -moz-animation: cssload-finger-4-animation-i 2.6s infinite ease-out;
}
.cssload-loading .cssload-finger-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 21px 21px 28px 28px;
    -o-border-radius: 21px 21px 28px 28px;
    -ms-border-radius: 21px 21px 28px 28px;
    -webkit-border-radius: 21px 21px 28px 28px;
    -moz-border-radius: 21px 21px 28px 28px;
    background-clip: padding-box;
    -o-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background: rgb(55, 93, 129);
}
.cssload-loading .cssload-finger-item span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding: 18px 18px 0 18px;
}
.cssload-loading .cssload-finger-item span:before,
.cssload-loading .cssload-finger-item span:after {
    content: '';
    position: relative;
    display: block;
    margin: 0 0 7px 0;
    width: 100%;
    height: 7px;
    background: rgb(236, 236, 236);
}
.cssload-loading .cssload-finger-item i {
    position: absolute;
    left: 11px;
    bottom: 11px;
    width: 49px;
    height: 49px;
    border-radius: 35px 35px 25px 25px;
    -o-border-radius: 35px 35px 25px 25px;
    -ms-border-radius: 35px 35px 25px 25px;
    -webkit-border-radius: 35px 35px 25px 25px;
    -moz-border-radius: 35px 35px 25px 25px;
    background-clip: padding-box;
    -o-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background: white;
}
.cssload-loading .cssload-last-finger {
    position: relative;
    float: left;
    width: 84px;
    height: 100%;
    overflow: hidden;
}
.cssload-loading .cssload-last-finger-item {
    position: absolute;
    right: 0;
    top: 112px;
    width: 110%;
    height: 70px;
    border-radius: 0 18px 49px 0;
    -o-border-radius: 0 18px 49px 0;
    -ms-border-radius: 0 18px 49px 0;
    -webkit-border-radius: 0 18px 49px 0;
    -moz-border-radius: 0 18px 49px 0;
    background-clip: padding-box;
    -o-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background: rgb(55, 93, 129);
    animation: cssload-finger-5-animation 2.6s infinite linear;
    -o-animation: cssload-finger-5-animation 2.6s infinite linear;
    -ms-animation: cssload-finger-5-animation 2.6s infinite linear;
    -webkit-animation: cssload-finger-5-animation 2.6s infinite linear;
    -moz-animation: cssload-finger-5-animation 2.6s infinite linear;
}
.cssload-loading .cssload-last-finger-item i {
    position: absolute;
    left: 0;
    top: -28px;
    width: 77px;
    height: 28px;
    background: rgb(236, 236, 236);
    overflow: hidden;
}
.cssload-loading .cssload-last-finger-item i:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 119px;
    height: 70px;
    border-radius: 0 0 53px 53px;
    -o-border-radius: 0 0 53px 53px;
    -ms-border-radius: 0 0 53px 53px;
    -webkit-border-radius: 0 0 53px 53px;
    -moz-border-radius: 0 0 53px 53px;
    background-clip: padding-box;
    -o-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background: rgb(236, 236, 236);
}

@keyframes cssload-finger-1-animation {
    0% {
        padding: 42px 0 18px 0;
    }
    20% {
        padding: 42px 0 18px 0;
    }
    29% {
        padding: 14px 0 84px 0;
    }
    35% {
        padding: 14px 0 84px 0;
    }
    41% {
        padding: 42px 0 18px 0;
    }
    100% {
        padding: 42px 0 18px 0;
    }
}

@-o-keyframes cssload-finger-1-animation {
    0% {
        padding: 42px 0 18px 0;
    }
    20% {
        padding: 42px 0 18px 0;
    }
    29% {
        padding: 14px 0 84px 0;
    }
    35% {
        padding: 14px 0 84px 0;
    }
    41% {
        padding: 42px 0 18px 0;
    }
    100% {
        padding: 42px 0 18px 0;
    }
}

@-ms-keyframes cssload-finger-1-animation {
    0% {
        padding: 42px 0 18px 0;
    }
    20% {
        padding: 42px 0 18px 0;
    }
    29% {
        padding: 14px 0 84px 0;
    }
    35% {
        padding: 14px 0 84px 0;
    }
    41% {
        padding: 42px 0 18px 0;
    }
    100% {
        padding: 42px 0 18px 0;
    }
}

@-webkit-keyframes cssload-finger-1-animation {
    0% {
        padding: 42px 0 18px 0;
    }
    20% {
        padding: 42px 0 18px 0;
    }
    29% {
        padding: 14px 0 84px 0;
    }
    35% {
        padding: 14px 0 84px 0;
    }
    41% {
        padding: 42px 0 18px 0;
    }
    100% {
        padding: 42px 0 18px 0;
    }
}

@-moz-keyframes cssload-finger-1-animation {
    0% {
        padding: 42px 0 18px 0;
    }
    20% {
        padding: 42px 0 18px 0;
    }
    29% {
        padding: 14px 0 84px 0;
    }
    35% {
        padding: 14px 0 84px 0;
    }
    41% {
        padding: 42px 0 18px 0;
    }
    100% {
        padding: 42px 0 18px 0;
    }
}

@keyframes cssload-finger-1-animation-span {
    0% {
        top: 0;
    }
    20% {
        top: 0;
    }
    29% {
        top: -25px;
    }
    35% {
        top: -25px;
    }
    41% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-o-keyframes cssload-finger-1-animation-span {
    0% {
        top: 0;
    }
    20% {
        top: 0;
    }
    29% {
        top: -25px;
    }
    35% {
        top: -25px;
    }
    41% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-ms-keyframes cssload-finger-1-animation-span {
    0% {
        top: 0;
    }
    20% {
        top: 0;
    }
    29% {
        top: -25px;
    }
    35% {
        top: -25px;
    }
    41% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-webkit-keyframes cssload-finger-1-animation-span {
    0% {
        top: 0;
    }
    20% {
        top: 0;
    }
    29% {
        top: -25px;
    }
    35% {
        top: -25px;
    }
    41% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-moz-keyframes cssload-finger-1-animation-span {
    0% {
        top: 0;
    }
    20% {
        top: 0;
    }
    29% {
        top: -25px;
    }
    35% {
        top: -25px;
    }
    41% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@keyframes cssload-finger-1-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    20% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    29% {
        bottom: 28px;
        height: 42px;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    35% {
        bottom: 28px;
        height: 42px;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    41% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-o-keyframes cssload-finger-1-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    20% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    29% {
        bottom: 28px;
        height: 42px;
        -o-border-radius: 25px 25px 14px 14px;
        -o-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    35% {
        bottom: 28px;
        height: 42px;
        -o-border-radius: 25px 25px 14px 14px;
        -o-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    41% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-ms-keyframes cssload-finger-1-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    20% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    29% {
        bottom: 28px;
        height: 42px;
        -ms-border-radius: 25px 25px 14px 14px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    35% {
        bottom: 28px;
        height: 42px;
        -ms-border-radius: 25px 25px 14px 14px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    41% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-webkit-keyframes cssload-finger-1-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    20% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    29% {
        bottom: 28px;
        height: 42px;
        -webkit-border-radius: 25px 25px 14px 14px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    35% {
        bottom: 28px;
        height: 42px;
        -webkit-border-radius: 25px 25px 14px 14px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    41% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-moz-keyframes cssload-finger-1-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    20% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    29% {
        bottom: 28px;
        height: 42px;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    35% {
        bottom: 28px;
        height: 42px;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    41% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@keyframes cssload-finger-2-animation {
    0% {
        padding: 21px 0 7px 0;
    }
    24% {
        padding: 21px 0 7px 0;
    }
    33% {
        padding: 7px 0 56px 0;
    }
    39% {
        padding: 7px 0 56px 0;
    }
    45% {
        padding: 21px 0 7px 0;
    }
    100% {
        padding: 21px 0 7px 0;
    }
}

@-o-keyframes cssload-finger-2-animation {
    0% {
        padding: 21px 0 7px 0;
    }
    24% {
        padding: 21px 0 7px 0;
    }
    33% {
        padding: 7px 0 56px 0;
    }
    39% {
        padding: 7px 0 56px 0;
    }
    45% {
        padding: 21px 0 7px 0;
    }
    100% {
        padding: 21px 0 7px 0;
    }
}

@-ms-keyframes cssload-finger-2-animation {
    0% {
        padding: 21px 0 7px 0;
    }
    24% {
        padding: 21px 0 7px 0;
    }
    33% {
        padding: 7px 0 56px 0;
    }
    39% {
        padding: 7px 0 56px 0;
    }
    45% {
        padding: 21px 0 7px 0;
    }
    100% {
        padding: 21px 0 7px 0;
    }
}

@-webkit-keyframes cssload-finger-2-animation {
    0% {
        padding: 21px 0 7px 0;
    }
    24% {
        padding: 21px 0 7px 0;
    }
    33% {
        padding: 7px 0 56px 0;
    }
    39% {
        padding: 7px 0 56px 0;
    }
    45% {
        padding: 21px 0 7px 0;
    }
    100% {
        padding: 21px 0 7px 0;
    }
}

@-moz-keyframes cssload-finger-2-animation {
    0% {
        padding: 21px 0 7px 0;
    }
    24% {
        padding: 21px 0 7px 0;
    }
    33% {
        padding: 7px 0 56px 0;
    }
    39% {
        padding: 7px 0 56px 0;
    }
    45% {
        padding: 21px 0 7px 0;
    }
    100% {
        padding: 21px 0 7px 0;
    }
}

@keyframes cssload-finger-2-animation-span {
    0% {
        top: 0;
    }
    24% {
        top: 0;
    }
    33% {
        top: -25px;
    }
    39% {
        top: -25px;
    }
    45% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-o-keyframes cssload-finger-2-animation-span {
    0% {
        top: 0;
    }
    24% {
        top: 0;
    }
    33% {
        top: -25px;
    }
    39% {
        top: -25px;
    }
    45% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-ms-keyframes cssload-finger-2-animation-span {
    0% {
        top: 0;
    }
    24% {
        top: 0;
    }
    33% {
        top: -25px;
    }
    39% {
        top: -25px;
    }
    45% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-webkit-keyframes cssload-finger-2-animation-span {
    0% {
        top: 0;
    }
    24% {
        top: 0;
    }
    33% {
        top: -25px;
    }
    39% {
        top: -25px;
    }
    45% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-moz-keyframes cssload-finger-2-animation-span {
    0% {
        top: 0;
    }
    24% {
        top: 0;
    }
    33% {
        top: -25px;
    }
    39% {
        top: -25px;
    }
    45% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@keyframes cssload-finger-2-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    24% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    33% {
        bottom: 28px;
        height: 42px;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    39% {
        bottom: 28px;
        height: 42px;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    45% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-o-keyframes cssload-finger-2-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    24% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    33% {
        bottom: 28px;
        height: 42px;
        -o-border-radius: 25px 25px 14px 14px;
        -o-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    39% {
        bottom: 28px;
        height: 42px;
        -o-border-radius: 25px 25px 14px 14px;
        -o-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    45% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-ms-keyframes cssload-finger-2-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    24% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    33% {
        bottom: 28px;
        height: 42px;
        -ms-border-radius: 25px 25px 14px 14px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    39% {
        bottom: 28px;
        height: 42px;
        -ms-border-radius: 25px 25px 14px 14px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    45% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-webkit-keyframes cssload-finger-2-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    24% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    33% {
        bottom: 28px;
        height: 42px;
        -webkit-border-radius: 25px 25px 14px 14px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    39% {
        bottom: 28px;
        height: 42px;
        -webkit-border-radius: 25px 25px 14px 14px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    45% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-moz-keyframes cssload-finger-2-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    24% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    33% {
        bottom: 28px;
        height: 42px;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    39% {
        bottom: 28px;
        height: 42px;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    45% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@keyframes cssload-finger-3-animation {
    0% {
        padding: 0 0 0 0;
    }
    28% {
        padding: 0 0 0 0;
    }
    37% {
        padding: 0 0 42px 0;
    }
    43% {
        padding: 0 0 42px 0;
    }
    49% {
        padding: 0 0 0 0;
    }
    100% {
        padding: 0 0 0 0;
    }
}

@-o-keyframes cssload-finger-3-animation {
    0% {
        padding: 0 0 0 0;
    }
    28% {
        padding: 0 0 0 0;
    }
    37% {
        padding: 0 0 42px 0;
    }
    43% {
        padding: 0 0 42px 0;
    }
    49% {
        padding: 0 0 0 0;
    }
    100% {
        padding: 0 0 0 0;
    }
}

@-ms-keyframes cssload-finger-3-animation {
    0% {
        padding: 0 0 0 0;
    }
    28% {
        padding: 0 0 0 0;
    }
    37% {
        padding: 0 0 42px 0;
    }
    43% {
        padding: 0 0 42px 0;
    }
    49% {
        padding: 0 0 0 0;
    }
    100% {
        padding: 0 0 0 0;
    }
}

@-webkit-keyframes cssload-finger-3-animation {
    0% {
        padding: 0 0 0 0;
    }
    28% {
        padding: 0 0 0 0;
    }
    37% {
        padding: 0 0 42px 0;
    }
    43% {
        padding: 0 0 42px 0;
    }
    49% {
        padding: 0 0 0 0;
    }
    100% {
        padding: 0 0 0 0;
    }
}

@-moz-keyframes cssload-finger-3-animation {
    0% {
        padding: 0 0 0 0;
    }
    28% {
        padding: 0 0 0 0;
    }
    37% {
        padding: 0 0 42px 0;
    }
    43% {
        padding: 0 0 42px 0;
    }
    49% {
        padding: 0 0 0 0;
    }
    100% {
        padding: 0 0 0 0;
    }
}

@keyframes cssload-finger-3-animation-span {
    0% {
        top: 0;
    }
    28% {
        top: 0;
    }
    37% {
        top: -25px;
    }
    43% {
        top: -25px;
    }
    49% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-o-keyframes cssload-finger-3-animation-span {
    0% {
        top: 0;
    }
    28% {
        top: 0;
    }
    37% {
        top: -25px;
    }
    43% {
        top: -25px;
    }
    49% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-ms-keyframes cssload-finger-3-animation-span {
    0% {
        top: 0;
    }
    28% {
        top: 0;
    }
    37% {
        top: -25px;
    }
    43% {
        top: -25px;
    }
    49% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-webkit-keyframes cssload-finger-3-animation-span {
    0% {
        top: 0;
    }
    28% {
        top: 0;
    }
    37% {
        top: -25px;
    }
    43% {
        top: -25px;
    }
    49% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-moz-keyframes cssload-finger-3-animation-span {
    0% {
        top: 0;
    }
    28% {
        top: 0;
    }
    37% {
        top: -25px;
    }
    43% {
        top: -25px;
    }
    49% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@keyframes cssload-finger-3-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    28% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    37% {
        bottom: 28px;
        height: 42px;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    43% {
        bottom: 28px;
        height: 42px;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    49% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-o-keyframes cssload-finger-3-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    28% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    37% {
        bottom: 28px;
        height: 42px;
        -o-border-radius: 25px 25px 14px 14px;
        -o-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    43% {
        bottom: 28px;
        height: 42px;
        -o-border-radius: 25px 25px 14px 14px;
        -o-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    49% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-ms-keyframes cssload-finger-3-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    28% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    37% {
        bottom: 28px;
        height: 42px;
        -ms-border-radius: 25px 25px 14px 14px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    43% {
        bottom: 28px;
        height: 42px;
        -ms-border-radius: 25px 25px 14px 14px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    49% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-webkit-keyframes cssload-finger-3-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    28% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    37% {
        bottom: 28px;
        height: 42px;
        -webkit-border-radius: 25px 25px 14px 14px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    43% {
        bottom: 28px;
        height: 42px;
        -webkit-border-radius: 25px 25px 14px 14px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    49% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-moz-keyframes cssload-finger-3-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    28% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    37% {
        bottom: 28px;
        height: 42px;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    43% {
        bottom: 28px;
        height: 42px;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    49% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@keyframes cssload-finger-4-animation {
    0% {
        padding: 28px 0 11px 0;
    }
    32% {
        padding: 28px 0 11px 0;
    }
    41% {
        padding: 14px 0 70px 0;
    }
    47% {
        padding: 14px 0 70px 0;
    }
    53% {
        padding: 28px 0 11px 0;
    }
    100% {
        padding: 28px 0 11px 0;
    }
}

@-o-keyframes cssload-finger-4-animation {
    0% {
        padding: 28px 0 11px 0;
    }
    32% {
        padding: 28px 0 11px 0;
    }
    41% {
        padding: 14px 0 70px 0;
    }
    47% {
        padding: 14px 0 70px 0;
    }
    53% {
        padding: 28px 0 11px 0;
    }
    100% {
        padding: 28px 0 11px 0;
    }
}

@-ms-keyframes cssload-finger-4-animation {
    0% {
        padding: 28px 0 11px 0;
    }
    32% {
        padding: 28px 0 11px 0;
    }
    41% {
        padding: 14px 0 70px 0;
    }
    47% {
        padding: 14px 0 70px 0;
    }
    53% {
        padding: 28px 0 11px 0;
    }
    100% {
        padding: 28px 0 11px 0;
    }
}

@-webkit-keyframes cssload-finger-4-animation {
    0% {
        padding: 28px 0 11px 0;
    }
    32% {
        padding: 28px 0 11px 0;
    }
    41% {
        padding: 14px 0 70px 0;
    }
    47% {
        padding: 14px 0 70px 0;
    }
    53% {
        padding: 28px 0 11px 0;
    }
    100% {
        padding: 28px 0 11px 0;
    }
}

@-moz-keyframes cssload-finger-4-animation {
    0% {
        padding: 28px 0 11px 0;
    }
    32% {
        padding: 28px 0 11px 0;
    }
    41% {
        padding: 14px 0 70px 0;
    }
    47% {
        padding: 14px 0 70px 0;
    }
    53% {
        padding: 28px 0 11px 0;
    }
    100% {
        padding: 28px 0 11px 0;
    }
}

@keyframes cssload-finger-4-animation-span {
    0% {
        top: 0;
    }
    32% {
        top: 0;
    }
    41% {
        top: -25px;
    }
    47% {
        top: -25px;
    }
    53% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-o-keyframes cssload-finger-4-animation-span {
    0% {
        top: 0;
    }
    32% {
        top: 0;
    }
    41% {
        top: -25px;
    }
    47% {
        top: -25px;
    }
    53% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-ms-keyframes cssload-finger-4-animation-span {
    0% {
        top: 0;
    }
    32% {
        top: 0;
    }
    41% {
        top: -25px;
    }
    47% {
        top: -25px;
    }
    53% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-webkit-keyframes cssload-finger-4-animation-span {
    0% {
        top: 0;
    }
    32% {
        top: 0;
    }
    41% {
        top: -25px;
    }
    47% {
        top: -25px;
    }
    53% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@-moz-keyframes cssload-finger-4-animation-span {
    0% {
        top: 0;
    }
    32% {
        top: 0;
    }
    41% {
        top: -25px;
    }
    47% {
        top: -25px;
    }
    53% {
        top: 0;
    }
    100% {
        top: 0;
    }
}

@keyframes cssload-finger-4-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    32% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    41% {
        bottom: 28px;
        height: 42px;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    47% {
        bottom: 28px;
        height: 42px;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    53% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-o-keyframes cssload-finger-4-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    32% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    41% {
        bottom: 28px;
        height: 42px;
        -o-border-radius: 25px 25px 14px 14px;
        -o-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    47% {
        bottom: 28px;
        height: 42px;
        -o-border-radius: 25px 25px 14px 14px;
        -o-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    53% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -o-border-radius: 35px 35px 25px 25px;
        -o-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-ms-keyframes cssload-finger-4-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    32% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    41% {
        bottom: 28px;
        height: 42px;
        -ms-border-radius: 25px 25px 14px 14px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    47% {
        bottom: 28px;
        height: 42px;
        -ms-border-radius: 25px 25px 14px 14px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    53% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -ms-border-radius: 35px 35px 25px 25px;
        -ms-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-webkit-keyframes cssload-finger-4-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    32% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    41% {
        bottom: 28px;
        height: 42px;
        -webkit-border-radius: 25px 25px 14px 14px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    47% {
        bottom: 28px;
        height: 42px;
        -webkit-border-radius: 25px 25px 14px 14px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    53% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -webkit-border-radius: 35px 35px 25px 25px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@-moz-keyframes cssload-finger-4-animation-i {
    0% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    32% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    41% {
        bottom: 28px;
        height: 42px;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    47% {
        bottom: 28px;
        height: 42px;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 25px 25px 14px 14px;
        -moz-background-clip: padding;
        border-radius: 25px 25px 14px 14px;
        background-clip: padding-box;
    }
    53% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
    100% {
        bottom: 11px;
        height: 49px;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding-box;
        -moz-border-radius: 35px 35px 25px 25px;
        -moz-background-clip: padding;
        border-radius: 35px 35px 25px 25px;
        background-clip: padding-box;
    }
}

@keyframes cssload-finger-5-animation {
    0% {
        top: 112px;
        right: 0;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    34% {
        top: 112px;
        right: 0;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    43% {
        top: 70px;
        right: 7px;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    50% {
        top: 70px;
        right: 7px;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    60% {
        top: 112px;
        right: 0;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 112px;
        right: 0;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-o-keyframes cssload-finger-5-animation {
    0% {
        top: 112px;
        right: 0;
        -o-border-radius: 0 18px 49px 0;
        -o-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    34% {
        top: 112px;
        right: 0;
        -o-border-radius: 0 18px 49px 0;
        -o-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    43% {
        top: 70px;
        right: 7px;
        -o-border-radius: 0 28px 70px 0;
        -o-background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -o-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    50% {
        top: 70px;
        right: 7px;
        -o-border-radius: 0 28px 70px 0;
        -o-background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -o-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    60% {
        top: 112px;
        right: 0;
        -o-border-radius: 0 18px 49px 0;
        -o-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 112px;
        right: 0;
        -o-border-radius: 0 18px 49px 0;
        -o-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-ms-keyframes cssload-finger-5-animation {
    0% {
        top: 112px;
        right: 0;
        -ms-border-radius: 0 18px 49px 0;
        -ms-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -ms-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    34% {
        top: 112px;
        right: 0;
        -ms-border-radius: 0 18px 49px 0;
        -ms-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -ms-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    43% {
        top: 70px;
        right: 7px;
        -ms-border-radius: 0 28px 70px 0;
        -ms-background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -ms-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    50% {
        top: 70px;
        right: 7px;
        -ms-border-radius: 0 28px 70px 0;
        -ms-background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -ms-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    60% {
        top: 112px;
        right: 0;
        -ms-border-radius: 0 18px 49px 0;
        -ms-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -ms-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 112px;
        right: 0;
        -ms-border-radius: 0 18px 49px 0;
        -ms-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -ms-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes cssload-finger-5-animation {
    0% {
        top: 112px;
        right: 0;
        -webkit-border-radius: 0 18px 49px 0;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    34% {
        top: 112px;
        right: 0;
        -webkit-border-radius: 0 18px 49px 0;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    43% {
        top: 70px;
        right: 7px;
        -webkit-border-radius: 0 28px 70px 0;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    50% {
        top: 70px;
        right: 7px;
        -webkit-border-radius: 0 28px 70px 0;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    60% {
        top: 112px;
        right: 0;
        -webkit-border-radius: 0 18px 49px 0;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 112px;
        right: 0;
        -webkit-border-radius: 0 18px 49px 0;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes cssload-finger-5-animation {
    0% {
        top: 112px;
        right: 0;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    34% {
        top: 112px;
        right: 0;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    43% {
        top: 70px;
        right: 7px;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -moz-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    50% {
        top: 70px;
        right: 7px;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding-box;
        -moz-border-radius: 0 28px 70px 0;
        -moz-background-clip: padding;
        border-radius: 0 28px 70px 0;
        background-clip: padding-box;
        -moz-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    60% {
        top: 112px;
        right: 0;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 112px;
        right: 0;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding-box;
        -moz-border-radius: 0 18px 49px 0;
        -moz-background-clip: padding;
        border-radius: 0 18px 49px 0;
        background-clip: padding-box;
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

/*loader 4*/

.cssload-square {
    /*width: 41px;*/
    /*height: 28px;*/
    width: 90px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgb(115,179,255);
    animation: cssload-grow 3.45s infinite cubic-bezier(0.53, 0.68, 0.53, 0.41);
    -o-animation: cssload-grow 3.45s infinite cubic-bezier(0.53, 0.68, 0.53, 0.41);
    -ms-animation: cssload-grow 3.45s infinite cubic-bezier(0.53, 0.68, 0.53, 0.41);
    -webkit-animation: cssload-grow 3.45s infinite cubic-bezier(0.53, 0.68, 0.53, 0.41);
    -moz-animation: cssload-grow 3.45s infinite cubic-bezier(0.53, 0.68, 0.53, 0.41);
}

.cssload-square:nth-of-type(2) {
    /*margin-top: 33px;*/
    margin-top: 20px;
    animation-delay: 0.12s;
    -o-animation-delay: 0.12s;
    -ms-animation-delay: 0.12s;
    -webkit-animation-delay: 0.12s;
    -moz-animation-delay: 0.12s;
}

.cssload-square:nth-of-type(3) {
    /*margin-top: 66px;*/
    margin-top: 40px;
    animation-delay: 0.23s;
    -o-animation-delay: 0.23s;
    -ms-animation-delay: 0.23s;
    -webkit-animation-delay: 0.23s;
    -moz-animation-delay: 0.23s;
}

.cssload-square:nth-of-type(4) {
    /*margin-top: 99px;*/
    margin-top: 60px;
    animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
    -ms-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
}

.cssload-square:nth-of-type(5) {
    /*margin-top: 132px;*/
    margin-top: 80px;
    animation-delay: 0.46s;
    -o-animation-delay: 0.46s;
    -ms-animation-delay: 0.46s;
    -webkit-animation-delay: 0.46s;
    -moz-animation-delay: 0.46s;
}

.cssload-wrapper {
    width: 138px;
    height: 270px;
    position: absolute;
    left: 50%;
    margin-top: 160px;
    margin-left: -69px;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    animation: 2.3s cssload-global infinite;
    -o-animation: 2.3s cssload-global infinite;
    -ms-animation: 2.3s cssload-global infinite;
    -webkit-animation: 2.3s cssload-global infinite;
    -moz-animation: 2.3s cssload-global infinite;
}

@keyframes cssload-grow {
    0%, 100% {
        transform: translateX(-69px) scaleX(0.5);
        background: #a48ad4;
    }
    25% {
        transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #aec785;
    }
    50% {
        transform: translateX(69px) scaleX(0.5);
        background: #99cce3;
    }
    75% {
        transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #fdd752;
    }
}

@-o-keyframes cssload-grow {
    0%, 100% {
        -o-transform: translateX(-69px) scaleX(0.5);
        background: #a48ad4;
    }
    25% {
        -o-transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #aec785;
    }
    50% {
        -o-transform: translateX(69px) scaleX(0.5);
        background: #99cce3;
    }
    75% {
        -o-transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #fdd752;
    }
}

@-ms-keyframes cssload-grow {
    0%, 100% {
        -ms-transform: translateX(-69px) scaleX(0.5);
        background: #a48ad4;
    }
    25% {
        -ms-transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #aec785;
    }
    50% {
        -ms-transform: translateX(69px) scaleX(0.5);
        background: #99cce3;
    }
    75% {
        -ms-transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #fdd752;
    }
}

@-webkit-keyframes cssload-grow {
    0%, 100% {
        -webkit-transform: translateX(-69px) scaleX(0.5);
        background: #a48ad4;
    }
    25% {
        -webkit-transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #aec785;
    }
    50% {
        -webkit-transform: translateX(69px) scaleX(0.5);
        background: #99cce3;
    }
    75% {
        -webkit-transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #fdd752;
    }
}

@-moz-keyframes cssload-grow {
    0%, 100% {
        -moz-transform: translateX(-69px) scaleX(0.5);
        background: #a48ad4;
    }
    25% {
        -moz-transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #aec785;
    }
    50% {
        -moz-transform: translateX(69px) scaleX(0.5);
        background: #99cce3;
    }
    75% {
        -moz-transform: translateX(0px) scaleY(1) scaleX(5) rotateY(180deg);
        background: #fdd752;
    }
}

@keyframes cssload-global {
    0%,100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(360deg);
    }
}

@-o-keyframes cssload-global {
    0%,100% {
        -o-transform: rotateY(0deg);
    }
    50% {
        -o-transform: rotateY(360deg);
    }
}

@-ms-keyframes cssload-global {
    0%,100% {
        -ms-transform: rotateY(0deg);
    }
    50% {
        -ms-transform: rotateY(360deg);
    }
}

@-webkit-keyframes cssload-global {
    0%,100% {
        -webkit-transform: rotateY(0deg);
    }
    50% {
        -webkit-transform: rotateY(360deg);
    }
}

@-moz-keyframes cssload-global {
    0%,100% {
        -moz-transform: rotateY(0deg);
    }
    50% {
        -moz-transform: rotateY(360deg);
    }
}

.pre-loading-circle {
    width: 100%;
    height: 470px;
    position: absolute;
    top: 50%;
    margin: 140px auto;
    left: 0;
}

#cssload-loader {
    position: absolute;
    margin: 342px auto;
    left: -45px;
    right: 0;
    width: 38px;
    top: 50%;
}
#cssload-loader ul {
    position: absolute;
    top: 12px;
    left: -64px;
    margin: 0;
    list-style: none;
    width: 38px;
    height: 28px;
    padding: 0;

}
#cssload-loader ul li {
    position: absolute;
    width: 5px;
    height: 0;
    background-color: #f05929;
    bottom: 0;
}

#cssload-loader span{
    position: absolute;
    left: 0;
    display: block;
    width: 120px;
    height: 120px;
    background-image: url("../images/lie-down-waiting.png");
    background-repeat: no-repeat;
}

#cssload-loader .circle {
    border: 0;
}

#cssload-loader .circle:before {
    content: '';
    width: 200px;
    height: 200px;
    border: 3px solid #f05929;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: -35px;
    left: -40px;
}

#cssload-loader .circle:after{
    content: '';
    width: 220px;
    height: 123px;
    background: #ececec;
    display: block;
    position: absolute;
    top: -13px;
    left: -60px;
}

#cssload-loader li:nth-child(1) {
    left: 0;
    animation: cssload-sequence1 0.85s ease infinite 0;
    -o-animation: cssload-sequence1 0.85s ease infinite 0;
    -ms-animation: cssload-sequence1 0.85s ease infinite 0;
    -webkit-animation: cssload-sequence1 0.85s ease infinite 0;
    -moz-animation: cssload-sequence1 0.85s ease infinite 0;
}
#cssload-loader li:nth-child(2) {
    left: 88px;
    animation: cssload-sequence2 0.85s ease infinite 0.085s;
    -o-animation: cssload-sequence2 0.85s ease infinite 0.085s;
    -ms-animation: cssload-sequence2 0.85s ease infinite 0.085s;
    -webkit-animation: cssload-sequence2 0.85s ease infinite 0.085s;
    -moz-animation: cssload-sequence2 0.85s ease infinite 0.085s;
}
#cssload-loader li:nth-child(3) {
    left: 96px;
    animation: cssload-sequence1 0.85s ease-in-out infinite 0.17s;
    -o-animation: cssload-sequence1 0.85s ease-in-out infinite 0.17s;
    -ms-animation: cssload-sequence1 0.85s ease-in-out infinite 0.17s;
    -webkit-animation: cssload-sequence1 0.85s ease-in-out infinite 0.17s;
    -moz-animation: cssload-sequence1 0.85s ease-in-out infinite 0.17s;
}
#cssload-loader li:nth-child(4) {
    left: 104px;
    animation: cssload-sequence2 0.85s ease-in infinite 0.255s;
    -o-animation: cssload-sequence2 0.85s ease-in infinite 0.255s;
    -ms-animation: cssload-sequence2 0.85s ease-in infinite 0.255s;
    -webkit-animation: cssload-sequence2 0.85s ease-in infinite 0.255s;
    -moz-animation: cssload-sequence2 0.85s ease-in infinite 0.255s;
}
#cssload-loader li:nth-child(5) {
    left: 112px;
    animation: cssload-sequence1 0.85s ease-in-out infinite 0.34s;
    -o-animation: cssload-sequence1 0.85s ease-in-out infinite 0.34s;
    -ms-animation: cssload-sequence1 0.85s ease-in-out infinite 0.34s;
    -webkit-animation: cssload-sequence1 0.85s ease-in-out infinite 0.34s;
    -moz-animation: cssload-sequence1 0.85s ease-in-out infinite 0.34s;
}
#cssload-loader li:nth-child(6) {
    left: 120px;
    animation: cssload-sequence2 0.85s ease infinite 0.425s;
    -o-animation: cssload-sequence2 0.85s ease infinite 0.425s;
    -ms-animation: cssload-sequence2 0.85s ease infinite 0.425s;
    -webkit-animation: cssload-sequence2 0.85s ease infinite 0.425s;
    -moz-animation: cssload-sequence2 0.85s ease infinite 0.425s;
}


@keyframes cssload-sequence1 {
    0% {
        height: 4px;
    }
    50% {
        height: 21px;
    }
    100% {
        height: 4px;
    }
}

@-o-keyframes cssload-sequence1 {
    0% {
        height: 4px;
    }
    50% {
        height: 21px;
    }
    100% {
        height: 4px;
    }
}

@-ms-keyframes cssload-sequence1 {
    0% {
        height: 4px;
    }
    50% {
        height: 21px;
    }
    100% {
        height: 4px;
    }
}

@-webkit-keyframes cssload-sequence1 {
    0% {
        height: 4px;
    }
    50% {
        height: 21px;
    }
    100% {
        height: 4px;
    }
}

@-moz-keyframes cssload-sequence1 {
    0% {
        height: 4px;
    }
    50% {
        height: 21px;
    }
    100% {
        height: 4px;
    }
}

@keyframes cssload-sequence2 {
    0% {
        height: 8px;
    }
    50% {
        height: 20px;
    }
    100% {
        height: 8px;
    }
}

@-o-keyframes cssload-sequence2 {
    0% {
        height: 8px;
    }
    50% {
        height: 20px
    }
    100% {
        height: 8px;
    }
}

@-ms-keyframes cssload-sequence2 {
    0% {
        height: 8px;
    }
    50% {
        height: 20px;
    }
    100% {
        height: 8px;
    }
}

@-webkit-keyframes cssload-sequence2 {
    0% {
        height: 8px;
    }
    50% {
        height: 20px;
    }
    100% {
        height: 8px;
    }
}

@-moz-keyframes cssload-sequence2 {
    0% {
        height: 8px;
    }
    50% {
        height: 20px;
    }
    100% {
        height: 8px;
    }
}

.clear-data .calendar .fa-calendar + input.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #777;
}
.clear-data .calendar .fa-calendar + input.form-control::-moz-placeholder { /* Firefox 19+ */
  color: #777;
}
.clear-data .calendar .fa-calendar + input.form-control:-ms-input-placeholder { /* IE 10+ */
  color: #777;
}
.clear-data .calendar .fa-calendar + input.form-control:-moz-placeholder { /* Firefox 18- */
  color: #777;
}

