*

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

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

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

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

@-webkit-keyframes bounce {
    20%, 53%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        animation-timing-function: cubic-bezier(.755, .050, .855, .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 {
    20%, 53%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        animation-timing-function: cubic-bezier(.755, .050, .855, .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 {
    50%, from, to {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

@keyframes flash {
    50%, from, to {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

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

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

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

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

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

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

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

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

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes jello {
    11.1%, from, to {
        -webkit-transform: none;
        transform: none
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    11.1%, from, to {
        -webkit-transform: none;
        transform: none
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

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

@-webkit-keyframes bounceIn {
    20%, 40%, 60%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    20%, 40%, 60%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes bounceInDown {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInLeft {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInRight {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInUp {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

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

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

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

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    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(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    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(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    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(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    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(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    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(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    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(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    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(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    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(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

@-webkit-keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 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(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 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(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

.body-bg {
    background: #f2f2f2;
    background: -moz-linear-gradient(top, #f2f2f2 0, #fff 50%, #fff 100%);
    background: -webkit-linear-gradient(top, #f2f2f2 0, #fff 50%, #fff 100%);
    background: linear-gradient(to bottom, #f2f2f2 0, #fff 50%, #fff 100%);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0
}

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

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

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

[hidden], template {
    display: none
}

a {
    background-color: transparent
}

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

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

b, strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: 0
}

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

small {
    font-size: 80%
}

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

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

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

figure {
    margin: 1em 40px
}

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

pre {
    overflow: auto
}

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

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

button {
    overflow: visible
}

button, select {
    text-transform: none
}

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

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

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

input {
    line-height: normal
}

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

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

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

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

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

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

td, th {
    padding: 0
}

.content-wrap {
    margin-top: 158px;
}

.header nav > ul li > ul > li > a, h1, h2, h3, h4, h5, h6 {
    font-family: Comfortaa, cursive;
    font-weight: 300;
    letter-spacing: .07rem
}

h1, h2.asH1 {
    text-align: center;
    padding: 40px 40px 0;
    text-shadow: none;
    font-size: 2.5rem;
    min-height: 40px
}

h2.asH1 + .content-wrap {
    margin-top: 40px
}

.asH1 {
    color: rgba(255, 78, 25, 1)
}

a {
    color: rgba(0, 0, 0, 1);
    outline: 0;
    text-decoration: none;
    transition: background .5s, colors .5s
}

a:hover {
    color: rgba(255, 78, 25, 1)
}

body {
    visibility: visible
}

body.admin .tos-wrapper {
    margin-top: 44px
}

.row {
    clear: both;
    overflow: hidden
}

body > .wrap {
    width: 94%;
    max-width: 1350px;
    margin: 0 auto;
    position: relative
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 34px;
    background: rgba(255, 255, 255, 1);
    z-index: 152;
    height: 109px
}

.headerWrap {
    position: fixed;
    left: 26px;
    right: 26px;
    top: 0;
    background: #fff;
    padding-left: 10px;
    padding-right: 10px
}

.slider {
    margin-bottom: 10px
}

.slider img {
    max-width: 100%;
    min-width: 100%;
    height: auto;
    display: block
}

.typeProjects {
    overflow: hidden
}

.typeProjects h2 {
    width: 50%;
    float: left;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 1)
}

.typeProjects h2:nth-child(n+3) {
    margin-top: 20px
}

.typeProjects h2:nth-child(2) {
    padding-right: 0
}

 .typeProjects h2 img {
    width: 100%;
    height: auto;
    display: block;
    background: rgba(236, 96, 60, 1);
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s
}

.typeProjects h2 a:hover img {
    opacity: .9
}

.typeProjects h2 a span {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    transition: background .5s, color .5s;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    padding: 15px;
    overflow: hidden;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .7);
    display: block
}

.typeProjects h2 a:hover span {
    color: rgba(236, 96, 60, 1);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .9)
}

.typeProjects h2 a:hover span {
    background: rgba(0, 0, 0, .8)
}

.typeProjects h2 a:hover {
    color: rgba(236, 96, 60, 1)
}

.typeProjects h2:hover a {
    background: rgba(0, 0, 0, .8)
}

.navigation {
    position: absolute;
    right: 0;
    top: 10px
}

.typeProjects h2:nth-child(2) a {
    right: 0
}

.typeProjects h2 a small {
    font-size: .9rem;
    line-height: 100%;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-top: 10px
}

.mainPageSubFooter, .mainPageSubFooter ul {
    padding: 0;
    margin: 0
}

.mainPageSubFooter {
    display: table;
    width: 100%;
    overflow: hidden
}

.mainPageSubFooter h3 {
    font-weight: 300;
    font-size: 26px
}

.mainPageSubFooter > li {
    overflow: hidden;
    list-style: none
}

.blog {
    display: table-cell;
    width: 400px
}

.blog li {
    list-style: none;
    display: table;
    margin-bottom: 20px
}

.blog + li {
    padding-left: 40px
}

.blog li h4 span {
    display: block;
    font-size: .6rem;
    color: rgba(140, 140, 140, 1);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 400
}

.blog img {
    width: 70px;
    display: block
}

.blog li a, .blog li h4 {
    display: table-cell;
    vertical-align: middle;
    text-decoration: none
}

.blog li h4 {
    padding: 0 10px;
    margin: 0;
    font-weight: 400;
    font-size: 19px
}

.projectsSmall {
    padding: 0;
    margin: 0
}

.projectsSmall li {
    list-style: none;
    width: 20%;
    border-left: solid 1px rgba(255, 255, 255, 1);
    border-bottom: solid 1px rgba(255, 255, 255, 1);
    display: block;
    overflow: hidden;
    float: left;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 1)
}

.projectsSmall li a {
    overflow: hidden
}

.projectsSmall li a img {
    width: 100%;
    display: block;
    transition: all .5s
}

.projectsSmall li a:hover img {
    transform: scale(1.1);
    opacity: .5
}

.footer {
    margin-top: 66px;
    border-top: solid 1px rgba(230, 230, 230, 1);
    overflow: hidden;
    padding: 25px 20px;
    border-radius: 3px 3px 0 0;
    clear: both;
    display: block;
    float: none
}

.footer p {
    float: left;
    font-size: 12px;
    color: rgba(0, 0, 0, .5);
    margin: 0
}

.footer ul {
    float: right;
    margin: 0;
    padding: 0
}

.footer ul li {
    list-style: none;
    display: inline-block;
    font-size: 12px
}

.footer ul a {
    color: rgba(0, 0, 0, .6)
}

.footer ul li:nth-child(n+2)::before {
    content: "|";
    color: rgba(0, 0, 0, .5);
    padding: 0 10px
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 1.5rem;
        padding: 20px
    }

    .header nav li.logo {
        width: 200px;
        left: 50%;
        margin-left: -100px
    }

    body > .wrap {
        padding: 0 1%;
        width: 98%
    }

    .header nav {
        height: 32px
    }

    .blog + li, .mainPageSubFooter li.blog, .typeProjects h2 {
        float: none;
        width: 100%;
        margin-bottom: 20px;
        display: block;
        padding: 0
    }

    .mainPageSubFooter {
        margin: 0
    }

    .mainPageSubFooter h3 {
        margin-top: 0
    }

    .projectsSmall li {
        width: 50%
    }

    .box_clone img {
        max-width: 100%;
        height: auto
    }

    .blog li h4 {
        font-size: 16px
    }

    .footer p, .footer ul {
        float: none;
        text-align: center
    }

    .content-blog article:nth-child(2n) > img, .content-blog article > img {
        min-width: 100%;
        max-width: 100%;
        display: block;
        margin: 0 0 40px 0;
        clear: both;
        float: none
    }

    #ajax-content .typeProjects h2 {
        width: 50%;
        float: left;
        display: inline-block
    }

    .headerWrap {
        left: 0;
        right: 0;
        padding-left: 20px;
        padding-right: 20px
    }

    .headerWrap nav {
        padding-bottom: 20px
    }
}

.before-after {
    position: relative;
    overflow: hidden;
    margin-top: 20px
}

.before-after > img {
    min-width: 100%;
    height: auto
}

.before-after-holder {
    position: absolute;
    overflow: hidden;
    width: 50%;
    transition: all 1s;
    bottom: 0;
    top: 0;
    border: solid 1px #fff
}

.before-after-holder img {
    display: block;
    height: 100%;
    width: auto
}

.before-after-holder:nth-child(2) {
    right: 50%;
    left: 0
}

.before-after-holder:nth-child(2) img {
    float: left
}

.before-after-holder:nth-child(4) {
    left: 50%
}

.before-after-holder:nth-child(4) img {
    float: right
}

.before-after .after-zone, .before-after .before-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    z-index: 10
}

.before-after .before-zone {
    left: 0;
    right: 50%;
    cursor: pointer
}

.after-zone, .before-zone {
    color: #fff
}

.after-zone span, .before-zone span {
    background: rgba(0, 0, 0, .7);
    padding: 10px;
    font-size: 24px;
    font-family: Comfortaa, cursive;
    display: inline-block;
    bottom: 0;
    position: absolute;
    left: 0
}

.after-zone span {
    right: 0;
    left: auto
}

.before-zone {
    text-align: left
}

.after-zone {
    text-align: right
}

.before-after .after-zone {
    left: 50%;
    right: 0;
    color: #fff
}

.before-zone:hover + .after-zone + .before-after-holder {
    width: 100%;
    left: 0;
    right: 0
}

.before-zone:hover + .after-zone + .before-after-holder + .before-after-holder {
    width: 0;
    left: 100%;
    right: 0
}

.after-zone:hover + .before-after-holder {
    width: 0;
    left: 0;
    right: 100%
}

.after-zone:hover + .before-after-holder + .before-after-holder {
    width: 100%;
    left: 0;
    right: 0
}

.note {
    padding: 10px;
    font-size: 18px;
    background: #ebebeb;
    margin-top: 0;
    font-family: Comfortaa, cursive;
    text-align: center
}

h2.asH1 small a {
    font-size: 20px
}

h2.asH1 small a:nth-child(n+2):before {
    content: '/';
    margin: 0 5px;
    color: #000
}

h2.asH1 small a:hover:before {
    color: #000
}

.paging a {
    background: #ebebeb;
    padding: 10px;
    display: inline-block
}

.paging {
    padding: 39px 0;
    overflow: hidden;
    display: block;
    clear: both
}

.paging a:hover {
    background: rgba(236, 96, 60, 1);
    color: #fff
}

.paging a.unactive, .paging a.unactive:hover {
    background: #ebebeb;
    color: #ccc
}

p {
    line-height: 1.55em;
    font-size: 16px;
    color: #222
}

h2.asH1 small a.current {
    color: rgba(236, 96, 60, 1)
}

div.content {
    clear: both;
    overflow: hidden
}

.content div {
    display: none;
    clear: both
}

.content div.animated {
    display: block
}

img.avatar {
    float: left;
    margin: 0 20px 10px 0
}

.header .breadcrumbs {
    padding: 10px 5px;
    border-top: solid #ebebeb 1px;
    border-bottom: solid #ebebeb 1px;
    height: auto
}

.breadcrumbs a, .breadcrumbs span {
    font-size: 12px
}

.breadcrumbs a:nth-child(n+2):before, .breadcrumbs span:before {
    content: '/';
    margin: 0 5px;
    color: #000
}

.breadcrumbs span {
    color: rgba(236, 96, 60, 1)
}

.editNow h1#editH, .editNow h1.slogon {
    background: rgba(236, 96, 60, .2)
}

.content-blog article {
    clear: both;
    display: block;
    float: none;
    overflow: hidden;
    margin-bottom: 40px;
    width: 100%
}

.content-blog article h2 {
    margin-top: 0
}

.content-blog article > img {
    float: left;
    width: 50%;
    margin-right: 40px
}

.content-blog article:nth-child(2n) > img {
    float: right;
    margin-right: 0;
    margin-left: 40px
}

a.read-more {
    display: inline-block;
    background: rgba(236, 96, 60, 1) !important;
    color: #fff !important;
    padding: 10px 20px;
    border: solid 1px rgba(236, 96, 60, 1)
}

a.read-more:hover {
    background: #fff !important;
    color: rgba(236, 96, 60, 1) !important
}

.content-small {
    width: 77%;
    float: left
}

.asH1 + .content-wrap {
    margin-top: 158px
}

.filterList {
    width: 19%;
    padding: 0;
    float: right;
    margin: 0
}

.filterList ul {
    padding: 0;
    background: #eee
}

.filterList li {
    list-style: none;
    padding: 0;
    overflow: hidden;
    margin: 0;
    display: block
}

.filterList a {
    overflow: hidden;
    display: block;
    background: #ebebeb;
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #ebebeb !important;
    font-family: Comfortaa, cursive
}

.filterList .current > a {
    border-left: solid 1px #fff;
    background: #fff;
    color: rgba(236, 96, 60, 1) !important
}

.filterList > li:nth-child(n+2) {
    border-top: solid 1px #fff
}

.filterList > li > a {
    padding: 10px;
    font-weight: 700
}

.filterList > li > ul > li a {
    padding: 7px 10px 7px 20px;
    background: #eee;
    border-left-color: #eee
}

.filterList > li > a {
    font-size: 20px
}

.filterList > li > ul > li li a {
    font-size: .8em
}

.content-inner {
    margin-top: 150px
}

.content-inner h1, .content-inner h2.asH1 {
    text-align: left;
    padding-left: 0;
    padding-right: 0
}

.editNow .content-inner {
    margin-right: -20px;
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px
}

.panel-body {
    width: 600px;
    padding: 20px;
    margin: 120px auto
}

.panel-body input[type=email], .panel-body input[type=password] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: block;
    border: solid 1px #ebebeb;
    background: #ebebeb
}

.form-group {
    padding-bottom: 40px
}

.tos-close {
    opacity: .5 !important;
    cursor: pointer
}

.tos-close:hover {
    opacity: 1
}

.before-after, .container_skitter, .newsGallery, .projects-content, .typeProjects {
    margin-bottom: 40px
}

.simple-content, h1, h2.asH1 {
    padding-bottom: 20px
}

.simple-content, h1, h2.asH1 {
    margin-bottom: 20px
}

.simple-content p + h2 {
    margin-top: 60px
}

.asH1 + .content {
    margin-top: 40px
}

.header nav ul > li > ul > li:hover ul li.current > a, .header nav ul > li > ul > li:hover ul li > a:hover, .header nav ul > li > ul > li:hover ul li > a:hover.current {
    color: rgba(236, 96, 60, 1) !important
}

.typeProjects + .typeProjects {
    margin-top: -20px
}

.tos-thumbnails a {
    transition: all .5s
}

.tos-thumbnails a:hover {
    transform: scale(1.2);
    opacity: .9;
    box-shadow: 0 0 2px rgba(0, 0, 0, .3)
}

.d-content {
    margin-top: 150px
}

.d-content p, .d-content ul {
    font-family: Comfortaa, cursive;
    font-size: 18px
}

.filterList {
    margin-bottom: 40px
}

.filterList li a + ul {
    display: none
}

.filterList li.current > a + ul {
    display: block
}

.filterList > li > ul > li.current a {
    background: #fff
}

.mail-form {
    padding-bottom: 40px
}

.mail-form ol {
    padding: 0;
    margin: 0
}

.mail-form button {
    margin-right: 10px
}

.mail-form ol input, .mail-form ol textarea {
    display: block;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    background: rgba(240, 240, 240, 1);
    transition: background .5s;
    border: solid 1px rgba(230, 230, 230, 1)
}

.mail-form ol input:focus, .mail-form ol textarea:focus {
    background: rgba(240, 240, 240, 0)
}

.mail-form ol textarea {
    resize: vertical
}

.mail-form ol li {
    list-style: none
}

.mail-form button {
    padding: 10px 20px;
    min-width: 100px;
    border-radius: 2px;
    background: rgba(255, 0, 0, 1);
    color: #fff;
    border: solid 1px rgba(255, 0, 0, 1);
    transition: all .5s
}

.mail-form button.btn-danger {
    background: rgba(240, 240, 240, 1);
    border: solid 1px rgba(240, 240, 240, 1);
    color: rgba(80, 80, 80, 1)
}

.mail-form button:hover {
    background: #fff;
    color: rgba(255, 0, 0, 1)
}

.mail-form button.btn-danger:hover {
    background: rgba(255, 255, 255, 1);
    color: rgba(80, 80, 80, 1)
}

.msg-error {
    padding-bottom: 0;
    margin-bottom: 0;
    color: rgba(255, 0, 0, 1)
}

.msg-error + label input, .msg-error + label textarea {
    border: solid 1px rgba(255, 0, 0, 1)
}

.mail-form.content-small {
    width: 65%;
    margin-top: 50px
}

.filterList.mail {
    width: 30%;
    padding-top: 50px
}

.mail-form.content-small {
    margin-top: 0
}

@media screen and (max-width: 1024px) {
    .filterList.mail, .mail-form.content-small {
        width: 100%;
        display: block;
        margin-top: 0
    }

    .content-small, .filterList {
        width: 100%;
        float: none
    }

    .filterList + .d-content {
        margin-top: 0 !important
    }

    .filterList {
        margin-top: 120px
    }

    .content-small h2 {
        font-size: 24px
    }
}

.bee3D--slide__active img, .carousel {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden
}

.skitter {
    position: relative;
    max-width: 1400px;
    background: #000;
    overflow: hidden
}

.skitter.with-dots {
    margin-bottom: 10px
}

.skitter.with-thumbs {
    margin-bottom: 60px
}

.skitter > a img, .skitter > img {
    max-width: none
}

.skitter ul {
    display: none
}

.skitter .container_skitter {
    overflow: hidden;
    position: absolute;
    top: 0
}

.skitter .container_skitter .image_main {
    width: 100%
}

.skitter .image {
    overflow: hidden
}

.skitter .image > a img, .skitter .image > img {
    width: 100%;
    display: none
}

.skitter .box_clone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    overflow: hidden;
    display: none;
    z-index: 20
}

.skitter .box_clone img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20
}

.skitter .prev_button {
    position: absolute;
    top: 50%;
    left: 35px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 152;
    width: 42px;
    height: 42px;
    overflow: hidden;
    text-indent: -9999em;
    -webkit-transition: all .2s;
    transition: all .2s
}

.skitter .next_button {
    position: absolute;
    top: 50%;
    right: 35px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 152;
    width: 42px;
    height: 42px;
    overflow: hidden;
    text-indent: -9999em;
    -webkit-transition: all .2s;
    transition: all .2s
}

.skitter .next_button:hover, .skitter .prev_button:hover {
    opacity: .5
}

.skitter .info_slide {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 100;
    background-color: #000;
    color: #fff;
    font: 700 11px arial;
    padding: 5px 0 5px 5px;
    border-radius: 5px;
    opacity: .75
}

.skitter .info_slide .image_number {
    background-color: #333;
    float: left;
    padding: 2px 10px;
    margin: 0 5px 0 0;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all .2s;
    transition: all .2s
}

.skitter .info_slide .image_number:hover {
    background-color: #000
}

.skitter .info_slide .image_number.image_number_select {
    background-color: #ccc;
    color: #000
}

.skitter .container_thumbs {
    position: relative;
    overflow: hidden;
    height: 50px
}

.skitter .info_slide_thumb {
    height: 50px;
    border-radius: 0;
    overflow: hidden;
    top: auto;
    top: 0;
    left: 0;
    padding: 0;
    opacity: 1
}

.skitter .info_slide_thumb .image_number {
    overflow: hidden;
    width: 100px;
    height: 50px;
    position: relative;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background-size: cover;
    background-position: center center
}

.skitter .info_slide_thumb .image_number.image_number_select {
    opacity: .4
}

.skitter .box_scroll_thumbs {
    padding: 0
}

.skitter .box_scroll_thumbs .scroll_thumbs {
    position: absolute;
    bottom: 60px;
    left: 50px;
    background-color: #ccc;
    width: 200px;
    height: 10px;
    overflow: hidden;
    text-indent: -9999em;
    z-index: 101;
    cursor: pointer;
    border: 0 solid #333
}

.skitter .info_slide_dots {
    position: absolute;
    bottom: 20px;
    z-index: 151;
    padding: 5px 0 5px 5px;
    border-radius: 50px
}

.skitter .info_slide_dots .image_number {
    background-color: #999;
    float: left;
    margin: 0 5px 0 0;
    cursor: pointer;
    border-radius: 50px;
    width: 14px;
    height: 14px;
    text-indent: -9999em;
    overflow: hidden;
    -webkit-transition: all .2s;
    transition: all .2s
}

.skitter .info_slide_dots .image_number:hover {
    background-color: #777
}

.skitter .info_slide_dots .image_number.image_number_select {
    background-color: #222
}

.loading {
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 10000;
    margin: -16px -16px;
    color: #fff;
    text-indent: -9999em;
    overflow: hidden;
    width: 32px;
    height: 32px
}

.label_skitter {
    z-index: 150;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 150;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    background: -webkit-linear-gradient(transparent, #000);
    background: linear-gradient(transparent, #000);
    width: 100%
}

.label_skitter p {
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px
}

.progressbar {
    background-color: #000;
    position: absolute;
    top: 5px;
    left: 15px;
    height: 5px;
    width: 200px;
    z-index: 99;
    border-radius: 20px
}

.preview_slide {
    display: none;
    position: absolute;
    z-index: 152;
    bottom: 30px;
    left: -40px;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 1px solid #222;
    box-shadow: rgba(0, 0, 0, .7) 2px 2px 5px;
    overflow: hidden
}

.preview_slide ul {
    height: 100px;
    overflow: hidden;
    margin: 0;
    list-style: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0
}

.preview_slide ul li {
    width: 100px;
    height: 100px;
    overflow: hidden;
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    display: block
}

.preview_slide ul li img {
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
    width: auto
}

#overlay_skitter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    opacity: 1;
    background-color: #000
}

.skitter .focus_button {
    position: absolute;
    z-index: 100;
    width: 42px;
    height: 42px;
    overflow: hidden;
    text-indent: -9999em;
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s
}

.skitter .play_pause_button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 151;
    width: 42px;
    height: 42px;
    overflow: hidden;
    text-indent: -9999em;
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s
}

.skitter .play_pause_button:hover {
    opacity: .5
}

.skitter .focus_button:hover {
    opacity: .5
}

.skitter .focus_button, .skitter .next_button, .skitter .play_pause_button, .skitter .prev_button {
    display: block;
    background: url(../images/skitter/sprite-default.png) no-repeat;
    background-size: 84px auto
}

.skitter .next_button {
    background-position: 0 -42px;
    width: 42px;
    height: 42px
}

.skitter .prev_button {
    background-position: -42px -42px;
    width: 42px;
    height: 42px
}

.skitter .play_pause_button {
    background-position: 0 0;
    width: 42px;
    height: 42px
}

.skitter .play_pause_button.play_button {
    background-position: 0 -84px;
    width: 42px;
    height: 42px
}

.skitter .focus_button {
    background-position: -42px 0;
    width: 42px;
    height: 42px;
    top: 35px;
    left: 35px
}

.skitter-clean .focus_button, .skitter-clean .next_button, .skitter-clean .play_pause_button, .skitter-clean .prev_button {
    display: block;
    background: url(../images/skitter/sprite-clean.png) no-repeat;
    background-size: 47px auto
}

.skitter-clean .prev_button {
    background-position: 0 0;
    width: 47px;
    height: 46px
}

.skitter-clean .next_button {
    background-position: 0 -46px;
    width: 47px;
    height: 46px
}

.skitter-clean .play_pause_button {
    background-position: 0 -133px;
    width: 41px;
    height: 41px
}

.skitter-clean .play_pause_button.play_button {
    background-position: 0 -92px;
    width: 41px;
    height: 41px
}

.skitter-clean .focus_button {
    background-position: 0 -174px;
    width: 41px;
    height: 41px
}

.skitter-clean .info_slide {
    background-color: transparent
}

.skitter-clean .info_slide .image_number {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, .2) 1px 1px 0;
    font-size: 12px;
    font-weight: 400;
    color: #333
}

.skitter-clean .info_slide .image_number:hover {
    background-color: #ccc
}

.skitter-clean .info_slide .image_number.image_number_select {
    background-color: #111;
    color: #fff
}

.skitter-clean .info_slide_dots {
    background: rgba(0, 0, 0, .07);
    box-shadow: rgba(0, 0, 0, .3) 1px 1px 0
}

.skitter-clean .info_slide_dots .image_number {
    width: 14px;
    height: 14px;
    background-color: #999
}

.skitter-clean .info_slide_dots .image_number:hover {
    background-color: #333
}

.skitter-clean .info_slide_dots .image_number.image_number_select {
    background-color: #111
}

.skitter-clean .progressbar {
    top: 5px;
    left: 5px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, .5) 1px 1px 0
}

.skitter-minimalist .focus_button, .skitter-minimalist .next_button, .skitter-minimalist .play_pause_button, .skitter-minimalist .prev_button {
    display: block;
    background: url(../images/skitter/sprite-minimalist.png) no-repeat;
    background-size: 24px auto
}

.skitter-minimalist .prev_button {
    background-position: 0 0;
    width: 24px;
    height: 28px
}

.skitter-minimalist .next_button {
    background-position: 0 -28px;
    width: 24px;
    height: 28px
}

.skitter-minimalist .play_pause_button {
    background-position: 0 -74px;
    width: 18px;
    height: 18px;
    -webkit-transform: none;
    transform: none;
    top: 35px;
    left: 35px
}

.skitter-minimalist .play_pause_button.play_button {
    background-position: 0 -56px;
    width: 18px;
    height: 18px
}

.skitter-minimalist .focus_button {
    background-position: 0 -92px;
    width: 18px;
    height: 18px;
    -webkit-transform: none;
    transform: none;
    top: 35px;
    left: 95px
}

.skitter-minimalist .info_slide {
    background-color: transparent
}

.skitter-minimalist .info_slide .image_number {
    background-color: #000;
    box-shadow: rgba(255, 255, 255, .2) 1px 1px 0;
    font-size: 12px;
    font-weight: 400;
    background-color: #999
}

.skitter-minimalist .info_slide .image_number:hover {
    background-color: #111
}

.skitter-minimalist .info_slide .image_number.image_number_select {
    background-color: #ccc
}

.skitter-minimalist .info_slide_dots .image_number {
    width: 14px;
    height: 14px;
    box-shadow: rgba(255, 255, 255, .2) 1px 1px 0;
    background-color: #999
}

.skitter-minimalist .info_slide_dots .image_number:hover {
    background-color: #111
}

.skitter-minimalist .info_slide_dots .image_number.image_number_select {
    background-color: #ccc
}

.skitter-round .focus_button, .skitter-round .next_button, .skitter-round .play_pause_button, .skitter-round .prev_button {
    display: block;
    background: url(../images/skitter/sprite-round.png) no-repeat;
    background-size: 47px auto
}

.skitter-round .prev_button {
    background-position: 0 0;
    width: 23px;
    height: 47px;
    left: -23px
}

.skitter-round .next_button {
    background-position: -23px 0;
    width: 23px;
    height: 47px;
    right: -23px
}

.skitter-round .next_button:hover {
    opacity: 1
}

.skitter-round .prev_button:hover {
    opacity: 1
}

.skitter-round .play_pause_button {
    background-position: 0 -70px;
    width: 47px;
    height: 23px;
    top: 0;
    left: 24px;
    -webkit-transform: none;
    transform: none
}

.skitter-round .play_pause_button.play_button {
    background-position: 0 -47px;
    width: 47px;
    height: 23px
}

.skitter-round .focus_button {
    background-position: 0 -93px;
    width: 47px;
    height: 23px;
    top: 0;
    left: 82px;
    margin-top: 0
}

.skitter-round .info_slide {
    background-color: transparent
}

.skitter-round .info_slide .image_number {
    background-color: #777;
    box-shadow: rgba(255, 255, 255, .2) 1px 1px 0;
    font-size: 12px;
    font-weight: 400
}

.skitter-round .info_slide .image_number:hover {
    background-color: #333
}

.skitter-round .info_slide .image_number.image_number_select {
    background-color: #111;
    color: #fff
}

.skitter-round .info_slide_dots .image_number {
    width: 14px;
    height: 14px;
    box-shadow: rgba(255, 255, 255, .2) 1px 1px 0;
    background-color: #777
}

.skitter-round .info_slide_dots .image_number:hover {
    background-color: #333
}

.skitter-round .info_slide_dots .image_number.image_number_select {
    background-color: #111
}

.skitter-round .progressbar {
    top: -10px;
    left: 0;
    background-color: #333;
    box-shadow: rgba(255, 255, 255, .3) 1px 1px 0
}

.skitter-square .focus_button, .skitter-square .next_button, .skitter-square .play_pause_button, .skitter-square .prev_button {
    display: block;
    background: url(../images/skitter/sprite-square.png) no-repeat;
    background-size: 110px auto
}

.skitter-square .play_pause_button {
    background-position: -55px 0;
    width: 55px;
    height: 55px;
    top: 10px;
    left: 10px;
    bottom: auto;
    right: auto;
    margin-top: 0;
    -webkit-transform: none;
    transform: none
}

.skitter-square .play_pause_button.play_button {
    background-position: 0 0;
    width: 55px;
    height: 55px
}

.skitter-square .focus_button {
    background-position: -55px -55px;
    width: 55px;
    height: 55px;
    top: 10px;
    left: 65px;
    bottom: auto;
    right: auto;
    margin-top: 0;
    -webkit-transform: none;
    transform: none
}

.skitter-square .next_button {
    background-position: 0 -55px;
    width: 55px;
    height: 55px;
    top: 10px;
    left: auto;
    right: 10px;
    margin: 0;
    -webkit-transform: none;
    transform: none
}

.skitter-square .prev_button {
    background-position: 0 -110px;
    width: 55px;
    height: 55px;
    top: 10px;
    left: auto;
    right: 65px;
    margin: 0;
    -webkit-transform: none;
    transform: none
}

.skitter-square .info_slide {
    background-color: transparent
}

.skitter-square .info_slide .image_number {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, .2) 1px 1px 0;
    font-size: 12px;
    font-weight: 400;
    color: #333
}

.skitter-square .info_slide .image_number:hover {
    background-color: #ccc
}

.skitter-square .info_slide .image_number.image_number_select {
    background-color: #111;
    color: #fff
}

.skitter-square .info_slide_dots .image_number {
    width: 14px;
    height: 14px;
    box-shadow: rgba(255, 255, 255, .2) 1px 1px 0;
    background-color: #ccc
}

.skitter-square .info_slide_dots .image_number:hover {
    background-color: #999
}

.skitter-square .info_slide_dots .image_number.image_number_select {
    background-color: #555
}

.skitter-square .progressbar {
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    height: 2px
}

@media (max-width: 1024px) {
    .skitter .info_slide, .skitter .info_slide_dots {
        display: none
    }
}

.skitter-spinner {
    padding: 10px 12px;
    border-radius: 100%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.skitter-spinner .icon-sending {
    display: inline-block;
    -webkit-animation: rotateMe .5s linear infinite;
    animation: rotateMe .5s linear infinite;
    border-radius: 100%;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    width: 20px;
    height: 20px;
    vertical-align: top
}

@-webkit-keyframes rotateMe {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotateMe {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.tos-slide, .tos-slider, .tos-wrapper {
    width: 100%;
    height: 100%
}

.tos-noanimation {
    -webkit-transition-property: none !important;
    transition-property: none !important
}

.tos-fastanimation {
    -webkit-transition-duration: .2s !important;
    transition-duration: .2s !important;
    -webkit-transition-timing-function: ease-out !important;
    transition-timing-function: ease-out !important
}

.tos-wrapper {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
    display: none;
    padding: 0;
    margin: 0;
    overflow: hidden
}

.tos-wrapper.tos-opened {
    display: block
}

.tos-slide, .tos-slide:before, .tos-slide > * {
    display: inline-block
}

.tos-wrapper.tos-opening {
    opacity: 1
}

.tos-wrapper.tos-fixed {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000
}

.tos-slider, .tos-wrapper.tos-inline {
    position: relative
}

.tos-slider {
    white-space: nowrap;
    padding: 0;
    margin: 0
}

.tos-uibg, .tos-wrapper.tos-fx-slide.tos-fixed .tos-slider {
    position: absolute
}

.tos-wrapper.tos-fx-slide .tos-slider {
    left: 0;
    -webkit-transition: left .4s ease;
    transition: left .4s ease
}

.tos-wrapper.tos-fx-fade .tos-slider {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.tos-uibg {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1
}

.tos-fill .tos-uibg {
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent)
}

.tos-desktop .tos-wrapper:hover .tos-uibg, .tos-touch .tos-wrapper.tos-hover .tos-uibg {
    opacity: 1
}

.tos-slide {
    -webkit-overflow-scrolling: touch;
    line-height: 1px;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    position: relative
}

.tos-slide:before {
    content: "";
    height: 50%;
    width: 1px;
    margin-right: -1px
}

.tos-slide.tos-loading > * {
    opacity: 0
}

.tos-slide > * {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
    vertical-align: middle;
    max-height: 100%;
    max-width: 100%;
    box-sizing: border-box
}

.tos-slide.tos-html > div {
    -webkit-overflow-scrolling: touch;
    white-space: normal;
    text-align: left;
    line-height: 1.5
}

.tos-slide.tos-html > div * {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none
}

.tos-wrapper.tos-fill .tos-slide.tos-image > img {
    max-height: none;
    max-width: none;
    min-height: 100%;
    min-width: 100%
}

.tos-wrapper.tos-fixed .tos-slide.tos-html > div {
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
    display: inline-block;
    padding: 40px;
    overflow: auto
}

.tos-desktop .tos-wrapper.tos-fixed {
    background-color: rgba(255, 255, 255, .85)
}

.tos-desktop .tos-wrapper.tos-fixed.tos-fit .tos-slide {
    padding: 20px
}

.tos-close, .tos-next {
    right: 20px
}

.tos-close, .tos-next, .tos-prev {
    background: #000;
    border-radius: 3px;
    opacity: 0;
    display: block;
    width: 40px;
    position: absolute;
    z-index: 1;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.tos-next, .tos-prev {
    height: 80px;
    margin-top: -40px;
    top: 50%
}

.tos-next.tos-disabled, .tos-prev.tos-disabled {
    cursor: default
}

.tos-prev {
    left: 20px
}

.tos-close {
    height: 40px;
    top: 20px
}

.tos-desktop .tos-wrapper:hover .tos-close, .tos-desktop .tos-wrapper:hover .tos-next, .tos-desktop .tos-wrapper:hover .tos-prev, .tos-touch .tos-wrapper.tos-hover .tos-close, .tos-touch .tos-wrapper.tos-hover .tos-next, .tos-touch .tos-wrapper.tos-hover .tos-prev {
    opacity: .5
}

.tos-desktop .tos-wrapper:hover .tos-close:hover, .tos-desktop .tos-wrapper:hover .tos-next:hover, .tos-desktop .tos-wrapper:hover .tos-prev:hover, .tos-touch .tos-wrapper.tos-hover .tos-close:hover, .tos-touch .tos-wrapper.tos-hover .tos-next:hover, .tos-touch .tos-wrapper.tos-hover .tos-prev:hover {
    opacity: .9
}

.tos-desktop .tos-wrapper:hover .tos-close.tos-disabled, .tos-desktop .tos-wrapper:hover .tos-next.tos-disabled, .tos-desktop .tos-wrapper:hover .tos-prev.tos-disabled, .tos-touch .tos-wrapper.tos-hover .tos-close.tos-disabled, .tos-touch .tos-wrapper.tos-hover .tos-next.tos-disabled, .tos-touch .tos-wrapper.tos-hover .tos-prev.tos-disabled {
    opacity: .2
}

.tos-close span:after, .tos-close span:before, .tos-next span, .tos-prev span {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    margin: -5px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.tos-close span:after, .tos-close span:before {
    width: 6px;
    height: 6px;
    margin-top: -4px;
    margin-left: 0;
    margin-right: 0
}

.tos-close span:before, .tos-prev span {
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    left: 50%
}

.tos-close span:after, .tos-next span {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    right: 50%
}

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-close .tos-slide, .tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-next .tos-slide, .tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-prev .tos-slide {
    padding-left: 80px;
    padding-right: 80px
}

.tos-inline {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
    display: inline-block;
    margin: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto
}

.tos-inline.tos-prev {
    margin-right: -60px
}

.tos-inline.tos-next {
    margin-left: -60px
}

.tos-loading .tos-inline {
    opacity: 0 !important
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-close, .tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-next, .tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-prev {
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2)
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-close, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-next, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-prev {
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3)
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-prev, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-prev {
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-next, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-next {
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-close, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-close {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.tos-caption {
    color: #fff;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1
}

.tos-caption:after {
    content: '';
    display: block;
    clear: both
}

.tos-caption > div {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    float: left
}

.tos-caption > div:last-child {
    float: right;
    margin-right: -2px
}

.tos-desktop .tos-wrapper:hover .tos-caption, .tos-touch .tos-wrapper.tos-hover .tos-caption {
    opacity: 1
}

.tos-wrapper .tos-caption {
    line-height: 20px;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .8);
    height: 40px
}

.tos-wrapper.tos-has-caption .tos-uibg {
    height: 100px
}

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-caption .tos-slide {
    padding-bottom: 60px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-caption {
    line-height: 40px;
    font-size: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .8);
    height: 80px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-caption .tos-uibg {
    height: 200px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-caption {
    line-height: 60px;
    font-size: 45px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, .8);
    height: 120px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-caption .tos-uibg {
    height: 300px
}

.tos-wrapper.tos-fx-slide .tos-slider {
    -webkit-transition-property: left, margin;
    transition-property: left, margin
}

.tos-pagination {
    text-align: center;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1
}

.tos-pagination a {
    display: inline-block
}

.tos-pagination.tos-bullets a {
    background-color: rgba(255, 255, 255, .2)
}

.tos-pagination.tos-bullets a:hover {
    background-color: rgba(255, 255, 255, .5)
}

.tos-pagination.tos-bullets a.tos-selected {
    background-color: rgba(255, 255, 255, .9)
}

.tos-desktop .tos-wrapper:hover .tos-pagination, .tos-touch .tos-wrapper.tos-hover .tos-pagination {
    opacity: 1
}

.tos-wrapper .tos-pagination:after, .tos-wrapper .tos-pagination:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px
}

.tos-wrapper.tos-has-bullets .tos-pagination {
    height: 30px
}

.tos-wrapper.tos-has-bullets .tos-pagination a {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    margin: 0 5px
}

.tos-wrapper.tos-has-bullets .tos-caption {
    bottom: 30px
}

.tos-wrapper.tos-has-bullets .tos-uibg {
    height: 90px
}

.tos-wrapper.tos-has-bullets.tos-has-caption .tos-uibg {
    height: 130px
}

.tos-wrapper.tos-has-thumbnails .tos-pagination {
    height: 70px
}

.tos-wrapper.tos-has-thumbnails .tos-pagination a {
    background-position: center center;
    background-size: cover;
    width: 50px;
    height: 50px;
    margin: 0 5px
}

.tos-wrapper.tos-has-thumbnails .tos-caption {
    bottom: 70px
}

.tos-wrapper.tos-has-thumbnails .tos-uibg {
    height: 130px
}

.tos-wrapper.tos-has-thumbnails.tos-has-caption .tos-uibg {
    height: 170px
}

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-bullets .tos-slide {
    padding-bottom: 50px
}

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-bullets.tos-has-caption .tos-slide {
    padding-bottom: 80px
}

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-thumbnails .tos-slide {
    padding-bottom: 90px
}

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-thumbnails.tos-has-caption .tos-slide {
    padding-bottom: 120px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-pagination:after, .tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-pagination:before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 20px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination {
    height: 60px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination a {
    border-radius: 20px;
    width: 20px;
    height: 20px;
    margin: 0 10px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-caption {
    bottom: 60px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-uibg {
    height: 180px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets.tos-has-caption .tos-uibg {
    height: 260px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination {
    height: 140px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination a {
    background-position: center center;
    background-size: cover;
    width: 100px;
    height: 100px;
    margin: 0 10px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-caption {
    bottom: 140px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-uibg {
    height: 260px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails.tos-has-caption .tos-uibg {
    height: 340px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-pagination:after, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-pagination:before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 30px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination {
    height: 90px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination a {
    border-radius: 30px;
    width: 30px;
    height: 30px;
    margin: 0 15px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-caption {
    bottom: 90px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-uibg {
    height: 270px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets.tos-has-caption .tos-uibg {
    height: 390px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination {
    height: 210px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination a {
    background-position: center center;
    background-size: cover;
    width: 150px;
    height: 150px;
    margin: 0 15px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-caption {
    bottom: 210px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-uibg {
    height: 390px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails.tos-has-caption .tos-uibg {
    height: 510px
}

.tos-slide .tos-html {
    -webkit-overflow-scrolling: touch
}

.tos-play, .tos-play:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%
}

.tos-play {
    background: #000;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.tos-play:after {
    content: ''
}

.tos-desktop .tos-wrapper:hover .tos-play, .tos-touch .tos-wrapper.tos-hover .tos-play {
    opacity: .5
}

.tos-desktop .tos-wrapper:hover .tos-play:hover, .tos-touch .tos-wrapper.tos-hover .tos-play:hover {
    opacity: .9
}

.tos-wrapper .tos-play {
    border-radius: 80px;
    width: 80px;
    height: 80px;
    margin: -40px
}

.tos-wrapper .tos-play:after {
    border: 20px solid transparent;
    border-left-color: #fff;
    border-left-width: 30px;
    margin-top: -20px;
    margin-left: -10.5px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-play {
    border-radius: 160px;
    width: 160px;
    height: 160px;
    margin: -80px
}

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-play:after {
    border: 40px solid transparent;
    border-left-color: #fff;
    border-left-width: 60px;
    margin-top: -40px;
    margin-left: -21px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-play {
    border-radius: 240px;
    width: 240px;
    height: 240px;
    margin: -120px
}

.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-play:after {
    border: 60px solid transparent;
    border-left-color: #fff;
    border-left-width: 90px;
    margin-top: -60px;
    margin-left: -31.5px
}

.modal-mask {
    position: absolute;
    z-index: 9998;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity .3s ease;
    height: 100%;
    width: 100%
}

.modal-blur {
    background: rgba(255, 255, 255, 1);
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.modal-wrapper {
    display: table-cell;
    vertical-align: middle;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.modal-container {
    max-width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: 0 auto;
    position: absolute;
    background-color: transparent;
    transition: all .3s ease;
    font-family: Helvetica, Arial, sans-serif
}

.modal-header h3 {
    margin-top: 0;
    color: #42b983
}

.modal-body {
    margin: 20px 0
}

.modal-default-button {
    float: right
}

.modalLoaded {
    opacity: 0;
    visibility: collapse
}

#ajax-content {
    position: relative;
    padding: 20px;
    height: 100%;
    box-sizing: border-box
}

#ajax-content h1 {
    margin: 20px 0;
    padding: 0;
    text-align: left
}

.modal-container .fa-close {
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 3;
    border: solid 1px #ebebeb;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 0 0 0 6px;
    border: solid 1px #ebebeb;
    background: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.modal-container .fa-close:before {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.modal-container .fa-close:hover {
    border-color: rgba(255, 78, 25, 1)
}

.modal-container .fa-close:hover:before {
    color: rgba(255, 78, 25, 1)
}

#ajax-content .editNow .before-after, #ajax-content .editNow .before-after:hover > img, #ajax-content img.placeholder {
    background: 0 0;
    cursor: pointer
}

.switchOnOff {
    height: 38px;
    display: inline-block;
    margin-left: 20px;
    position: relative;
    width: 74px;
    border: solid 1px rgba(230, 230, 230, 1);
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 3px
}

.switchOnOff > input {
    width: 50%;
    height: 38px;
    display: inline-block;
    opacity: 0;
    cursor: pointer;
    float: left
}

.switchOnOff > input + input + span {
    transition: left .6s;
    width: 38px;
    height: 38px;
    display: block;
    position: absolute;
    text-align: center;
    top: 0
}

.switchOnOff > input:checked + input + span {
    background: rgba(200, 200, 200, 1);
    z-index: 10;
    left: 0
}

.switchOnOff > input + input:checked + span {
    background: rgba(0, 200, 0, 1);
    z-index: 10;
    left: 50%;
    color: rgba(255, 255, 255, 1)
}

.switchOnOff > input + input + span:before {
    width: 100%;
    text-align: center;
    line-height: 38px
}

.switchOnOff > input:checked + input + span:before {
    content: 'Изк.'
}

.switchOnOff > input + input:checked + span:before {
    content: 'Вкл.'
}

body.modalLoaded, body.tos-opened {
    overflow: hidden
}

body .tos-pagination {
    opacity: 1
}

body.admin .tos-slide, body.admin .tos-slider, body.admin .tos-wrapper {
    height: calc(100% - 44px)
}

.editNow.open_modal {
    overflow: hidden
}

#ajax-content h1.modalHeadline {
    font-size: 32px;
    margin: 0 0 20px;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 2;
    left: 0;
    right: 0;
    color: rgba(0, 0, 0, 1);
    padding: 20px !important;
    box-shadow: 0 0 2px rgba(0, 0, 0, .3)
}

.action-box {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    height: 78px;
    padding: 20px;
    background: rgba(255, 255, 255, 1);
    z-index: 20;
    box-shadow: 0 0 2px rgba(100, 100, 100, .4)
}

.moduls-list-order li {
    font-size: 14px;
    line-height: 30px;
    cursor: move
}

.simple-content-edit {
    min-height: 100%;
    overflow-y: auto
}

.middle-content {
    padding-bottom: 100px;
    position: absolute;
    top: 85px;
    right: 0;
    bottom: 10px;
    left: 0;
    overflow: hidden
}

@media screen and (min-width: 1400px) {
    .middle-content {
        left: calc((100% - 1400px) / 2);
        right: calc((100% - 1400px) / 2)
    }
}

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

body {
    overflow-x: hidden
}

.bee3D--parent {
    -webkit-perspective: 600px;
    perspective: 600px
}

.bee3D--slide {
    position: absolute;
    -webkit-transform: none;
    transform: none;
    width: 1200px;
    height: 800px;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -400px;
    opacity: 0;
    transition: opacity .7s ease, -webkit-transform .7s ease;
    transition: opacity .7s ease, transform .7s ease;
    transition: opacity .7s ease, transform .7s ease, -webkit-transform .7s ease
}

.bee3D--slide__inactive {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none
}

.bee3D--slide__active {
    opacity: 1;
    z-index: 20000
}

.bee3D--inner {
    position: relative;
    width: 100%;
    height: 100%
}

.draggable {
    cursor: move;
    cursor: grab;
    cursor: -webkit-grab
}

.draggable:active {
    cursor: grabbing;
    cursor: -webkit-grabbing
}

.bee3D--parallax {
    position: relative !important
}

.bee3D--shadow-wrapper {
    position: absolute;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 100px
}

.bee3D--shadow > span {
    display: block;
    content: '';
    left: 0;
    width: 100%;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    box-shadow: 0 0 200px 50px rgba(0, 0, 0, .7);
    transition: opacity 1.5s;
    opacity: .15;
    -webkit-transform: rotateX(95deg) translateZ(30px) scale(.55);
    transform: rotateX(95deg) translateZ(30px) scale(.55)
}

.bee3D--nav {
    position: absolute;
    cursor: pointer;
    top: 50%;
    font-size: 8em;
    color: rgba(0, 0, 0, .45);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color .7s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 40px
}

.bee3D--nav__prev {
    background-image: url(/img/angle-left.svg);
    left: 3%
}

.bee3D--nav__next {
    background-image: url(/img/angle-right.svg);
    right: 3%
}

.bee3D--effect__classic .bee3D--before {
    -webkit-transform: translateX(-375%);
    transform: translateX(-375%)
}

.bee3D--effect__classic .bee3D--before-2 {
    -webkit-transform: translateX(-250%);
    transform: translateX(-250%);
    opacity: .1
}

.bee3D--effect__classic .bee3D--before-1 {
    -webkit-transform: translateX(-125%);
    transform: translateX(-125%);
    opacity: .3
}

.bee3D--effect__classic .bee3D--after {
    -webkit-transform: translateX(375%);
    transform: translateX(375%)
}

.bee3D--effect__classic .bee3D--after-2 {
    -webkit-transform: translateX(250%);
    transform: translateX(250%);
    opacity: .1
}

.bee3D--effect__classic .bee3D--after-1 {
    -webkit-transform: translateX(125%);
    transform: translateX(125%);
    opacity: .3
}

.bee3D--effect__carousel .bee3D--before {
    -webkit-transform: translateX(-191.4%) rotateY(-72deg) translateX(-252%);
    transform: translateX(-191.4%) rotateY(-72deg) translateX(-252%);
    opacity: 0
}

.bee3D--effect__carousel .bee3D--before-2 {
    -webkit-transform: translateX(-590px) rotateY(-52deg) translateX(-152.3%);
    transform: translateX(-590px) rotateY(-52deg) translateX(-152.3%);
    opacity: .3
}

.bee3D--effect__carousel .bee3D--before-1 {
    -webkit-transform: translateX(-52.7%) rotateY(-30deg) translateX(-56.6%);
    transform: translateX(-52.7%) rotateY(-30deg) translateX(-56.6%);
    opacity: .5
}

.bee3D--effect__carousel .bee3D--after {
    -webkit-transform: translateX(191.4%) rotateY(72deg) translateX(252%);
    transform: translateX(191.4%) rotateY(72deg) translateX(252%);
    opacity: 0
}

.bee3D--effect__carousel .bee3D--after-1 {
    -webkit-transform: translateX(52.7%) rotateY(30deg) translateX(56.6%);
    transform: translateX(52.7%) rotateY(30deg) translateX(56.6%);
    opacity: .5
}

.bee3D--effect__carousel .bee3D--after-2 {
    -webkit-transform: translateX(590px) rotateY(52deg) translateX(152.3%);
    transform: translateX(590px) rotateY(52deg) translateX(152.3%);
    opacity: .3
}

.bee3D--effect__concave .bee3D--before {
    -webkit-transform: translateX(-156%) rotateY(90deg) translateX(-156%);
    transform: translateX(-156%) rotateY(90deg) translateX(-156%)
}

.bee3D--effect__concave .bee3D--before-1 {
    -webkit-transform: translateX(-60.5%) rotateY(28deg) translateX(-46.8%);
    transform: translateX(-60.5%) rotateY(28deg) translateX(-46.8%);
    opacity: .4
}

.bee3D--effect__concave .bee3D--after {
    -webkit-transform: translateX(156%) rotateY(-90deg) translateX(156%);
    transform: translateX(156%) rotateY(-90deg) translateX(156%)
}

.bee3D--effect__concave .bee3D--after-1 {
    -webkit-transform: translateX(60.5%) rotateY(-28deg) translateX(46.8%);
    transform: translateX(60.5%) rotateY(-28deg) translateX(46.8%);
    opacity: .4
}

.bee3D--effect__coverflow .bee3D--before {
    -webkit-transform: translateX(-52.7%) rotateY(45deg) scale(.6);
    transform: translateX(-52.7%) rotateY(45deg) scale(.6);
    z-index: 6
}

.bee3D--effect__coverflow .bee3D--before-3 {
    -webkit-transform: translateX(-45%) rotateY(45deg) scale(.6);
    transform: translateX(-45%) rotateY(45deg) scale(.6);
    opacity: .1;
    z-index: 7
}

.bee3D--effect__coverflow .bee3D--before-2 {
    -webkit-transform: translateX(-37.1%) rotateY(45deg) scale(.6);
    transform: translateX(-37.1%) rotateY(45deg) scale(.6);
    opacity: .2;
    z-index: 8
}

.bee3D--effect__coverflow .bee3D--before-1 {
    -webkit-transform: translateX(-29.3%) rotateY(45deg) scale(.6);
    transform: translateX(-29.3%) rotateY(45deg) scale(.6);
    opacity: .3;
    z-index: 9
}

.bee3D--effect__coverflow .bee3D__active {
    z-index: 10
}

.bee3D--effect__coverflow .bee3D--after {
    -webkit-transform: translateX(52.7%) rotateY(-45deg) scale(.6);
    transform: translateX(52.7%) rotateY(-45deg) scale(.6);
    z-index: 6
}

.bee3D--effect__coverflow .bee3D--after-1 {
    -webkit-transform: translateX(29.3%) rotateY(-45deg) scale(.6);
    transform: translateX(29.3%) rotateY(-45deg) scale(.6);
    opacity: .3;
    z-index: 9
}

.bee3D--effect__coverflow .bee3D--after-2 {
    -webkit-transform: translateX(37.1%) rotateY(-45deg) scale(.6);
    transform: translateX(37.1%) rotateY(-45deg) scale(.6);
    opacity: .2;
    z-index: 8
}

.bee3D--effect__coverflow .bee3D--after-3 {
    -webkit-transform: translateX(45%) rotateY(-45deg) scale(.6);
    transform: translateX(45%) rotateY(-45deg) scale(.6);
    opacity: .1;
    z-index: 7
}

.bee3D--effect__cube .bee3D--before {
    -webkit-transform: translateX(-64.8%) rotateY(-70deg) translateX(-127.3%) rotateY(-110deg) translateX(-103.5%);
    transform: translateX(-64.8%) rotateY(-70deg) translateX(-127.3%) rotateY(-110deg) translateX(-103.5%)
}

.bee3D--effect__cube .bee3D--before-1 {
    -webkit-transform: translateX(-64.8%) rotateY(-70deg) translateX(-100%);
    transform: translateX(-64.8%) rotateY(-70deg) translateX(-100%);
    opacity: .5
}

.bee3D--effect__cube .bee3D--after {
    -webkit-transform: translateX(64.8%) rotateY(70deg) translateX(127.3%) rotateY(110deg) translateX(103.5%);
    transform: translateX(64.8%) rotateY(70deg) translateX(127.3%) rotateY(110deg) translateX(103.5%)
}

.bee3D--effect__cube .bee3D--after-1 {
    -webkit-transform: translateX(64.8%) rotateY(70deg) translateX(100%);
    transform: translateX(64.8%) rotateY(70deg) translateX(100%);
    opacity: .5
}

.bee3D--effect__arc .bee3D--before {
    -webkit-transform: translate(-146.5%, 63%) rotateZ(-17deg) scale(.5);
    transform: translate(-146.5%, 63%) rotateZ(-17deg) scale(.5);
    opacity: 0
}

.bee3D--effect__arc .bee3D--before-2 {
    -webkit-transform: translate(-109.5%, 42.3%) rotateZ(-14deg) scale(.6);
    transform: translate(-109.5%, 42.3%) rotateZ(-14deg) scale(.6);
    opacity: .3
}

.bee3D--effect__arc .bee3D--before-1 {
    -webkit-transform: translate(-67.5%, 19.5%) rotateZ(-8deg) scale(.8);
    transform: translate(-67.5%, 19.5%) rotateZ(-8deg) scale(.8);
    opacity: .5
}

.bee3D--effect__arc .bee3D--after {
    -webkit-transform: translate(146.5%, 63%) rotateZ(17deg) scale(.5);
    transform: translate(146.5%, 63%) rotateZ(17deg) scale(.5);
    opacity: 0
}

.bee3D--effect__arc .bee3D--after-1 {
    -webkit-transform: translate(67.5%, 19.5%) rotateZ(8deg) scale(.8);
    transform: translate(67.5%, 19.5%) rotateZ(8deg) scale(.8);
    opacity: .5
}

.bee3D--effect__arc .bee3D--after-2 {
    -webkit-transform: translate(109.5%, 42.3%) rotateZ(14deg) scale(.6);
    transform: translate(109.5%, 42.3%) rotateZ(14deg) scale(.6);
    opacity: .3
}

.bee3D--effect__wave .bee3D--before {
    -webkit-transform: translate(-134.7%, 31.6%) rotateZ(-6deg) rotateY(-15deg) scale(.4);
    transform: translate(-134.7%, 31.6%) rotateZ(-6deg) rotateY(-15deg) scale(.4);
    opacity: 0
}

.bee3D--effect__wave .bee3D--before-2 {
    -webkit-transform: translate(-109.3%, 26.3%) rotateZ(-14deg) rotateY(-40deg) scale(.55);
    transform: translate(-109.3%, 26.3%) rotateZ(-14deg) rotateY(-40deg) scale(.55);
    opacity: .3
}

.bee3D--effect__wave .bee3D--before-1 {
    -webkit-transform: translate(-80%, 14.5%) rotateZ(-11deg) rotateY(-30deg) scale(.8);
    transform: translate(-80%, 14.5%) rotateZ(-11deg) rotateY(-30deg) scale(.8);
    opacity: .5
}

.bee3D--effect__wave .bee3D--after {
    -webkit-transform: translate(134.7%, 31.6%) rotateZ(6deg) rotateY(15deg) scale(.4);
    transform: translate(134.7%, 31.6%) rotateZ(6deg) rotateY(15deg) scale(.4);
    opacity: 0
}

.bee3D--effect__wave .bee3D--after-1 {
    -webkit-transform: translate(80%, 14.5%) rotateZ(11deg) rotateY(30deg) scale(.8);
    transform: translate(80%, 14.5%) rotateZ(11deg) rotateY(30deg) scale(.8);
    opacity: .5
}

.bee3D--effect__wave .bee3D--after-2 {
    -webkit-transform: translate(109.3%, 26.3%) rotateZ(14deg) rotateY(40deg) scale(.55);
    transform: translate(109.3%, 26.3%) rotateZ(14deg) rotateY(40deg) scale(.55);
    opacity: .3
}

.bee3D--effect__spiral-right {
    overflow: hidden
}

.bee3D--effect__spiral-right .bee3D--before {
    -webkit-transform: translateX(-191.4%) rotateY(-72deg) translate(-252%, 600px);
    transform: translateX(-191.4%) rotateY(-72deg) translate(-252%, 600px);
    opacity: 0
}

.bee3D--effect__spiral-right .bee3D--before-2 {
    -webkit-transform: translateX(-115.2%) rotateY(-52deg) translate(-152.3%, 400px);
    transform: translateX(-115.2%) rotateY(-52deg) translate(-152.3%, 400px);
    opacity: .3
}

.bee3D--effect__spiral-right .bee3D--before-1 {
    -webkit-transform: translateX(-52.7%) rotateY(-30deg) translate(-56.6%, 200px);
    transform: translateX(-52.7%) rotateY(-30deg) translate(-56.6%, 200px);
    opacity: .5
}

.bee3D--effect__spiral-right .bee3D--after {
    -webkit-transform: translateX(191.4%) rotateY(72deg) translate(252%, -600px);
    transform: translateX(191.4%) rotateY(72deg) translate(252%, -600px);
    opacity: 0
}

.bee3D--effect__spiral-right .bee3D--after-1 {
    -webkit-transform: translateX(52.7%) rotateY(30deg) translate(56.6%, -200px);
    transform: translateX(52.7%) rotateY(30deg) translate(56.6%, -200px);
    opacity: .5
}

.bee3D--effect__spiral-right .bee3D--after-2 {
    -webkit-transform: translateX(115.2%) rotateY(52deg) translate(152.3%, -400px);
    transform: translateX(115.2%) rotateY(52deg) translate(152.3%, -400px);
    opacity: .3
}

.bee3D--effect__spiral-left {
    overflow: hidden
}

.bee3D--effect__spiral-left .bee3D--before {
    -webkit-transform: translateX(-191.4%) rotateY(-72deg) translate(-252%, -600px);
    transform: translateX(-191.4%) rotateY(-72deg) translate(-252%, -600px);
    opacity: 0
}

.bee3D--effect__spiral-left .bee3D--before-2 {
    -webkit-transform: translateX(-115.2%) rotateY(-52deg) translate(-152.3%, -400px);
    transform: translateX(-115.2%) rotateY(-52deg) translate(-152.3%, -400px);
    opacity: .3
}

.bee3D--effect__spiral-left .bee3D--before-1 {
    -webkit-transform: translateX(-52.7%) rotateY(-30deg) translate(-56.6%, -200px);
    transform: translateX(-52.7%) rotateY(-30deg) translate(-56.6%, -200px);
    opacity: .5
}

.bee3D--effect__spiral-left .bee3D--after {
    -webkit-transform: translateX(191.4%) rotateY(72deg) translate(252%, 600px);
    transform: translateX(191.4%) rotateY(72deg) translate(252%, 600px);
    opacity: 0
}

.bee3D--effect__spiral-left .bee3D--after-1 {
    -webkit-transform: translateX(52.7%) rotateY(30deg) translate(56.6%, 200px);
    transform: translateX(52.7%) rotateY(30deg) translate(56.6%, 200px);
    opacity: .5
}

.bee3D--effect__spiral-left .bee3D--after-2 {
    -webkit-transform: translateX(115.2%) rotateY(52deg) translate(152.3%, 400px);
    transform: translateX(115.2%) rotateY(52deg) translate(152.3%, 400px);
    opacity: .3
}

.bee3D--inner img {
    max-width: 100%;
    max-height: 100%;
    position: relative;
    top: 50%;
    transform: translate3D(0, -50%, 0)
}

#wrap-carousel, .carousel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box
}

#wrap-carousel {
    overflow: hidden
}

.bee3D--inner {
    vertical-align: middle;
    text-align: center;
    max-width: 100%
}

#wrap-carousel {
    overflow: hidden
}

.bee3D--slide__active img {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    border: solid 1px rgba(255, 255, 255, .2)
}

.header nav {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    top: 0;
    height: 70px;
    background: rgba(255, 255, 255, 1);
    padding-top: 35px
}

.header ul {
    padding: 20px 0 0;
    margin: 0
}

.header li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block
}

.header nav .main-navigation ul ul {
    position: absolute
}

.header nav .main-navigation > li {
    position: relative
}

.header nav .main-navigation ul > li ul {
    visibility: collapse;
    opacity: 0;
    transition: opacity .1s;
    position: absolute;
    background: rgba(255, 255, 255, 1);
    padding: 0;
    top: 60px;
    left: 50px;
    z-index: 20;
    box-shadow: 0 0 2px rgba(0, 0, 0, .3);
    border-top: solid 2px rgba(255, 78, 25, 1)
}

.header nav .main-navigation ul > li > ul::before {
    position: absolute;
    content: url(../img/bulet.png);
    left: 30px;
    top: -16px
}

.header nav .main-navigation ul li:hover ul {
    visibility: visible;
    transition: opacity .5s;
    opacity: 1
}

.header nav .main-navigation ul > li ul li {
    display: block;
    border-bottom: solid 1px rgba(0, 0, 0, .1);
    border-top: solid 1px rgba(255, 255, 255, .1)
}

.header nav .main-navigation ul > li ul li a {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    cursor: pointer;
    padding: 10px;
    display: block;
    white-space: pre;
    text-shadow: 1px 1px rgba(255, 255, 255, .1)
}

.header nav .main-navigation ul > li ul li a:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, .2);
    text-shadow: 1px 1px rgba(0, 0, 0, .3)
}

.header .main-navigation ul li:nth-child(n+2)::before {
    content: "|";
    color: rgba(245, 245, 245, 1);
    padding: 0 10px 0 8px
}

.header nav .main-navigation ul > li > a {
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 40px
}

.header nav li.logo {
    position: absolute;
    left: 5px;
    top: 30px;
    width: 300px
}

.header nav li.logo img {
    width: 100%
}

.header nav .current > a {
    color: rgba(255, 78, 25, 1) !important
}

.header nav > ul > li.mobile {
    content: ""
}

.navigation .mobile {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none
}

.navigation .mobile div {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 20%;
    background: rgba(255, 0, 0, 1);
    transition: top .3s .3s, transform .3s, opacity .3s .3s
}

.navigation .mobile div:nth-child(2) {
    top: 40%
}

.navigation .mobile div:nth-child(3) {
    top: 80%
}

.navigation.open .mobile div:nth-child(1) {
    top: 40%;
    transform: rotate(45deg)
}

.navigation.open .mobile div {
    transition: top .3s, transform .3s .3s, opacity .3s .3s
}

.navigation.open .mobile div:nth-child(2) {
    top: 40%;
    opacity: 0
}

.navigation.open .mobile div:nth-child(3) {
    top: 40%;
    transform: rotate(-45deg)
}
.list-with-images{
    margin: 20px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.list-with-images li h2{
    min-height: 54px;
}
.list-with-images li {
    list-style: none;
    width: 27%;
    text-align: center;
    margin-bottom: 40px;
}
.list-with-images li img{
    width: 100%;
    height: auto;
}
.list-with-images li p{
    text-align: left;
}
#post-listing{
    display: flex;
    flex-wrap: wrap;
}
#post-listing article{
    width: 100%;
    display: flex;
    border: solid 1px #ebebeb;
    border-bottom: none;
    box-sizing: border-box;
}
#post-listing article:last-child{
    border-bottom: solid 1px #ebebeb;
}
#post-listing article div,#post-listing article section{
    width: 50%;
    overflow: hidden;
}
#post-listing article:nth-child(2n) div{
    order: 2;
}
#post-listing article section{
    padding: 0 20px 20px 20px;
}
#post-listing article div img{
    width: 100%;
    display: block;
    min-width: 100%;
    min-height: 100%;
}
#post-listing article h1{
    margin-top: 0;
    padding: 20px 0 0 0;
    text-align: left;
}
@media screen and (max-width: 1250px)
{
    .list-with-images li{
        width: 45%;
    }
}
@media screen and (max-width: 800px)
{
    .list-with-images{
        justify-content: center;
    }
    .list-with-images li{
        width: 90%;
    }
    #post-listing article div,#post-listing article section{
        width: 100%;
    }
    #post-listing article{
        flex-wrap: wrap;
    }
    #post-listing article:nth-child(2n) div{
        order: initial;
    }
}
@media screen and (max-width: 1024px) {
    .navigation .mobile {
        display: inline-block
    }

    .navigation {
        left: -20px;
        right: -20px
    }

    .navigation ul .main-navigation {
        display: none
    }

    .navigation ul li.mobile {
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        right: 20px
    }

    .header nav li.logo {
        left: 0;
        margin: 0
    }

    .navigation.open .main-navigation {
        display: block;
        width: 100%;
        position: relative;
        left: 0;
        right: 0;
        top: 50px
    }

    .navigation.open .main-navigation > ul {
        margin-top: 0;
        padding: 0;
        background: #fff;
        overflow: hidden
    }

    .navigation.open .main-navigation > ul li {
        display: block;
        float: none;
        overflow: hidden
    }

    .header nav .main-navigation ul > li > a, .navigation.open li a {
        padding: 20px;
        display: block;
        border-bottom: solid 1px #ebebeb
    }

    .header nav li.logo {
        width: 200px
    }
}
.carousel-big{
    margin: 0;
    padding: 0;
}
.carousel-big li{
    display: none;
    padding: 0;
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.carousel-big li.current{
    display: flex;
    flex-basis: auto;
    box-align: center;
    align-items: center;
    justify-content: center;

}
.carousel-big li img{
    max-height: 100%;
    max-width: 100%;
}

.carousel-big li.navigation{
    display: block;
}
.carousel-big li.navigation button{
    position: absolute;
    height: 100%;
    width: 50px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    border: none;
    transition: all .5s;
    outline: none;
}
.carousel-big li.navigation button:hover{
    background-color: rgba(200,200,200,.5);
}
.carousel-big li.navigation button.nextItem{
    right: 0;
    background-image: url("/img/angle-right.svg");
}
.carousel-big li.navigation button.prevItem{
    left: 0;
    background-image: url("/img/angle-left.svg");
}
.open_modal{
    overflow: hidden;
}