﻿.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
    }

@-webkit-keyframes bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

@keyframes bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    0% {
        transform: scaleX(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)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        transform: scaleX(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)
    }

    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {
    0%,to {
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(10px,0,0)
    }
}

@keyframes shake {
    0%,to {
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(10px,0,0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-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)
    }
}

@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)
    }
}

.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% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0)
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0)
    }
}

.swing {
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        transform: translateZ(0)
    }

    15% {
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes wobble {
    0% {
        transform: translateZ(0)
    }

    15% {
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        transform: translateZ(0)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {
    0%,11.1%,to {
        transform: translateZ(0)
    }

    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)
    }
}

@keyframes jello {
    0%,11.1%,to {
        transform: translateZ(0)
    }

    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)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    transform-origin: center
}

@-webkit-keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: scaleX(1)
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: scaleX(1)
    }
}

.bounceIn {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        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: translateZ(0)
    }
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        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: translateZ(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-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)
    }
}

@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)
    }
}

.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-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)
    }
}

@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)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-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)
    }
}

@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)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    0% {
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate(80deg);
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate(60deg);
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate(80deg);
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate(60deg);
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
    0% {
        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)
    }
}

@keyframes jackInTheBox {
    0% {
        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)
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 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;
        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 {
    0% {
        opacity: 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;
        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 {
    0% {
        opacity: 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;
        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 {
    0% {
        opacity: 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;
        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 {
    0% {
        opacity: 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;
        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 {
    0% {
        opacity: 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;
        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 {
    0% {
        opacity: 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;
        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 {
    0% {
        opacity: 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;
        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 {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        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;
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        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;
        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;
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        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;
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px,0,0);
        transform-origin: left center
    }
}

@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
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-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
    }
}

@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
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        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;
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        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;
        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;
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        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 {
    0% {
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,100%,0)
    }
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,100%,0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%,0,0)
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%,0,0)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%,0,0)
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%,0,0)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-100%,0)
    }
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-100%,0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

#info-scroll-call {
    position: fixed;
    bottom: 33%;
    left: 0;
    z-index: 9995;
    height: 52px;
    margin-top: -90px
}

    #info-scroll-call li {
        display: block;
        position: relative;
        left: -105px;
        float: none;
        width: auto;
        border-radius: 0 25px 25px 0;
        margin-bottom: 2px;
        background-color: #d34f07;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        transition: all .3s ease-in-out;
        height: 52px;
        line-height: 1.3em
    }

        #info-scroll-call li:before {
            content: "" !important
        }

        #info-scroll-call li a {
            display: block;
            padding: 2px 2px 2px 5px;
            font-family: sans-serif
        }

        #info-scroll-call li:hover {
            left: 0
        }

        #info-scroll-call li small {
            display: block;
            font-size: 16px;
            font-weight: 400
        }

        #info-scroll-call li .text {
            display: inline-block;
            text-align: center;
            font-size: 16px
        }

        #info-scroll-call li .icon {
            display: inline-block;
            float: right;
            width: 47px;
            height: 47px;
            margin: 1px 0 0 5px
        }

    #info-scroll-call a:hover .text {
        color: #fff
    }

#info-scroll-mail {
    position: fixed;
    bottom: 24%;
    left: 0;
    z-index: 9995;
    height: 52px;
    margin-top: -90px
}

    #info-scroll-mail li {
        display: block;
        position: relative;
        left: -155px;
        float: none;
        width: auto;
        border-radius: 0 25px 25px 0;
        margin-bottom: 2px;
        background-color: #d34f07;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        transition: all .3s ease-in-out;
        height: 52px;
        line-height: 1.3em
    }

        #info-scroll-mail li:before {
            content: "" !important
        }

        #info-scroll-mail li a {
            display: block;
            padding: 2px 2px 2px 5px;
            font-family: sans-serif
        }

        #info-scroll-mail li:hover {
            left: 0
        }

        #info-scroll-mail li small {
            display: block;
            font-size: 16px;
            font-weight: 400
        }

        #info-scroll-mail li .text {
            display: inline-block;
            text-align: center;
            font-size: 16px
        }

        #info-scroll-mail li .icon {
            display: inline-block;
            float: right;
            width: 47px;
            height: 47px;
            margin: 1px 0 0 5px
        }

    #info-scroll-mail a:hover .text {
        color: #fff
    }

#info-scroll-facebook {
    position: fixed;
    bottom: 15%;
    left: 0;
    z-index: 9995;
    height: 52px;
    margin-top: -90px
}

    #info-scroll-facebook li {
        display: block;
        position: relative;
        left: -92px;
        float: none;
        width: auto;
        border-radius: 0 25px 25px 0;
        margin-bottom: 2px;
        background-color: #d34f07;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        transition: all .3s ease-in-out;
        height: 52px;
        line-height: 1.3em
    }

        #info-scroll-facebook li:before {
            content: "" !important
        }

        #info-scroll-facebook li a {
            display: block;
            padding: 2px 2px 2px 5px;
            font-family: sans-serif
        }

        #info-scroll-facebook li:hover {
            left: 0
        }

        #info-scroll-facebook li small {
            display: block;
            font-size: 16px;
            font-weight: 400
        }

        #info-scroll-facebook li .text {
            display: inline-block;
            text-align: center;
            font-size: 16px
        }

        #info-scroll-facebook li .icon {
            display: inline-block;
            float: right;
            width: 47px;
            height: 47px;
            margin: 1px 0 0 5px
        }

    #info-scroll-facebook a:hover .text {
        color: #fff
    }

.b24-widget-button-social-tooltip {
    display: none !important
}

#menu-scroll {
    position: fixed;
    bottom: 25%;
    right: 10px;
    z-index: 9995;
    height: 70px;
    margin-top: -35px;
    top: 50%
}

    #menu-scroll li {
        display: block;
        position: relative;
        float: none
    }

    #menu-scroll .point {
        display: inline-block;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: #fff;
        box-shadow: inset 2px 2px 3px #d6d6d6
    }

    #menu-scroll .text {
        position: absolute;
        top: -5px;
        right: -1000px;
        width: 130px;
        height: auto;
        padding: 3px;
        border-radius: 16px;
        background-color: rgba(0,0,0,.6);
        color: #fff;
        text-align: center;
        opacity: 0;
        transition: all .2s ease-in-out
    }

    #menu-scroll a:hover .text {
        right: 20px;
        opacity: 1
    }

*, :after, :before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

.cf:after, .cf:before {
    content: "";
    display: table
}

.cf:after {
    clear: both
}

.searchform {
    background: #f4f4f4;
    background: hsla(0,0%,95.7%,.79);
    border: 1px solid #d3d3d3;
    padding: 2px 5px;
    margin: 0 0 0 -230px;
    width: auto;
    box-shadow: 0 4px 9px rgba(0,0,0,.37);
    -moz-box-shadow: 0 4px 9px rgba(0,0,0,.37);
    -webkit-box-shadow: 0 4px 9px rgba(0,0,0,.37);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px
}

    .searchform button, .searchform input, .searchform select {
        float: left
    }

    .searchform input {
        background: #fefefe;
        border: none;
        margin-right: 5px;
        padding: 10px;
        width: auto;
        box-shadow: inset 0 0 4px rgba(0,0,0,.4),1px 1px 1px hsla(0,0%,100%,.75);
        -moz-box-shadow: 0 0 4px rgba(0,0,0,.4) inset,1px 1px 1px hsla(0,0%,100%,.75);
        -webkit-box-shadow: 0 0 4px rgba(0,0,0,.4) inset,1px 1px 1px hsla(0,0%,100%,.75);
        border-radius: 9px;
        -moz-border-radius: 9px;
        -webkit-border-radius: 9px
    }

        .searchform input:focus {
            outline: 0;
            box-shadow: inset 0 0 4px #137d00;
            -moz-box-shadow: 0 0 4px #137d00 inset;
            -webkit-box-shadow: 0 0 4px #137d00 inset
        }

        .searchform input::-webkit-input-placeholder {
            font-style: italic;
            line-height: 15px
        }

        .searchform input:-moz-placeholder {
            font-style: italic;
            line-height: 15px
        }

    .searchform button {
        background: #137d00;
        border: none;
        color: #fff;
        cursor: pointer;
        font: 13px/13px HelveticaNeue,Helvetica,Arial,sans-serif;
        padding: 10px;
        width: auto;
        box-shadow: inset 0 0 2px #137d00;
        -moz-box-shadow: 0 0 2px #137d00 inset;
        -webkit-box-shadow: 0 0 2px #137d00 inset;
        border-radius: 9px;
        -moz-border-radius: 9px;
        -webkit-border-radius: 9px
    }

        .searchform button:hover {
            opacity: .9
        }

    .searchform select {
        background: #137d00;
        border: none;
        color: #fff;
        cursor: pointer;
        font: 13px/13px HelveticaNeue,Helvetica,Arial,sans-serif;
        padding: 10px;
        width: auto;
        box-shadow: inset 0 0 2px #137d00;
        -moz-box-shadow: 0 0 2px #137d00 inset;
        -webkit-box-shadow: 0 0 2px #137d00 inset;
        border-radius: 9px;
        -moz-border-radius: 9px;
        -webkit-border-radius: 9px;
        margin-right: 5px
    }

        .searchform select option {
            padding: 20px 0
        }

.button_follow_facebook {
    background: 0 0;
    width: 95px;
    height: 30px;
    position: absolute;
    top: 50px;
    right: 0
}

.follow_facebook_none {
    display: none
}

.btn-quick-alo-phone.btn-quick-alo-show {
    visibility: visible
}

.btn-quick-alo-ph-img-circle {
    width: 75px;
    height: 75px;
    top: 70px;
    left: 70px
}

.btn-quick-alo-phone {
    position: fixed;
    visibility: hidden;
    cursor: pointer;
    z-index: 200000 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    bottom: 95px;
    right: 0
}

.btn-quick-alo-ph-circle, .btn-quick-alo-phone {
    background-color: transparent;
    width: 80px;
    height: 80px
}

.btn-quick-alo-ph-circle {
    bottom: 0;
    left: 0;
    position: absolute;
    border-radius: 100%;
    border: 2px solid #bfebfc;
    opacity: .1;
    -webkit-animation: btn-quick-alo-circle-anim 1.2s ease-in-out infinite;
    animation: btn-quick-alo-circle-anim 1.2s ease-in-out infinite;
    transition: all .5s;
    transform-origin: 50% 50%
}

.btn-quick-alo-phone.btn-quick-alo-green .btn-quick-alo-ph-circle {
    border-color: #00a1ff;
    opacity: .5
}

.btn-quick-alo-ph-circle-fill {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    position: absolute;
    background-color: #000;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .1;
    -webkit-animation: btn-quick-alo-circle-fill-anim 2.3s ease-in-out infinite;
    animation: btn-quick-alo-circle-fill-anim 2.3s ease-in-out infinite;
    transition: all .5s;
    transform-origin: 50% 50%
}

.btn-quick-alo-phone.btn-quick-alo-green .btn-quick-alo-ph-circle-fill {
    background-color: rgba(0,161,255,.5);
    background-color: #a6e3fa;
    opacity: .75 !important
}

.btn-quick-alo-ph-img-circle {
    width: 40px;
    height: 40px;
    background-size: 30px;
    top: 20px;
    left: 20px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .7;
    -webkit-animation: btn-quick-alo-circle-img-anim 1s ease-in-out infinite;
    animation: btn-quick-alo-circle-img-anim 1s ease-in-out infinite;
    transform-origin: 50% 50%
}

.btn-quick-alo-phone.btn-quick-alo-green .btn-quick-alo-ph-img-circle {
    background-color: #00a1ff
}

.btn-quick-alo-phone.btn-quick-alo-hover, .btn-quick-alo-phone:hover {
    opacity: 1
}

.btn-quick-alo-phone.btn-quick-alo-green.btn-quick-alo-hover .btn-quick-alo-ph-img-circle, .btn-quick-alo-phone.btn-quick-alo-green:hover .btn-quick-alo-ph-img-circle {
    background-color: #ff5a00
}

.btn-quick-alo-phone.btn-quick-alo-green.btn-quick-alo-hover .btn-quick-alo-ph-circle-fill, .btn-quick-alo-phone.btn-quick-alo-green:hover .btn-quick-alo-ph-circle-fill {
    background-color: rgba(255,118,0,.5);
    background-color: #baf5a7;
    opacity: .75 !important
}

.btn-quick-alo-ph-circle {
    border-color: #00a1ff;
    opacity: .5
}

@-webkit-keyframes btn-quick-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    to {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes btn-quick-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    to {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@keyframes btn-quick-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    to {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-webkit-keyframes btn-quick-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    to {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

.btn-quick-mail-phone.btn-quick-mail-show {
    visibility: visible
}

.btn-quick-mail-ph-img-circle {
    width: 75px;
    height: 75px;
    top: 70px;
    left: 70px
}

.btn-quick-mail-phone {
    position: fixed;
    visibility: hidden;
    cursor: pointer;
    z-index: 200000 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    right: 0;
    bottom: 180px
}

.btn-quick-mail-ph-circle, .btn-quick-mail-phone {
    background-color: transparent;
    width: 80px;
    height: 80px
}

.btn-quick-mail-ph-circle {
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 100%;
    border: 2px solid #bfebfc;
    opacity: .1;
    -webkit-animation: btn-quick-alo-circle-anim 1.2s ease-in-out infinite;
    animation: btn-quick-alo-circle-anim 1.2s ease-in-out infinite;
    transition: all .5s;
    transform-origin: 50% 50%
}

.btn-quick-mail-phone.btn-quick-mail-green .btn-quick-mail-ph-circle {
    border-color: #00a1ff;
    opacity: .5
}

.btn-quick-mail-ph-circle-fill {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    position: absolute;
    background-color: #000;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .1;
    -webkit-animation: btn-quick-mail-circle-fill-anim 2.3s ease-in-out infinite;
    animation: btn-quick-mail-circle-fill-anim 2.3s ease-in-out infinite;
    transition: all .5s;
    transform-origin: 50% 50%
}

.btn-quick-mail-phone.btn-quick-mail-green .btn-quick-mail-ph-circle-fill {
    background-color: rgba(0,161,255,.5);
    background-color: #a6e3fa;
    opacity: .75 !important
}

.btn-quick-mail-ph-img-circle {
    width: 40px;
    height: 40px;
    background-size: 30px;
    top: 20px;
    left: 20px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .7;
    -webkit-animation: btn-quick-mail-circle-img-anim 1s ease-in-out infinite;
    animation: btn-quick-mail-circle-img-anim 1s ease-in-out infinite;
    transform-origin: 50% 50%
}

.btn-quick-mail-phone.btn-quick-mail-green .btn-quick-mail-ph-img-circle {
    background-color: #00a1ff
}

.btn-quick-mail-phone.btn-quick-mail-hover, .btn-quick-mail-phone:hover {
    opacity: 1
}

.btn-quick-mail-phone.btn-quick-mail-green.btn-quick-mail-hover .btn-quick-mail-ph-img-circle, .btn-quick-mail-phone.btn-quick-mail-green:hover .btn-quick-mail-ph-img-circle, .edit_btn_quick_mess_phone:hover .icon-facebook {
    background-color: #ff5a00 !important
}

.btn-quick-mail-phone.btn-quick-mail-green.btn-quick-mail-hover .btn-quick-mail-ph-circle-fill, .btn-quick-mail-phone.btn-quick-mail-green:hover .btn-quick-mail-ph-circle-fill {
    background-color: rgba(255,118,0,.5);
    background-color: #baf5a7;
    opacity: .75 !important
}

.btn-quick-mail-ph-circle {
    border-color: #00a1ff;
    opacity: .5
}

@-webkit-keyframes btn-quick-mail-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    to {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

@-webkit-keyframes btn-quick-mail-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    to {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@keyframes btn-quick-mail-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    to {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-webkit-keyframes btn-quick-mail-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    to {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

#chat-f-b img.chat-logo {
    padding-right: 15px;
    max-width: 40px;
    max-height: 40px
}

.quick-alo-show {
    width: 80px;
    height: 80px;
    z-index: 200000 !important;
    bottom: 265px;
    right: 0;
    position: fixed
}

#b-c-facebook {
    position: fixed;
    right: 10px;
    background: #3a5897;
    bottom: 0;
    z-index: 9999999999;
    width: 250px;
    height: auto;
    max-height: 375px;
    min-height: 38px;
    box-shadow: 2px 6px 6px 6px rgba(0,0,0,.09);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden
}

    #b-c-facebook .f-chat-conent {
        float: left;
        width: 100%;
        height: 335px;
        overflow: hidden;
        display: none;
        background-color: #fff;
        position: relative
    }

    #b-c-facebook .chat-f-b label {
        width: 185px
    }

    #b-c-facebook .chat-f-b, #b-c-facebook .chat-f-b label {
        line-height: 20px;
        margin: 0;
        cursor: pointer;
        font-size: 14px;
        color: #fff
    }

    #b-c-facebook .chat-f-b {
        float: left;
        padding: 0 25px 0 15px;
        width: 250px;
        color: #fff;
        height: 38px;
        line-height: 38px;
        background-color: #00b6dc;
        border: 0;
        z-index: 9999999;
        margin-right: 12px
    }

        #b-c-facebook .chat-f-b label {
            position: absolute;
            top: 10px
        }

.title-f-chat-icon {
    margin-left: -10px
}

#t_f_chat {
    float: left;
    position: absolute;
    right: 15px;
    top: 0
}

    #t_f_chat a {
        color: #fff;
        font-size: 17px;
        text-decoration: none
    }

.chat-left-5 {
    margin-left: 5px
}

#chat_f_close {
    opacity: .5
}

    #chat_f_close:hover {
        opacity: 1
    }

#fb_alert_num {
    background-color: #ff0;
    padding: 0 7px;
    color: red;
    border-radius: 40px;
    font-size: 13px;
    font-family: Arial;
    font-weight: 700;
    position: absolute;
    right: 55px;
    top: 12px;
    height: 20px;
    line-height: 20px;
    display: none !important
}

.quick-alo-green .quick-alo-ph-circle {
    border-color: #6bdfff;
    opacity: .99
}

.quick-alo-ph-circle {
    width: 80px;
    height: 80px;
    bottom: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #bfebfc;
    opacity: .1;
    -webkit-animation: quick-alo-circle-anim 1.2s ease-in-out infinite;
    animation: quick-alo-circle-anim 1.2s ease-in-out infinite;
    transition: all .5s;
    transform-origin: 50% 50%
}

.quick-alo-green .quick-alo-ph-circle-fill {
    background-color: #00c7ff;
    opacity: .75 !important
}

.quick-alo-ph-circle-fill {
    width: 60px;
    height: 60px;
    bottom: 10px;
    left: 10px;
    position: absolute;
    background-color: #000;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .1;
    -webkit-animation: quick-alo-circle-fill-anim 2.3s ease-in-out infinite;
    animation: quick-alo-circle-fill-anim 2.3s ease-in-out infinite;
    transition: all .5s;
    transform-origin: 50% 50%
}

.quick-alo-green .quick-alo-ph-img-circle {
    background-color: #00a1ff !important;
    background-size: 32px
}

.quick-alo-ph-img-circle {
    width: 42px;
    height: 42px;
    bottom: 20px;
    left: 20px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .7;
    -webkit-animation: quick-alo-circle-img-anim 1s ease-in-out infinite;
    animation: quick-alo-circle-img-anim 1s ease-in-out infinite;
    transform-origin: 50% 50%
}

.quick-alo-green.quick-alo-hover .quick-alo-ph-img-circle, .quick-alo-phone.quick-alo-green:hover .quick-alo-ph-img-circle {
    background-color: #00b0ff
}

@-webkit-keyframes quick-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }

    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }

    to {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-webkit-keyframes quick-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    to {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes quick-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    to {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.position_0 {
    bottom: 95px
}

.position_1 {
    bottom: 180px
}

.position_2 {
    bottom: 265px
}

.position_3 {
    bottom: 350px
}

.position_4 {
    bottom: 435px
}

.position_0.left_position {
    bottom: 45px
}

.position_1.left_position {
    bottom: 130px
}

.position_2.left_position {
    bottom: 215px
}

.position_3.left_position {
    bottom: 300px
}

.position_4.left_position {
    bottom: 385px
}

.big_size_button.position_0 {
    bottom: 120px
}

.big_size_button.position_1 {
    bottom: 210px
}

.big_size_button.position_2 {
    bottom: 300px
}

.big_size_button.position_3 {
    bottom: 390px
}

.big_size_button.position_4 {
    bottom: 480px
}

.big_size_button.position_0.left_position {
    bottom: 45px
}

.big_size_button.position_1.left_position {
    bottom: 135px
}

.big_size_button.position_2.left_position {
    bottom: 225px
}

.big_size_button.position_3.left_position {
    bottom: 315px
}

.big_size_button.position_4.left_position {
    bottom: 405px
}

.big_size_button .edit_btn_quick_ph_img_circle {
    width: 50px;
    height: 50px
}

.big_size_button .edit_btn_quick_ph_circle_fill {
    width: 80px;
    height: 80px;
    top: 55px;
    left: 55px
}

.big_size_button .edit_btn_quick_ph_circle {
    width: 100px;
    height: 100px;
    top: 45px;
    left: 45px;
    top: 0;
    left: 0
}

.big_size_button .edit_btn_quick_ph_circle_fill {
    top: 10px;
    left: 10px
}

.big_size_button .btn-quick-alo-ph-img-circle, .big_size_button .btn-quick-mail-ph-img-circle, .big_size_button .quick-alo-ph-img-circle {
    top: 25px;
    left: 25px;
    background-size: 40px
}

.big_size_button.btn-quick-alo-phone, .big_size_button.btn-quick-mail-phone, .big_size_button.quick-alo-show {
    right: 15px
}

.btn-quick-alo-phone.left_position, .btn-quick-mail-phone.left_position, .quick-alo-show.left_position {
    right: 15px
}

body .big_size_button .scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px
}

.big_size_button .scroll-top.active {
    right: 20px
}

.big_size_button .icon-facebook {
    background-size: 40px 40px !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.disabled-link {
    color: currentColor;
    pointer-events: none;
    cursor: not-allowed;
    opacity: .5;
    text-decoration: none
}

.addcart-link {
    cursor: pointer
}

#wb-modal-cart {
    z-index: 99999
}

    #wb-modal-cart .modal-title {
        font-size: 24px;
        font-weight: 700
    }

.wb_cart .form-my-account input[type=text], .wb_cart .form-my-account span.edit_message {
    border: 1px solid #e5e5e5;
    color: #999;
    height: 40px;
    padding: 0 20px;
    text-transform: none !important;
    width: 100%;
    margin-bottom: 10px
}

.wb_cart .form-my-account .title {
    margin-bottom: 26px
}

.wb_cart .form-my-account {
    width: 100%;
    max-width: 100%
}

.wb_cart .account-register {
    float: left;
    position: relative;
    width: 100%
}

    .wb_cart .account-register .form-my-account {
        float: right
    }

    .wb_cart .account-register:before {
        border-right: 1px solid #e5e5e5;
        content: "";
        height: 100%;
        left: -15px;
        position: absolute;
        top: 0;
        width: 1px
    }

.wb_cart .form-my-account > p {
    position: relative
}

.wb_cart .form-my-account label {
    color: #555;
    font-weight: 400;
    margin: 0
}

.wb_cart .form-my-account .ship-address label {
    color: #333
}

.wb_cart .form-my-account input[type=checkbox] + label:before {
    border: 1px solid #e5e5e5;
    content: "";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 14px;
    font-weight: 400;
    height: 20px;
    line-height: 18px;
    margin-right: 17px;
    text-align: center;
    vertical-align: middle;
    width: 20px
}

.wb_cart .form-my-account input[type=checkbox]:checked + label:before {
    font-family: FontAwesome;
    content: "\F00C"
}

.wb_cart .form-my-account input[type=checkbox] {
    display: none
}

.wb_cart .form-my-account a {
    position: absolute;
    right: 0;
    top: 0
}

.wb_cart .form-my-account input[type=submit] {
    border: none;
    color: #fff;
    height: 40px;
    margin-top: 10px;
    transition: all .3s ease-out 0s;
    width: 110px
}

    .wb_cart .form-my-account input[type=submit]:hover {
        background-color: #333
    }

.wb_cart .form-my-account > p:last-child {
    margin-top: 20px
}

.wb_cart .box-col2 input[type=text], .wb_cart .box-col2 span.edit_message {
    float: left;
    width: 47.5%
}

    .wb_cart .box-col2 input[type=text]:first-child, .wb_cart .box-col2 span.edit_message {
        margin-right: 5%
    }

.wb_cart .form-my-account textarea {
    border: 1px solid #e5e5e5;
    color: #999;
    padding: 10px 15px;
    text-transform: none;
    width: 100%;
    resize: none
}

.wb_cart .ship-address > label {
    font-size: 18px;
    text-transform: unset
}

.wb_cart .check-billing {
    border-right: 1px solid #e5e5e5;
    margin-right: -15px
}

.wb_cart .check-address {
    float: left;
    width: 100%
}

    .wb_cart .check-address .form-my-account {
        float: right
    }

.wb_cart .order_review_heading {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin: 50px 0 -1px;
    padding: 20px 0 10px;
    position: relative;
    text-transform: capitalize
}

.wb_cart .shop_table.woocommerce-checkout-review-order-table thread {
    position: relative
}

.shop_table p {
    margin: 0;
    text-align: left !important
}

.wb_cart td.product-thumbnail img {
    max-width: 100px
}

.wb_cart .woocommerce table.shop_table {
    border: 1px solid #e5e5e5;
    border-collapse: collapse;
    border-radius: 0;
    margin: 0 0 50px;
    text-align: left;
    width: 100%
}

    .wb_cart .woocommerce table.shop_table thead {
        background: #f4f4f4 none repeat scroll 0 0;
        font-weight: 700;
        position: relative;
        text-transform: uppercase
    }

        .wb_cart .woocommerce table.shop_table thead th {
            padding: 15px 20px;
            text-transform: capitalize
        }

    .wb_cart .woocommerce table.shop_table td {
        border-top: 1px solid #e5e5e5;
        padding: 15px 20px;
        vertical-align: middle
    }

.wb_cart .woocommerce table, .wb_cart .woocommerce td, .wb_cart .woocommerce th {
    border: 1px solid #e5e5e5 !important;
    color: #555;
    margin: 0;
    padding: 15px 10px !important
}

.wb_cart .woocommerce tfoot th {
    text-transform: uppercase
}

.wb_cart #shipping_method li {
    padding: 10px 0
}

    .wb_cart #shipping_method li label {
        cursor: pointer;
        margin: 0;
        padding-left: 25px;
        position: relative
    }

    .wb_cart #shipping_method li input[type=radio] {
        display: none
    }

#shopping-cart .pname.product-name {
    text-align: left
}

body.checkout input#coupon_code {
    margin-bottom: 0
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .wb_cart #shipping_method li input[type=radio] + label:before {
        line-height: 13px
    }
}

.wb_cart #shipping_method li input[type=radio] + label:before {
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    content: "";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 6px;
    font-weight: 400;
    height: 14px;
    left: 0;
    line-height: 13px;
    margin-right: 10px;
    position: absolute;
    text-align: center;
    top: 2px;
    vertical-align: middle;
    width: 14px
}

.wb_cart #shipping_method li input[type=radio]:checked + label:before {
    content: "\F111"
}

.wb_cart .payment_methods.methods, .wb_cart .ship_methods.methods {
    border: 1px solid #e5e5e5;
    margin: 0 0 -1px
}

    .wb_cart .payment_methods.methods li, .wb_cart .ship_methods.methods li {
        border-bottom: 1px solid #e5e5e5;
        padding: 20px
    }

        .wb_cart .payment_methods.methods li:last-child, .wb_cart .ship_methods.methods li:last-child {
            border: none
        }

        .wb_cart .payment_methods.methods li label, .wb_cart .ship_methods.methods li label {
            font-size: 18px;
            margin: 0 0 0 7px;
            text-transform: capitalize
        }

.wb_cart .payment_box.payment_method_bacs > p {
    margin: 5px 0 0;
    padding-left: 24px
}

.wb_cart .payment_method_paypal img {
    margin: -6px 10px 0;
    max-width: 160px
}

.wb_cart .form-row.place-order {
    border: 1px solid #e5e5e5;
    padding: 20px;
    text-align: right
}

    .wb_cart .form-row.place-order input[type=submit] {
        border: none;
        color: #fff;
        height: 40px;
        padding: 0 25px;
        text-transform: capitalize;
        transition: all .3s ease-out 0s
    }

        .wb_cart .form-row.place-order input[type=submit]:hover {
            background-color: #333
        }

.wb_cart .form-my-account select {
    border: 1px solid #e5e5e5;
    color: #999;
    height: 40px;
    padding: 0 20px;
    text-transform: capitalize;
    width: 100%;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
    margin-bottom: 10px
}

    .wb_cart .form-my-account select option {
        text-transform: capitalize;
        font-weight: 400;
        padding: 10px 20px
    }

.wb_cart .woocommerce table.shop_table td.actions {
    text-align: unset
}

.wb_cart .woocommerce table.shop_table td .coupon {
    float: left;
    padding-bottom: 20px
}

.wb_cart .woocommerce table.shop_table td.actions input[type=submit] {
    border: none;
    color: #fff;
    height: 40px;
    padding: 0 30px;
    font-size: 20px
}

    .wb_cart .woocommerce table.shop_table td.actions input[type=submit]:hover {
        background: #333 none repeat scroll 0 0
    }

.wb_cart .woocommerce table.shop_table td.actions input[type=text], .wb_cart .woocommerce table.shop_table td.actions span.edit_message {
    border: 1px solid #e5e5e5;
    color: #999;
    height: 36px;
    padding: 0 20px;
    width: 98%;
    margin-right: 15px;
    margin-bottom: 20px
}

.wb_cart .woocommerce .cart-content-page table.shop_table thead {
    background: #f4f4f4
}

    .wb_cart .woocommerce .cart-content-page table.shop_table thead th {
        border-color: #e5e5e5;
        color: #333
    }

.wb_cart .woocommerce .cart-content-page table.shop_table .product-thumbnail img {
    max-width: 70px
}

.wb_cart .cart-collaterals .cart_totals > h2 {
    background: #f4f4f4 none repeat scroll 0 0;
    border: 1px solid #e5e5e5;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 -1px;
    padding: 15px 20px;
    text-transform: uppercase
}

.wb_cart .content-cart-checkout > h2 {
    margin-bottom: 30px
}

.wb_cart .content-cart-checkout {
    margin-bottom: 50px
}

.wb_cart p {
    margin: 10px 0
}

.wb_cart .bg-color {
    background: #45bf61
}

.wb_cart .title100, .wb_cart .title12, .wb_cart .title120, .wb_cart .title14, .wb_cart .title16, .wb_cart .title18, .wb_cart .title24, .wb_cart .title30, .wb_cart .title40, .wb_cart .title48, .wb_cart .title60, .wb_cart .title90 {
    margin: 0;
    font-size: 14px
}

.wb_cart .title12 {
    font-size: 12px
}

.wb_cart .title16 {
    font-size: 16px
}

.wb_cart .title18 {
    font-size: 18px
}

.wb_cart .title24 {
    font-size: 24px
}

.wb_cart .title30 {
    font-size: 30px
}

.wb_cart .title40 {
    font-size: 40px
}

.wb_cart .title48 {
    font-size: 48px
}

.wb_cart .title60 {
    font-size: 60px
}

.wb_cart .title90 {
    font-size: 90px
}

.wb_cart .title120 {
    font-size: 120px
}

.wb_cart .title100 {
    font-size: 100px
}

.cardList {
    display: none
}

    .cardList.active {
        display: block
    }

.edit_bank_method {
    border-bottom: none !important
}

.shop_table th {
    text-align: center
}

span.message {
    position: absolute;
    bottom: -20px;
    color: red
}

.form-my-account, .form-my-account > p {
    max-width: 100%
}

    .form-my-account input[type=text], .form-my-account span.edit_message {
        text-transform: inherit
    }

.woocommerce .edit_table_cart table, .woocommerce .edit_table_cart table.shop_table, .woocommerce .edit_table_cart td, .woocommerce .edit_table_cart th {
    border: none !important
}

.edit_hide {
    display: none
}

.payment_bank {
    margin-top: 28px
}

.edit_payment {
    margin-bottom: 30px
}

.woocommerce table.shop_table td.actions input[type=button] {
    padding: 0 10px
}

.wb_cart .form-my-account span.edit_message {
    border: none;
    color: red;
    padding: 10px 20px;
    float: right;
    margin-bottom: 0
}

.wb_cart .woocommerce table.shop_table {
    margin: 0
}

    .wb_cart .woocommerce table.shop_table.shopping-cart-mini, .woocommerce table.shop_table.shopping-cart-mini, .woocommerce table.shop_table.shopping-cart-mini td, .woocommerce table.shop_table.shopping-cart-mini th {
        border: none !important
    }

        .woocommerce table.shop_table.shopping-cart-mini td {
            border-bottom: 1px solid #e5e5e5 !important;
            text-align: unset
        }

.wb_cart .actions.edit_coupon {
    padding: 20px 0 0 !important
}

.mini-cart-link {
    cursor: pointer
}

.edit_apply_coupon {
    padding: 8px 10px;
    height: auto;
    line-height: normal
}

#check-coupon {
    font-size: 14px
}

ul.bankList {
    clear: both;
    height: 202px;
    width: 636px
}

    ul.bankList li {
        list-style-position: outside;
        list-style-type: none;
        cursor: pointer;
        float: left;
        margin-right: 0;
        padding: 5px 2px;
        text-align: center;
        width: 90px
    }

.list-content li {
    list-style: none outside none;
    margin: 0 0 10px
}

    .list-content li .boxContent {
        display: none;
        border: 1px solid #ccc;
        padding: 10px
    }

    .list-content li.active .boxContent {
        display: block
    }

    .list-content li .boxContent ul {
        height: auto
    }

i.ACB, i.AGB, i.AMREX, i.BAB, i.BIDV, i.DAB, i.EXB, i.GPB, i.HDB, i.ICB, i.JCB, i.MASTE, i.MB, i.MSB, i.NAB, i.NVB, i.OJB, i.PGB, i.SCB, i.SEA, i.SGB, i.SHB, i.TCB, i.TPB, i.VAB, i.VCB, i.VIB, i.VISA, i.VPB {
    width: 80px;
    height: 30px;
    display: block;
    background: url(https://www.nganluong.vn/webskins/skins/nganluong/checkout/version3/images/bank_logo.png) no-repeat
}

i.MASTE {
    background-position: 0 -31px
}

i.AMREX {
    background-position: 0 -62px
}

i.JCB {
    background-position: 0 -93px
}

i.VCB {
    background-position: 0 -124px
}

i.TCB {
    background-position: 0 -155px
}

i.MB {
    background-position: 0 -186px
}

i.VIB {
    background-position: 0 -217px
}

i.ICB {
    background-position: 0 -248px
}

i.EXB {
    background-position: 0 -279px
}

i.ACB {
    background-position: 0 -310px
}

i.HDB {
    background-position: 0 -341px
}

i.MSB {
    background-position: 0 -372px
}

i.NVB {
    background-position: 0 -403px
}

i.DAB {
    background-position: 0 -434px
}

i.SHB {
    background-position: 0 -465px
}

i.OJB {
    background-position: 0 -496px
}

i.SEA {
    background-position: 0 -527px
}

i.TPB {
    background-position: 0 -558px
}

i.PGB {
    background-position: 0 -589px
}

i.BIDV {
    background-position: 0 -620px
}

i.AGB {
    background-position: 0 -651px
}

i.SCB {
    background-position: 0 -682px
}

i.VPB {
    background-position: 0 -713px
}

i.VAB {
    background-position: 0 -744px
}

i.GPB {
    background-position: 0 -775px
}

i.SGB {
    background-position: 0 -806px
}

i.NAB {
    background-position: 0 -837px
}

i.BAB {
    background-position: 0 -868px
}

ul.cardList li {
    cursor: pointer;
    float: left;
    margin-right: 0;
    padding: 5px 4px;
    text-align: center;
    width: 90px
}

.woocommerce table.shop_table td.actions input[type=button] {
    border: none;
    height: 36px;
    padding: 0 20px
}

.payment_description {
    margin-top: 5px;
    line-height: 20px;
    font-size: 90%;
    padding-left: 26px
}

    .payment_description p, .ship_description p {
        padding-top: 15px
    }

    .payment_description em {
        white-space: pre
    }

.payment_method_bacs label, .ship_method_bacs label {
    font-weight: 400;
    width: 90%
}

.edit_apply_coupon {
    vertical-align: top
}

.noti_coupon {
    width: 100%;
    text-align: center;
    float: left;
    display: none
}

    .noti_coupon .alert-danger {
        border: 2px dashed #ebccd1;
        background: 0 0
    }

.edit_coupon .coupon_message {
    display: none;
    width: 100%;
    float: left
}

    .edit_coupon .coupon_message h6 {
        margin: 10px 0
    }

.edit_coupon .alert-success {
    background: 0 0;
    border: none;
    padding: 5px
}

    .edit_coupon .alert-success p {
        color: #337ab7;
        margin: 0
    }

.shipping_fee .shipping_message {
    float: left;
    color: red;
    width: 100%;
    border: 2px dashed #ebccd1;
    background: 0 0
}

.shipping_fee .shipping_message_val {
    display: none;
    width: 100%
}

.order-total {
    font-size: 20px
}

#shopping-cart-mini .cart_item img.pimg.product-image {
    border: 1px solid #ccc;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    padding: 3px
}

#shopping-cart-mini .cart_item .pqty {
    position: absolute;
    left: 35px;
    width: 25px;
    height: 25px;
    background: #4f8bc1;
    border-radius: 50%;
    color: #fff;
    line-height: 25px;
    top: -10px
}

#shopping-cart-mini .cart_item .pimg-name {
    position: relative
}

.wb-tks-title {
    color: #45bf61
}

.wb-back-to-home {
    color: #337ab7
}

#shopping-cart-mini .alert {
    padding: 5px;
    margin-bottom: 0
}

#coupon_list .close {
    border-radius: 50%;
    background: #bbb;
    width: 25px;
    height: 25px;
    font-size: 20px;
    line-height: 25px;
    text-align: center
}

.wb_cart .form-my-account input[type=number] {
    border: 1px solid #e5e5e5;
    color: #999;
    height: 40px;
    padding: 0 20px;
    text-transform: capitalize;
    width: 100%;
    margin-bottom: 10px
}

    .wb_cart .form-my-account input[type=number]::-webkit-inner-spin-button, .wb_cart .form-my-account input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0
    }

.wb_cart .form-my-account input[type=number] {
    -moz-appearance: textfield
}

#shopping-cart .table {
    border: none;
    width: 100%
}

    #shopping-cart .table td {
        vertical-align: middle;
        padding: 15px 0;
        border: none;
        border: none !important;
        text-align: left
    }

#confirmGoToCartModal {
    width: 50%;
    margin: 0 auto;
    z-index: 99999
}

    #confirmGoToCartModal .btn-default {
        background-color: #fff;
        border-color: #ccc;
        color: #333
    }

        #confirmGoToCartModal .btn-default:hover {
            background-color: #e6e6e6;
            border-color: #adadad;
            color: #333
        }

#cartPage a.checkout-button:hover {
    background-color: #333
}

#cartPage {
    padding-bottom: 30px
}

    #cartPage #shopping-cart th {
        text-transform: uppercase
    }

    #cartPage #note_rules {
        text-align: center;
        margin-top: 30px
    }

    #cartPage #order_review {
        padding: 20px
    }

    #cartPage #stotal-mini {
        font-weight: 700
    }

    #cartPage .panel-body {
        padding: 0
    }

    #cartPage a#continueShipping {
        height: 42px
    }

    #cartPage td img, #cartPage td.product-thumbnail {
        max-width: 50px
    }

#wbFastOrderBox input {
    height: 40px
}

#wbFastOrderBox {
    margin-bottom: 10px
}

    #wbFastOrderBox button {
        color: #fff !important;
        display: inline-block;
        height: 40px;
        line-height: unset;
        padding: 0 25px;
        transition: all .3s ease-out 0s;
        border-radius: 0;
        font-size: medium
    }

.pr-0 {
    padding-right: 0
}

.pl-0 {
    padding-left: 0
}

body.cart #wbFastOrderBox button {
    padding: 0 15px
}

body.cart .gift-items {
    margin-top: 10px
}

    body.cart .gift-items .mb-2 {
        margin-bottom: 8px
    }

body.cart h1 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 24px
}

body.cart .fast-order-note {
    font-size: 80%;
    color: #666;
    margin-bottom: 5px;
    margin-top: -5px
}

body.cart #shopping-cart .wb-none-border-top {
    border-top: none
}

body.cart .noti_coupon {
    margin-top: 10px
}

    body.cart .noti_coupon .alert {
        padding: 5px
    }

body.cart .wb-main-content {
    padding-top: 40px;
    background-color: #fafafa
}

body.cart .cart-item-data, body.cart .cart-item-total {
    background-color: #fff;
    width: 100%
}

body.cart .cart-item-data {
    padding-top: 20px
}

body.cart .order-breadcrumb {
    display: none
}

body.cart .price-note {
    font-size: 80%;
    margin-top: 5px
}

    body.cart .price-note del {
        color: #a2a2a2
    }

    body.cart .price-note span {
        font-weight: 700;
        position: relative;
        margin-left: 13px
    }

        body.cart .price-note span:before {
            content: "";
            width: 1px;
            height: 12px;
            background: #787878;
            position: absolute;
            left: -8px;
            top: 2px
        }

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.quantity input {
    width: 45px;
    height: 42px;
    line-height: 1.65;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    border: 1px solid #eee;
    border-radius: unset
}

    .quantity input:focus {
        outline: 0
    }

.quantity-nav {
    float: left;
    position: relative;
    height: 42px;
    margin-left: 20px
}

.quantity-button {
    position: relative;
    cursor: pointer;
    border-right: 1px solid #eee;
    width: 20px;
    text-align: center;
    color: #333;
    font-size: 13px;
    font-family: Trebuchet MS,Helvetica,sans-serif !important;
    line-height: 1.7;
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none
}

    .quantity-button.quantity-up {
        position: absolute;
        height: 50%;
        top: 0;
        border-bottom: 1px solid #eee;
        border-top: 1px solid #eee
    }

    .quantity-button.quantity-down {
        position: absolute;
        bottom: 0;
        height: 50%;
        border-bottom: 1px solid #eee
    }

.shop_table .product-info {
    position: relative
}

.edit_cart {
    float: right;
    color: #337ab7
}

body.checkout a.btn-primary:link, body.checkout a.btn-primary:visited {
    color: #fff
}

#shopping-cart .pdelete {
    margin-top: 12px;
    font-size: 14px
}

    #shopping-cart .pdelete a.delete:hover {
        text-decoration: underline
    }

body.cart #loading:before, body.checkout #loading:before {
    background-color: rgba(21,185,173,0)
}

body.cart .sk-circle .sk-child:before, body.checkout .sk-circle .sk-child:before {
    background-color: #2f83b6
}

body.checkout .coupon_message {
    text-align: left
}

body.cart #coupon_list, body.checkout #coupon_list {
    margin-bottom: 0;
    margin-top: 0
}

    body.cart #coupon_list label, body.checkout #coupon_list label {
        font-weight: 700;
        padding: 5px 10px;
        margin-right: 10px;
        position: relative;
        background-color: red;
        color: #fff;
        margin-bottom: 0;
        margin-top: 10px
    }

        body.cart #coupon_list label a, body.checkout #coupon_list label a {
            position: absolute;
            top: -6px;
            right: -3px;
            background-color: #78a7ce;
            padding: 1px 4px;
            border-radius: 50%;
            color: #fff;
            font-weight: 400;
            font-size: 12px
        }

@media only screen and (max-width:767px) {
    .wb-product-delete, .wb-product-price, .wb-product-quantity, .wb-product-sub_total {
        display: none
    }

    #shopping-cart .pname.product-name {
        width: 95% !important
    }

    #cartPage td.product-thumbnail {
        padding: 0 !important
    }

    #cartPage td.product-info {
        text-align: left
    }

    .shop_table p {
        margin-bottom: 10px
    }

    span.pdelete.product-remove {
        position: absolute;
        top: 15px;
        right: 15px
    }

        span.pdelete.product-remove i {
            font-size: 18px;
            color: #797979
        }

    #cartPage td img {
        width: 80px;
        max-width: 80px
    }
}

@media only screen and (max-width:480px) {
    #shopping-cart .table td {
        white-space: normal
    }

    span.pdelete.product-remove {
        position: absolute;
        right: 10px
    }
}

@media only screen and (max-width:360px) {
    #btn_checkout, #continue_shopping {
        float: left !important;
        margin-bottom: 10px
    }
}

@media only screen and (max-width:350px) {
    .edit_cart {
        float: none
    }
}

.newsletters {
    display: inline-block;
    width: 100%
}

    .newsletters h2 {
        font-size: 20px;
        color: #000;
        font-weight: 600;
        text-transform: uppercase
    }

    .newsletters input {
        background: #f5f5f5 none repeat scroll 0 0;
        border: none;
        color: #000;
        height: 55px;
        margin: 0;
        padding: 0 20px;
        width: 390px
    }

    .newsletters button {
        border-radius: 0;
        background: #000;
        color: #fff;
        text-transform: uppercase;
        box-shadow: none;
        height: 55px;
        float: right;
        width: 180px;
        border: 1px solid #000;
        transition: .5s;
        letter-spacing: .5px
    }

        .newsletters button.btn-default:focus, .newsletters button:hover {
            background: #fff;
            border-color: #000;
            color: #000;
            transition: .5s;
            box-shadow: none
        }

.newsletter-popup .popup-text {
    text-align: center
}

.newsletter-popup .popup-image {
    margin-bottom: 35px
}

.newsletter-popup .checkbox label {
    color: #000
}

.newsletter-popup .popup-title {
    font-family: Open Sans;
    font-size: 80px;
    line-height: 60px;
    text-transform: capitalize;
    color: #000;
    font-weight: 700;
    padding-bottom: 0;
    float: left
}

    .newsletter-popup .popup-title span {
        font-size: 24px;
        margin-left: -20px
    }

.newsletter-popup, .success_msg {
    background: #f0f0f0;
    box-shadow: 0 4px 5.94px .06px rgba(0,0,0,.13);
    height: auto;
    left: 0;
    margin: 0 auto;
    padding: 25px;
    position: fixed;
    right: 0;
    top: 20%;
    width: 750px
}

.newsletter-popup-top {
    float: right;
    margin: 55px auto 0 20px;
    overflow: visible;
    padding: 0 0 50px;
    width: 290px
}

    .newsletter-popup-top .btn-default, .newsletter-popup-top .btn-default:hover {
        border: 0;
        transition: all .5s ease 0s;
        padding: 10px 18px;
        margin: 20px 0 0;
        float: left
    }

    .newsletter-popup-top .popup-desc {
        padding: 20px;
        color: #000;
        font-weight: 400;
        font-size: 14px;
        text-transform: uppercase;
        border-top: 1px solid #cecece;
        border-bottom: 1px solid #cecece;
        margin: 0 0 30px;
        line-height: 17px;
        text-align: left;
        clear: left
    }

        .newsletter-popup-top .popup-desc span {
            font-weight: 700
        }

    .newsletter-popup-top input {
        background: #fff none repeat scroll 0 0;
        border: 1px solid #fff;
        box-shadow: none;
        box-sizing: border-box;
        color: #333;
        font-size: 14px;
        margin: 0;
        padding: 5px 18px;
        width: 100%
    }

#xout {
    color: #000;
    cursor: pointer;
    font-size: 27px;
    font-weight: 300;
    height: 30px;
    position: absolute;
    right: 0;
    top: 10px;
    width: 30px
}

    #xout:hover {
        color: #555
    }

#checkme {
    margin: 20px 5px 0 0;
    width: 20px
}

label.checkme {
    clear: left;
    display: block;
    float: left
}
