/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.lh_animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.lh_animated.lh_infinite {
    animation-iteration-count: infinite
}

@keyframes bounce {
    20%,
    53%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

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

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

.lh_flash {
    animation-name: lhFlash;
}

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

.lh_pulse {
    animation-name: pulse
}

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

.lh_rubberBand {
    animation-name: rubberBand
}

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

.lh_shake {
    animation-name: shake
}

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

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

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

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

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

.lh_tada {
    animation-name: tada
}

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

.lh_wobble {
    animation-name: wobble
}

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

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

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

.lh_bounceIn {
    animation-name: bounceIn
}

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

.lh_bounceInDown {
    animation-name: bounceInDown
}

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

.lh_bounceInLeft {
    animation-name: bounceInLeft
}

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

.lh_bounceInRight {
    animation-name: bounceInRight
}

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

.lh_bounceInUp {
    animation-name: bounceInUp
}

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

.lh_bounceOut {
    animation-name: bounceOut
}

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

.lh_bounceOutDown {
    animation-name: bounceOutDown
}

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

.lh_bounceOutLeft {
    animation-name: bounceOutLeft
}

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

.lh_bounceOutRight {
    animation-name: bounceOutRight
}

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

.lh_bounceOutUp {
    animation-name: bounceOutUp
}

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

.lh_fadeIn {
    animation-name: fadeIn
}

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

.lh_fadeInDown {
    animation-name: fadeInDown
}

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

.lh_fadeInDownBig {
    animation-name: fadeInDownBig
}

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

.lh_fadeInLeft {
    animation-name: fadeInLeft
}

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

.lh_fadeInLeftBig {
    animation-name: fadeInLeftBig
}

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

.lh_fadeInRight {
    animation-name: fadeInRight
}

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

.lh_fadeInRightBig {
    animation-name: fadeInRightBig
}

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

.lh_fadeInUp {
    animation-name: fadeInUp
}

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

.lh_fadeInUpBig {
    animation-name: fadeInUpBig
}

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

.lh_fadeOut {
    animation-name: fadeOut
}

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

.lh_fadeOutDown {
    animation-name: fadeOutDown
}

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

.lh_fadeOutDownBig {
    animation-name: fadeOutDownBig
}

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

.lh_fadeOutLeft {
    animation-name: fadeOutLeft
}

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

.lh_fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

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

.lh_fadeOutRight {
    animation-name: fadeOutRight
}

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

.lh_fadeOutRightBig {
    animation-name: fadeOutRightBig
}

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

.lh_fadeOutUp {
    animation-name: fadeOutUp
}

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

.lh_fadeOutUpBig {
    animation-name: fadeOutUpBig
}

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

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

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

.lh_flipInX {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation-name: flipInX
}

.lh_flipInY,
.lh_flipOutX {
    -webkit-backface-visibility: hidden
}

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

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

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

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

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

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

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

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

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

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

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

.lh_rotateIn {
    animation-name: rotateIn
}

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

.lh_rotateInDownLeft {
    animation-name: rotateInDownLeft
}

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

.lh_rotateInDownRight {
    animation-name: rotateInDownRight
}

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

.lh_rotateInUpLeft {
    animation-name: rotateInUpLeft
}

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

.lh_rotateInUpRight {
    animation-name: rotateInUpRight
}

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

.lh_rotateOut {
    animation-name: rotateOut
}

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

.lh_rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

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

.lh_rotateOutDownRight {
    animation-name: rotateOutDownRight
}

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

.lh_rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

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

.lh_rotateOutUpRight {
    animation-name: rotateOutUpRight
}

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

.lh_hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }
    50% {
        transform: rotate(-10deg)
    }
    70% {
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.lh_jackInTheBox {
    animation-name: jackInTheBox
}

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

.lh_rollIn {
    animation-name: rollIn
}

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

.lh_rollOut {
    animation-name: rollOut
}

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

.lh_zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.lh_zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.lh_zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.lh_zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.lh_zoomInUp {
    animation-name: zoomInUp
}

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

.lh_zoomOut {
    animation-name: zoomOut
}

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

.lh_zoomOutDown {
    animation-name: zoomOutDown
}

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

.lh_zoomOutLeft {
    animation-name: zoomOutLeft
}

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

.lh_zoomOutRight {
    animation-name: zoomOutRight
}

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

.lh_zoomOutUp {
    animation-name: zoomOutUp
}

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

.lh_slideInDown {
    animation-name: slideInDown
}

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

.lh_slideInLeft {
    animation-name: slideInLeft
}

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

.lh_slideInRight {
    animation-name: slideInRight
}

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

.lh_slideInUp {
    animation-name: slideInUp
}

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

.lh_slideOutDown {
    animation-name: slideOutDown
}

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

.lh_slideOutLeft {
    animation-name: slideOutLeft
}

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

.lh_slideOutRight {
    animation-name: slideOutRight
}

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

.lh_slideOutUp {
    animation-name: slideOutUp
}

a,
a:hover,
a:focus,
a:active,
b,
em,
iframe,
img,
table,
tbody,
td,
tr,
label,
input,
div
{
    font-size: inherit;
    font-weight: 400;
    font-variant: normal;
    line-height: normal;

    position: static;

    visibility: visible;
    float: none;
    clear: none;

    box-sizing: content-box;
    min-width: 0;
    max-width: none;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 0;

    border-spacing: 0;
    border-collapse: collapse;

    text-align: left;
    vertical-align: baseline;
    text-decoration: none;
    text-indent: 0;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;

    border: none;
    border-radius: 0;
    outline: none;
    background: none;

    color: #000;
    display: block;
}

a
{
    color: blue !important;
    text-decoration: underline;
}
a,
a:hover,
a:focus,
a:active,
b,
em,
label
{
    display: inline;
}

input,
button {
    background-color: #fff;
}

.lh-so--widget {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 2147483647;
    /*z-index: 100;*/
}
.widget--container {
    width: 750px;
    height: 387px;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fffddb;
    background-image: url(https://media.leadhit.ru/upload/dmkpress/smart_back.png);
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    position: absolute;
    background-repeat: no-repeat;
}

.widget--logo-second {
    position: absolute;
    left: 0px; top: 0px; height: auto;
}

.widget--logo-third {
    position: absolute;
    left: 0px; top: 0px; height: auto;
}

.widget--logo {
    width: auto;
    height: auto;
    float: left;
    padding: 70px 0px 0px 50px;
}

.widget--info {
    padding: 50px 50px 50px 334px;
}

.widget--title {
     font: bold 28px Arial, sans-serif; line-height: 1.2; text-align: center; color: #070707; width: 350px;  margin: 0px 0px 0px 0px;
}

.widget--text {
     font: normal 18px Arial, sans-serif; line-height: 1.2; text-align: center; color: #636769; margin: 20px 0px 0px 0px; width: 350px;
}

.widget--text-second {
     
}

.widget--form {
    position: relative;
    top: 50px;
    right: 0px;
}

.widget--input {
    display: block;
    margin: -14px 0px 22px;;
    width: 350px;
    height: 38px;
    border: 1px solid #dfdfdf;
    font: normal 13px Arial, sans-serif;
    padding: 0px 12px;
    outline: none;
    box-sizing: border-box;
}

.first--widget--input {
    display: block;
    margin: -14px 0px 22px;;
    width: 350px;
    height: 38px;
    border: 1px solid #dfdfdf;
    font: normal 13px Arial, sans-serif;
    padding: 8px 12px;
    outline: none;
    box-sizing: border-box;
}

.additional_fields {
    height: 50px;
}

.additional--widget--input {
    display: block;
    width: 350px;
    height: 38px;
    border: 1px solid #dfdfdf;
    font: normal 13px Arial, sans-serif;
    padding: 8px 12px;
    outline: none;
    box-sizing: border-box;
}

.widget--error_text {
    color: #797979;
    font: normal 12px/16px Arial, sans-serif;
    position: absolute;
    top: -16px;
}

.additional_fields_error {
    color: #797979;
    font: normal 12px/16px Arial, sans-serif;
    top: -60px;
    position: relative;
}

.display_none {
    display: none;
}

.visibility_none {
    visibility: hidden;
}

.widget--submit {
    
    padding: 0px 0px;
    font: normal 22px/41px Arial, sans-serif;

    border: none;
    border-radius: 5px;

    /*background-color: #ffe213;*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffe213), to(#dca407));
    background-image: -webkit-linear-gradient(top, #ffe213, #dca407);
    background-image: -moz-linear-gradient(top, #ffe213, #dca407);
    background-image: -ms-linear-gradient(top, #ffe213, #dca407);
    background-image: -o-linear-gradient(top, #ffe213, #dca407);

    text-align: center;
    
    background: #8c8475; width: 350px; height: 41px; margin-left: 0px;
    line-height:42px; font-size:20pt; font-weight:700; font-family:Arial; text-shadow:1px 1px 1px rgba(150, 150, 150, 1); color:#fff; text-shadow:#555 1px 1px;
    
}

.widget--submit-active {
    cursor: pointer;

    background: linear-gradient(to top, #eab208, #fff417);
    color: #fff;
}

.widget--success-text {
    color: #000000; font-size:22px; padding: 100px 0px 0px 5px; width: 390px;
}

.agreement {
    position: relative;
    padding-left: 20px;
    margin-right: 14px;
    font: normal 12px Arial, sans-serif; top: -10px; left: 0px;
}
.ads-agreement {
    font: normal 12px Arial, sans-serif; top: -10px; left: 0px;
}

#agreement-val {
    position: absolute;
    left: 0px;
    top: 3px;
}

#ads-agreement-val {
    position: absolute;
    left: 0px;
}

.agreement label {
    cursor: pointer;
}

.widget--close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 40px 0 16px;
    min-height: 41px;
    font: normal 13px/41px Arial, sans-serif;
    background: url('https://media.leadhit.ru/widgets_v2/Smart_final/img/close-icon.png') no-repeat right 13px center transparent;
    color: purple;
    border-radius: 0 10px 0 10px;
    cursor: pointer;
}


/*  Ribbon  */
.widget--ribbon_wrapper_line {
    width: 118px;
    height: 119px;
    overflow: hidden;
    position: absolute;
    bottom: -4px;
    right: -4px;
    padding: 4px 0px 0px 4px;
}

.widget--ribbon_text {
    font: bold 18px Sans-Serif;
    text-align: center;
    text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    position: relative;
    height: 31px;
    line-height: 30px;
    left: 4px;
    top: 62px;
    width: 145px;
    color: #fff;
    background: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff417), to(#eab208));
    background-image: -webkit-linear-gradient(top, #fff417, #eab208);
    background-image: -moz-linear-gradient(top, #fff417, #eab208);
    background-image: -ms-linear-gradient(top, #fff417, #eab208);
    background-image: -o-linear-gradient(top, #fff417, #eab208);
}

.widget--ribbon_text:before, .widget--ribbon_text:after {
    position: absolute;
    top: -4px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.widget--ribbon_text:before {
    left: 0px;
    border-width: 4px 0 0 4px;
    border-color: transparent transparent transparent #fff417;
}

.widget--ribbon_text:after {
    right: 0;
    border-width: 0 0 4px 4px;
    border-color: transparent transparent #fff417 transparent;
}
#lh_point_of_capture,
#lh_wi_p_label {
    position: fixed;
    z-index: 2147483647;
}


#lh_point_of_capture .lh_poc_tooltip_wrapper {
    position: absolute;
    white-space: nowrap;
    top: 50%;
    overflow: hidden;
}

#lh_wi_points.lh_position_tl .lh_poc_tooltip_wrapper,
#lh_wi_points.lh_position_bl .lh_poc_tooltip_wrapper,
#lh_wi_points.lh_position_cl .lh_poc_tooltip_wrapper {
    padding: 0 0 0 10px;
    left: 0;
    -webkit-transform: translate(calc(64px + 36px), -50%);
        -ms-transform: translate(calc(64px + 36px), -50%);
            transform: translate(calc(64px + 36px), -50%);
}

#lh_wi_points.lh_position_tr .lh_poc_tooltip_wrapper,
#lh_wi_points.lh_position_br .lh_poc_tooltip_wrapper,
#lh_wi_points.lh_position_cr .lh_poc_tooltip_wrapper {
    padding: 0 10px 0 0;
    right: 0;
    -webkit-transform: translate(calc(-64px - 36px), -50%);
        -ms-transform: translate(calc(-64px - 36px), -50%);
            transform: translate(calc(-64px - 36px), -50%);
}

#lh_point_of_capture .lh_poc_tooltip_wrapper .lh_poc_tooltip {
    color: #fff;
    padding: 10px 16px;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 4px;
}
#lh_point_of_capture .lh_poc_tooltip_wrapper .lh_poc_tooltip .tooltip_arrow {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0px;
    height: 0px;
    -webkit-transition: right .3s ease;
    -o-transition: right .3s ease;
    transition: right .3s ease;
}

#lh_wi_points.lh_position_tl .lh_poc_tooltip_wrapper .lh_poc_tooltip .tooltip_arrow,
#lh_wi_points.lh_position_bl .lh_poc_tooltip_wrapper .lh_poc_tooltip .tooltip_arrow,
#lh_wi_points.lh_position_cl .lh_poc_tooltip_wrapper .lh_poc_tooltip .tooltip_arrow {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid rgba(0, 0, 0, 1);
    left: -20px;
}

#lh_wi_points.lh_position_tr .lh_poc_tooltip_wrapper .lh_poc_tooltip .tooltip_arrow,
#lh_wi_points.lh_position_br .lh_poc_tooltip_wrapper .lh_poc_tooltip .tooltip_arrow,
#lh_wi_points.lh_position_cr .lh_poc_tooltip_wrapper .lh_poc_tooltip .tooltip_arrow {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 10px solid rgba(0, 0, 0, 1);
    border-right: 10px solid transparent;
    right: -20px;
}
#lh_point_of_capture .lh_poc_image {
    width: 64px;
    height: 64px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .2);
            box-shadow: 0 0 6px rgba(0, 0, 0, .2);
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    cursor: pointer;
}
#lh_point_of_capture .lh_poc_image img {
    width: 100%;
}

#lh_wi_points.lh_position_cr #lh_wi_p_label,
#lh_wi_points.lh_position_cl #lh_wi_p_label {
    transform: translateY(0px);
    right: 0px;
    top: 100%;
    margin-top: -64px;
    display: block;
}

#lh_wi_points.lh_position_cl #lh_wi_p_label {
    left: 0;
    right: auto;
}

#lh_wi_points.lh_position_cr #lh_wi_p_label .lh_wipl_block,
#lh_wi_points.lh_position_cl #lh_wi_p_label .lh_wipl_block {
    -webkit-transform: rotate(180deg);
}

#lh_wi_p_label .lh_wipl_wrapper {
    cursor: pointer;
    height: 34px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .2);
            box-shadow: 0 0 6px rgba(0, 0, 0, .2);
}

#lh_wi_p_label .lh_wipl_block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#lh_wi_p_label .lh_wipl_image_wrapper {
    padding: 6px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
}

#lh_wi_p_label .lh_wipl_text {
    line-height: 34px;
    word-break: break-all;
}

#lh_wi_p_label .lh_wipl_image {
    display: block;
    height: 100%;
}

.widget--ribbon_wrapper {
    display: none;
}

.widget--container {
   border-radius: 0px;
   background-color: #ffffff;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.widget--info {
    padding: 50px 48px 0px 390px;
}

.widget--title {
   font-family: 'PT Sans Narrow', "Arial Narrow";
    line-height: 1.2;
    text-align: center;
    color: #58585a;
    width: 350px;
    margin: 0px 0px 0px 0px;
}

.widget--text {
    font-family: 'PT Sans Narrow', "Arial Narrow";
    line-height: 1.2;
    text-align: center;
    color: #636769;
    margin: 15px 0px 0px 0px;
    width: 350px;
}

.widget--input {
    border-radius: 0px;
    background: #fafafa;
    border: solid 1px #dbe7f1;
    transition: all .3s ease;
    display: block;
    margin: -21px 25px 22px;
    width: 300px;
    height: 33px;
    font-family: 'PT Sans Narrow', "Arial Narrow";
    padding: 0px 12px;
    outline: none;
    box-sizing: border-box;
    align-items: center;
}

.widget--input:focus {
    transition: all .5s ease;
    border: 1px solid #2877c0;
}

.widget--error_text {
    font: normal 12px "Proxima Nova",sans-serif;
    position: absolute;
    top: -20px;
    left: 26px;
    color: #2877c0;
    
}

.agreement {
    position: relative;
    padding-left: 20px;
    margin-right: 10px;
   font: normal 12px "Proxima Nova",sans-serif;
    top: -10px;
    left: 24px;
    margin-bottom: 20px;
}

.widget--submit {
    padding: 0px 0px;
    font-family: 'PT Sans Narrow Bold', "Arial Narrow";
    border: none;
    color: #ffffff;
    border-radius: 0px;
    background-color: #b7b6b4;
    width: 300px;
    height: 40px;
    margin-left: 25px;
    line-height: 35px;
    font-weight: 400;
    text-shadow:none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

#compile-lh-widget .widget--submit-active {
    font-family: 'PT Sans Narrow Bold', "Arial Narrow";
    text-transform: uppercase;
     background-image: none;
    background-color: #ffd200;
    color: #333333;
    text-decoration: underline;
}

#compile-lh-widget .widget--submit-active:hover {
    font-family: 'PT Sans Narrow Bold', "Arial Narrow";
    text-transform: uppercase;
    background-image: none;
    background-color:#ffd200;
    color: #333333;
    text-decoration: none;
    opacity: 1;
    -webkit-transition: background-color 0.3s ease;
   
}

#agreement_text {
    color: #58585a;
}

.agreement a{
    color: #2877c0 !important;
}


.widget--success-text {
    color: #58585a;
    padding: 100px 0px 0px 15px;
    width: 331px;
    margin-left: -5px;
    line-height: 36px;
    text-align: center;
    font-family: 'PT Sans Narrow Bold', "Arial Narrow";
}

#compile-lh-widget .widget--close {
    background-size: 12px!important;
}

#compile-lh-widget .widget--close:hover {
    opacity: 0.8;
}
