@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

@keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    to {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

.ivu-load-loop {
    animation: ani-load-loop 1s linear infinite;
}

@keyframes ani-load-loop {
    from {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.input-group-error-prepend,
.input-group-error-append {
    background-color: #fff;
    border: 1px solid #ff3300;
}

.input-group-error-prepend .ivu-select-selection,
.input-group-error-append .ivu-select-selection {
    background-color: inherit;
    border: 1px solid transparent;
}

.input-group-error-prepend {
    border-right: 0;
}

.input-group-error-append {
    border-left: 0;
}

.ivu-breadcrumb {
    color: #999;
    font-size: 14px;
}

.ivu-breadcrumb a {
    color: #657180;
    transition: color 0.2s ease-in-out;
}

.ivu-breadcrumb a:hover {
    color: #5cadff;
}

.ivu-breadcrumb>span:last-child {
    font-weight: bold;
    color: #657180;
}

.ivu-breadcrumb>span:last-child .ivu-breadcrumb-item-separator {
    display: none;
}

.ivu-breadcrumb-item-separator {
    margin: 0 8px;
    color: #d7dde4;
}

.ivu-breadcrumb-item-link>.ivu-icon+span {
    margin-left: 4px;
}


/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */


/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */


/* Document
   ========================================================================== */

html {
    font-family: sans-serif;
    /* 1 */
    line-height: 1.15;
    /* 2 */
    -ms-text-size-adjust: 100%;
    /* 3 */
    -webkit-text-size-adjust: 100%;
    /* 3 */
}


/* Sections
   ========================================================================== */


/**
 * Remove the margin in all browsers (opinionated).
 */

body {
    margin: 0;
}


/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
    display: block;
}


/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}


/* Grouping content
   ========================================================================== */


/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main {
    /* 1 */
    display: block;
}


/**
 * Add the correct margin in IE 8.
 */

figure {
    margin: 1em 40px;
}


/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}


/* Text-level semantics
   ========================================================================== */


/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
    background-color: transparent;
    /* 1 */
    -webkit-text-decoration-skip: objects;
    /* 2 */
}


/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */

a:active,
a:hover {
    outline-width: 0;
}


/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}


/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
    font-weight: inherit;
}


/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}


/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
    font-style: italic;
}


/**
 * Add the correct background and color in IE 9-.
 */

mark {
    background-color: #ff0;
    color: #000;
}


/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}


/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}


/* Embedded content
   ========================================================================== */


/**
 * Add the correct display in IE 9-.
 */

audio,
video {
    display: inline-block;
}


/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}


/**
 * Remove the border on images inside links in IE 10-.
 */

img {
    border-style: none;
}


/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
    overflow: hidden;
}


/* Forms
   ========================================================================== */


/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}


/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
    /* 1 */
    overflow: visible;
}


/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
    /* 1 */
    text-transform: none;
}


/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
}


/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}


/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}


/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}


/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}


/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}


/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
    overflow: auto;
}


/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}


/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}


/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}


/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}


/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}


/* Interactive
   ========================================================================== */


/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details,
menu {
    display: block;
}


/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}


/* Scripting
   ========================================================================== */


/**
 * Add the correct display in IE 9-.
 */

canvas {
    display: inline-block;
}


/**
 * Add the correct display in IE.
 */

template {
    display: none;
}


/* Hidden
   ========================================================================== */


/**
 * Add the correct display in IE 10-.
 */

[hidden] {
    display: none;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:before,
*:after {
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #657180;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

ul,
ol {
    list-style: none;
}

input::-ms-clear,
input::-ms-reveal {
    display: none;
}

a {
    color: #3399ff;
    background: transparent;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

a:hover {
    color: #5cadff;
}

a:active {
    color: #3091f2;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

a[disabled] {
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

code,
kbd,
pre,
samp {
    font-family: Consolas, Menlo, Courier, monospace;
}


/*
Ionicons, v2.0.0
Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
https://twitter.com/benjsperry  https://twitter.com/ionicframework
MIT License: https://github.com/driftyco/ionicons
*/

@font-face {
    font-family: "Ionicons";
    src: url("../fonts/ionicons.eot?v=2.0.0");
    src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/ionicons.woff?v=2.0.0") format("woff"), url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
    font-weight: normal;
    font-style: normal;
}

.ivu-icon {
    display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ivu-icon-alert:before {
    content: "\f101";
}

.ivu-icon-alert-circled:before {
    content: "\f100";
}

.ivu-icon-android-add:before {
    content: "\f2c7";
}

.ivu-icon-android-add-circle:before {
    content: "\f359";
}

.ivu-icon-android-alarm-clock:before {
    content: "\f35a";
}

.ivu-icon-android-alert:before {
    content: "\f35b";
}

.ivu-icon-android-apps:before {
    content: "\f35c";
}

.ivu-icon-android-archive:before {
    content: "\f2c9";
}

.ivu-icon-android-arrow-back:before {
    content: "\f2ca";
}

.ivu-icon-android-arrow-down:before {
    content: "\f35d";
}

.ivu-icon-android-arrow-dropdown:before {
    content: "\f35f";
}

.ivu-icon-android-arrow-dropdown-circle:before {
    content: "\f35e";
}

.ivu-icon-android-arrow-dropleft:before {
    content: "\f361";
}

.ivu-icon-android-arrow-dropleft-circle:before {
    content: "\f360";
}

.ivu-icon-android-arrow-dropright:before {
    content: "\f363";
}

.ivu-icon-android-arrow-dropright-circle:before {
    content: "\f362";
}

.ivu-icon-android-arrow-dropup:before {
    content: "\f365";
}

.ivu-icon-android-arrow-dropup-circle:before {
    content: "\f364";
}

.ivu-icon-android-arrow-forward:before {
    content: "\f30f";
}

.ivu-icon-android-arrow-up:before {
    content: "\f366";
}

.ivu-icon-android-attach:before {
    content: "\f367";
}

.ivu-icon-android-bar:before {
    content: "\f368";
}

.ivu-icon-android-bicycle:before {
    content: "\f369";
}

.ivu-icon-android-boat:before {
    content: "\f36a";
}

.ivu-icon-android-bookmark:before {
    content: "\f36b";
}

.ivu-icon-android-bulb:before {
    content: "\f36c";
}

.ivu-icon-android-bus:before {
    content: "\f36d";
}

.ivu-icon-android-calendar:before {
    content: "\f2d1";
}

.ivu-icon-android-call:before {
    content: "\f2d2";
}

.ivu-icon-android-camera:before {
    content: "\f2d3";
}

.ivu-icon-android-cancel:before {
    content: "\f36e";
}

.ivu-icon-android-car:before {
    content: "\f36f";
}

.ivu-icon-android-cart:before {
    content: "\f370";
}

.ivu-icon-android-chat:before {
    content: "\f2d4";
}

.ivu-icon-android-checkbox:before {
    content: "\f374";
}

.ivu-icon-android-checkbox-blank:before {
    content: "\f371";
}

.ivu-icon-android-checkbox-outline:before {
    content: "\f373";
}

.ivu-icon-android-checkbox-outline-blank:before {
    content: "\f372";
}

.ivu-icon-android-checkmark-circle:before {
    content: "\f375";
}

.ivu-icon-android-clipboard:before {
    content: "\f376";
}

.ivu-icon-android-close:before {
    content: "\f2d7";
}

.ivu-icon-android-cloud:before {
    content: "\f37a";
}

.ivu-icon-android-cloud-circle:before {
    content: "\f377";
}

.ivu-icon-android-cloud-done:before {
    content: "\f378";
}

.ivu-icon-android-cloud-outline:before {
    content: "\f379";
}

.ivu-icon-android-color-palette:before {
    content: "\f37b";
}

.ivu-icon-android-compass:before {
    content: "\f37c";
}

.ivu-icon-android-contact:before {
    content: "\f2d8";
}

.ivu-icon-android-contacts:before {
    content: "\f2d9";
}

.ivu-icon-android-contract:before {
    content: "\f37d";
}

.ivu-icon-android-create:before {
    content: "\f37e";
}

.ivu-icon-android-delete:before {
    content: "\f37f";
}

.ivu-icon-android-desktop:before {
    content: "\f380";
}

.ivu-icon-android-document:before {
    content: "\f381";
}

.ivu-icon-android-done:before {
    content: "\f383";
}

.ivu-icon-android-done-all:before {
    content: "\f382";
}

.ivu-icon-android-download:before {
    content: "\f2dd";
}

.ivu-icon-android-drafts:before {
    content: "\f384";
}

.ivu-icon-android-exit:before {
    content: "\f385";
}

.ivu-icon-android-expand:before {
    content: "\f386";
}

.ivu-icon-android-favorite:before {
    content: "\f388";
}

.ivu-icon-android-favorite-outline:before {
    content: "\f387";
}

.ivu-icon-android-film:before {
    content: "\f389";
}

.ivu-icon-android-folder:before {
    content: "\f2e0";
}

.ivu-icon-android-folder-open:before {
    content: "\f38a";
}

.ivu-icon-android-funnel:before {
    content: "\f38b";
}

.ivu-icon-android-globe:before {
    content: "\f38c";
}

.ivu-icon-android-hand:before {
    content: "\f2e3";
}

.ivu-icon-android-hangout:before {
    content: "\f38d";
}

.ivu-icon-android-happy:before {
    content: "\f38e";
}

.ivu-icon-android-home:before {
    content: "\f38f";
}

.ivu-icon-android-image:before {
    content: "\f2e4";
}

.ivu-icon-android-laptop:before {
    content: "\f390";
}

.ivu-icon-android-list:before {
    content: "\f391";
}

.ivu-icon-android-locate:before {
    content: "\f2e9";
}

.ivu-icon-android-lock:before {
    content: "\f392";
}

.ivu-icon-android-mail:before {
    content: "\f2eb";
}

.ivu-icon-android-map:before {
    content: "\f393";
}

.ivu-icon-android-menu:before {
    content: "\f394";
}

.ivu-icon-android-microphone:before {
    content: "\f2ec";
}

.ivu-icon-android-microphone-off:before {
    content: "\f395";
}

.ivu-icon-android-more-horizontal:before {
    content: "\f396";
}

.ivu-icon-android-more-vertical:before {
    content: "\f397";
}

.ivu-icon-android-navigate:before {
    content: "\f398";
}

.ivu-icon-android-notifications:before {
    content: "\f39b";
}

.ivu-icon-android-notifications-none:before {
    content: "\f399";
}

.ivu-icon-android-notifications-off:before {
    content: "\f39a";
}

.ivu-icon-android-open:before {
    content: "\f39c";
}

.ivu-icon-android-options:before {
    content: "\f39d";
}

.ivu-icon-android-people:before {
    content: "\f39e";
}

.ivu-icon-android-person:before {
    content: "\f3a0";
}

.ivu-icon-android-person-add:before {
    content: "\f39f";
}

.ivu-icon-android-phone-landscape:before {
    content: "\f3a1";
}

.ivu-icon-android-phone-portrait:before {
    content: "\f3a2";
}

.ivu-icon-android-pin:before {
    content: "\f3a3";
}

.ivu-icon-android-plane:before {
    content: "\f3a4";
}

.ivu-icon-android-playstore:before {
    content: "\f2f0";
}

.ivu-icon-android-print:before {
    content: "\f3a5";
}

.ivu-icon-android-radio-button-off:before {
    content: "\f3a6";
}

.ivu-icon-android-radio-button-on:before {
    content: "\f3a7";
}

.ivu-icon-android-refresh:before {
    content: "\f3a8";
}

.ivu-icon-android-remove:before {
    content: "\f2f4";
}

.ivu-icon-android-remove-circle:before {
    content: "\f3a9";
}

.ivu-icon-android-restaurant:before {
    content: "\f3aa";
}

.ivu-icon-android-sad:before {
    content: "\f3ab";
}

.ivu-icon-android-search:before {
    content: "\f2f5";
}

.ivu-icon-android-send:before {
    content: "\f2f6";
}

.ivu-icon-android-settings:before {
    content: "\f2f7";
}

.ivu-icon-android-share:before {
    content: "\f2f8";
}

.ivu-icon-android-share-alt:before {
    content: "\f3ac";
}

.ivu-icon-android-star:before {
    content: "\f2fc";
}

.ivu-icon-android-star-half:before {
    content: "\f3ad";
}

.ivu-icon-android-star-outline:before {
    content: "\f3ae";
}

.ivu-icon-android-stopwatch:before {
    content: "\f2fd";
}

.ivu-icon-android-subway:before {
    content: "\f3af";
}

.ivu-icon-android-sunny:before {
    content: "\f3b0";
}

.ivu-icon-android-sync:before {
    content: "\f3b1";
}

.ivu-icon-android-textsms:before {
    content: "\f3b2";
}

.ivu-icon-android-time:before {
    content: "\f3b3";
}

.ivu-icon-android-train:before {
    content: "\f3b4";
}

.ivu-icon-android-unlock:before {
    content: "\f3b5";
}

.ivu-icon-android-upload:before {
    content: "\f3b6";
}

.ivu-icon-android-volume-down:before {
    content: "\f3b7";
}

.ivu-icon-android-volume-mute:before {
    content: "\f3b8";
}

.ivu-icon-android-volume-off:before {
    content: "\f3b9";
}

.ivu-icon-android-volume-up:before {
    content: "\f3ba";
}

.ivu-icon-android-walk:before {
    content: "\f3bb";
}

.ivu-icon-android-warning:before {
    content: "\f3bc";
}

.ivu-icon-android-watch:before {
    content: "\f3bd";
}

.ivu-icon-android-wifi:before {
    content: "\f305";
}

.ivu-icon-aperture:before {
    content: "\f313";
}

.ivu-icon-archive:before {
    content: "\f102";
}

.ivu-icon-arrow-down-a:before {
    content: "\f103";
}

.ivu-icon-arrow-down-b:before {
    content: "\f104";
}

.ivu-icon-arrow-down-c:before {
    content: "\f105";
}

.ivu-icon-arrow-expand:before {
    content: "\f25e";
}

.ivu-icon-arrow-graph-down-left:before {
    content: "\f25f";
}

.ivu-icon-arrow-graph-down-right:before {
    content: "\f260";
}

.ivu-icon-arrow-graph-up-left:before {
    content: "\f261";
}

.ivu-icon-arrow-graph-up-right:before {
    content: "\f262";
}

.ivu-icon-arrow-left-a:before {
    content: "\f106";
}

.ivu-icon-arrow-left-b:before {
    content: "\f107";
}

.ivu-icon-arrow-left-c:before {
    content: "\f108";
}

.ivu-icon-arrow-move:before {
    content: "\f263";
}

.ivu-icon-arrow-resize:before {
    content: "\f264";
}

.ivu-icon-arrow-return-left:before {
    content: "\f265";
}

.ivu-icon-arrow-return-right:before {
    content: "\f266";
}

.ivu-icon-arrow-right-a:before {
    content: "\f109";
}

.ivu-icon-arrow-right-b:before {
    content: "\f10a";
}

.ivu-icon-arrow-right-c:before {
    content: "\f10b";
}

.ivu-icon-arrow-shrink:before {
    content: "\f267";
}

.ivu-icon-arrow-swap:before {
    content: "\f268";
}

.ivu-icon-arrow-up-a:before {
    content: "\f10c";
}

.ivu-icon-arrow-up-b:before {
    content: "\f10d";
}

.ivu-icon-arrow-up-c:before {
    content: "\f10e";
}

.ivu-icon-asterisk:before {
    content: "\f314";
}

.ivu-icon-at:before {
    content: "\f10f";
}

.ivu-icon-backspace:before {
    content: "\f3bf";
}

.ivu-icon-backspace-outline:before {
    content: "\f3be";
}

.ivu-icon-bag:before {
    content: "\f110";
}

.ivu-icon-battery-charging:before {
    content: "\f111";
}

.ivu-icon-battery-empty:before {
    content: "\f112";
}

.ivu-icon-battery-full:before {
    content: "\f113";
}

.ivu-icon-battery-half:before {
    content: "\f114";
}

.ivu-icon-battery-low:before {
    content: "\f115";
}

.ivu-icon-beaker:before {
    content: "\f269";
}

.ivu-icon-beer:before {
    content: "\f26a";
}

.ivu-icon-bluetooth:before {
    content: "\f116";
}

.ivu-icon-bonfire:before {
    content: "\f315";
}

.ivu-icon-bookmark:before {
    content: "\f26b";
}

.ivu-icon-bowtie:before {
    content: "\f3c0";
}

.ivu-icon-briefcase:before {
    content: "\f26c";
}

.ivu-icon-bug:before {
    content: "\f2be";
}

.ivu-icon-calculator:before {
    content: "\f26d";
}

.ivu-icon-calendar:before {
    content: "\f117";
}

.ivu-icon-camera:before {
    content: "\f118";
}

.ivu-icon-card:before {
    content: "\f119";
}

.ivu-icon-cash:before {
    content: "\f316";
}

.ivu-icon-chatbox:before {
    content: "\f11b";
}

.ivu-icon-chatbox-working:before {
    content: "\f11a";
}

.ivu-icon-chatboxes:before {
    content: "\f11c";
}

.ivu-icon-chatbubble:before {
    content: "\f11e";
}

.ivu-icon-chatbubble-working:before {
    content: "\f11d";
}

.ivu-icon-chatbubbles:before {
    content: "\f11f";
}

.ivu-icon-checkmark:before {
    content: "\f122";
}

.ivu-icon-checkmark-circled:before {
    content: "\f120";
}

.ivu-icon-checkmark-round:before {
    content: "\f121";
}

.ivu-icon-chevron-down:before {
    content: "\f123";
}

.ivu-icon-chevron-left:before {
    content: "\f124";
}

.ivu-icon-chevron-right:before {
    content: "\f125";
}

.ivu-icon-chevron-up:before {
    content: "\f126";
}

.ivu-icon-clipboard:before {
    content: "\f127";
}

.ivu-icon-clock:before {
    content: "\f26e";
}

.ivu-icon-close:before {
    content: "\f12a";
}

.ivu-icon-close-circled:before {
    content: "\f128";
}

.ivu-icon-close-round:before {
    content: "\f129";
}

.ivu-icon-closed-captioning:before {
    content: "\f317";
}

.ivu-icon-cloud:before {
    content: "\f12b";
}

.ivu-icon-code:before {
    content: "\f271";
}

.ivu-icon-code-download:before {
    content: "\f26f";
}

.ivu-icon-code-working:before {
    content: "\f270";
}

.ivu-icon-coffee:before {
    content: "\f272";
}

.ivu-icon-compass:before {
    content: "\f273";
}

.ivu-icon-compose:before {
    content: "\f12c";
}

.ivu-icon-connection-bars:before {
    content: "\f274";
}

.ivu-icon-contrast:before {
    content: "\f275";
}

.ivu-icon-crop:before {
    content: "\f3c1";
}

.ivu-icon-cube:before {
    content: "\f318";
}

.ivu-icon-disc:before {
    content: "\f12d";
}

.ivu-icon-document:before {
    content: "\f12f";
}

.ivu-icon-document-text:before {
    content: "\f12e";
}

.ivu-icon-drag:before {
    content: "\f130";
}

.ivu-icon-earth:before {
    content: "\f276";
}

.ivu-icon-easel:before {
    content: "\f3c2";
}

.ivu-icon-edit:before {
    content: "\f2bf";
}

.ivu-icon-egg:before {
    content: "\f277";
}

.ivu-icon-eject:before {
    content: "\f131";
}

.ivu-icon-email:before {
    content: "\f132";
}

.ivu-icon-email-unread:before {
    content: "\f3c3";
}

.ivu-icon-erlenmeyer-flask:before {
    content: "\f3c5";
}

.ivu-icon-erlenmeyer-flask-bubbles:before {
    content: "\f3c4";
}

.ivu-icon-eye:before {
    content: "\f133";
}

.ivu-icon-eye-disabled:before {
    content: "\f306";
}

.ivu-icon-female:before {
    content: "\f278";
}

.ivu-icon-filing:before {
    content: "\f134";
}

.ivu-icon-film-marker:before {
    content: "\f135";
}

.ivu-icon-fireball:before {
    content: "\f319";
}

.ivu-icon-flag:before {
    content: "\f279";
}

.ivu-icon-flame:before {
    content: "\f31a";
}

.ivu-icon-flash:before {
    content: "\f137";
}

.ivu-icon-flash-off:before {
    content: "\f136";
}

.ivu-icon-folder:before {
    content: "\f139";
}

.ivu-icon-fork:before {
    content: "\f27a";
}

.ivu-icon-fork-repo:before {
    content: "\f2c0";
}

.ivu-icon-forward:before {
    content: "\f13a";
}

.ivu-icon-funnel:before {
    content: "\f31b";
}

.ivu-icon-gear-a:before {
    content: "\f13d";
}

.ivu-icon-gear-b:before {
    content: "\f13e";
}

.ivu-icon-grid:before {
    content: "\f13f";
}

.ivu-icon-hammer:before {
    content: "\f27b";
}

.ivu-icon-happy:before {
    content: "\f31c";
}

.ivu-icon-happy-outline:before {
    content: "\f3c6";
}

.ivu-icon-headphone:before {
    content: "\f140";
}

.ivu-icon-heart:before {
    content: "\f141";
}

.ivu-icon-heart-broken:before {
    content: "\f31d";
}

.ivu-icon-help:before {
    content: "\f143";
}

.ivu-icon-help-buoy:before {
    content: "\f27c";
}

.ivu-icon-help-circled:before {
    content: "\f142";
}

.ivu-icon-home:before {
    content: "\f144";
}

.ivu-icon-icecream:before {
    content: "\f27d";
}

.ivu-icon-image:before {
    content: "\f147";
}

.ivu-icon-images:before {
    content: "\f148";
}

.ivu-icon-information:before {
    content: "\f14a";
}

.ivu-icon-information-circled:before {
    content: "\f149";
}

.ivu-icon-ionic:before {
    content: "\f14b";
}

.ivu-icon-ios-alarm:before {
    content: "\f3c8";
}

.ivu-icon-ios-alarm-outline:before {
    content: "\f3c7";
}

.ivu-icon-ios-albums:before {
    content: "\f3ca";
}

.ivu-icon-ios-albums-outline:before {
    content: "\f3c9";
}

.ivu-icon-ios-americanfootball:before {
    content: "\f3cc";
}

.ivu-icon-ios-americanfootball-outline:before {
    content: "\f3cb";
}

.ivu-icon-ios-analytics:before {
    content: "\f3ce";
}

.ivu-icon-ios-analytics-outline:before {
    content: "\f3cd";
}

.ivu-icon-ios-arrow-back:before {
    content: "\f3cf";
}

.ivu-icon-ios-arrow-down:before {
    content: "\f3d0";
}

.ivu-icon-ios-arrow-forward:before {
    content: "\f3d1";
}

.ivu-icon-ios-arrow-left:before {
    content: "\f3d2";
}

.ivu-icon-ios-arrow-right:before {
    content: "\f3d3";
}

.ivu-icon-ios-arrow-thin-down:before {
    content: "\f3d4";
}

.ivu-icon-ios-arrow-thin-left:before {
    content: "\f3d5";
}

.ivu-icon-ios-arrow-thin-right:before {
    content: "\f3d6";
}

.ivu-icon-ios-arrow-thin-up:before {
    content: "\f3d7";
}

.ivu-icon-ios-arrow-up:before {
    content: "\f3d8";
}

.ivu-icon-ios-at:before {
    content: "\f3da";
}

.ivu-icon-ios-at-outline:before {
    content: "\f3d9";
}

.ivu-icon-ios-barcode:before {
    content: "\f3dc";
}

.ivu-icon-ios-barcode-outline:before {
    content: "\f3db";
}

.ivu-icon-ios-baseball:before {
    content: "\f3de";
}

.ivu-icon-ios-baseball-outline:before {
    content: "\f3dd";
}

.ivu-icon-ios-basketball:before {
    content: "\f3e0";
}

.ivu-icon-ios-basketball-outline:before {
    content: "\f3df";
}

.ivu-icon-ios-bell:before {
    content: "\f3e2";
}

.ivu-icon-ios-bell-outline:before {
    content: "\f3e1";
}

.ivu-icon-ios-body:before {
    content: "\f3e4";
}

.ivu-icon-ios-body-outline:before {
    content: "\f3e3";
}

.ivu-icon-ios-bolt:before {
    content: "\f3e6";
}

.ivu-icon-ios-bolt-outline:before {
    content: "\f3e5";
}

.ivu-icon-ios-book:before {
    content: "\f3e8";
}

.ivu-icon-ios-book-outline:before {
    content: "\f3e7";
}

.ivu-icon-ios-bookmarks:before {
    content: "\f3ea";
}

.ivu-icon-ios-bookmarks-outline:before {
    content: "\f3e9";
}

.ivu-icon-ios-box:before {
    content: "\f3ec";
}

.ivu-icon-ios-box-outline:before {
    content: "\f3eb";
}

.ivu-icon-ios-briefcase:before {
    content: "\f3ee";
}

.ivu-icon-ios-briefcase-outline:before {
    content: "\f3ed";
}

.ivu-icon-ios-browsers:before {
    content: "\f3f0";
}

.ivu-icon-ios-browsers-outline:before {
    content: "\f3ef";
}

.ivu-icon-ios-calculator:before {
    content: "\f3f2";
}

.ivu-icon-ios-calculator-outline:before {
    content: "\f3f1";
}

.ivu-icon-ios-calendar:before {
    content: "\f3f4";
}

.ivu-icon-ios-calendar-outline:before {
    content: "\f3f3";
}

.ivu-icon-ios-camera:before {
    content: "\f3f6";
}

.ivu-icon-ios-camera-outline:before {
    content: "\f3f5";
}

.ivu-icon-ios-cart:before {
    content: "\f3f8";
}

.ivu-icon-ios-cart-outline:before {
    content: "\f3f7";
}

.ivu-icon-ios-chatboxes:before {
    content: "\f3fa";
}

.ivu-icon-ios-chatboxes-outline:before {
    content: "\f3f9";
}

.ivu-icon-ios-chatbubble:before {
    content: "\f3fc";
}

.ivu-icon-ios-chatbubble-outline:before {
    content: "\f3fb";
}

.ivu-icon-ios-checkmark:before {
    content: "\f3ff";
}

.ivu-icon-ios-checkmark-empty:before {
    content: "\f3fd";
}

.ivu-icon-ios-checkmark-outline:before {
    content: "\f3fe";
}

.ivu-icon-ios-circle-filled:before {
    content: "\f400";
}

.ivu-icon-ios-circle-outline:before {
    content: "\f401";
}

.ivu-icon-ios-clock:before {
    content: "\f403";
}

.ivu-icon-ios-clock-outline:before {
    content: "\f402";
}

.ivu-icon-ios-close:before {
    content: "\f406";
}

.ivu-icon-ios-close-empty:before {
    content: "\f404";
}

.ivu-icon-ios-close-outline:before {
    content: "\f405";
}

.ivu-icon-ios-cloud:before {
    content: "\f40c";
}

.ivu-icon-ios-cloud-download:before {
    content: "\f408";
}

.ivu-icon-ios-cloud-download-outline:before {
    content: "\f407";
}

.ivu-icon-ios-cloud-outline:before {
    content: "\f409";
}

.ivu-icon-ios-cloud-upload:before {
    content: "\f40b";
}

.ivu-icon-ios-cloud-upload-outline:before {
    content: "\f40a";
}

.ivu-icon-ios-cloudy:before {
    content: "\f410";
}

.ivu-icon-ios-cloudy-night:before {
    content: "\f40e";
}

.ivu-icon-ios-cloudy-night-outline:before {
    content: "\f40d";
}

.ivu-icon-ios-cloudy-outline:before {
    content: "\f40f";
}

.ivu-icon-ios-cog:before {
    content: "\f412";
}

.ivu-icon-ios-cog-outline:before {
    content: "\f411";
}

.ivu-icon-ios-color-filter:before {
    content: "\f414";
}

.ivu-icon-ios-color-filter-outline:before {
    content: "\f413";
}

.ivu-icon-ios-color-wand:before {
    content: "\f416";
}

.ivu-icon-ios-color-wand-outline:before {
    content: "\f415";
}

.ivu-icon-ios-compose:before {
    content: "\f418";
}

.ivu-icon-ios-compose-outline:before {
    content: "\f417";
}

.ivu-icon-ios-contact:before {
    content: "\f41a";
}

.ivu-icon-ios-contact-outline:before {
    content: "\f419";
}

.ivu-icon-ios-copy:before {
    content: "\f41c";
}

.ivu-icon-ios-copy-outline:before {
    content: "\f41b";
}

.ivu-icon-ios-crop:before {
    content: "\f41e";
}

.ivu-icon-ios-crop-strong:before {
    content: "\f41d";
}

.ivu-icon-ios-download:before {
    content: "\f420";
}

.ivu-icon-ios-download-outline:before {
    content: "\f41f";
}

.ivu-icon-ios-drag:before {
    content: "\f421";
}

.ivu-icon-ios-email:before {
    content: "\f423";
}

.ivu-icon-ios-email-outline:before {
    content: "\f422";
}

.ivu-icon-ios-eye:before {
    content: "\f425";
}

.ivu-icon-ios-eye-outline:before {
    content: "\f424";
}

.ivu-icon-ios-fastforward:before {
    content: "\f427";
}

.ivu-icon-ios-fastforward-outline:before {
    content: "\f426";
}

.ivu-icon-ios-filing:before {
    content: "\f429";
}

.ivu-icon-ios-filing-outline:before {
    content: "\f428";
}

.ivu-icon-ios-film:before {
    content: "\f42b";
}

.ivu-icon-ios-film-outline:before {
    content: "\f42a";
}

.ivu-icon-ios-flag:before {
    content: "\f42d";
}

.ivu-icon-ios-flag-outline:before {
    content: "\f42c";
}

.ivu-icon-ios-flame:before {
    content: "\f42f";
}

.ivu-icon-ios-flame-outline:before {
    content: "\f42e";
}

.ivu-icon-ios-flask:before {
    content: "\f431";
}

.ivu-icon-ios-flask-outline:before {
    content: "\f430";
}

.ivu-icon-ios-flower:before {
    content: "\f433";
}

.ivu-icon-ios-flower-outline:before {
    content: "\f432";
}

.ivu-icon-ios-folder:before {
    content: "\f435";
}

.ivu-icon-ios-folder-outline:before {
    content: "\f434";
}

.ivu-icon-ios-football:before {
    content: "\f437";
}

.ivu-icon-ios-football-outline:before {
    content: "\f436";
}

.ivu-icon-ios-game-controller-a:before {
    content: "\f439";
}

.ivu-icon-ios-game-controller-a-outline:before {
    content: "\f438";
}

.ivu-icon-ios-game-controller-b:before {
    content: "\f43b";
}

.ivu-icon-ios-game-controller-b-outline:before {
    content: "\f43a";
}

.ivu-icon-ios-gear:before {
    content: "\f43d";
}

.ivu-icon-ios-gear-outline:before {
    content: "\f43c";
}

.ivu-icon-ios-glasses:before {
    content: "\f43f";
}

.ivu-icon-ios-glasses-outline:before {
    content: "\f43e";
}

.ivu-icon-ios-grid-view:before {
    content: "\f441";
}

.ivu-icon-ios-grid-view-outline:before {
    content: "\f440";
}

.ivu-icon-ios-heart:before {
    content: "\f443";
}

.ivu-icon-ios-heart-outline:before {
    content: "\f442";
}

.ivu-icon-ios-help:before {
    content: "\f446";
}

.ivu-icon-ios-help-empty:before {
    content: "\f444";
}

.ivu-icon-ios-help-outline:before {
    content: "\f445";
}

.ivu-icon-ios-home:before {
    content: "\f448";
}

.ivu-icon-ios-home-outline:before {
    content: "\f447";
}

.ivu-icon-ios-infinite:before {
    content: "\f44a";
}

.ivu-icon-ios-infinite-outline:before {
    content: "\f449";
}

.ivu-icon-ios-information:before {
    content: "\f44d";
}

.ivu-icon-ios-information-empty:before {
    content: "\f44b";
}

.ivu-icon-ios-information-outline:before {
    content: "\f44c";
}

.ivu-icon-ios-ionic-outline:before {
    content: "\f44e";
}

.ivu-icon-ios-keypad:before {
    content: "\f450";
}

.ivu-icon-ios-keypad-outline:before {
    content: "\f44f";
}

.ivu-icon-ios-lightbulb:before {
    content: "\f452";
}

.ivu-icon-ios-lightbulb-outline:before {
    content: "\f451";
}

.ivu-icon-ios-list:before {
    content: "\f454";
}

.ivu-icon-ios-list-outline:before {
    content: "\f453";
}

.ivu-icon-ios-location:before {
    content: "\f456";
}

.ivu-icon-ios-location-outline:before {
    content: "\f455";
}

.ivu-icon-ios-locked:before {
    content: "\f458";
}

.ivu-icon-ios-locked-outline:before {
    content: "\f457";
}

.ivu-icon-ios-loop:before {
    content: "\f45a";
}

.ivu-icon-ios-loop-strong:before {
    content: "\f459";
}

.ivu-icon-ios-medical:before {
    content: "\f45c";
}

.ivu-icon-ios-medical-outline:before {
    content: "\f45b";
}

.ivu-icon-ios-medkit:before {
    content: "\f45e";
}

.ivu-icon-ios-medkit-outline:before {
    content: "\f45d";
}

.ivu-icon-ios-mic:before {
    content: "\f461";
}

.ivu-icon-ios-mic-off:before {
    content: "\f45f";
}

.ivu-icon-ios-mic-outline:before {
    content: "\f460";
}

.ivu-icon-ios-minus:before {
    content: "\f464";
}

.ivu-icon-ios-minus-empty:before {
    content: "\f462";
}

.ivu-icon-ios-minus-outline:before {
    content: "\f463";
}

.ivu-icon-ios-monitor:before {
    content: "\f466";
}

.ivu-icon-ios-monitor-outline:before {
    content: "\f465";
}

.ivu-icon-ios-moon:before {
    content: "\f468";
}

.ivu-icon-ios-moon-outline:before {
    content: "\f467";
}

.ivu-icon-ios-more:before {
    content: "\f46a";
}

.ivu-icon-ios-more-outline:before {
    content: "\f469";
}

.ivu-icon-ios-musical-note:before {
    content: "\f46b";
}

.ivu-icon-ios-musical-notes:before {
    content: "\f46c";
}

.ivu-icon-ios-navigate:before {
    content: "\f46e";
}

.ivu-icon-ios-navigate-outline:before {
    content: "\f46d";
}

.ivu-icon-ios-nutrition:before {
    content: "\f470";
}

.ivu-icon-ios-nutrition-outline:before {
    content: "\f46f";
}

.ivu-icon-ios-paper:before {
    content: "\f472";
}

.ivu-icon-ios-paper-outline:before {
    content: "\f471";
}

.ivu-icon-ios-paperplane:before {
    content: "\f474";
}

.ivu-icon-ios-paperplane-outline:before {
    content: "\f473";
}

.ivu-icon-ios-partlysunny:before {
    content: "\f476";
}

.ivu-icon-ios-partlysunny-outline:before {
    content: "\f475";
}

.ivu-icon-ios-pause:before {
    content: "\f478";
}

.ivu-icon-ios-pause-outline:before {
    content: "\f477";
}

.ivu-icon-ios-paw:before {
    content: "\f47a";
}

.ivu-icon-ios-paw-outline:before {
    content: "\f479";
}

.ivu-icon-ios-people:before {
    content: "\f47c";
}

.ivu-icon-ios-people-outline:before {
    content: "\f47b";
}

.ivu-icon-ios-person:before {
    content: "\f47e";
}

.ivu-icon-ios-person-outline:before {
    content: "\f47d";
}

.ivu-icon-ios-personadd:before {
    content: "\f480";
}

.ivu-icon-ios-personadd-outline:before {
    content: "\f47f";
}

.ivu-icon-ios-photos:before {
    content: "\f482";
}

.ivu-icon-ios-photos-outline:before {
    content: "\f481";
}

.ivu-icon-ios-pie:before {
    content: "\f484";
}

.ivu-icon-ios-pie-outline:before {
    content: "\f483";
}

.ivu-icon-ios-pint:before {
    content: "\f486";
}

.ivu-icon-ios-pint-outline:before {
    content: "\f485";
}

.ivu-icon-ios-play:before {
    content: "\f488";
}

.ivu-icon-ios-play-outline:before {
    content: "\f487";
}

.ivu-icon-ios-plus:before {
    content: "\f48b";
}

.ivu-icon-ios-plus-empty:before {
    content: "\f489";
}

.ivu-icon-ios-plus-outline:before {
    content: "\f48a";
}

.ivu-icon-ios-pricetag:before {
    content: "\f48d";
}

.ivu-icon-ios-pricetag-outline:before {
    content: "\f48c";
}

.ivu-icon-ios-pricetags:before {
    content: "\f48f";
}

.ivu-icon-ios-pricetags-outline:before {
    content: "\f48e";
}

.ivu-icon-ios-printer:before {
    content: "\f491";
}

.ivu-icon-ios-printer-outline:before {
    content: "\f490";
}

.ivu-icon-ios-pulse:before {
    content: "\f493";
}

.ivu-icon-ios-pulse-strong:before {
    content: "\f492";
}

.ivu-icon-ios-rainy:before {
    content: "\f495";
}

.ivu-icon-ios-rainy-outline:before {
    content: "\f494";
}

.ivu-icon-ios-recording:before {
    content: "\f497";
}

.ivu-icon-ios-recording-outline:before {
    content: "\f496";
}

.ivu-icon-ios-redo:before {
    content: "\f499";
}

.ivu-icon-ios-redo-outline:before {
    content: "\f498";
}

.ivu-icon-ios-refresh:before {
    content: "\f49c";
}

.ivu-icon-ios-refresh-empty:before {
    content: "\f49a";
}

.ivu-icon-ios-refresh-outline:before {
    content: "\f49b";
}

.ivu-icon-ios-reload:before {
    content: "\f49d";
}

.ivu-icon-ios-reverse-camera:before {
    content: "\f49f";
}

.ivu-icon-ios-reverse-camera-outline:before {
    content: "\f49e";
}

.ivu-icon-ios-rewind:before {
    content: "\f4a1";
}

.ivu-icon-ios-rewind-outline:before {
    content: "\f4a0";
}

.ivu-icon-ios-rose:before {
    content: "\f4a3";
}

.ivu-icon-ios-rose-outline:before {
    content: "\f4a2";
}

.ivu-icon-ios-search:before {
    content: "\f4a5";
}

.ivu-icon-ios-search-strong:before {
    content: "\f4a4";
}

.ivu-icon-ios-settings:before {
    content: "\f4a7";
}

.ivu-icon-ios-settings-strong:before {
    content: "\f4a6";
}

.ivu-icon-ios-shuffle:before {
    content: "\f4a9";
}

.ivu-icon-ios-shuffle-strong:before {
    content: "\f4a8";
}

.ivu-icon-ios-skipbackward:before {
    content: "\f4ab";
}

.ivu-icon-ios-skipbackward-outline:before {
    content: "\f4aa";
}

.ivu-icon-ios-skipforward:before {
    content: "\f4ad";
}

.ivu-icon-ios-skipforward-outline:before {
    content: "\f4ac";
}

.ivu-icon-ios-snowy:before {
    content: "\f4ae";
}

.ivu-icon-ios-speedometer:before {
    content: "\f4b0";
}

.ivu-icon-ios-speedometer-outline:before {
    content: "\f4af";
}

.ivu-icon-ios-star:before {
    content: "\f4b3";
}

.ivu-icon-ios-star-half:before {
    content: "\f4b1";
}

.ivu-icon-ios-star-outline:before {
    content: "\f4b2";
}

.ivu-icon-ios-stopwatch:before {
    content: "\f4b5";
}

.ivu-icon-ios-stopwatch-outline:before {
    content: "\f4b4";
}

.ivu-icon-ios-sunny:before {
    content: "\f4b7";
}

.ivu-icon-ios-sunny-outline:before {
    content: "\f4b6";
}

.ivu-icon-ios-telephone:before {
    content: "\f4b9";
}

.ivu-icon-ios-telephone-outline:before {
    content: "\f4b8";
}

.ivu-icon-ios-tennisball:before {
    content: "\f4bb";
}

.ivu-icon-ios-tennisball-outline:before {
    content: "\f4ba";
}

.ivu-icon-ios-thunderstorm:before {
    content: "\f4bd";
}

.ivu-icon-ios-thunderstorm-outline:before {
    content: "\f4bc";
}

.ivu-icon-ios-time:before {
    content: "\f4bf";
}

.ivu-icon-ios-time-outline:before {
    content: "\f4be";
}

.ivu-icon-ios-timer:before {
    content: "\f4c1";
}

.ivu-icon-ios-timer-outline:before {
    content: "\f4c0";
}

.ivu-icon-ios-toggle:before {
    content: "\f4c3";
}

.ivu-icon-ios-toggle-outline:before {
    content: "\f4c2";
}

.ivu-icon-ios-trash:before {
    content: "\f4c5";
}

.ivu-icon-ios-trash-outline:before {
    content: "\f4c4";
}

.ivu-icon-ios-undo:before {
    content: "\f4c7";
}

.ivu-icon-ios-undo-outline:before {
    content: "\f4c6";
}

.ivu-icon-ios-unlocked:before {
    content: "\f4c9";
}

.ivu-icon-ios-unlocked-outline:before {
    content: "\f4c8";
}

.ivu-icon-ios-upload:before {
    content: "\f4cb";
}

.ivu-icon-ios-upload-outline:before {
    content: "\f4ca";
}

.ivu-icon-ios-videocam:before {
    content: "\f4cd";
}

.ivu-icon-ios-videocam-outline:before {
    content: "\f4cc";
}

.ivu-icon-ios-volume-high:before {
    content: "\f4ce";
}

.ivu-icon-ios-volume-low:before {
    content: "\f4cf";
}

.ivu-icon-ios-wineglass:before {
    content: "\f4d1";
}

.ivu-icon-ios-wineglass-outline:before {
    content: "\f4d0";
}

.ivu-icon-ios-world:before {
    content: "\f4d3";
}

.ivu-icon-ios-world-outline:before {
    content: "\f4d2";
}

.ivu-icon-ipad:before {
    content: "\f1f9";
}

.ivu-icon-iphone:before {
    content: "\f1fa";
}

.ivu-icon-ipod:before {
    content: "\f1fb";
}

.ivu-icon-jet:before {
    content: "\f295";
}

.ivu-icon-key:before {
    content: "\f296";
}

.ivu-icon-knife:before {
    content: "\f297";
}

.ivu-icon-laptop:before {
    content: "\f1fc";
}

.ivu-icon-leaf:before {
    content: "\f1fd";
}

.ivu-icon-levels:before {
    content: "\f298";
}

.ivu-icon-lightbulb:before {
    content: "\f299";
}

.ivu-icon-link:before {
    content: "\f1fe";
}

.ivu-icon-load-a:before {
    content: "\f29a";
}

.ivu-icon-load-b:before {
    content: "\f29b";
}

.ivu-icon-load-c:before {
    content: "\f29c";
}

.ivu-icon-load-d:before {
    content: "\f29d";
}

.ivu-icon-location:before {
    content: "\f1ff";
}

.ivu-icon-lock-combination:before {
    content: "\f4d4";
}

.ivu-icon-locked:before {
    content: "\f200";
}

.ivu-icon-log-in:before {
    content: "\f29e";
}

.ivu-icon-log-out:before {
    content: "\f29f";
}

.ivu-icon-loop:before {
    content: "\f201";
}

.ivu-icon-magnet:before {
    content: "\f2a0";
}

.ivu-icon-male:before {
    content: "\f2a1";
}

.ivu-icon-man:before {
    content: "\f202";
}

.ivu-icon-map:before {
    content: "\f203";
}

.ivu-icon-medkit:before {
    content: "\f2a2";
}

.ivu-icon-merge:before {
    content: "\f33f";
}

.ivu-icon-mic-a:before {
    content: "\f204";
}

.ivu-icon-mic-b:before {
    content: "\f205";
}

.ivu-icon-mic-c:before {
    content: "\f206";
}

.ivu-icon-minus:before {
    content: "\f209";
}

.ivu-icon-minus-circled:before {
    content: "\f207";
}

.ivu-icon-minus-round:before {
    content: "\f208";
}

.ivu-icon-model-s:before {
    content: "\f2c1";
}

.ivu-icon-monitor:before {
    content: "\f20a";
}

.ivu-icon-more:before {
    content: "\f20b";
}

.ivu-icon-mouse:before {
    content: "\f340";
}

.ivu-icon-music-note:before {
    content: "\f20c";
}

.ivu-icon-navicon:before {
    content: "\f20e";
}

.ivu-icon-navicon-round:before {
    content: "\f20d";
}

.ivu-icon-navigate:before {
    content: "\f2a3";
}

.ivu-icon-network:before {
    content: "\f341";
}

.ivu-icon-no-smoking:before {
    content: "\f2c2";
}

.ivu-icon-nuclear:before {
    content: "\f2a4";
}

.ivu-icon-outlet:before {
    content: "\f342";
}

.ivu-icon-paintbrush:before {
    content: "\f4d5";
}

.ivu-icon-paintbucket:before {
    content: "\f4d6";
}

.ivu-icon-paper-airplane:before {
    content: "\f2c3";
}

.ivu-icon-paperclip:before {
    content: "\f20f";
}

.ivu-icon-pause:before {
    content: "\f210";
}

.ivu-icon-person:before {
    content: "\f213";
}

.ivu-icon-person-add:before {
    content: "\f211";
}

.ivu-icon-person-stalker:before {
    content: "\f212";
}

.ivu-icon-pie-graph:before {
    content: "\f2a5";
}

.ivu-icon-pin:before {
    content: "\f2a6";
}

.ivu-icon-pinpoint:before {
    content: "\f2a7";
}

.ivu-icon-pizza:before {
    content: "\f2a8";
}

.ivu-icon-plane:before {
    content: "\f214";
}

.ivu-icon-planet:before {
    content: "\f343";
}

.ivu-icon-play:before {
    content: "\f215";
}

.ivu-icon-playstation:before {
    content: "\f30a";
}

.ivu-icon-plus:before {
    content: "\f218";
}

.ivu-icon-plus-circled:before {
    content: "\f216";
}

.ivu-icon-plus-round:before {
    content: "\f217";
}

.ivu-icon-podium:before {
    content: "\f344";
}

.ivu-icon-pound:before {
    content: "\f219";
}

.ivu-icon-power:before {
    content: "\f2a9";
}

.ivu-icon-pricetag:before {
    content: "\f2aa";
}

.ivu-icon-pricetags:before {
    content: "\f2ab";
}

.ivu-icon-printer:before {
    content: "\f21a";
}

.ivu-icon-pull-request:before {
    content: "\f345";
}

.ivu-icon-qr-scanner:before {
    content: "\f346";
}

.ivu-icon-quote:before {
    content: "\f347";
}

.ivu-icon-radio-waves:before {
    content: "\f2ac";
}

.ivu-icon-record:before {
    content: "\f21b";
}

.ivu-icon-refresh:before {
    content: "\f21c";
}

.ivu-icon-reply:before {
    content: "\f21e";
}

.ivu-icon-reply-all:before {
    content: "\f21d";
}

.ivu-icon-ribbon-a:before {
    content: "\f348";
}

.ivu-icon-ribbon-b:before {
    content: "\f349";
}

.ivu-icon-sad:before {
    content: "\f34a";
}

.ivu-icon-sad-outline:before {
    content: "\f4d7";
}

.ivu-icon-scissors:before {
    content: "\f34b";
}

.ivu-icon-search:before {
    content: "\f21f";
}

.ivu-icon-settings:before {
    content: "\f2ad";
}

.ivu-icon-share:before {
    content: "\f220";
}

.ivu-icon-shuffle:before {
    content: "\f221";
}

.ivu-icon-skip-backward:before {
    content: "\f222";
}

.ivu-icon-skip-forward:before {
    content: "\f223";
}

.ivu-icon-social-android:before {
    content: "\f225";
}

.ivu-icon-social-android-outline:before {
    content: "\f224";
}

.ivu-icon-social-angular:before {
    content: "\f4d9";
}

.ivu-icon-social-angular-outline:before {
    content: "\f4d8";
}

.ivu-icon-social-apple:before {
    content: "\f227";
}

.ivu-icon-social-apple-outline:before {
    content: "\f226";
}

.ivu-icon-social-bitcoin:before {
    content: "\f2af";
}

.ivu-icon-social-bitcoin-outline:before {
    content: "\f2ae";
}

.ivu-icon-social-buffer:before {
    content: "\f229";
}

.ivu-icon-social-buffer-outline:before {
    content: "\f228";
}

.ivu-icon-social-chrome:before {
    content: "\f4db";
}

.ivu-icon-social-chrome-outline:before {
    content: "\f4da";
}

.ivu-icon-social-codepen:before {
    content: "\f4dd";
}

.ivu-icon-social-codepen-outline:before {
    content: "\f4dc";
}

.ivu-icon-social-css3:before {
    content: "\f4df";
}

.ivu-icon-social-css3-outline:before {
    content: "\f4de";
}

.ivu-icon-social-designernews:before {
    content: "\f22b";
}

.ivu-icon-social-designernews-outline:before {
    content: "\f22a";
}

.ivu-icon-social-dribbble:before {
    content: "\f22d";
}

.ivu-icon-social-dribbble-outline:before {
    content: "\f22c";
}

.ivu-icon-social-dropbox:before {
    content: "\f22f";
}

.ivu-icon-social-dropbox-outline:before {
    content: "\f22e";
}

.ivu-icon-social-euro:before {
    content: "\f4e1";
}

.ivu-icon-social-euro-outline:before {
    content: "\f4e0";
}

.ivu-icon-social-facebook:before {
    content: "\f231";
}

.ivu-icon-social-facebook-outline:before {
    content: "\f230";
}

.ivu-icon-social-foursquare:before {
    content: "\f34d";
}

.ivu-icon-social-foursquare-outline:before {
    content: "\f34c";
}

.ivu-icon-social-freebsd-devil:before {
    content: "\f2c4";
}

.ivu-icon-social-github:before {
    content: "\f233";
}

.ivu-icon-social-github-outline:before {
    content: "\f232";
}

.ivu-icon-social-google:before {
    content: "\f34f";
}

.ivu-icon-social-google-outline:before {
    content: "\f34e";
}

.ivu-icon-social-googleplus:before {
    content: "\f235";
}

.ivu-icon-social-googleplus-outline:before {
    content: "\f234";
}

.ivu-icon-social-hackernews:before {
    content: "\f237";
}

.ivu-icon-social-hackernews-outline:before {
    content: "\f236";
}

.ivu-icon-social-html5:before {
    content: "\f4e3";
}

.ivu-icon-social-html5-outline:before {
    content: "\f4e2";
}

.ivu-icon-social-instagram:before {
    content: "\f351";
}

.ivu-icon-social-instagram-outline:before {
    content: "\f350";
}

.ivu-icon-social-javascript:before {
    content: "\f4e5";
}

.ivu-icon-social-javascript-outline:before {
    content: "\f4e4";
}

.ivu-icon-social-linkedin:before {
    content: "\f239";
}

.ivu-icon-social-linkedin-outline:before {
    content: "\f238";
}

.ivu-icon-social-markdown:before {
    content: "\f4e6";
}

.ivu-icon-social-nodejs:before {
    content: "\f4e7";
}

.ivu-icon-social-octocat:before {
    content: "\f4e8";
}

.ivu-icon-social-pinterest:before {
    content: "\f2b1";
}

.ivu-icon-social-pinterest-outline:before {
    content: "\f2b0";
}

.ivu-icon-social-python:before {
    content: "\f4e9";
}

.ivu-icon-social-reddit:before {
    content: "\f23b";
}

.ivu-icon-social-reddit-outline:before {
    content: "\f23a";
}

.ivu-icon-social-rss:before {
    content: "\f23d";
}

.ivu-icon-social-rss-outline:before {
    content: "\f23c";
}

.ivu-icon-social-sass:before {
    content: "\f4ea";
}

.ivu-icon-social-skype:before {
    content: "\f23f";
}

.ivu-icon-social-skype-outline:before {
    content: "\f23e";
}

.ivu-icon-social-snapchat:before {
    content: "\f4ec";
}

.ivu-icon-social-snapchat-outline:before {
    content: "\f4eb";
}

.ivu-icon-social-tumblr:before {
    content: "\f241";
}

.ivu-icon-social-tumblr-outline:before {
    content: "\f240";
}

.ivu-icon-social-tux:before {
    content: "\f2c5";
}

.ivu-icon-social-twitch:before {
    content: "\f4ee";
}

.ivu-icon-social-twitch-outline:before {
    content: "\f4ed";
}

.ivu-icon-social-twitter:before {
    content: "\f243";
}

.ivu-icon-social-twitter-outline:before {
    content: "\f242";
}

.ivu-icon-social-usd:before {
    content: "\f353";
}

.ivu-icon-social-usd-outline:before {
    content: "\f352";
}

.ivu-icon-social-vimeo:before {
    content: "\f245";
}

.ivu-icon-social-vimeo-outline:before {
    content: "\f244";
}

.ivu-icon-social-whatsapp:before {
    content: "\f4f0";
}

.ivu-icon-social-whatsapp-outline:before {
    content: "\f4ef";
}

.ivu-icon-social-windows:before {
    content: "\f247";
}

.ivu-icon-social-windows-outline:before {
    content: "\f246";
}

.ivu-icon-social-wordpress:before {
    content: "\f249";
}

.ivu-icon-social-wordpress-outline:before {
    content: "\f248";
}

.ivu-icon-social-yahoo:before {
    content: "\f24b";
}

.ivu-icon-social-yahoo-outline:before {
    content: "\f24a";
}

.ivu-icon-social-yen:before {
    content: "\f4f2";
}

.ivu-icon-social-yen-outline:before {
    content: "\f4f1";
}

.ivu-icon-social-youtube:before {
    content: "\f24d";
}

.ivu-icon-social-youtube-outline:before {
    content: "\f24c";
}

.ivu-icon-soup-can:before {
    content: "\f4f4";
}

.ivu-icon-soup-can-outline:before {
    content: "\f4f3";
}

.ivu-icon-speakerphone:before {
    content: "\f2b2";
}

.ivu-icon-speedometer:before {
    content: "\f2b3";
}

.ivu-icon-spoon:before {
    content: "\f2b4";
}

.ivu-icon-star:before {
    content: "\f24e";
}

.ivu-icon-stats-bars:before {
    content: "\f2b5";
}

.ivu-icon-steam:before {
    content: "\f30b";
}

.ivu-icon-stop:before {
    content: "\f24f";
}

.ivu-icon-thermometer:before {
    content: "\f2b6";
}

.ivu-icon-thumbsdown:before {
    content: "\f250";
}

.ivu-icon-thumbsup:before {
    content: "\f251";
}

.ivu-icon-toggle:before {
    content: "\f355";
}

.ivu-icon-toggle-filled:before {
    content: "\f354";
}

.ivu-icon-transgender:before {
    content: "\f4f5";
}

.ivu-icon-trash-a:before {
    content: "\f252";
}

.ivu-icon-trash-b:before {
    content: "\f253";
}

.ivu-icon-trophy:before {
    content: "\f356";
}

.ivu-icon-tshirt:before {
    content: "\f4f7";
}

.ivu-icon-tshirt-outline:before {
    content: "\f4f6";
}

.ivu-icon-umbrella:before {
    content: "\f2b7";
}

.ivu-icon-university:before {
    content: "\f357";
}

.ivu-icon-unlocked:before {
    content: "\f254";
}

.ivu-icon-upload:before {
    content: "\f255";
}

.ivu-icon-usb:before {
    content: "\f2b8";
}

.ivu-icon-videocamera:before {
    content: "\f256";
}

.ivu-icon-volume-high:before {
    content: "\f257";
}

.ivu-icon-volume-low:before {
    content: "\f258";
}

.ivu-icon-volume-medium:before {
    content: "\f259";
}

.ivu-icon-volume-mute:before {
    content: "\f25a";
}

.ivu-icon-wand:before {
    content: "\f358";
}

.ivu-icon-waterdrop:before {
    content: "\f25b";
}

.ivu-icon-wifi:before {
    content: "\f25c";
}

.ivu-icon-wineglass:before {
    content: "\f2b9";
}

.ivu-icon-woman:before {
    content: "\f25d";
}

.ivu-icon-wrench:before {
    content: "\f2ba";
}

.ivu-icon-xbox:before {
    content: "\f30c";
}

.ivu-row {
    position: relative;
    margin-left: 0;
    margin-right: 0;
    height: auto;
    zoom: 1;
    display: block;
}

.ivu-row:before,
.ivu-row:after {
    content: "";
    display: table;
}

.ivu-row:after {
    clear: both;
    visibility: hidden;
    font-size: 0;
    height: 0;
}

.ivu-row-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ivu-row-flex:before,
.ivu-row-flex:after {
    display: -ms-flexbox;
    display: flex;
}

.ivu-row-flex-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.ivu-row-flex-center {
    -ms-flex-pack: center;
    justify-content: center;
}

.ivu-row-flex-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.ivu-row-flex-space-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ivu-row-flex-space-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.ivu-row-flex-top {
    -ms-flex-align: start;
    align-items: flex-start;
}

.ivu-row-flex-middle {
    -ms-flex-align: center;
    align-items: center;
}

.ivu-row-flex-bottom {
    -ms-flex-align: end;
    align-items: flex-end;
}

.ivu-col {
    position: relative;
    display: block;
}

.ivu-col-span-1,
.ivu-col-span-2,
.ivu-col-span-3,
.ivu-col-span-4,
.ivu-col-span-5,
.ivu-col-span-6,
.ivu-col-span-7,
.ivu-col-span-8,
.ivu-col-span-9,
.ivu-col-span-10,
.ivu-col-span-11,
.ivu-col-span-12,
.ivu-col-span-13,
.ivu-col-span-14,
.ivu-col-span-15,
.ivu-col-span-16,
.ivu-col-span-17,
.ivu-col-span-18,
.ivu-col-span-19,
.ivu-col-span-20,
.ivu-col-span-21,
.ivu-col-span-22,
.ivu-col-span-23,
.ivu-col-span-24 {
    float: left;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.ivu-col-span-24 {
    display: block;
    width: 100%;
}

.ivu-col-push-24 {
    left: 100%;
}

.ivu-col-pull-24 {
    right: 100%;
}

.ivu-col-offset-24 {
    margin-left: 100%;
}

.ivu-col-order-24 {
    -ms-flex-order: 24;
    order: 24;
}

.ivu-col-span-23 {
    display: block;
    width: 95.83333333%;
}

.ivu-col-push-23 {
    left: 95.83333333%;
}

.ivu-col-pull-23 {
    right: 95.83333333%;
}

.ivu-col-offset-23 {
    margin-left: 95.83333333%;
}

.ivu-col-order-23 {
    -ms-flex-order: 23;
    order: 23;
}

.ivu-col-span-22 {
    display: block;
    width: 91.66666667%;
}

.ivu-col-push-22 {
    left: 91.66666667%;
}

.ivu-col-pull-22 {
    right: 91.66666667%;
}

.ivu-col-offset-22 {
    margin-left: 91.66666667%;
}

.ivu-col-order-22 {
    -ms-flex-order: 22;
    order: 22;
}

.ivu-col-span-21 {
    display: block;
    width: 87.5%;
}

.ivu-col-push-21 {
    left: 87.5%;
}

.ivu-col-pull-21 {
    right: 87.5%;
}

.ivu-col-offset-21 {
    margin-left: 87.5%;
}

.ivu-col-order-21 {
    -ms-flex-order: 21;
    order: 21;
}

.ivu-col-span-20 {
    display: block;
    width: 83.33333333%;
}

.ivu-col-push-20 {
    left: 83.33333333%;
}

.ivu-col-pull-20 {
    right: 83.33333333%;
}

.ivu-col-offset-20 {
    margin-left: 83.33333333%;
}

.ivu-col-order-20 {
    -ms-flex-order: 20;
    order: 20;
}

.ivu-col-span-19 {
    display: block;
    width: 79.16666667%;
}

.ivu-col-push-19 {
    left: 79.16666667%;
}

.ivu-col-pull-19 {
    right: 79.16666667%;
}

.ivu-col-offset-19 {
    margin-left: 79.16666667%;
}

.ivu-col-order-19 {
    -ms-flex-order: 19;
    order: 19;
}

.ivu-col-span-18 {
    display: block;
    width: 75%;
}

.ivu-col-push-18 {
    left: 75%;
}

.ivu-col-pull-18 {
    right: 75%;
}

.ivu-col-offset-18 {
    margin-left: 75%;
}

.ivu-col-order-18 {
    -ms-flex-order: 18;
    order: 18;
}

.ivu-col-span-17 {
    display: block;
    width: 70.83333333%;
}

.ivu-col-push-17 {
    left: 70.83333333%;
}

.ivu-col-pull-17 {
    right: 70.83333333%;
}

.ivu-col-offset-17 {
    margin-left: 70.83333333%;
}

.ivu-col-order-17 {
    -ms-flex-order: 17;
    order: 17;
}

.ivu-col-span-16 {
    display: block;
    width: 66.66666667%;
}

.ivu-col-push-16 {
    left: 66.66666667%;
}

.ivu-col-pull-16 {
    right: 66.66666667%;
}

.ivu-col-offset-16 {
    margin-left: 66.66666667%;
}

.ivu-col-order-16 {
    -ms-flex-order: 16;
    order: 16;
}

.ivu-col-span-15 {
    display: block;
    width: 62.5%;
}

.ivu-col-push-15 {
    left: 62.5%;
}

.ivu-col-pull-15 {
    right: 62.5%;
}

.ivu-col-offset-15 {
    margin-left: 62.5%;
}

.ivu-col-order-15 {
    -ms-flex-order: 15;
    order: 15;
}

.ivu-col-span-14 {
    display: block;
    width: 58.33333333%;
}

.ivu-col-push-14 {
    left: 58.33333333%;
}

.ivu-col-pull-14 {
    right: 58.33333333%;
}

.ivu-col-offset-14 {
    margin-left: 58.33333333%;
}

.ivu-col-order-14 {
    -ms-flex-order: 14;
    order: 14;
}

.ivu-col-span-13 {
    display: block;
    width: 54.16666667%;
}

.ivu-col-push-13 {
    left: 54.16666667%;
}

.ivu-col-pull-13 {
    right: 54.16666667%;
}

.ivu-col-offset-13 {
    margin-left: 54.16666667%;
}

.ivu-col-order-13 {
    -ms-flex-order: 13;
    order: 13;
}

.ivu-col-span-12 {
    display: block;
    width: 50%;
}

.ivu-col-push-12 {
    left: 50%;
}

.ivu-col-pull-12 {
    right: 50%;
}

.ivu-col-offset-12 {
    margin-left: 50%;
}

.ivu-col-order-12 {
    -ms-flex-order: 12;
    order: 12;
}

.ivu-col-span-11 {
    display: block;
    width: 45.83333333%;
}

.ivu-col-push-11 {
    left: 45.83333333%;
}

.ivu-col-pull-11 {
    right: 45.83333333%;
}

.ivu-col-offset-11 {
    margin-left: 45.83333333%;
}

.ivu-col-order-11 {
    -ms-flex-order: 11;
    order: 11;
}

.ivu-col-span-10 {
    display: block;
    width: 41.66666667%;
}

.ivu-col-push-10 {
    left: 41.66666667%;
}

.ivu-col-pull-10 {
    right: 41.66666667%;
}

.ivu-col-offset-10 {
    margin-left: 41.66666667%;
}

.ivu-col-order-10 {
    -ms-flex-order: 10;
    order: 10;
}

.ivu-col-span-9 {
    display: block;
    width: 37.5%;
}

.ivu-col-push-9 {
    left: 37.5%;
}

.ivu-col-pull-9 {
    right: 37.5%;
}

.ivu-col-offset-9 {
    margin-left: 37.5%;
}

.ivu-col-order-9 {
    -ms-flex-order: 9;
    order: 9;
}

.ivu-col-span-8 {
    display: block;
    width: 33.33333333%;
}

.ivu-col-push-8 {
    left: 33.33333333%;
}

.ivu-col-pull-8 {
    right: 33.33333333%;
}

.ivu-col-offset-8 {
    margin-left: 33.33333333%;
}

.ivu-col-order-8 {
    -ms-flex-order: 8;
    order: 8;
}

.ivu-col-span-7 {
    display: block;
    width: 29.16666667%;
}

.ivu-col-push-7 {
    left: 29.16666667%;
}

.ivu-col-pull-7 {
    right: 29.16666667%;
}

.ivu-col-offset-7 {
    margin-left: 29.16666667%;
}

.ivu-col-order-7 {
    -ms-flex-order: 7;
    order: 7;
}

.ivu-col-span-6 {
    display: block;
    width: 25%;
}

.ivu-col-push-6 {
    left: 25%;
}

.ivu-col-pull-6 {
    right: 25%;
}

.ivu-col-offset-6 {
    margin-left: 25%;
}

.ivu-col-order-6 {
    -ms-flex-order: 6;
    order: 6;
}

.ivu-col-span-5 {
    display: block;
    width: 20.83333333%;
}

.ivu-col-push-5 {
    left: 20.83333333%;
}

.ivu-col-pull-5 {
    right: 20.83333333%;
}

.ivu-col-offset-5 {
    margin-left: 20.83333333%;
}

.ivu-col-order-5 {
    -ms-flex-order: 5;
    order: 5;
}

.ivu-col-span-4 {
    display: block;
    width: 16.66666667%;
}

.ivu-col-push-4 {
    left: 16.66666667%;
}

.ivu-col-pull-4 {
    right: 16.66666667%;
}

.ivu-col-offset-4 {
    margin-left: 16.66666667%;
}

.ivu-col-order-4 {
    -ms-flex-order: 4;
    order: 4;
}

.ivu-col-span-3 {
    display: block;
    width: 12.5%;
}

.ivu-col-push-3 {
    left: 12.5%;
}

.ivu-col-pull-3 {
    right: 12.5%;
}

.ivu-col-offset-3 {
    margin-left: 12.5%;
}

.ivu-col-order-3 {
    -ms-flex-order: 3;
    order: 3;
}

.ivu-col-span-2 {
    display: block;
    width: 8.33333333%;
}

.ivu-col-push-2 {
    left: 8.33333333%;
}

.ivu-col-pull-2 {
    right: 8.33333333%;
}

.ivu-col-offset-2 {
    margin-left: 8.33333333%;
}

.ivu-col-order-2 {
    -ms-flex-order: 2;
    order: 2;
}

.ivu-col-span-1 {
    display: block;
    width: 4.16666667%;
}

.ivu-col-push-1 {
    left: 4.16666667%;
}

.ivu-col-pull-1 {
    right: 4.16666667%;
}

.ivu-col-offset-1 {
    margin-left: 4.16666667%;
}

.ivu-col-order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.ivu-col-span-0 {
    display: none;
}

.ivu-col-push-0 {
    left: auto;
}

.ivu-col-pull-0 {
    right: auto;
}

.ivu-col-span-xs-1,
.ivu-col-span-xs-2,
.ivu-col-span-xs-3,
.ivu-col-span-xs-4,
.ivu-col-span-xs-5,
.ivu-col-span-xs-6,
.ivu-col-span-xs-7,
.ivu-col-span-xs-8,
.ivu-col-span-xs-9,
.ivu-col-span-xs-10,
.ivu-col-span-xs-11,
.ivu-col-span-xs-12,
.ivu-col-span-xs-13,
.ivu-col-span-xs-14,
.ivu-col-span-xs-15,
.ivu-col-span-xs-16,
.ivu-col-span-xs-17,
.ivu-col-span-xs-18,
.ivu-col-span-xs-19,
.ivu-col-span-xs-20,
.ivu-col-span-xs-21,
.ivu-col-span-xs-22,
.ivu-col-span-xs-23,
.ivu-col-span-xs-24 {
    float: left;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.ivu-col-span-xs-24 {
    display: block;
    width: 100%;
}

.ivu-col-xs-push-24 {
    left: 100%;
}

.ivu-col-xs-pull-24 {
    right: 100%;
}

.ivu-col-xs-offset-24 {
    margin-left: 100%;
}

.ivu-col-xs-order-24 {
    -ms-flex-order: 24;
    order: 24;
}

.ivu-col-span-xs-23 {
    display: block;
    width: 95.83333333%;
}

.ivu-col-xs-push-23 {
    left: 95.83333333%;
}

.ivu-col-xs-pull-23 {
    right: 95.83333333%;
}

.ivu-col-xs-offset-23 {
    margin-left: 95.83333333%;
}

.ivu-col-xs-order-23 {
    -ms-flex-order: 23;
    order: 23;
}

.ivu-col-span-xs-22 {
    display: block;
    width: 91.66666667%;
}

.ivu-col-xs-push-22 {
    left: 91.66666667%;
}

.ivu-col-xs-pull-22 {
    right: 91.66666667%;
}

.ivu-col-xs-offset-22 {
    margin-left: 91.66666667%;
}

.ivu-col-xs-order-22 {
    -ms-flex-order: 22;
    order: 22;
}

.ivu-col-span-xs-21 {
    display: block;
    width: 87.5%;
}

.ivu-col-xs-push-21 {
    left: 87.5%;
}

.ivu-col-xs-pull-21 {
    right: 87.5%;
}

.ivu-col-xs-offset-21 {
    margin-left: 87.5%;
}

.ivu-col-xs-order-21 {
    -ms-flex-order: 21;
    order: 21;
}

.ivu-col-span-xs-20 {
    display: block;
    width: 83.33333333%;
}

.ivu-col-xs-push-20 {
    left: 83.33333333%;
}

.ivu-col-xs-pull-20 {
    right: 83.33333333%;
}

.ivu-col-xs-offset-20 {
    margin-left: 83.33333333%;
}

.ivu-col-xs-order-20 {
    -ms-flex-order: 20;
    order: 20;
}

.ivu-col-span-xs-19 {
    display: block;
    width: 79.16666667%;
}

.ivu-col-xs-push-19 {
    left: 79.16666667%;
}

.ivu-col-xs-pull-19 {
    right: 79.16666667%;
}

.ivu-col-xs-offset-19 {
    margin-left: 79.16666667%;
}

.ivu-col-xs-order-19 {
    -ms-flex-order: 19;
    order: 19;
}

.ivu-col-span-xs-18 {
    display: block;
    width: 75%;
}

.ivu-col-xs-push-18 {
    left: 75%;
}

.ivu-col-xs-pull-18 {
    right: 75%;
}

.ivu-col-xs-offset-18 {
    margin-left: 75%;
}

.ivu-col-xs-order-18 {
    -ms-flex-order: 18;
    order: 18;
}

.ivu-col-span-xs-17 {
    display: block;
    width: 70.83333333%;
}

.ivu-col-xs-push-17 {
    left: 70.83333333%;
}

.ivu-col-xs-pull-17 {
    right: 70.83333333%;
}

.ivu-col-xs-offset-17 {
    margin-left: 70.83333333%;
}

.ivu-col-xs-order-17 {
    -ms-flex-order: 17;
    order: 17;
}

.ivu-col-span-xs-16 {
    display: block;
    width: 66.66666667%;
}

.ivu-col-xs-push-16 {
    left: 66.66666667%;
}

.ivu-col-xs-pull-16 {
    right: 66.66666667%;
}

.ivu-col-xs-offset-16 {
    margin-left: 66.66666667%;
}

.ivu-col-xs-order-16 {
    -ms-flex-order: 16;
    order: 16;
}

.ivu-col-span-xs-15 {
    display: block;
    width: 62.5%;
}

.ivu-col-xs-push-15 {
    left: 62.5%;
}

.ivu-col-xs-pull-15 {
    right: 62.5%;
}

.ivu-col-xs-offset-15 {
    margin-left: 62.5%;
}

.ivu-col-xs-order-15 {
    -ms-flex-order: 15;
    order: 15;
}

.ivu-col-span-xs-14 {
    display: block;
    width: 58.33333333%;
}

.ivu-col-xs-push-14 {
    left: 58.33333333%;
}

.ivu-col-xs-pull-14 {
    right: 58.33333333%;
}

.ivu-col-xs-offset-14 {
    margin-left: 58.33333333%;
}

.ivu-col-xs-order-14 {
    -ms-flex-order: 14;
    order: 14;
}

.ivu-col-span-xs-13 {
    display: block;
    width: 54.16666667%;
}

.ivu-col-xs-push-13 {
    left: 54.16666667%;
}

.ivu-col-xs-pull-13 {
    right: 54.16666667%;
}

.ivu-col-xs-offset-13 {
    margin-left: 54.16666667%;
}

.ivu-col-xs-order-13 {
    -ms-flex-order: 13;
    order: 13;
}

.ivu-col-span-xs-12 {
    display: block;
    width: 50%;
}

.ivu-col-xs-push-12 {
    left: 50%;
}

.ivu-col-xs-pull-12 {
    right: 50%;
}

.ivu-col-xs-offset-12 {
    margin-left: 50%;
}

.ivu-col-xs-order-12 {
    -ms-flex-order: 12;
    order: 12;
}

.ivu-col-span-xs-11 {
    display: block;
    width: 45.83333333%;
}

.ivu-col-xs-push-11 {
    left: 45.83333333%;
}

.ivu-col-xs-pull-11 {
    right: 45.83333333%;
}

.ivu-col-xs-offset-11 {
    margin-left: 45.83333333%;
}

.ivu-col-xs-order-11 {
    -ms-flex-order: 11;
    order: 11;
}

.ivu-col-span-xs-10 {
    display: block;
    width: 41.66666667%;
}

.ivu-col-xs-push-10 {
    left: 41.66666667%;
}

.ivu-col-xs-pull-10 {
    right: 41.66666667%;
}

.ivu-col-xs-offset-10 {
    margin-left: 41.66666667%;
}

.ivu-col-xs-order-10 {
    -ms-flex-order: 10;
    order: 10;
}

.ivu-col-span-xs-9 {
    display: block;
    width: 37.5%;
}

.ivu-col-xs-push-9 {
    left: 37.5%;
}

.ivu-col-xs-pull-9 {
    right: 37.5%;
}

.ivu-col-xs-offset-9 {
    margin-left: 37.5%;
}

.ivu-col-xs-order-9 {
    -ms-flex-order: 9;
    order: 9;
}

.ivu-col-span-xs-8 {
    display: block;
    width: 33.33333333%;
}

.ivu-col-xs-push-8 {
    left: 33.33333333%;
}

.ivu-col-xs-pull-8 {
    right: 33.33333333%;
}

.ivu-col-xs-offset-8 {
    margin-left: 33.33333333%;
}

.ivu-col-xs-order-8 {
    -ms-flex-order: 8;
    order: 8;
}

.ivu-col-span-xs-7 {
    display: block;
    width: 29.16666667%;
}

.ivu-col-xs-push-7 {
    left: 29.16666667%;
}

.ivu-col-xs-pull-7 {
    right: 29.16666667%;
}

.ivu-col-xs-offset-7 {
    margin-left: 29.16666667%;
}

.ivu-col-xs-order-7 {
    -ms-flex-order: 7;
    order: 7;
}

.ivu-col-span-xs-6 {
    display: block;
    width: 25%;
}

.ivu-col-xs-push-6 {
    left: 25%;
}

.ivu-col-xs-pull-6 {
    right: 25%;
}

.ivu-col-xs-offset-6 {
    margin-left: 25%;
}

.ivu-col-xs-order-6 {
    -ms-flex-order: 6;
    order: 6;
}

.ivu-col-span-xs-5 {
    display: block;
    width: 20.83333333%;
}

.ivu-col-xs-push-5 {
    left: 20.83333333%;
}

.ivu-col-xs-pull-5 {
    right: 20.83333333%;
}

.ivu-col-xs-offset-5 {
    margin-left: 20.83333333%;
}

.ivu-col-xs-order-5 {
    -ms-flex-order: 5;
    order: 5;
}

.ivu-col-span-xs-4 {
    display: block;
    width: 16.66666667%;
}

.ivu-col-xs-push-4 {
    left: 16.66666667%;
}

.ivu-col-xs-pull-4 {
    right: 16.66666667%;
}

.ivu-col-xs-offset-4 {
    margin-left: 16.66666667%;
}

.ivu-col-xs-order-4 {
    -ms-flex-order: 4;
    order: 4;
}

.ivu-col-span-xs-3 {
    display: block;
    width: 12.5%;
}

.ivu-col-xs-push-3 {
    left: 12.5%;
}

.ivu-col-xs-pull-3 {
    right: 12.5%;
}

.ivu-col-xs-offset-3 {
    margin-left: 12.5%;
}

.ivu-col-xs-order-3 {
    -ms-flex-order: 3;
    order: 3;
}

.ivu-col-span-xs-2 {
    display: block;
    width: 8.33333333%;
}

.ivu-col-xs-push-2 {
    left: 8.33333333%;
}

.ivu-col-xs-pull-2 {
    right: 8.33333333%;
}

.ivu-col-xs-offset-2 {
    margin-left: 8.33333333%;
}

.ivu-col-xs-order-2 {
    -ms-flex-order: 2;
    order: 2;
}

.ivu-col-span-xs-1 {
    display: block;
    width: 4.16666667%;
}

.ivu-col-xs-push-1 {
    left: 4.16666667%;
}

.ivu-col-xs-pull-1 {
    right: 4.16666667%;
}

.ivu-col-xs-offset-1 {
    margin-left: 4.16666667%;
}

.ivu-col-xs-order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.ivu-col-span-xs-0 {
    display: none;
}

.ivu-col-xs-push-0 {
    left: auto;
}

.ivu-col-xs-pull-0 {
    right: auto;
}

@media (min-width: 768px) {
    .ivu-col-span-sm-1,
    .ivu-col-span-sm-2,
    .ivu-col-span-sm-3,
    .ivu-col-span-sm-4,
    .ivu-col-span-sm-5,
    .ivu-col-span-sm-6,
    .ivu-col-span-sm-7,
    .ivu-col-span-sm-8,
    .ivu-col-span-sm-9,
    .ivu-col-span-sm-10,
    .ivu-col-span-sm-11,
    .ivu-col-span-sm-12,
    .ivu-col-span-sm-13,
    .ivu-col-span-sm-14,
    .ivu-col-span-sm-15,
    .ivu-col-span-sm-16,
    .ivu-col-span-sm-17,
    .ivu-col-span-sm-18,
    .ivu-col-span-sm-19,
    .ivu-col-span-sm-20,
    .ivu-col-span-sm-21,
    .ivu-col-span-sm-22,
    .ivu-col-span-sm-23,
    .ivu-col-span-sm-24 {
        float: left;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .ivu-col-span-sm-24 {
        display: block;
        width: 100%;
    }
    .ivu-col-sm-push-24 {
        left: 100%;
    }
    .ivu-col-sm-pull-24 {
        right: 100%;
    }
    .ivu-col-sm-offset-24 {
        margin-left: 100%;
    }
    .ivu-col-sm-order-24 {
        -ms-flex-order: 24;
        order: 24;
    }
    .ivu-col-span-sm-23 {
        display: block;
        width: 95.83333333%;
    }
    .ivu-col-sm-push-23 {
        left: 95.83333333%;
    }
    .ivu-col-sm-pull-23 {
        right: 95.83333333%;
    }
    .ivu-col-sm-offset-23 {
        margin-left: 95.83333333%;
    }
    .ivu-col-sm-order-23 {
        -ms-flex-order: 23;
        order: 23;
    }
    .ivu-col-span-sm-22 {
        display: block;
        width: 91.66666667%;
    }
    .ivu-col-sm-push-22 {
        left: 91.66666667%;
    }
    .ivu-col-sm-pull-22 {
        right: 91.66666667%;
    }
    .ivu-col-sm-offset-22 {
        margin-left: 91.66666667%;
    }
    .ivu-col-sm-order-22 {
        -ms-flex-order: 22;
        order: 22;
    }
    .ivu-col-span-sm-21 {
        display: block;
        width: 87.5%;
    }
    .ivu-col-sm-push-21 {
        left: 87.5%;
    }
    .ivu-col-sm-pull-21 {
        right: 87.5%;
    }
    .ivu-col-sm-offset-21 {
        margin-left: 87.5%;
    }
    .ivu-col-sm-order-21 {
        -ms-flex-order: 21;
        order: 21;
    }
    .ivu-col-span-sm-20 {
        display: block;
        width: 83.33333333%;
    }
    .ivu-col-sm-push-20 {
        left: 83.33333333%;
    }
    .ivu-col-sm-pull-20 {
        right: 83.33333333%;
    }
    .ivu-col-sm-offset-20 {
        margin-left: 83.33333333%;
    }
    .ivu-col-sm-order-20 {
        -ms-flex-order: 20;
        order: 20;
    }
    .ivu-col-span-sm-19 {
        display: block;
        width: 79.16666667%;
    }
    .ivu-col-sm-push-19 {
        left: 79.16666667%;
    }
    .ivu-col-sm-pull-19 {
        right: 79.16666667%;
    }
    .ivu-col-sm-offset-19 {
        margin-left: 79.16666667%;
    }
    .ivu-col-sm-order-19 {
        -ms-flex-order: 19;
        order: 19;
    }
    .ivu-col-span-sm-18 {
        display: block;
        width: 75%;
    }
    .ivu-col-sm-push-18 {
        left: 75%;
    }
    .ivu-col-sm-pull-18 {
        right: 75%;
    }
    .ivu-col-sm-offset-18 {
        margin-left: 75%;
    }
    .ivu-col-sm-order-18 {
        -ms-flex-order: 18;
        order: 18;
    }
    .ivu-col-span-sm-17 {
        display: block;
        width: 70.83333333%;
    }
    .ivu-col-sm-push-17 {
        left: 70.83333333%;
    }
    .ivu-col-sm-pull-17 {
        right: 70.83333333%;
    }
    .ivu-col-sm-offset-17 {
        margin-left: 70.83333333%;
    }
    .ivu-col-sm-order-17 {
        -ms-flex-order: 17;
        order: 17;
    }
    .ivu-col-span-sm-16 {
        display: block;
        width: 66.66666667%;
    }
    .ivu-col-sm-push-16 {
        left: 66.66666667%;
    }
    .ivu-col-sm-pull-16 {
        right: 66.66666667%;
    }
    .ivu-col-sm-offset-16 {
        margin-left: 66.66666667%;
    }
    .ivu-col-sm-order-16 {
        -ms-flex-order: 16;
        order: 16;
    }
    .ivu-col-span-sm-15 {
        display: block;
        width: 62.5%;
    }
    .ivu-col-sm-push-15 {
        left: 62.5%;
    }
    .ivu-col-sm-pull-15 {
        right: 62.5%;
    }
    .ivu-col-sm-offset-15 {
        margin-left: 62.5%;
    }
    .ivu-col-sm-order-15 {
        -ms-flex-order: 15;
        order: 15;
    }
    .ivu-col-span-sm-14 {
        display: block;
        width: 58.33333333%;
    }
    .ivu-col-sm-push-14 {
        left: 58.33333333%;
    }
    .ivu-col-sm-pull-14 {
        right: 58.33333333%;
    }
    .ivu-col-sm-offset-14 {
        margin-left: 58.33333333%;
    }
    .ivu-col-sm-order-14 {
        -ms-flex-order: 14;
        order: 14;
    }
    .ivu-col-span-sm-13 {
        display: block;
        width: 54.16666667%;
    }
    .ivu-col-sm-push-13 {
        left: 54.16666667%;
    }
    .ivu-col-sm-pull-13 {
        right: 54.16666667%;
    }
    .ivu-col-sm-offset-13 {
        margin-left: 54.16666667%;
    }
    .ivu-col-sm-order-13 {
        -ms-flex-order: 13;
        order: 13;
    }
    .ivu-col-span-sm-12 {
        display: block;
        width: 50%;
    }
    .ivu-col-sm-push-12 {
        left: 50%;
    }
    .ivu-col-sm-pull-12 {
        right: 50%;
    }
    .ivu-col-sm-offset-12 {
        margin-left: 50%;
    }
    .ivu-col-sm-order-12 {
        -ms-flex-order: 12;
        order: 12;
    }
    .ivu-col-span-sm-11 {
        display: block;
        width: 45.83333333%;
    }
    .ivu-col-sm-push-11 {
        left: 45.83333333%;
    }
    .ivu-col-sm-pull-11 {
        right: 45.83333333%;
    }
    .ivu-col-sm-offset-11 {
        margin-left: 45.83333333%;
    }
    .ivu-col-sm-order-11 {
        -ms-flex-order: 11;
        order: 11;
    }
    .ivu-col-span-sm-10 {
        display: block;
        width: 41.66666667%;
    }
    .ivu-col-sm-push-10 {
        left: 41.66666667%;
    }
    .ivu-col-sm-pull-10 {
        right: 41.66666667%;
    }
    .ivu-col-sm-offset-10 {
        margin-left: 41.66666667%;
    }
    .ivu-col-sm-order-10 {
        -ms-flex-order: 10;
        order: 10;
    }
    .ivu-col-span-sm-9 {
        display: block;
        width: 37.5%;
    }
    .ivu-col-sm-push-9 {
        left: 37.5%;
    }
    .ivu-col-sm-pull-9 {
        right: 37.5%;
    }
    .ivu-col-sm-offset-9 {
        margin-left: 37.5%;
    }
    .ivu-col-sm-order-9 {
        -ms-flex-order: 9;
        order: 9;
    }
    .ivu-col-span-sm-8 {
        display: block;
        width: 33.33333333%;
    }
    .ivu-col-sm-push-8 {
        left: 33.33333333%;
    }
    .ivu-col-sm-pull-8 {
        right: 33.33333333%;
    }
    .ivu-col-sm-offset-8 {
        margin-left: 33.33333333%;
    }
    .ivu-col-sm-order-8 {
        -ms-flex-order: 8;
        order: 8;
    }
    .ivu-col-span-sm-7 {
        display: block;
        width: 29.16666667%;
    }
    .ivu-col-sm-push-7 {
        left: 29.16666667%;
    }
    .ivu-col-sm-pull-7 {
        right: 29.16666667%;
    }
    .ivu-col-sm-offset-7 {
        margin-left: 29.16666667%;
    }
    .ivu-col-sm-order-7 {
        -ms-flex-order: 7;
        order: 7;
    }
    .ivu-col-span-sm-6 {
        display: block;
        width: 25%;
    }
    .ivu-col-sm-push-6 {
        left: 25%;
    }
    .ivu-col-sm-pull-6 {
        right: 25%;
    }
    .ivu-col-sm-offset-6 {
        margin-left: 25%;
    }
    .ivu-col-sm-order-6 {
        -ms-flex-order: 6;
        order: 6;
    }
    .ivu-col-span-sm-5 {
        display: block;
        width: 20.83333333%;
    }
    .ivu-col-sm-push-5 {
        left: 20.83333333%;
    }
    .ivu-col-sm-pull-5 {
        right: 20.83333333%;
    }
    .ivu-col-sm-offset-5 {
        margin-left: 20.83333333%;
    }
    .ivu-col-sm-order-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .ivu-col-span-sm-4 {
        display: block;
        width: 16.66666667%;
    }
    .ivu-col-sm-push-4 {
        left: 16.66666667%;
    }
    .ivu-col-sm-pull-4 {
        right: 16.66666667%;
    }
    .ivu-col-sm-offset-4 {
        margin-left: 16.66666667%;
    }
    .ivu-col-sm-order-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .ivu-col-span-sm-3 {
        display: block;
        width: 12.5%;
    }
    .ivu-col-sm-push-3 {
        left: 12.5%;
    }
    .ivu-col-sm-pull-3 {
        right: 12.5%;
    }
    .ivu-col-sm-offset-3 {
        margin-left: 12.5%;
    }
    .ivu-col-sm-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .ivu-col-span-sm-2 {
        display: block;
        width: 8.33333333%;
    }
    .ivu-col-sm-push-2 {
        left: 8.33333333%;
    }
    .ivu-col-sm-pull-2 {
        right: 8.33333333%;
    }
    .ivu-col-sm-offset-2 {
        margin-left: 8.33333333%;
    }
    .ivu-col-sm-order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .ivu-col-span-sm-1 {
        display: block;
        width: 4.16666667%;
    }
    .ivu-col-sm-push-1 {
        left: 4.16666667%;
    }
    .ivu-col-sm-pull-1 {
        right: 4.16666667%;
    }
    .ivu-col-sm-offset-1 {
        margin-left: 4.16666667%;
    }
    .ivu-col-sm-order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .ivu-col-span-sm-0 {
        display: none;
    }
    .ivu-col-sm-push-0 {
        left: auto;
    }
    .ivu-col-sm-pull-0 {
        right: auto;
    }
}

@media (min-width: 992px) {
    .ivu-col-span-md-1,
    .ivu-col-span-md-2,
    .ivu-col-span-md-3,
    .ivu-col-span-md-4,
    .ivu-col-span-md-5,
    .ivu-col-span-md-6,
    .ivu-col-span-md-7,
    .ivu-col-span-md-8,
    .ivu-col-span-md-9,
    .ivu-col-span-md-10,
    .ivu-col-span-md-11,
    .ivu-col-span-md-12,
    .ivu-col-span-md-13,
    .ivu-col-span-md-14,
    .ivu-col-span-md-15,
    .ivu-col-span-md-16,
    .ivu-col-span-md-17,
    .ivu-col-span-md-18,
    .ivu-col-span-md-19,
    .ivu-col-span-md-20,
    .ivu-col-span-md-21,
    .ivu-col-span-md-22,
    .ivu-col-span-md-23,
    .ivu-col-span-md-24 {
        float: left;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .ivu-col-span-md-24 {
        display: block;
        width: 100%;
    }
    .ivu-col-md-push-24 {
        left: 100%;
    }
    .ivu-col-md-pull-24 {
        right: 100%;
    }
    .ivu-col-md-offset-24 {
        margin-left: 100%;
    }
    .ivu-col-md-order-24 {
        -ms-flex-order: 24;
        order: 24;
    }
    .ivu-col-span-md-23 {
        display: block;
        width: 95.83333333%;
    }
    .ivu-col-md-push-23 {
        left: 95.83333333%;
    }
    .ivu-col-md-pull-23 {
        right: 95.83333333%;
    }
    .ivu-col-md-offset-23 {
        margin-left: 95.83333333%;
    }
    .ivu-col-md-order-23 {
        -ms-flex-order: 23;
        order: 23;
    }
    .ivu-col-span-md-22 {
        display: block;
        width: 91.66666667%;
    }
    .ivu-col-md-push-22 {
        left: 91.66666667%;
    }
    .ivu-col-md-pull-22 {
        right: 91.66666667%;
    }
    .ivu-col-md-offset-22 {
        margin-left: 91.66666667%;
    }
    .ivu-col-md-order-22 {
        -ms-flex-order: 22;
        order: 22;
    }
    .ivu-col-span-md-21 {
        display: block;
        width: 87.5%;
    }
    .ivu-col-md-push-21 {
        left: 87.5%;
    }
    .ivu-col-md-pull-21 {
        right: 87.5%;
    }
    .ivu-col-md-offset-21 {
        margin-left: 87.5%;
    }
    .ivu-col-md-order-21 {
        -ms-flex-order: 21;
        order: 21;
    }
    .ivu-col-span-md-20 {
        display: block;
        width: 83.33333333%;
    }
    .ivu-col-md-push-20 {
        left: 83.33333333%;
    }
    .ivu-col-md-pull-20 {
        right: 83.33333333%;
    }
    .ivu-col-md-offset-20 {
        margin-left: 83.33333333%;
    }
    .ivu-col-md-order-20 {
        -ms-flex-order: 20;
        order: 20;
    }
    .ivu-col-span-md-19 {
        display: block;
        width: 79.16666667%;
    }
    .ivu-col-md-push-19 {
        left: 79.16666667%;
    }
    .ivu-col-md-pull-19 {
        right: 79.16666667%;
    }
    .ivu-col-md-offset-19 {
        margin-left: 79.16666667%;
    }
    .ivu-col-md-order-19 {
        -ms-flex-order: 19;
        order: 19;
    }
    .ivu-col-span-md-18 {
        display: block;
        width: 75%;
    }
    .ivu-col-md-push-18 {
        left: 75%;
    }
    .ivu-col-md-pull-18 {
        right: 75%;
    }
    .ivu-col-md-offset-18 {
        margin-left: 75%;
    }
    .ivu-col-md-order-18 {
        -ms-flex-order: 18;
        order: 18;
    }
    .ivu-col-span-md-17 {
        display: block;
        width: 70.83333333%;
    }
    .ivu-col-md-push-17 {
        left: 70.83333333%;
    }
    .ivu-col-md-pull-17 {
        right: 70.83333333%;
    }
    .ivu-col-md-offset-17 {
        margin-left: 70.83333333%;
    }
    .ivu-col-md-order-17 {
        -ms-flex-order: 17;
        order: 17;
    }
    .ivu-col-span-md-16 {
        display: block;
        width: 66.66666667%;
    }
    .ivu-col-md-push-16 {
        left: 66.66666667%;
    }
    .ivu-col-md-pull-16 {
        right: 66.66666667%;
    }
    .ivu-col-md-offset-16 {
        margin-left: 66.66666667%;
    }
    .ivu-col-md-order-16 {
        -ms-flex-order: 16;
        order: 16;
    }
    .ivu-col-span-md-15 {
        display: block;
        width: 62.5%;
    }
    .ivu-col-md-push-15 {
        left: 62.5%;
    }
    .ivu-col-md-pull-15 {
        right: 62.5%;
    }
    .ivu-col-md-offset-15 {
        margin-left: 62.5%;
    }
    .ivu-col-md-order-15 {
        -ms-flex-order: 15;
        order: 15;
    }
    .ivu-col-span-md-14 {
        display: block;
        width: 58.33333333%;
    }
    .ivu-col-md-push-14 {
        left: 58.33333333%;
    }
    .ivu-col-md-pull-14 {
        right: 58.33333333%;
    }
    .ivu-col-md-offset-14 {
        margin-left: 58.33333333%;
    }
    .ivu-col-md-order-14 {
        -ms-flex-order: 14;
        order: 14;
    }
    .ivu-col-span-md-13 {
        display: block;
        width: 54.16666667%;
    }
    .ivu-col-md-push-13 {
        left: 54.16666667%;
    }
    .ivu-col-md-pull-13 {
        right: 54.16666667%;
    }
    .ivu-col-md-offset-13 {
        margin-left: 54.16666667%;
    }
    .ivu-col-md-order-13 {
        -ms-flex-order: 13;
        order: 13;
    }
    .ivu-col-span-md-12 {
        display: block;
        width: 50%;
    }
    .ivu-col-md-push-12 {
        left: 50%;
    }
    .ivu-col-md-pull-12 {
        right: 50%;
    }
    .ivu-col-md-offset-12 {
        margin-left: 50%;
    }
    .ivu-col-md-order-12 {
        -ms-flex-order: 12;
        order: 12;
    }
    .ivu-col-span-md-11 {
        display: block;
        width: 45.83333333%;
    }
    .ivu-col-md-push-11 {
        left: 45.83333333%;
    }
    .ivu-col-md-pull-11 {
        right: 45.83333333%;
    }
    .ivu-col-md-offset-11 {
        margin-left: 45.83333333%;
    }
    .ivu-col-md-order-11 {
        -ms-flex-order: 11;
        order: 11;
    }
    .ivu-col-span-md-10 {
        display: block;
        width: 41.66666667%;
    }
    .ivu-col-md-push-10 {
        left: 41.66666667%;
    }
    .ivu-col-md-pull-10 {
        right: 41.66666667%;
    }
    .ivu-col-md-offset-10 {
        margin-left: 41.66666667%;
    }
    .ivu-col-md-order-10 {
        -ms-flex-order: 10;
        order: 10;
    }
    .ivu-col-span-md-9 {
        display: block;
        width: 37.5%;
    }
    .ivu-col-md-push-9 {
        left: 37.5%;
    }
    .ivu-col-md-pull-9 {
        right: 37.5%;
    }
    .ivu-col-md-offset-9 {
        margin-left: 37.5%;
    }
    .ivu-col-md-order-9 {
        -ms-flex-order: 9;
        order: 9;
    }
    .ivu-col-span-md-8 {
        display: block;
        width: 33.33333333%;
    }
    .ivu-col-md-push-8 {
        left: 33.33333333%;
    }
    .ivu-col-md-pull-8 {
        right: 33.33333333%;
    }
    .ivu-col-md-offset-8 {
        margin-left: 33.33333333%;
    }
    .ivu-col-md-order-8 {
        -ms-flex-order: 8;
        order: 8;
    }
    .ivu-col-span-md-7 {
        display: block;
        width: 29.16666667%;
    }
    .ivu-col-md-push-7 {
        left: 29.16666667%;
    }
    .ivu-col-md-pull-7 {
        right: 29.16666667%;
    }
    .ivu-col-md-offset-7 {
        margin-left: 29.16666667%;
    }
    .ivu-col-md-order-7 {
        -ms-flex-order: 7;
        order: 7;
    }
    .ivu-col-span-md-6 {
        display: block;
        width: 25%;
    }
    .ivu-col-md-push-6 {
        left: 25%;
    }
    .ivu-col-md-pull-6 {
        right: 25%;
    }
    .ivu-col-md-offset-6 {
        margin-left: 25%;
    }
    .ivu-col-md-order-6 {
        -ms-flex-order: 6;
        order: 6;
    }
    .ivu-col-span-md-5 {
        display: block;
        width: 20.83333333%;
    }
    .ivu-col-md-push-5 {
        left: 20.83333333%;
    }
    .ivu-col-md-pull-5 {
        right: 20.83333333%;
    }
    .ivu-col-md-offset-5 {
        margin-left: 20.83333333%;
    }
    .ivu-col-md-order-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .ivu-col-span-md-4 {
        display: block;
        width: 16.66666667%;
    }
    .ivu-col-md-push-4 {
        left: 16.66666667%;
    }
    .ivu-col-md-pull-4 {
        right: 16.66666667%;
    }
    .ivu-col-md-offset-4 {
        margin-left: 16.66666667%;
    }
    .ivu-col-md-order-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .ivu-col-span-md-3 {
        display: block;
        width: 12.5%;
    }
    .ivu-col-md-push-3 {
        left: 12.5%;
    }
    .ivu-col-md-pull-3 {
        right: 12.5%;
    }
    .ivu-col-md-offset-3 {
        margin-left: 12.5%;
    }
    .ivu-col-md-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .ivu-col-span-md-2 {
        display: block;
        width: 8.33333333%;
    }
    .ivu-col-md-push-2 {
        left: 8.33333333%;
    }
    .ivu-col-md-pull-2 {
        right: 8.33333333%;
    }
    .ivu-col-md-offset-2 {
        margin-left: 8.33333333%;
    }
    .ivu-col-md-order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .ivu-col-span-md-1 {
        display: block;
        width: 4.16666667%;
    }
    .ivu-col-md-push-1 {
        left: 4.16666667%;
    }
    .ivu-col-md-pull-1 {
        right: 4.16666667%;
    }
    .ivu-col-md-offset-1 {
        margin-left: 4.16666667%;
    }
    .ivu-col-md-order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .ivu-col-span-md-0 {
        display: none;
    }
    .ivu-col-md-push-0 {
        left: auto;
    }
    .ivu-col-md-pull-0 {
        right: auto;
    }
}

@media (min-width: 1200px) {
    .ivu-col-span-lg-1,
    .ivu-col-span-lg-2,
    .ivu-col-span-lg-3,
    .ivu-col-span-lg-4,
    .ivu-col-span-lg-5,
    .ivu-col-span-lg-6,
    .ivu-col-span-lg-7,
    .ivu-col-span-lg-8,
    .ivu-col-span-lg-9,
    .ivu-col-span-lg-10,
    .ivu-col-span-lg-11,
    .ivu-col-span-lg-12,
    .ivu-col-span-lg-13,
    .ivu-col-span-lg-14,
    .ivu-col-span-lg-15,
    .ivu-col-span-lg-16,
    .ivu-col-span-lg-17,
    .ivu-col-span-lg-18,
    .ivu-col-span-lg-19,
    .ivu-col-span-lg-20,
    .ivu-col-span-lg-21,
    .ivu-col-span-lg-22,
    .ivu-col-span-lg-23,
    .ivu-col-span-lg-24 {
        float: left;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .ivu-col-span-lg-24 {
        display: block;
        width: 100%;
    }
    .ivu-col-lg-push-24 {
        left: 100%;
    }
    .ivu-col-lg-pull-24 {
        right: 100%;
    }
    .ivu-col-lg-offset-24 {
        margin-left: 100%;
    }
    .ivu-col-lg-order-24 {
        -ms-flex-order: 24;
        order: 24;
    }
    .ivu-col-span-lg-23 {
        display: block;
        width: 95.83333333%;
    }
    .ivu-col-lg-push-23 {
        left: 95.83333333%;
    }
    .ivu-col-lg-pull-23 {
        right: 95.83333333%;
    }
    .ivu-col-lg-offset-23 {
        margin-left: 95.83333333%;
    }
    .ivu-col-lg-order-23 {
        -ms-flex-order: 23;
        order: 23;
    }
    .ivu-col-span-lg-22 {
        display: block;
        width: 91.66666667%;
    }
    .ivu-col-lg-push-22 {
        left: 91.66666667%;
    }
    .ivu-col-lg-pull-22 {
        right: 91.66666667%;
    }
    .ivu-col-lg-offset-22 {
        margin-left: 91.66666667%;
    }
    .ivu-col-lg-order-22 {
        -ms-flex-order: 22;
        order: 22;
    }
    .ivu-col-span-lg-21 {
        display: block;
        width: 87.5%;
    }
    .ivu-col-lg-push-21 {
        left: 87.5%;
    }
    .ivu-col-lg-pull-21 {
        right: 87.5%;
    }
    .ivu-col-lg-offset-21 {
        margin-left: 87.5%;
    }
    .ivu-col-lg-order-21 {
        -ms-flex-order: 21;
        order: 21;
    }
    .ivu-col-span-lg-20 {
        display: block;
        width: 83.33333333%;
    }
    .ivu-col-lg-push-20 {
        left: 83.33333333%;
    }
    .ivu-col-lg-pull-20 {
        right: 83.33333333%;
    }
    .ivu-col-lg-offset-20 {
        margin-left: 83.33333333%;
    }
    .ivu-col-lg-order-20 {
        -ms-flex-order: 20;
        order: 20;
    }
    .ivu-col-span-lg-19 {
        display: block;
        width: 79.16666667%;
    }
    .ivu-col-lg-push-19 {
        left: 79.16666667%;
    }
    .ivu-col-lg-pull-19 {
        right: 79.16666667%;
    }
    .ivu-col-lg-offset-19 {
        margin-left: 79.16666667%;
    }
    .ivu-col-lg-order-19 {
        -ms-flex-order: 19;
        order: 19;
    }
    .ivu-col-span-lg-18 {
        display: block;
        width: 75%;
    }
    .ivu-col-lg-push-18 {
        left: 75%;
    }
    .ivu-col-lg-pull-18 {
        right: 75%;
    }
    .ivu-col-lg-offset-18 {
        margin-left: 75%;
    }
    .ivu-col-lg-order-18 {
        -ms-flex-order: 18;
        order: 18;
    }
    .ivu-col-span-lg-17 {
        display: block;
        width: 70.83333333%;
    }
    .ivu-col-lg-push-17 {
        left: 70.83333333%;
    }
    .ivu-col-lg-pull-17 {
        right: 70.83333333%;
    }
    .ivu-col-lg-offset-17 {
        margin-left: 70.83333333%;
    }
    .ivu-col-lg-order-17 {
        -ms-flex-order: 17;
        order: 17;
    }
    .ivu-col-span-lg-16 {
        display: block;
        width: 66.66666667%;
    }
    .ivu-col-lg-push-16 {
        left: 66.66666667%;
    }
    .ivu-col-lg-pull-16 {
        right: 66.66666667%;
    }
    .ivu-col-lg-offset-16 {
        margin-left: 66.66666667%;
    }
    .ivu-col-lg-order-16 {
        -ms-flex-order: 16;
        order: 16;
    }
    .ivu-col-span-lg-15 {
        display: block;
        width: 62.5%;
    }
    .ivu-col-lg-push-15 {
        left: 62.5%;
    }
    .ivu-col-lg-pull-15 {
        right: 62.5%;
    }
    .ivu-col-lg-offset-15 {
        margin-left: 62.5%;
    }
    .ivu-col-lg-order-15 {
        -ms-flex-order: 15;
        order: 15;
    }
    .ivu-col-span-lg-14 {
        display: block;
        width: 58.33333333%;
    }
    .ivu-col-lg-push-14 {
        left: 58.33333333%;
    }
    .ivu-col-lg-pull-14 {
        right: 58.33333333%;
    }
    .ivu-col-lg-offset-14 {
        margin-left: 58.33333333%;
    }
    .ivu-col-lg-order-14 {
        -ms-flex-order: 14;
        order: 14;
    }
    .ivu-col-span-lg-13 {
        display: block;
        width: 54.16666667%;
    }
    .ivu-col-lg-push-13 {
        left: 54.16666667%;
    }
    .ivu-col-lg-pull-13 {
        right: 54.16666667%;
    }
    .ivu-col-lg-offset-13 {
        margin-left: 54.16666667%;
    }
    .ivu-col-lg-order-13 {
        -ms-flex-order: 13;
        order: 13;
    }
    .ivu-col-span-lg-12 {
        display: block;
        width: 50%;
    }
    .ivu-col-lg-push-12 {
        left: 50%;
    }
    .ivu-col-lg-pull-12 {
        right: 50%;
    }
    .ivu-col-lg-offset-12 {
        margin-left: 50%;
    }
    .ivu-col-lg-order-12 {
        -ms-flex-order: 12;
        order: 12;
    }
    .ivu-col-span-lg-11 {
        display: block;
        width: 45.83333333%;
    }
    .ivu-col-lg-push-11 {
        left: 45.83333333%;
    }
    .ivu-col-lg-pull-11 {
        right: 45.83333333%;
    }
    .ivu-col-lg-offset-11 {
        margin-left: 45.83333333%;
    }
    .ivu-col-lg-order-11 {
        -ms-flex-order: 11;
        order: 11;
    }
    .ivu-col-span-lg-10 {
        display: block;
        width: 41.66666667%;
    }
    .ivu-col-lg-push-10 {
        left: 41.66666667%;
    }
    .ivu-col-lg-pull-10 {
        right: 41.66666667%;
    }
    .ivu-col-lg-offset-10 {
        margin-left: 41.66666667%;
    }
    .ivu-col-lg-order-10 {
        -ms-flex-order: 10;
        order: 10;
    }
    .ivu-col-span-lg-9 {
        display: block;
        width: 37.5%;
    }
    .ivu-col-lg-push-9 {
        left: 37.5%;
    }
    .ivu-col-lg-pull-9 {
        right: 37.5%;
    }
    .ivu-col-lg-offset-9 {
        margin-left: 37.5%;
    }
    .ivu-col-lg-order-9 {
        -ms-flex-order: 9;
        order: 9;
    }
    .ivu-col-span-lg-8 {
        display: block;
        width: 33.33333333%;
    }
    .ivu-col-lg-push-8 {
        left: 33.33333333%;
    }
    .ivu-col-lg-pull-8 {
        right: 33.33333333%;
    }
    .ivu-col-lg-offset-8 {
        margin-left: 33.33333333%;
    }
    .ivu-col-lg-order-8 {
        -ms-flex-order: 8;
        order: 8;
    }
    .ivu-col-span-lg-7 {
        display: block;
        width: 29.16666667%;
    }
    .ivu-col-lg-push-7 {
        left: 29.16666667%;
    }
    .ivu-col-lg-pull-7 {
        right: 29.16666667%;
    }
    .ivu-col-lg-offset-7 {
        margin-left: 29.16666667%;
    }
    .ivu-col-lg-order-7 {
        -ms-flex-order: 7;
        order: 7;
    }
    .ivu-col-span-lg-6 {
        display: block;
        width: 25%;
    }
    .ivu-col-lg-push-6 {
        left: 25%;
    }
    .ivu-col-lg-pull-6 {
        right: 25%;
    }
    .ivu-col-lg-offset-6 {
        margin-left: 25%;
    }
    .ivu-col-lg-order-6 {
        -ms-flex-order: 6;
        order: 6;
    }
    .ivu-col-span-lg-5 {
        display: block;
        width: 20.83333333%;
    }
    .ivu-col-lg-push-5 {
        left: 20.83333333%;
    }
    .ivu-col-lg-pull-5 {
        right: 20.83333333%;
    }
    .ivu-col-lg-offset-5 {
        margin-left: 20.83333333%;
    }
    .ivu-col-lg-order-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .ivu-col-span-lg-4 {
        display: block;
        width: 16.66666667%;
    }
    .ivu-col-lg-push-4 {
        left: 16.66666667%;
    }
    .ivu-col-lg-pull-4 {
        right: 16.66666667%;
    }
    .ivu-col-lg-offset-4 {
        margin-left: 16.66666667%;
    }
    .ivu-col-lg-order-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .ivu-col-span-lg-3 {
        display: block;
        width: 12.5%;
    }
    .ivu-col-lg-push-3 {
        left: 12.5%;
    }
    .ivu-col-lg-pull-3 {
        right: 12.5%;
    }
    .ivu-col-lg-offset-3 {
        margin-left: 12.5%;
    }
    .ivu-col-lg-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .ivu-col-span-lg-2 {
        display: block;
        width: 8.33333333%;
    }
    .ivu-col-lg-push-2 {
        left: 8.33333333%;
    }
    .ivu-col-lg-pull-2 {
        right: 8.33333333%;
    }
    .ivu-col-lg-offset-2 {
        margin-left: 8.33333333%;
    }
    .ivu-col-lg-order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .ivu-col-span-lg-1 {
        display: block;
        width: 4.16666667%;
    }
    .ivu-col-lg-push-1 {
        left: 4.16666667%;
    }
    .ivu-col-lg-pull-1 {
        right: 4.16666667%;
    }
    .ivu-col-lg-offset-1 {
        margin-left: 4.16666667%;
    }
    .ivu-col-lg-order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .ivu-col-span-lg-0 {
        display: none;
    }
    .ivu-col-lg-push-0 {
        left: auto;
    }
    .ivu-col-lg-pull-0 {
        right: auto;
    }
}

.ivu-article h1 {
    font-size: 26px;
    font-weight: normal;
}

.ivu-article h2 {
    font-size: 20px;
    font-weight: normal;
}

.ivu-article h3 {
    font-size: 16px;
    font-weight: normal;
}

.ivu-article h4 {
    font-size: 14px;
    font-weight: normal;
}

.ivu-article h5 {
    font-size: 12px;
    font-weight: normal;
}

.ivu-article h6 {
    font-size: 12px;
    font-weight: normal;
}

.ivu-article blockquote {
    padding: 5px 5px 3px 10px;
    line-height: 1.5;
    border-left: 4px solid #ddd;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.ivu-article ul:not([class^="ivu-"]) {
    padding-left: 40px;
    list-style-type: disc;
}

.ivu-article li:not([class^="ivu-"]) {
    margin-bottom: 5px;
    font-size: 14px;
}

.ivu-article ul ul:not([class^="ivu-"]),
.ivu-article ol ul:not([class^="ivu-"]) {
    list-style-type: circle;
}

.ivu-article p {
    margin: 5px;
    font-size: 14px;
}

.ivu-article a[target="_blank"]:after {
    content: "\F220";
    font-family: Ionicons;
    color: #aaa;
    margin-left: 3px;
}

.fade-enter-active,
.fade-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.fade-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.fade-enter-active,
.fade-appear {
    animation-name: ivuFadeIn;
    animation-play-state: running;
}

.fade-leave-active {
    animation-name: ivuFadeOut;
    animation-play-state: running;
}

.fade-enter-active,
.fade-appear {
    opacity: 0;
    animation-timing-function: linear;
}

.fade-leave-active {
    animation-timing-function: linear;
}

@keyframes ivuFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes ivuFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.move-up-enter-active,
.move-up-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-up-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-up-enter-active,
.move-up-appear {
    animation-name: ivuMoveUpIn;
    animation-play-state: running;
}

.move-up-leave-active {
    animation-name: ivuMoveUpOut;
    animation-play-state: running;
}

.move-up-enter-active,
.move-up-appear {
    opacity: 0;
    animation-timing-function: ease-in-out;
}

.move-up-leave-active {
    animation-timing-function: ease-in-out;
}

.move-down-enter-active,
.move-down-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-down-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-down-enter-active,
.move-down-appear {
    animation-name: ivuMoveDownIn;
    animation-play-state: running;
}

.move-down-leave-active {
    animation-name: ivuMoveDownOut;
    animation-play-state: running;
}

.move-down-enter-active,
.move-down-appear {
    opacity: 0;
    animation-timing-function: ease-in-out;
}

.move-down-leave-active {
    animation-timing-function: ease-in-out;
}

.move-left-enter-active,
.move-left-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-left-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-left-enter-active,
.move-left-appear {
    animation-name: ivuMoveLeftIn;
    animation-play-state: running;
}

.move-left-leave-active {
    animation-name: ivuMoveLeftOut;
    animation-play-state: running;
}

.move-left-enter-active,
.move-left-appear {
    opacity: 0;
    animation-timing-function: ease-in-out;
}

.move-left-leave-active {
    animation-timing-function: ease-in-out;
}

.move-right-enter-active,
.move-right-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-right-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-right-enter-active,
.move-right-appear {
    animation-name: ivuMoveRightIn;
    animation-play-state: running;
}

.move-right-leave-active {
    animation-name: ivuMoveRightOut;
    animation-play-state: running;
}

.move-right-enter-active,
.move-right-appear {
    opacity: 0;
    animation-timing-function: ease-in-out;
}

.move-right-leave-active {
    animation-timing-function: ease-in-out;
}

@keyframes ivuMoveDownIn {
    0% {
        transform-origin: 0 0;
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes ivuMoveDownOut {
    0% {
        transform-origin: 0 0;
        transform: translateY(0%);
        opacity: 1;
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes ivuMoveLeftIn {
    0% {
        transform-origin: 0 0;
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform-origin: 0 0;
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes ivuMoveLeftOut {
    0% {
        transform-origin: 0 0;
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform-origin: 0 0;
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes ivuMoveRightIn {
    0% {
        opacity: 0;
        transform-origin: 0 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform-origin: 0 0;
        transform: translateX(0%);
    }
}

@keyframes ivuMoveRightOut {
    0% {
        transform-origin: 0 0;
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform-origin: 0 0;
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes ivuMoveUpIn {
    0% {
        transform-origin: 0 0;
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes ivuMoveUpOut {
    0% {
        transform-origin: 0 0;
        transform: translateY(0%);
        opacity: 1;
    }
    100% {
        transform-origin: 0 0;
        transform: translateY(-100%);
        opacity: 0;
    }
}

.move-notice-enter-active,
.move-notice-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-notice-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.move-notice-enter-active,
.move-notice-appear {
    animation-name: ivuMoveNoticeIn;
    animation-play-state: running;
}

.move-notice-leave-active {
    animation-name: ivuMoveNoticeOut;
    animation-play-state: running;
}

.move-notice-enter-active,
.move-notice-appear {
    opacity: 0;
    animation-timing-function: ease-in-out;
}

.move-notice-leave-active {
    animation-timing-function: ease-in-out;
}

@keyframes ivuMoveNoticeIn {
    0% {
        opacity: 0;
        transform-origin: 0 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform-origin: 0 0;
        transform: translateX(0%);
    }
}

@keyframes ivuMoveNoticeOut {
    0% {
        transform-origin: 0 0;
        transform: translateX(0%);
        opacity: 1;
    }
    70% {
        transform-origin: 0 0;
        transform: translateX(100%);
        height: auto;
        padding: 16px;
        margin-bottom: 10px;
        opacity: 0;
    }
    100% {
        transform-origin: 0 0;
        transform: translateX(100%);
        height: 0;
        padding: 0;
        margin-bottom: 0;
        opacity: 0;
    }
}

.ease-enter-active,
.ease-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.ease-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.ease-enter-active,
.ease-appear {
    animation-name: ivuEaseIn;
    animation-play-state: running;
}

.ease-leave-active {
    animation-name: ivuEaseOut;
    animation-play-state: running;
}

.ease-enter-active,
.ease-appear {
    opacity: 0;
    animation-timing-function: linear;
    animation-duration: 0.2s;
}

.ease-leave-active {
    animation-timing-function: linear;
    animation-duration: 0.2s;
}

@keyframes ivuEaseIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ivuEaseOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

.slide-up-enter-active,
.slide-up-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.slide-up-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.slide-up-enter-active,
.slide-up-appear {
    animation-name: ivuSlideUpIn;
    animation-play-state: running;
}

.slide-up-leave-active {
    animation-name: ivuSlideUpOut;
    animation-play-state: running;
}

.slide-up-enter-active,
.slide-up-appear {
    opacity: 0;
    animation-timing-function: ease-in-out;
}

.slide-up-leave-active {
    animation-timing-function: ease-in-out;
}

.slide-down-enter-active,
.slide-down-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.slide-down-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.slide-down-enter-active,
.slide-down-appear {
    animation-name: ivuSlideDownIn;
    animation-play-state: running;
}

.slide-down-leave-active {
    animation-name: ivuSlideDownOut;
    animation-play-state: running;
}

.slide-down-enter-active,
.slide-down-appear {
    opacity: 0;
    animation-timing-function: ease-in-out;
}

.slide-down-leave-active {
    animation-timing-function: ease-in-out;
}

.slide-left-enter-active,
.slide-left-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.slide-left-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.slide-left-enter-active,
.slide-left-appear {
    animation-name: ivuSlideLeftIn;
    animation-play-state: running;
}

.slide-left-leave-active {
    animation-name: ivuSlideLeftOut;
    animation-play-state: running;
}

.slide-left-enter-active,
.slide-left-appear {
    opacity: 0;
    animation-timing-function: ease-in-out;
}

.slide-left-leave-active {
    animation-timing-function: ease-in-out;
}

.slide-right-enter-active,
.slide-right-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.slide-right-leave-active {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.slide-right-enter-active,
.slide-right-appear {
    animation-name: ivuSlideRightIn;
    animation-play-state: running;
}

.slide-right-leave-active {
    animation-name: ivuSlideRightOut;
    animation-play-state: running;
}

.slide-right-enter-active,
.slide-right-appear {
    opacity: 0;
    animation-timing-function: ease-in-out;
}

.slide-right-leave-active {
    animation-timing-function: ease-in-out;
}

@keyframes ivuSlideUpIn {
    0% {
        opacity: 0;
        transform-origin: 0% 0%;
        transform: scaleY(0.8);
    }
    100% {
        opacity: 1;
        transform-origin: 0% 0%;
        transform: scaleY(1);
    }
}

@keyframes ivuSlideUpOut {
    0% {
        opacity: 1;
        transform-origin: 0% 0%;
        transform: scaleY(1);
    }
    100% {
        opacity: 0;
        transform-origin: 0% 0%;
        transform: scaleY(0.8);
    }
}

@keyframes ivuSlideDownIn {
    0% {
        opacity: 0;
        transform-origin: 100% 100%;
        transform: scaleY(0.8);
    }
    100% {
        opacity: 1;
        transform-origin: 100% 100%;
        transform: scaleY(1);
    }
}

@keyframes ivuSlideDownOut {
    0% {
        opacity: 1;
        transform-origin: 100% 100%;
        transform: scaleY(1);
    }
    100% {
        opacity: 0;
        transform-origin: 100% 100%;
        transform: scaleY(0.8);
    }
}

@keyframes ivuSlideLeftIn {
    0% {
        opacity: 0;
        transform-origin: 0% 0%;
        transform: scaleX(0.8);
    }
    100% {
        opacity: 1;
        transform-origin: 0% 0%;
        transform: scaleX(1);
    }
}

@keyframes ivuSlideLeftOut {
    0% {
        opacity: 1;
        transform-origin: 0% 0%;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform-origin: 0% 0%;
        transform: scaleX(0.8);
    }
}

@keyframes ivuSlideRightIn {
    0% {
        opacity: 0;
        transform-origin: 100% 0%;
        transform: scaleX(0.8);
    }
    100% {
        opacity: 1;
        transform-origin: 100% 0%;
        transform: scaleX(1);
    }
}

@keyframes ivuSlideRightOut {
    0% {
        opacity: 1;
        transform-origin: 100% 0%;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform-origin: 100% 0%;
        transform: scaleX(0.8);
    }
}

.ivu-btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1.5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 6px 15px;
    font-size: 12px;
    border-radius: 4px;
    transform: translate3d(0, 0, 0);
    transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
    color: #657180;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn>.ivu-icon {
    line-height: 1;
}

.ivu-btn,
.ivu-btn:active,
.ivu-btn:focus {
    outline: 0;
}

.ivu-btn:not([disabled]):hover {
    text-decoration: none;
}

.ivu-btn:not([disabled]):active {
    outline: 0;
    transition: none;
}

.ivu-btn.disabled,
.ivu-btn[disabled] {
    cursor: not-allowed;
}

.ivu-btn.disabled>*,
.ivu-btn[disabled]>* {
    pointer-events: none;
}

.ivu-btn-large {
    padding: 6px 15px 7px 15px;
    font-size: 14px;
    border-radius: 4px;
}

.ivu-btn-small {
    padding: 2px 7px;
    font-size: 12px;
    border-radius: 3px;
}

.ivu-btn>a:only-child {
    color: currentColor;
}

.ivu-btn>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn:hover {
    color: #848d99;
    background-color: #f9f9f9;
    border-color: #dfe4e9;
}

.ivu-btn:hover>a:only-child {
    color: currentColor;
}

.ivu-btn:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn:active,
.ivu-btn.active {
    color: #606b7a;
    background-color: #ebebeb;
    border-color: #ebebeb;
}

.ivu-btn:active>a:only-child,
.ivu-btn.active>a:only-child {
    color: currentColor;
}

.ivu-btn:active>a:only-child:after,
.ivu-btn.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn.disabled,
.ivu-btn[disabled],
fieldset[disabled] .ivu-btn,
.ivu-btn.disabled:hover,
.ivu-btn[disabled]:hover,
fieldset[disabled] .ivu-btn:hover,
.ivu-btn.disabled:focus,
.ivu-btn[disabled]:focus,
fieldset[disabled] .ivu-btn:focus,
.ivu-btn.disabled:active,
.ivu-btn[disabled]:active,
fieldset[disabled] .ivu-btn:active,
.ivu-btn.disabled.active,
.ivu-btn[disabled].active,
fieldset[disabled] .ivu-btn.active {
    color: #c3cbd6;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn.disabled>a:only-child,
.ivu-btn[disabled]>a:only-child,
fieldset[disabled] .ivu-btn>a:only-child,
.ivu-btn.disabled:hover>a:only-child,
.ivu-btn[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn:hover>a:only-child,
.ivu-btn.disabled:focus>a:only-child,
.ivu-btn[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn:focus>a:only-child,
.ivu-btn.disabled:active>a:only-child,
.ivu-btn[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn:active>a:only-child,
.ivu-btn.disabled.active>a:only-child,
.ivu-btn[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn.active>a:only-child {
    color: currentColor;
}

.ivu-btn.disabled>a:only-child:after,
.ivu-btn[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn>a:only-child:after,
.ivu-btn.disabled:hover>a:only-child:after,
.ivu-btn[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn:hover>a:only-child:after,
.ivu-btn.disabled:focus>a:only-child:after,
.ivu-btn[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn:focus>a:only-child:after,
.ivu-btn.disabled:active>a:only-child:after,
.ivu-btn[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn:active>a:only-child:after,
.ivu-btn.disabled.active>a:only-child:after,
.ivu-btn[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn:hover {
    color: #5cadff;
    background-color: white;
    border-color: #5cadff;
}

.ivu-btn:hover>a:only-child {
    color: currentColor;
}

.ivu-btn:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn:active,
.ivu-btn.active {
    color: #3091f2;
    background-color: white;
    border-color: #3091f2;
}

.ivu-btn:active>a:only-child,
.ivu-btn.active>a:only-child {
    color: currentColor;
}

.ivu-btn:active>a:only-child:after,
.ivu-btn.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-long {
    width: 100%;
}

.ivu-btn>.ivu-icon+span,
.ivu-btn>span+.ivu-icon {
    margin-left: 4px;
}

.ivu-btn-primary {
    color: #fff;
    background-color: #3399ff;
    border-color: #3399ff;
}

.ivu-btn-primary>a:only-child {
    color: currentColor;
}

.ivu-btn-primary>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-primary:hover {
    color: #ffffff;
    background-color: #5cadff;
    border-color: #5cadff;
}

.ivu-btn-primary:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-primary:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-primary:active,
.ivu-btn-primary.active {
    color: #f2f2f2;
    background-color: #3091f2;
    border-color: #3091f2;
}

.ivu-btn-primary:active>a:only-child,
.ivu-btn-primary.active>a:only-child {
    color: currentColor;
}

.ivu-btn-primary:active>a:only-child:after,
.ivu-btn-primary.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-primary.disabled,
.ivu-btn-primary[disabled],
fieldset[disabled] .ivu-btn-primary,
.ivu-btn-primary.disabled:hover,
.ivu-btn-primary[disabled]:hover,
fieldset[disabled] .ivu-btn-primary:hover,
.ivu-btn-primary.disabled:focus,
.ivu-btn-primary[disabled]:focus,
fieldset[disabled] .ivu-btn-primary:focus,
.ivu-btn-primary.disabled:active,
.ivu-btn-primary[disabled]:active,
fieldset[disabled] .ivu-btn-primary:active,
.ivu-btn-primary.disabled.active,
.ivu-btn-primary[disabled].active,
fieldset[disabled] .ivu-btn-primary.active {
    color: #c3cbd6;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn-primary.disabled>a:only-child,
.ivu-btn-primary[disabled]>a:only-child,
fieldset[disabled] .ivu-btn-primary>a:only-child,
.ivu-btn-primary.disabled:hover>a:only-child,
.ivu-btn-primary[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn-primary:hover>a:only-child,
.ivu-btn-primary.disabled:focus>a:only-child,
.ivu-btn-primary[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn-primary:focus>a:only-child,
.ivu-btn-primary.disabled:active>a:only-child,
.ivu-btn-primary[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn-primary:active>a:only-child,
.ivu-btn-primary.disabled.active>a:only-child,
.ivu-btn-primary[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn-primary.active>a:only-child {
    color: currentColor;
}

.ivu-btn-primary.disabled>a:only-child:after,
.ivu-btn-primary[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn-primary>a:only-child:after,
.ivu-btn-primary.disabled:hover>a:only-child:after,
.ivu-btn-primary[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn-primary:hover>a:only-child:after,
.ivu-btn-primary.disabled:focus>a:only-child:after,
.ivu-btn-primary[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn-primary:focus>a:only-child:after,
.ivu-btn-primary.disabled:active>a:only-child:after,
.ivu-btn-primary[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn-primary:active>a:only-child:after,
.ivu-btn-primary.disabled.active>a:only-child:after,
.ivu-btn-primary[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn-primary.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-primary:hover,
.ivu-btn-primary:active,
.ivu-btn-primary.active {
    color: #fff;
}

.ivu-btn-group:not(.ivu-btn-group-vertical) .ivu-btn-primary:not(:first-child):not(:last-child) {
    border-right-color: #3091f2;
    border-left-color: #3091f2;
}

.ivu-btn-group:not(.ivu-btn-group-vertical) .ivu-btn-primary:first-child:not(:last-child) {
    border-right-color: #3091f2;
}

.ivu-btn-group:not(.ivu-btn-group-vertical) .ivu-btn-primary:first-child:not(:last-child)[disabled] {
    border-right-color: #d7dde4;
}

.ivu-btn-group:not(.ivu-btn-group-vertical) .ivu-btn-primary:last-child:not(:first-child),
.ivu-btn-group:not(.ivu-btn-group-vertical) .ivu-btn-primary+.ivu-btn {
    border-left-color: #3091f2;
}

.ivu-btn-group:not(.ivu-btn-group-vertical) .ivu-btn-primary:last-child:not(:first-child)[disabled],
.ivu-btn-group:not(.ivu-btn-group-vertical) .ivu-btn-primary+.ivu-btn[disabled] {
    border-left-color: #d7dde4;
}

.ivu-btn-group-vertical .ivu-btn-primary:not(:first-child):not(:last-child) {
    border-top-color: #3091f2;
    border-bottom-color: #3091f2;
}

.ivu-btn-group-vertical .ivu-btn-primary:first-child:not(:last-child) {
    border-bottom-color: #3091f2;
}

.ivu-btn-group-vertical .ivu-btn-primary:first-child:not(:last-child)[disabled] {
    border-top-color: #d7dde4;
}

.ivu-btn-group-vertical .ivu-btn-primary:last-child:not(:first-child),
.ivu-btn-group-vertical .ivu-btn-primary+.ivu-btn {
    border-top-color: #3091f2;
}

.ivu-btn-group-vertical .ivu-btn-primary:last-child:not(:first-child)[disabled],
.ivu-btn-group-vertical .ivu-btn-primary+.ivu-btn[disabled] {
    border-bottom-color: #d7dde4;
}

.ivu-btn-ghost {
    color: #657180;
    background-color: transparent;
    border-color: #d7dde4;
}

.ivu-btn-ghost>a:only-child {
    color: currentColor;
}

.ivu-btn-ghost>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-ghost:hover {
    color: #848d99;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #dfe4e9;
}

.ivu-btn-ghost:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-ghost:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-ghost:active,
.ivu-btn-ghost.active {
    color: #606b7a;
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.05);
}

.ivu-btn-ghost:active>a:only-child,
.ivu-btn-ghost.active>a:only-child {
    color: currentColor;
}

.ivu-btn-ghost:active>a:only-child:after,
.ivu-btn-ghost.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-ghost.disabled,
.ivu-btn-ghost[disabled],
fieldset[disabled] .ivu-btn-ghost,
.ivu-btn-ghost.disabled:hover,
.ivu-btn-ghost[disabled]:hover,
fieldset[disabled] .ivu-btn-ghost:hover,
.ivu-btn-ghost.disabled:focus,
.ivu-btn-ghost[disabled]:focus,
fieldset[disabled] .ivu-btn-ghost:focus,
.ivu-btn-ghost.disabled:active,
.ivu-btn-ghost[disabled]:active,
fieldset[disabled] .ivu-btn-ghost:active,
.ivu-btn-ghost.disabled.active,
.ivu-btn-ghost[disabled].active,
fieldset[disabled] .ivu-btn-ghost.active {
    color: #c3cbd6;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn-ghost.disabled>a:only-child,
.ivu-btn-ghost[disabled]>a:only-child,
fieldset[disabled] .ivu-btn-ghost>a:only-child,
.ivu-btn-ghost.disabled:hover>a:only-child,
.ivu-btn-ghost[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn-ghost:hover>a:only-child,
.ivu-btn-ghost.disabled:focus>a:only-child,
.ivu-btn-ghost[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn-ghost:focus>a:only-child,
.ivu-btn-ghost.disabled:active>a:only-child,
.ivu-btn-ghost[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn-ghost:active>a:only-child,
.ivu-btn-ghost.disabled.active>a:only-child,
.ivu-btn-ghost[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn-ghost.active>a:only-child {
    color: currentColor;
}

.ivu-btn-ghost.disabled>a:only-child:after,
.ivu-btn-ghost[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn-ghost>a:only-child:after,
.ivu-btn-ghost.disabled:hover>a:only-child:after,
.ivu-btn-ghost[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn-ghost:hover>a:only-child:after,
.ivu-btn-ghost.disabled:focus>a:only-child:after,
.ivu-btn-ghost[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn-ghost:focus>a:only-child:after,
.ivu-btn-ghost.disabled:active>a:only-child:after,
.ivu-btn-ghost[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn-ghost:active>a:only-child:after,
.ivu-btn-ghost.disabled.active>a:only-child:after,
.ivu-btn-ghost[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn-ghost.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-ghost:hover {
    color: #5cadff;
    background-color: transparent;
    border-color: #5cadff;
}

.ivu-btn-ghost:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-ghost:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-ghost:active,
.ivu-btn-ghost.active {
    color: #3091f2;
    background-color: transparent;
    border-color: #3091f2;
}

.ivu-btn-ghost:active>a:only-child,
.ivu-btn-ghost.active>a:only-child {
    color: currentColor;
}

.ivu-btn-ghost:active>a:only-child:after,
.ivu-btn-ghost.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-dashed {
    color: #657180;
    background-color: transparent;
    border-color: #d7dde4;
    border-style: dashed;
}

.ivu-btn-dashed>a:only-child {
    color: currentColor;
}

.ivu-btn-dashed>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-dashed:hover {
    color: #848d99;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #dfe4e9;
}

.ivu-btn-dashed:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-dashed:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-dashed:active,
.ivu-btn-dashed.active {
    color: #606b7a;
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.05);
}

.ivu-btn-dashed:active>a:only-child,
.ivu-btn-dashed.active>a:only-child {
    color: currentColor;
}

.ivu-btn-dashed:active>a:only-child:after,
.ivu-btn-dashed.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-dashed.disabled,
.ivu-btn-dashed[disabled],
fieldset[disabled] .ivu-btn-dashed,
.ivu-btn-dashed.disabled:hover,
.ivu-btn-dashed[disabled]:hover,
fieldset[disabled] .ivu-btn-dashed:hover,
.ivu-btn-dashed.disabled:focus,
.ivu-btn-dashed[disabled]:focus,
fieldset[disabled] .ivu-btn-dashed:focus,
.ivu-btn-dashed.disabled:active,
.ivu-btn-dashed[disabled]:active,
fieldset[disabled] .ivu-btn-dashed:active,
.ivu-btn-dashed.disabled.active,
.ivu-btn-dashed[disabled].active,
fieldset[disabled] .ivu-btn-dashed.active {
    color: #c3cbd6;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn-dashed.disabled>a:only-child,
.ivu-btn-dashed[disabled]>a:only-child,
fieldset[disabled] .ivu-btn-dashed>a:only-child,
.ivu-btn-dashed.disabled:hover>a:only-child,
.ivu-btn-dashed[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn-dashed:hover>a:only-child,
.ivu-btn-dashed.disabled:focus>a:only-child,
.ivu-btn-dashed[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn-dashed:focus>a:only-child,
.ivu-btn-dashed.disabled:active>a:only-child,
.ivu-btn-dashed[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn-dashed:active>a:only-child,
.ivu-btn-dashed.disabled.active>a:only-child,
.ivu-btn-dashed[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn-dashed.active>a:only-child {
    color: currentColor;
}

.ivu-btn-dashed.disabled>a:only-child:after,
.ivu-btn-dashed[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn-dashed>a:only-child:after,
.ivu-btn-dashed.disabled:hover>a:only-child:after,
.ivu-btn-dashed[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn-dashed:hover>a:only-child:after,
.ivu-btn-dashed.disabled:focus>a:only-child:after,
.ivu-btn-dashed[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn-dashed:focus>a:only-child:after,
.ivu-btn-dashed.disabled:active>a:only-child:after,
.ivu-btn-dashed[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn-dashed:active>a:only-child:after,
.ivu-btn-dashed.disabled.active>a:only-child:after,
.ivu-btn-dashed[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn-dashed.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-dashed:hover {
    color: #5cadff;
    background-color: transparent;
    border-color: #5cadff;
}

.ivu-btn-dashed:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-dashed:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-dashed:active,
.ivu-btn-dashed.active {
    color: #3091f2;
    background-color: transparent;
    border-color: #3091f2;
}

.ivu-btn-dashed:active>a:only-child,
.ivu-btn-dashed.active>a:only-child {
    color: currentColor;
}

.ivu-btn-dashed:active>a:only-child:after,
.ivu-btn-dashed.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-text {
    color: #657180;
    background-color: transparent;
    border-color: transparent;
}

.ivu-btn-text>a:only-child {
    color: currentColor;
}

.ivu-btn-text>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-text:hover {
    color: #848d99;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.ivu-btn-text:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-text:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-text:active,
.ivu-btn-text.active {
    color: #606b7a;
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.05);
}

.ivu-btn-text:active>a:only-child,
.ivu-btn-text.active>a:only-child {
    color: currentColor;
}

.ivu-btn-text:active>a:only-child:after,
.ivu-btn-text.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-text.disabled,
.ivu-btn-text[disabled],
fieldset[disabled] .ivu-btn-text,
.ivu-btn-text.disabled:hover,
.ivu-btn-text[disabled]:hover,
fieldset[disabled] .ivu-btn-text:hover,
.ivu-btn-text.disabled:focus,
.ivu-btn-text[disabled]:focus,
fieldset[disabled] .ivu-btn-text:focus,
.ivu-btn-text.disabled:active,
.ivu-btn-text[disabled]:active,
fieldset[disabled] .ivu-btn-text:active,
.ivu-btn-text.disabled.active,
.ivu-btn-text[disabled].active,
fieldset[disabled] .ivu-btn-text.active {
    color: #c3cbd6;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn-text.disabled>a:only-child,
.ivu-btn-text[disabled]>a:only-child,
fieldset[disabled] .ivu-btn-text>a:only-child,
.ivu-btn-text.disabled:hover>a:only-child,
.ivu-btn-text[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn-text:hover>a:only-child,
.ivu-btn-text.disabled:focus>a:only-child,
.ivu-btn-text[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn-text:focus>a:only-child,
.ivu-btn-text.disabled:active>a:only-child,
.ivu-btn-text[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn-text:active>a:only-child,
.ivu-btn-text.disabled.active>a:only-child,
.ivu-btn-text[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn-text.active>a:only-child {
    color: currentColor;
}

.ivu-btn-text.disabled>a:only-child:after,
.ivu-btn-text[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn-text>a:only-child:after,
.ivu-btn-text.disabled:hover>a:only-child:after,
.ivu-btn-text[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn-text:hover>a:only-child:after,
.ivu-btn-text.disabled:focus>a:only-child:after,
.ivu-btn-text[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn-text:focus>a:only-child:after,
.ivu-btn-text.disabled:active>a:only-child:after,
.ivu-btn-text[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn-text:active>a:only-child:after,
.ivu-btn-text.disabled.active>a:only-child:after,
.ivu-btn-text[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn-text.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-text.disabled,
.ivu-btn-text[disabled],
fieldset[disabled] .ivu-btn-text,
.ivu-btn-text.disabled:hover,
.ivu-btn-text[disabled]:hover,
fieldset[disabled] .ivu-btn-text:hover,
.ivu-btn-text.disabled:focus,
.ivu-btn-text[disabled]:focus,
fieldset[disabled] .ivu-btn-text:focus,
.ivu-btn-text.disabled:active,
.ivu-btn-text[disabled]:active,
fieldset[disabled] .ivu-btn-text:active,
.ivu-btn-text.disabled.active,
.ivu-btn-text[disabled].active,
fieldset[disabled] .ivu-btn-text.active {
    color: #c3cbd6;
    background-color: transparent;
    border-color: transparent;
}

.ivu-btn-text.disabled>a:only-child,
.ivu-btn-text[disabled]>a:only-child,
fieldset[disabled] .ivu-btn-text>a:only-child,
.ivu-btn-text.disabled:hover>a:only-child,
.ivu-btn-text[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn-text:hover>a:only-child,
.ivu-btn-text.disabled:focus>a:only-child,
.ivu-btn-text[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn-text:focus>a:only-child,
.ivu-btn-text.disabled:active>a:only-child,
.ivu-btn-text[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn-text:active>a:only-child,
.ivu-btn-text.disabled.active>a:only-child,
.ivu-btn-text[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn-text.active>a:only-child {
    color: currentColor;
}

.ivu-btn-text.disabled>a:only-child:after,
.ivu-btn-text[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn-text>a:only-child:after,
.ivu-btn-text.disabled:hover>a:only-child:after,
.ivu-btn-text[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn-text:hover>a:only-child:after,
.ivu-btn-text.disabled:focus>a:only-child:after,
.ivu-btn-text[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn-text:focus>a:only-child:after,
.ivu-btn-text.disabled:active>a:only-child:after,
.ivu-btn-text[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn-text:active>a:only-child:after,
.ivu-btn-text.disabled.active>a:only-child:after,
.ivu-btn-text[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn-text.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-text:hover {
    color: #5cadff;
    background-color: transparent;
    border-color: transparent;
}

.ivu-btn-text:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-text:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-text:active,
.ivu-btn-text.active {
    color: #3091f2;
    background-color: transparent;
    border-color: transparent;
}

.ivu-btn-text:active>a:only-child,
.ivu-btn-text.active>a:only-child {
    color: currentColor;
}

.ivu-btn-text:active>a:only-child:after,
.ivu-btn-text.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-success {
    color: #fff;
    background-color: #00cc66;
    border-color: #00cc66;
}

.ivu-btn-success>a:only-child {
    color: currentColor;
}

.ivu-btn-success>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-success:hover {
    color: #ffffff;
    background-color: #33d685;
    border-color: #33d685;
}

.ivu-btn-success:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-success:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-success:active,
.ivu-btn-success.active {
    color: #f2f2f2;
    background-color: #00c261;
    border-color: #00c261;
}

.ivu-btn-success:active>a:only-child,
.ivu-btn-success.active>a:only-child {
    color: currentColor;
}

.ivu-btn-success:active>a:only-child:after,
.ivu-btn-success.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-success.disabled,
.ivu-btn-success[disabled],
fieldset[disabled] .ivu-btn-success,
.ivu-btn-success.disabled:hover,
.ivu-btn-success[disabled]:hover,
fieldset[disabled] .ivu-btn-success:hover,
.ivu-btn-success.disabled:focus,
.ivu-btn-success[disabled]:focus,
fieldset[disabled] .ivu-btn-success:focus,
.ivu-btn-success.disabled:active,
.ivu-btn-success[disabled]:active,
fieldset[disabled] .ivu-btn-success:active,
.ivu-btn-success.disabled.active,
.ivu-btn-success[disabled].active,
fieldset[disabled] .ivu-btn-success.active {
    color: #c3cbd6;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn-success.disabled>a:only-child,
.ivu-btn-success[disabled]>a:only-child,
fieldset[disabled] .ivu-btn-success>a:only-child,
.ivu-btn-success.disabled:hover>a:only-child,
.ivu-btn-success[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn-success:hover>a:only-child,
.ivu-btn-success.disabled:focus>a:only-child,
.ivu-btn-success[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn-success:focus>a:only-child,
.ivu-btn-success.disabled:active>a:only-child,
.ivu-btn-success[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn-success:active>a:only-child,
.ivu-btn-success.disabled.active>a:only-child,
.ivu-btn-success[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn-success.active>a:only-child {
    color: currentColor;
}

.ivu-btn-success.disabled>a:only-child:after,
.ivu-btn-success[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn-success>a:only-child:after,
.ivu-btn-success.disabled:hover>a:only-child:after,
.ivu-btn-success[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn-success:hover>a:only-child:after,
.ivu-btn-success.disabled:focus>a:only-child:after,
.ivu-btn-success[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn-success:focus>a:only-child:after,
.ivu-btn-success.disabled:active>a:only-child:after,
.ivu-btn-success[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn-success:active>a:only-child:after,
.ivu-btn-success.disabled.active>a:only-child:after,
.ivu-btn-success[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn-success.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-success:hover,
.ivu-btn-success:active,
.ivu-btn-success.active {
    color: #fff;
}

.ivu-btn-warning {
    color: #fff;
    background-color: #ff9900;
    border-color: #ff9900;
}

.ivu-btn-warning>a:only-child {
    color: currentColor;
}

.ivu-btn-warning>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-warning:hover {
    color: #ffffff;
    background-color: #ffad33;
    border-color: #ffad33;
}

.ivu-btn-warning:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-warning:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-warning:active,
.ivu-btn-warning.active {
    color: #f2f2f2;
    background-color: #f29100;
    border-color: #f29100;
}

.ivu-btn-warning:active>a:only-child,
.ivu-btn-warning.active>a:only-child {
    color: currentColor;
}

.ivu-btn-warning:active>a:only-child:after,
.ivu-btn-warning.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-warning.disabled,
.ivu-btn-warning[disabled],
fieldset[disabled] .ivu-btn-warning,
.ivu-btn-warning.disabled:hover,
.ivu-btn-warning[disabled]:hover,
fieldset[disabled] .ivu-btn-warning:hover,
.ivu-btn-warning.disabled:focus,
.ivu-btn-warning[disabled]:focus,
fieldset[disabled] .ivu-btn-warning:focus,
.ivu-btn-warning.disabled:active,
.ivu-btn-warning[disabled]:active,
fieldset[disabled] .ivu-btn-warning:active,
.ivu-btn-warning.disabled.active,
.ivu-btn-warning[disabled].active,
fieldset[disabled] .ivu-btn-warning.active {
    color: #c3cbd6;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn-warning.disabled>a:only-child,
.ivu-btn-warning[disabled]>a:only-child,
fieldset[disabled] .ivu-btn-warning>a:only-child,
.ivu-btn-warning.disabled:hover>a:only-child,
.ivu-btn-warning[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn-warning:hover>a:only-child,
.ivu-btn-warning.disabled:focus>a:only-child,
.ivu-btn-warning[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn-warning:focus>a:only-child,
.ivu-btn-warning.disabled:active>a:only-child,
.ivu-btn-warning[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn-warning:active>a:only-child,
.ivu-btn-warning.disabled.active>a:only-child,
.ivu-btn-warning[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn-warning.active>a:only-child {
    color: currentColor;
}

.ivu-btn-warning.disabled>a:only-child:after,
.ivu-btn-warning[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn-warning>a:only-child:after,
.ivu-btn-warning.disabled:hover>a:only-child:after,
.ivu-btn-warning[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn-warning:hover>a:only-child:after,
.ivu-btn-warning.disabled:focus>a:only-child:after,
.ivu-btn-warning[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn-warning:focus>a:only-child:after,
.ivu-btn-warning.disabled:active>a:only-child:after,
.ivu-btn-warning[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn-warning:active>a:only-child:after,
.ivu-btn-warning.disabled.active>a:only-child:after,
.ivu-btn-warning[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn-warning.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-warning:hover,
.ivu-btn-warning:active,
.ivu-btn-warning.active {
    color: #fff;
}

.ivu-btn-error {
    color: #fff;
    background-color: #ff3300;
    border-color: #ff3300;
}

.ivu-btn-error>a:only-child {
    color: currentColor;
}

.ivu-btn-error>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-error:hover {
    color: #ffffff;
    background-color: #ff5c33;
    border-color: #ff5c33;
}

.ivu-btn-error:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-error:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-error:active,
.ivu-btn-error.active {
    color: #f2f2f2;
    background-color: #f23000;
    border-color: #f23000;
}

.ivu-btn-error:active>a:only-child,
.ivu-btn-error.active>a:only-child {
    color: currentColor;
}

.ivu-btn-error:active>a:only-child:after,
.ivu-btn-error.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-error.disabled,
.ivu-btn-error[disabled],
fieldset[disabled] .ivu-btn-error,
.ivu-btn-error.disabled:hover,
.ivu-btn-error[disabled]:hover,
fieldset[disabled] .ivu-btn-error:hover,
.ivu-btn-error.disabled:focus,
.ivu-btn-error[disabled]:focus,
fieldset[disabled] .ivu-btn-error:focus,
.ivu-btn-error.disabled:active,
.ivu-btn-error[disabled]:active,
fieldset[disabled] .ivu-btn-error:active,
.ivu-btn-error.disabled.active,
.ivu-btn-error[disabled].active,
fieldset[disabled] .ivu-btn-error.active {
    color: #c3cbd6;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn-error.disabled>a:only-child,
.ivu-btn-error[disabled]>a:only-child,
fieldset[disabled] .ivu-btn-error>a:only-child,
.ivu-btn-error.disabled:hover>a:only-child,
.ivu-btn-error[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn-error:hover>a:only-child,
.ivu-btn-error.disabled:focus>a:only-child,
.ivu-btn-error[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn-error:focus>a:only-child,
.ivu-btn-error.disabled:active>a:only-child,
.ivu-btn-error[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn-error:active>a:only-child,
.ivu-btn-error.disabled.active>a:only-child,
.ivu-btn-error[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn-error.active>a:only-child {
    color: currentColor;
}

.ivu-btn-error.disabled>a:only-child:after,
.ivu-btn-error[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn-error>a:only-child:after,
.ivu-btn-error.disabled:hover>a:only-child:after,
.ivu-btn-error[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn-error:hover>a:only-child:after,
.ivu-btn-error.disabled:focus>a:only-child:after,
.ivu-btn-error[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn-error:focus>a:only-child:after,
.ivu-btn-error.disabled:active>a:only-child:after,
.ivu-btn-error[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn-error:active>a:only-child:after,
.ivu-btn-error.disabled.active>a:only-child:after,
.ivu-btn-error[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn-error.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-error:hover,
.ivu-btn-error:active,
.ivu-btn-error.active {
    color: #fff;
}

.ivu-btn-info {
    color: #fff;
    background-color: #2db7f5;
    border-color: #2db7f5;
}

.ivu-btn-info>a:only-child {
    color: currentColor;
}

.ivu-btn-info>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-info:hover {
    color: #ffffff;
    background-color: #57c5f7;
    border-color: #57c5f7;
}

.ivu-btn-info:hover>a:only-child {
    color: currentColor;
}

.ivu-btn-info:hover>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-info:active,
.ivu-btn-info.active {
    color: #f2f2f2;
    background-color: #2baee9;
    border-color: #2baee9;
}

.ivu-btn-info:active>a:only-child,
.ivu-btn-info.active>a:only-child {
    color: currentColor;
}

.ivu-btn-info:active>a:only-child:after,
.ivu-btn-info.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-info.disabled,
.ivu-btn-info[disabled],
fieldset[disabled] .ivu-btn-info,
.ivu-btn-info.disabled:hover,
.ivu-btn-info[disabled]:hover,
fieldset[disabled] .ivu-btn-info:hover,
.ivu-btn-info.disabled:focus,
.ivu-btn-info[disabled]:focus,
fieldset[disabled] .ivu-btn-info:focus,
.ivu-btn-info.disabled:active,
.ivu-btn-info[disabled]:active,
fieldset[disabled] .ivu-btn-info:active,
.ivu-btn-info.disabled.active,
.ivu-btn-info[disabled].active,
fieldset[disabled] .ivu-btn-info.active {
    color: #c3cbd6;
    background-color: #f7f7f7;
    border-color: #d7dde4;
}

.ivu-btn-info.disabled>a:only-child,
.ivu-btn-info[disabled]>a:only-child,
fieldset[disabled] .ivu-btn-info>a:only-child,
.ivu-btn-info.disabled:hover>a:only-child,
.ivu-btn-info[disabled]:hover>a:only-child,
fieldset[disabled] .ivu-btn-info:hover>a:only-child,
.ivu-btn-info.disabled:focus>a:only-child,
.ivu-btn-info[disabled]:focus>a:only-child,
fieldset[disabled] .ivu-btn-info:focus>a:only-child,
.ivu-btn-info.disabled:active>a:only-child,
.ivu-btn-info[disabled]:active>a:only-child,
fieldset[disabled] .ivu-btn-info:active>a:only-child,
.ivu-btn-info.disabled.active>a:only-child,
.ivu-btn-info[disabled].active>a:only-child,
fieldset[disabled] .ivu-btn-info.active>a:only-child {
    color: currentColor;
}

.ivu-btn-info.disabled>a:only-child:after,
.ivu-btn-info[disabled]>a:only-child:after,
fieldset[disabled] .ivu-btn-info>a:only-child:after,
.ivu-btn-info.disabled:hover>a:only-child:after,
.ivu-btn-info[disabled]:hover>a:only-child:after,
fieldset[disabled] .ivu-btn-info:hover>a:only-child:after,
.ivu-btn-info.disabled:focus>a:only-child:after,
.ivu-btn-info[disabled]:focus>a:only-child:after,
fieldset[disabled] .ivu-btn-info:focus>a:only-child:after,
.ivu-btn-info.disabled:active>a:only-child:after,
.ivu-btn-info[disabled]:active>a:only-child:after,
fieldset[disabled] .ivu-btn-info:active>a:only-child:after,
.ivu-btn-info.disabled.active>a:only-child:after,
.ivu-btn-info[disabled].active>a:only-child:after,
fieldset[disabled] .ivu-btn-info.active>a:only-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.ivu-btn-info:hover,
.ivu-btn-info:active,
.ivu-btn-info.active {
    color: #fff;
}

.ivu-btn-circle,
.ivu-btn-circle-outline {
    border-radius: 32px;
}

.ivu-btn-circle.ivu-btn-large,
.ivu-btn-circle-outline.ivu-btn-large {
    border-radius: 36px;
}

.ivu-btn-circle.ivu-btn-size,
.ivu-btn-circle-outline.ivu-btn-size {
    border-radius: 24px;
}

.ivu-btn-circle.ivu-btn-icon-only,
.ivu-btn-circle-outline.ivu-btn-icon-only {
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 16px;
    border-radius: 50%;
}

.ivu-btn-circle.ivu-btn-icon-only.ivu-btn-large,
.ivu-btn-circle-outline.ivu-btn-icon-only.ivu-btn-large {
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 16px;
    border-radius: 50%;
}

.ivu-btn-circle.ivu-btn-icon-only.ivu-btn-small,
.ivu-btn-circle-outline.ivu-btn-icon-only.ivu-btn-small {
    width: 24px;
    height: 24px;
    padding: 0;
    font-size: 14px;
    border-radius: 50%;
}

.ivu-btn:before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background: #fff;
    opacity: 0.35;
    content: '';
    border-radius: inherit;
    z-index: 1;
    transition: opacity 0.2s;
    pointer-events: none;
    display: none;
}

.ivu-btn.ivu-btn-loading {
    pointer-events: none;
    position: relative;
}

.ivu-btn.ivu-btn-loading:before {
    display: block;
}

.ivu-btn-group {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.ivu-btn-group>.ivu-btn {
    position: relative;
    float: left;
}

.ivu-btn-group>.ivu-btn:hover,
.ivu-btn-group>.ivu-btn:active,
.ivu-btn-group>.ivu-btn.active {
    z-index: 2;
}

.ivu-btn-group .ivu-btn-icon-only .ivu-icon {
    font-size: 14px;
    position: relative;
    top: 1px;
}

.ivu-btn-group-large .ivu-btn-icon-only .ivu-icon {
    font-size: 16px;
    top: 2px;
}

.ivu-btn-group-small .ivu-btn-icon-only .ivu-icon {
    font-size: 12px;
    top: 0;
}

.ivu-btn-group-circle .ivu-btn {
    border-radius: 32px;
}

.ivu-btn-group-large.ivu-btn-group-circle .ivu-btn {
    border-radius: 36px;
}

.ivu-btn-group-large>.ivu-btn {
    padding: 6px 15px 7px 15px;
    font-size: 14px;
    border-radius: 4px;
}

.ivu-btn-group-small.ivu-btn-group-circle .ivu-btn {
    border-radius: 24px;
}

.ivu-btn-group-small>.ivu-btn {
    padding: 2px 7px;
    font-size: 12px;
    border-radius: 3px;
}

.ivu-btn-group-small>.ivu-btn>.ivu-icon {
    font-size: 12px;
}

.ivu-btn-group .ivu-btn+.ivu-btn,
.ivu-btn+.ivu-btn-group,
.ivu-btn-group+.ivu-btn,
.ivu-btn-group+.ivu-btn-group {
    margin-left: -1px;
}

.ivu-btn-group .ivu-btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.ivu-btn-group:not(.ivu-btn-group-vertical)>.ivu-btn:first-child {
    margin-left: 0;
}

.ivu-btn-group:not(.ivu-btn-group-vertical)>.ivu-btn:first-child:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.ivu-btn-group:not(.ivu-btn-group-vertical)>.ivu-btn:last-child:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.ivu-btn-group>.ivu-btn-group {
    float: left;
}

.ivu-btn-group>.ivu-btn-group:not(:first-child):not(:last-child)>.ivu-btn {
    border-radius: 0;
}

.ivu-btn-group:not(.ivu-btn-group-vertical)>.ivu-btn-group:first-child:not(:last-child)>.ivu-btn:last-child {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    padding-right: 8px;
}

.ivu-btn-group:not(.ivu-btn-group-vertical)>.ivu-btn-group:last-child:not(:first-child)>.ivu-btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    padding-left: 8px;
}

.ivu-btn-group-vertical {
    display: inline-block;
    vertical-align: middle;
}

.ivu-btn-group-vertical>.ivu-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    float: none;
}

.ivu-btn-group-vertical .ivu-btn+.ivu-btn,
.ivu-btn+.ivu-btn-group-vertical,
.ivu-btn-group-vertical+.ivu-btn,
.ivu-btn-group-vertical+.ivu-btn-group-vertical {
    margin-top: -1px;
    margin-left: 0px;
}

.ivu-btn-group-vertical>.ivu-btn:first-child {
    margin-top: 0;
}

.ivu-btn-group-vertical>.ivu-btn:first-child:not(:last-child) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.ivu-btn-group-vertical>.ivu-btn:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.ivu-btn-group-vertical>.ivu-btn-group-vertical:first-child:not(:last-child)>.ivu-btn:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 8px;
}

.ivu-btn-group-vertical>.ivu-btn-group-vertical:last-child:not(:first-child)>.ivu-btn:first-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding-top: 8px;
}

.ivu-affix {
    position: fixed;
    z-index: 10;
}

.ivu-back-top {
    z-index: 10;
    position: fixed;
    cursor: pointer;
    display: none;
}

.ivu-back-top.ivu-back-top-show {
    display: block;
}

.ivu-back-top-inner {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
}

.ivu-back-top-inner:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.ivu-back-top i {
    color: #fff;
    font-size: 24px;
    padding: 8px 12px;
}

.ivu-badge {
    position: relative;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.ivu-badge-count {
    position: absolute;
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    top: -10px;
    right: 0;
    height: 20px;
    border-radius: 10px;
    min-width: 20px;
    background: #ff3300;
    border: 1px solid transparent;
    color: #fff;
    line-height: 18px;
    text-align: center;
    padding: 0 6px;
    font-size: 12px;
    white-space: nowrap;
    -ms-transform-origin: -10% center;
    transform-origin: -10% center;
    z-index: 10;
    box-shadow: 0 0 0 1px #fff;
}

.ivu-badge-count a,
.ivu-badge-count a:hover {
    color: #fff;
}

.ivu-badge-count-alone {
    top: auto;
    display: block;
    position: relative;
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.ivu-badge-dot {
    position: absolute;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform-origin: 0 center;
    transform-origin: 0 center;
    top: -4px;
    right: -8px;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #ff3300;
    z-index: 10;
    box-shadow: 0 0 0 1px #fff;
}

.ivu-chart-circle {
    display: inline-block;
    position: relative;
}

.ivu-chart-circle-inner {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 1;
}

.ivu-spin {
    color: #3399ff;
    vertical-align: middle;
    text-align: center;
}

.ivu-spin-dot {
    position: relative;
    display: block;
    border-radius: 50%;
    background-color: #3399ff;
    width: 20px;
    height: 20px;
    animation: ani-spin-bounce 1s 0s ease-in-out infinite;
}

.ivu-spin-large .ivu-spin-dot {
    width: 32px;
    height: 32px;
}

.ivu-spin-small .ivu-spin-dot {
    width: 12px;
    height: 12px;
}

.ivu-spin-fix {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8;
    display: table;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.ivu-spin-fix .ivu-spin-main {
    display: table-cell;
    vertical-align: middle;
    width: inherit;
    height: inherit;
}

.ivu-spin-fix .ivu-spin-dot {
    display: inline-block;
}

.ivu-spin-text,
.ivu-spin-show-text .ivu-spin-dot {
    display: none;
}

.ivu-spin-show-text .ivu-spin-text {
    display: block;
}

@keyframes ani-spin-bounce {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.ivu-alert {
    position: relative;
    padding: 8px 48px 8px 16px;
    border-radius: 6px;
    color: #657180;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
}

.ivu-alert.ivu-alert-with-icon {
    padding: 8px 48px 8px 38px;
}

.ivu-alert-icon {
    font-size: 14px;
    top: 8px;
    left: 16px;
    position: absolute;
}

.ivu-alert-desc {
    font-size: 12px;
    color: #657180;
    line-height: 21px;
    display: none;
    text-align: justify;
}

.ivu-alert-success {
    border: 1px solid #ccf5e0;
    background-color: #e6faf0;
}

.ivu-alert-success .ivu-alert-icon {
    color: #00cc66;
}

.ivu-alert-info {
    border: 1px solid #d6ebff;
    background-color: #ebf5ff;
}

.ivu-alert-info .ivu-alert-icon {
    color: #3399ff;
}

.ivu-alert-warning {
    border: 1px solid #ffebcc;
    background-color: #fff5e6;
}

.ivu-alert-warning .ivu-alert-icon {
    color: #ff9900;
}

.ivu-alert-error {
    border: 1px solid #ffd6cc;
    background-color: #ffebe6;
}

.ivu-alert-error .ivu-alert-icon {
    color: #ff3300;
}

.ivu-alert-close {
    font-size: 12px;
    position: absolute;
    right: 16px;
    top: 8px;
    overflow: hidden;
    cursor: pointer;
}

.ivu-alert-close .ivu-icon-ios-close-empty {
    font-size: 22px;
    color: #999;
    transition: color 0.2s ease;
    position: relative;
    top: -3px;
}

.ivu-alert-close .ivu-icon-ios-close-empty:hover {
    color: #444;
}

.ivu-alert-with-desc {
    padding: 16px;
    position: relative;
    border-radius: 6px;
    margin-bottom: 10px;
    color: #657180;
    line-height: 1.5;
}

.ivu-alert-with-desc.ivu-alert-with-icon {
    padding: 16px 16px 16px 69px;
}

.ivu-alert-with-desc .ivu-alert-desc {
    display: block;
}

.ivu-alert-with-desc .ivu-alert-message {
    font-size: 14px;
    color: #464c5b;
    display: block;
}

.ivu-alert-with-desc .ivu-alert-icon {
    top: 50%;
    left: 24px;
    margin-top: -21px;
    font-size: 28px;
}

.ivu-alert-with-banner {
    border-radius: 0;
}

.ivu-collapse {
    background-color: #f7f7f7;
    border-radius: 3px;
    border: 1px solid #d7dde4;
}

.ivu-collapse>.ivu-collapse-item {
    border-top: 1px solid #d7dde4;
}

.ivu-collapse>.ivu-collapse-item:first-child {
    border-top: 0;
}

.ivu-collapse>.ivu-collapse-item>.ivu-collapse-header {
    height: 38px;
    line-height: 38px;
    padding-left: 32px;
    color: #666;
    cursor: pointer;
    position: relative;
}

.ivu-collapse>.ivu-collapse-item>.ivu-collapse-header>i {
    transition: transform 0.2s ease-in-out;
}

.ivu-collapse>.ivu-collapse-item.ivu-collapse-item-active>.ivu-collapse-header>i {
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.ivu-collapse-content {
    overflow: hidden;
    color: #657180;
    padding: 0 16px;
    background-color: #fff;
}

.ivu-collapse-content>.ivu-collapse-content-box {
    padding-top: 16px;
    padding-bottom: 16px;
}

.ivu-collapse-item:last-child>.ivu-collapse-content {
    border-radius: 0 0 3px 3px;
}

.ivu-card {
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.ivu-card-bordered {
    border: 1px solid #d7dde4;
    border-color: #e3e8ee;
}

.ivu-card-shadow {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.ivu-card:hover {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    border-color: #eee;
}

.ivu-card.ivu-card-dis-hover:hover {
    box-shadow: none;
    border-color: transparent;
}

.ivu-card.ivu-card-dis-hover.ivu-card-bordered:hover {
    border-color: #e3e8ee;
}

.ivu-card.ivu-card-shadow:hover {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.ivu-card-head {
    border-bottom: 1px solid #e3e8ee;
    padding: 14px 16px;
    line-height: 1;
}

.ivu-card-head p,
.ivu-card-head-inner {
    display: inline-block;
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #464c5b;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ivu-card-extra {
    position: absolute;
    right: 16px;
    top: 14px;
}

.ivu-card-body {
    padding: 16px;
}

.ivu-message {
    font-size: 12px;
    position: fixed;
    z-index: 1010;
    width: 100%;
    top: 16px;
    left: 0;
}

.ivu-message-notice {
    width: auto;
    vertical-align: middle;
    position: absolute;
    left: 50%;
}

.ivu-message-notice-content {
    position: relative;
    right: 50%;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    background: #fff;
    display: block;
}

.ivu-message-success .ivu-icon {
    color: #00cc66;
}

.ivu-message-error .ivu-icon {
    color: #ff3300;
}

.ivu-message-warning .ivu-icon {
    color: #ff9900;
}

.ivu-message-info .ivu-icon,
.ivu-message-loading .ivu-icon {
    color: #3399ff;
}

.ivu-message .ivu-icon {
    margin-right: 8px;
    font-size: 14px;
    top: 1px;
    position: relative;
}

.ivu-notice {
    width: 335px;
    margin-right: 24px;
    position: fixed;
    z-index: 1010;
}

.ivu-notice-notice {
    margin-bottom: 10px;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    background: #fff;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.ivu-notice-notice-close {
    position: absolute;
    right: 16px;
    top: 15px;
    color: #999;
    outline: none;
}

.ivu-notice-notice-close i {
    font-size: 22px;
    color: #999;
    transition: color 0.2s ease;
    position: relative;
    top: -3px;
}

.ivu-notice-notice-close i:hover {
    color: #444;
}

.ivu-notice-notice-with-desc .ivu-notice-notice-close {
    top: 11px;
}

.ivu-notice-title {
    font-size: 14px;
    color: #464c5b;
    padding-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ivu-notice-with-desc .ivu-notice-title {
    margin-bottom: 8px;
}

.ivu-notice-with-desc.ivu-notice-with-icon .ivu-notice-title {
    margin-left: 51px;
}

.ivu-notice-desc {
    font-size: 12px;
    color: #999;
    text-align: justify;
    line-height: 1.5;
}

.ivu-notice-with-desc.ivu-notice-with-icon .ivu-notice-desc {
    margin-left: 51px;
}

.ivu-notice-with-icon .ivu-notice-title {
    margin-left: 26px;
}

.ivu-notice-icon {
    position: absolute;
    left: 20px;
    margin-top: -1px;
    font-size: 16px;
}

.ivu-notice-icon-success {
    color: #00cc66;
}

.ivu-notice-icon-info {
    color: #3399ff;
}

.ivu-notice-icon-warning {
    color: #ff9900;
}

.ivu-notice-icon-error {
    color: #ff3300;
}

.ivu-notice-with-desc .ivu-notice-icon {
    font-size: 36px;
}

.ivu-notice-custom-content:after {
    content: "";
    display: block;
    width: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.ivu-notice-with-normal:after {
    background: #3399ff;
}

.ivu-notice-with-info:after {
    background: #3399ff;
}

.ivu-notice-with-success:after {
    background: #00cc66;
}

.ivu-notice-with-warning:after {
    background: #ff9900;
}

.ivu-notice-with-error:after {
    background: #ff3300;
}

.ivu-radio-group {
    display: inline-block;
    font-size: 12px;
}

.ivu-radio-group-vertical .ivu-radio-wrapper {
    display: block;
    height: 30px;
    line-height: 30px;
}

.ivu-radio-wrapper {
    font-size: 12px;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    margin-right: 8px;
    cursor: pointer;
}

.ivu-radio-wrapper-disabled {
    cursor: not-allowed;
}

.ivu-radio {
    display: inline-block;
    margin-right: 4px;
    white-space: nowrap;
    outline: none;
    position: relative;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
}

.ivu-radio:hover .ivu-radio-inner {
    border-color: #bcbcbc;
}

.ivu-radio-inner {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
    top: 0;
    left: 0;
    background-color: #fff;
    border: 1px solid #d7dde4;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.ivu-radio-inner:after {
    position: absolute;
    width: 8px;
    height: 8px;
    left: 2px;
    top: 2px;
    border-radius: 6px;
    display: table;
    border-top: 0;
    border-left: 0;
    content: ' ';
    background-color: #3399ff;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    -ms-transform: scale(0);
    transform: scale(0);
}

.ivu-radio-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.ivu-radio-checked .ivu-radio-inner {
    border-color: #3399ff;
}

.ivu-radio-checked .ivu-radio-inner:after {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all 0.2s ease-in-out;
}

.ivu-radio-checked:hover .ivu-radio-inner {
    border-color: #3399ff;
}

.ivu-radio-disabled {
    cursor: not-allowed;
}

.ivu-radio-disabled .ivu-radio-input {
    cursor: not-allowed;
}

.ivu-radio-disabled:hover .ivu-radio-inner {
    border-color: #d7dde4;
}

.ivu-radio-disabled .ivu-radio-inner {
    border-color: #d7dde4;
    background-color: #f3f3f3;
}

.ivu-radio-disabled .ivu-radio-inner:after {
    background-color: #cccccc;
}

.ivu-radio-disabled .ivu-radio-disabled+span {
    color: #ccc;
}

span.ivu-radio+* {
    margin-left: 2px;
    margin-right: 2px;
}

.ivu-radio-group-button {
    font-size: 0;
    -webkit-text-size-adjust: none;
}

.ivu-radio-group-button .ivu-radio {
    width: 0;
    margin-right: 0;
}

.ivu-radio-group-button .ivu-radio-wrapper {
    display: inline-block;
    height: 32px;
    line-height: 30px;
    margin: 0;
    padding: 0 16px;
    font-size: 12px;
    color: #657180;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 1px solid #d7dde4;
    border-left: 0;
    background: #fff;
}

.ivu-radio-group-button .ivu-radio-wrapper>span {
    margin-left: 0;
}

.ivu-radio-group-button .ivu-radio-wrapper:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: -1px;
    background: #d7dde4;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

.ivu-radio-group-button .ivu-radio-wrapper:first-child {
    border-radius: 4px 0 0 4px;
    border-left: 1px solid #d7dde4;
}

.ivu-radio-group-button .ivu-radio-wrapper:first-child:before {
    display: none;
}

.ivu-radio-group-button .ivu-radio-wrapper:last-child {
    border-radius: 0 4px 4px 0;
}

.ivu-radio-group-button .ivu-radio-wrapper:first-child:last-child {
    border-radius: 4px;
}

.ivu-radio-group-button .ivu-radio-wrapper:hover {
    position: relative;
    color: #3399ff;
}

.ivu-radio-group-button .ivu-radio-wrapper .ivu-radio-inner,
.ivu-radio-group-button .ivu-radio-wrapper input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ivu-radio-group-button .ivu-radio-wrapper-checked {
    background: #fff;
    border-color: #3399ff;
    color: #3399ff;
    box-shadow: -1px 0 0 0 #3399ff;
}

.ivu-radio-group-button .ivu-radio-wrapper-checked:first-child {
    border-color: #3399ff;
    box-shadow: none!important;
}

.ivu-radio-group-button .ivu-radio-wrapper-checked:hover {
    border-color: #5cadff;
    box-shadow: -1px 0 0 0 #5cadff;
    color: #5cadff;
}

.ivu-radio-group-button .ivu-radio-wrapper-checked:active {
    border-color: #3091f2;
    box-shadow: -1px 0 0 0 #3091f2;
    color: #3091f2;
}

.ivu-radio-group-button .ivu-radio-wrapper-disabled {
    border-color: #d7dde4;
    background-color: #f7f7f7;
    cursor: not-allowed;
    color: #ccc;
}

.ivu-radio-group-button .ivu-radio-wrapper-disabled:first-child,
.ivu-radio-group-button .ivu-radio-wrapper-disabled:hover {
    border-color: #d7dde4;
    background-color: #f7f7f7;
    color: #ccc;
}

.ivu-radio-group-button .ivu-radio-wrapper-disabled:first-child {
    border-left-color: #d7dde4;
}

.ivu-radio-group-button .ivu-radio-wrapper-disabled.ivu-radio-wrapper-checked {
    color: #fff;
    background-color: #e6e6e6;
    border-color: #d7dde4;
    box-shadow: none!important;
}

.ivu-radio-group-button.ivu-radio-group-large .ivu-radio-wrapper {
    height: 36px;
    line-height: 34px;
    font-size: 14px;
}

.ivu-radio-group-button.ivu-radio-group-small .ivu-radio-wrapper {
    height: 24px;
    line-height: 22px;
    padding: 0 12px;
    font-size: 12px;
}

.ivu-radio-group-button.ivu-radio-group-small .ivu-radio-wrapper:first-child {
    border-radius: 3px 0 0 3px;
}

.ivu-radio-group-button.ivu-radio-group-small .ivu-radio-wrapper:last-child {
    border-radius: 0 3px 3px 0;
}

.ivu-checkbox {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    line-height: 1;
    position: relative;
}

.ivu-checkbox-disabled {
    cursor: not-allowed;
}

.ivu-checkbox:hover .ivu-checkbox-inner {
    border-color: #bcbcbc;
}

.ivu-checkbox-inner {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
    top: 0;
    left: 0;
    border: 1px solid #d7dde4;
    border-radius: 2px;
    background-color: #fff;
    transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.ivu-checkbox-inner:after {
    content: '';
    display: table;
    width: 4px;
    height: 8px;
    position: absolute;
    top: 1px;
    left: 4px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    -ms-transform: rotate(45deg) scale(0);
    transform: rotate(45deg) scale(0);
    transition: all 0.2s ease-in-out;
}

.ivu-checkbox-input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
}

.ivu-checkbox-input[disabled] {
    cursor: not-allowed;
}

.ivu-checkbox-checked:hover .ivu-checkbox-inner {
    border-color: #3399ff;
}

.ivu-checkbox-checked .ivu-checkbox-inner {
    border-color: #3399ff;
    background-color: #3399ff;
}

.ivu-checkbox-checked .ivu-checkbox-inner:after {
    content: '';
    display: table;
    width: 4px;
    height: 8px;
    position: absolute;
    top: 1px;
    left: 4px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    transition: all 0.2s ease-in-out;
}

.ivu-checkbox-disabled.ivu-checkbox-checked:hover .ivu-checkbox-inner {
    border-color: #d7dde4;
}

.ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner {
    background-color: #f3f3f3;
    border-color: #d7dde4;
}

.ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after {
    animation-name: none;
    border-color: #ccc;
}

.ivu-checkbox-disabled:hover .ivu-checkbox-inner {
    border-color: #d7dde4;
}

.ivu-checkbox-disabled .ivu-checkbox-inner {
    border-color: #d7dde4;
    background-color: #f3f3f3;
}

.ivu-checkbox-disabled .ivu-checkbox-inner:after {
    animation-name: none;
    border-color: #f3f3f3;
}

.ivu-checkbox-disabled .ivu-checkbox-inner-input {
    cursor: default;
}

.ivu-checkbox-disabled+span {
    color: #ccc;
    cursor: not-allowed;
}

.ivu-checkbox-indeterminate .ivu-checkbox-inner:after {
    content: '';
    width: 8px;
    height: 1px;
    -ms-transform: scale(1);
    transform: scale(1);
    position: absolute;
    left: 2px;
    top: 5px;
}

.ivu-checkbox-indeterminate:hover .ivu-checkbox-inner {
    border-color: #3399ff;
}

.ivu-checkbox-indeterminate .ivu-checkbox-inner {
    background-color: #3399ff;
    border-color: #3399ff;
}

.ivu-checkbox-wrapper {
    cursor: pointer;
    font-size: 12px;
    display: inline-block;
    margin-right: 8px;
}

.ivu-checkbox-wrapper-disabled {
    cursor: not-allowed;
}

.ivu-checkbox-wrapper+span,
.ivu-checkbox+span {
    margin-right: 4px;
}

.ivu-checkbox-group {
    font-size: 14px;
}

.ivu-checkbox-group-item {
    display: inline-block;
}

.ivu-switch {
    display: inline-block;
    width: 48px;
    height: 24px;
    line-height: 22px;
    border-radius: 24px;
    vertical-align: middle;
    border: 1px solid #ccc;
    background-color: #ccc;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.2s ease-in-out;
}

.ivu-switch-inner {
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 25px;
}

.ivu-switch-inner i {
    width: 12px;
    height: 12px;
    text-align: center;
}

.ivu-switch:after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #fff;
    position: absolute;
    left: 1px;
    top: 1px;
    cursor: pointer;
    transition: left 0.2s ease-in-out, width 0.2s ease-in-out;
}

.ivu-switch:active:after {
    width: 26px;
}

.ivu-switch:focus {
    box-shadow: 0 0 0 2px rgba(51, 153, 255, 0.2);
    outline: 0;
}

.ivu-switch:focus:hover {
    box-shadow: none;
}

.ivu-switch-small {
    width: 24px;
    height: 12px;
    line-height: 10px;
}

.ivu-switch-small:after {
    width: 10px;
    height: 10px;
    top: 0;
    left: 0;
}

.ivu-switch-small:active:after {
    width: 14px;
}

.ivu-switch-small.ivu-switch-checked:after {
    left: 12px;
}

.ivu-switch-small:active.ivu-switch-checked:after {
    left: 8px;
}

.ivu-switch-large {
    width: 60px;
}

.ivu-switch-large:active:after {
    width: 26px;
}

.ivu-switch-large:active:after {
    width: 32px;
}

.ivu-switch-large.ivu-switch-checked:after {
    left: 37px;
}

.ivu-switch-large:active.ivu-switch-checked:after {
    left: 25px;
}

.ivu-switch-checked {
    border-color: #3399ff;
    background-color: #3399ff;
}

.ivu-switch-checked .ivu-switch-inner {
    left: 8px;
}

.ivu-switch-checked:after {
    left: 25px;
}

.ivu-switch-checked:active:after {
    left: 19px;
}

.ivu-switch-disabled {
    cursor: not-allowed;
    background: #f3f3f3;
    border-color: #f3f3f3;
}

.ivu-switch-disabled:after {
    background: #ccc;
    cursor: not-allowed;
}

.ivu-switch-disabled .ivu-switch-inner {
    color: #ccc;
}

.ivu-input-number {
    display: inline-block;
    width: 100%;
    line-height: 1.5;
    padding: 4px 7px;
    font-size: 12px;
    color: #657180;
    background-color: #fff;
    background-image: none;
    position: relative;
    cursor: text;
    transition: border 0.2s ease-in-out, background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    margin: 0;
    padding: 0;
    width: 80px;
    height: 32px;
    line-height: 32px;
    vertical-align: middle;
    border: 1px solid #d7dde4;
    border-radius: 4px;
    overflow: hidden;
}

.ivu-input-number::-moz-placeholder {
    color: #c3cbd6;
    opacity: 1;
}

.ivu-input-number:-ms-input-placeholder {
    color: #c3cbd6;
}

.ivu-input-number::-webkit-input-placeholder {
    color: #c3cbd6;
}

.ivu-input-number:hover {
    border-color: #5cadff;
}

.ivu-input-number:focus {
    border-color: #5cadff;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(51, 153, 255, 0.2);
}

.ivu-input-number[disabled],
fieldset[disabled] .ivu-input-number {
    background-color: #f3f3f3;
    opacity: 1;
    cursor: not-allowed;
    color: #ccc;
}

.ivu-input-number[disabled]:hover,
fieldset[disabled] .ivu-input-number:hover {
    border-color: #dfe4e9;
}

textarea.ivu-input-number {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    font-size: 14px;
}

.ivu-input-number-large {
    font-size: 14px;
    padding: 6px 7px;
    height: 36px;
}

.ivu-input-number-small {
    padding: 1px 7px;
    height: 24px;
    border-radius: 3px;
}

.ivu-input-number-handler-wrap {
    width: 22px;
    height: 100%;
    border-left: 1px solid #d7dde4;
    border-radius: 0 4px 4px 0;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.ivu-input-number:hover .ivu-input-number-handler-wrap {
    opacity: 1;
}

.ivu-input-number-handler-up {
    cursor: pointer;
}

.ivu-input-number-handler-up-inner {
    top: 1px;
}

.ivu-input-number-handler-down {
    border-top: 1px solid #d7dde4;
    top: -1px;
    cursor: pointer;
}

.ivu-input-number-handler {
    display: block;
    width: 100%;
    height: 16px;
    line-height: 0;
    text-align: center;
    overflow: hidden;
    color: #999;
    position: relative;
}

.ivu-input-number-handler:hover .ivu-input-number-handler-up-inner,
.ivu-input-number-handler:hover .ivu-input-number-handler-down-inner {
    color: #5cadff;
}

.ivu-input-number-handler-up-inner,
.ivu-input-number-handler-down-inner {
    width: 12px;
    height: 12px;
    line-height: 12px;
    font-size: 14px;
    color: #999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    right: 4px;
    transition: all 0.2s linear;
}

.ivu-input-number:hover {
    border-color: #5cadff;
}

.ivu-input-number-focused {
    border-color: #5cadff;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(51, 153, 255, 0.2);
}

.ivu-input-number-disabled {
    background-color: #f3f3f3;
    opacity: 1;
    cursor: not-allowed;
    color: #ccc;
}

.ivu-input-number-disabled:hover {
    border-color: #dfe4e9;
}

.ivu-input-number-input-wrap {
    overflow: hidden;
    height: 32px;
}

.ivu-input-number-input {
    width: 100%;
    height: 32px;
    line-height: 32px;
    padding: 0 7px;
    text-align: left;
    outline: 0;
    -moz-appearance: textfield;
    color: #666;
    border: 0;
    border-radius: 4px;
    transition: all 0.2s linear;
}

.ivu-input-number-input[disabled] {
    background-color: #f3f3f3;
    opacity: 1;
    cursor: not-allowed;
    color: #ccc;
}

.ivu-input-number-input[disabled]:hover {
    border-color: #dfe4e9;
}

.ivu-input-number-large {
    padding: 0;
}

.ivu-input-number-large .ivu-input-number-input-wrap {
    height: 36px;
}

.ivu-input-number-large .ivu-input-number-handler {
    height: 18px;
}

.ivu-input-number-large input {
    height: 36px;
    line-height: 36px;
}

.ivu-input-number-large .ivu-input-number-handler-up-inner {
    top: 2px;
}

.ivu-input-number-large .ivu-input-number-handler-down-inner {
    bottom: 2px;
}

.ivu-input-number-small {
    padding: 0;
}

.ivu-input-number-small .ivu-input-number-input-wrap {
    height: 24px;
}

.ivu-input-number-small .ivu-input-number-handler {
    height: 12px;
}

.ivu-input-number-small input {
    height: 24px;
    line-height: 24px;
    margin-top: -1px;
    vertical-align: top;
}

.ivu-input-number-small .ivu-input-number-handler-up-inner {
    top: -1px;
}

.ivu-input-number-small .ivu-input-number-handler-down-inner {
    bottom: -1px;
}

.ivu-input-number-handler-down-disabled .ivu-input-number-handler-down-inner,
.ivu-input-number-handler-up-disabled .ivu-input-number-handler-down-inner,
.ivu-input-number-disabled .ivu-input-number-handler-down-inner,
.ivu-input-number-handler-down-disabled .ivu-input-number-handler-up-inner,
.ivu-input-number-handler-up-disabled .ivu-input-number-handler-up-inner,
.ivu-input-number-disabled .ivu-input-number-handler-up-inner {
    opacity: 0.72;
    color: #ccc !important;
    cursor: not-allowed;
}

.ivu-input-number-disabled .ivu-input-number-input {
    opacity: 0.72;
    cursor: not-allowed;
    background-color: #f3f3f3;
}

.ivu-input-number-disabled .ivu-input-number-handler-wrap {
    display: none;
}

.ivu-input-number-disabled .ivu-input-number-handler {
    opacity: 0.72;
    color: #ccc !important;
    cursor: not-allowed;
}

.ivu-form-item-error .ivu-input-number {
    border: 1px solid #ff3300;
}

.ivu-form-item-error .ivu-input-number:hover {
    border-color: #ff3300;
}

.ivu-form-item-error .ivu-input-number:focus {
    border-color: #ff3300;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(255, 51, 0, 0.2);
}

.ivu-form-item-error .ivu-input-number-focused {
    border-color: #ff3300;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(255, 51, 0, 0.2);
}

.ivu-tag {
    display: inline-block;
    height: 22px;
    line-height: 22px;
    margin: 2px 4px 2px 0;
    padding: 0 8px;
    border: 1px solid #e3e8ee;
    border-radius: 3px;
    background: #f7f7f7;
    font-size: 12px;
    vertical-align: middle;
    opacity: 1;
    overflow: hidden;
    cursor: pointer;
}

.ivu-tag-dot {
    height: 32px;
    line-height: 32px;
    border: 1px solid #e3e8ee !important;
    color: #657180 !important;
    background: #fff !important;
    padding: 0 12px;
}

.ivu-tag-dot-inner {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 50%;
    background: #e3e8ee;
    position: relative;
    top: 1px;
}

.ivu-tag-dot .ivu-icon-ios-close-empty {
    color: #666 !important;
    margin-left: 12px !important;
}

.ivu-tag-border {
    height: 24px;
    line-height: 24px;
    border: 1px solid #e3e8ee !important;
    color: #657180 !important;
    background: #fff !important;
    position: relative;
}

.ivu-tag-border .ivu-icon-ios-close-empty {
    color: #666 !important;
    margin-left: 12px !important;
}

.ivu-tag-border:after {
    content: "";
    display: none;
    width: 1px;
    background: #e3e8ee;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
}

.ivu-tag-border.ivu-tag-closable:after {
    display: block;
}

.ivu-tag-border.ivu-tag-closable .ivu-icon-ios-close-empty {
    margin-left: 18px !important;
}

.ivu-tag-border.ivu-tag-blue {
    color: #3399ff !important;
    border: 1px solid #3399ff !important;
}

.ivu-tag-border.ivu-tag-blue:after {
    background: #3399ff;
}

.ivu-tag-border.ivu-tag-blue .ivu-icon-ios-close-empty {
    color: #3399ff !important;
}

.ivu-tag-border.ivu-tag-green {
    color: #00cc66 !important;
    border: 1px solid #00cc66 !important;
}

.ivu-tag-border.ivu-tag-green:after {
    background: #00cc66;
}

.ivu-tag-border.ivu-tag-green .ivu-icon-ios-close-empty {
    color: #00cc66 !important;
}

.ivu-tag-border.ivu-tag-yellow {
    color: #ff9900 !important;
    border: 1px solid #ff9900 !important;
}

.ivu-tag-border.ivu-tag-yellow:after {
    background: #ff9900;
}

.ivu-tag-border.ivu-tag-yellow .ivu-icon-ios-close-empty {
    color: #ff9900 !important;
}

.ivu-tag-border.ivu-tag-red {
    color: #ff3300 !important;
    border: 1px solid #ff3300 !important;
}

.ivu-tag-border.ivu-tag-red:after {
    background: #ff3300;
}

.ivu-tag-border.ivu-tag-red .ivu-icon-ios-close-empty {
    color: #ff3300 !important;
}

.ivu-tag:hover {
    opacity: 0.85;
}

.ivu-tag,
.ivu-tag a,
.ivu-tag a:hover {
    color: #657180;
}

.ivu-tag-text a:first-child:last-child {
    display: inline-block;
    margin: 0 -8px;
    padding: 0 8px;
}

.ivu-tag .ivu-icon-ios-close-empty {
    display: inline-block;
    font-size: 14px;
    font-size: 20px \9;
    -ms-transform: scale(1.42857143) rotate(0deg);
    transform: scale(1.42857143) rotate(0deg);
    cursor: pointer;
    margin-left: 8px;
    color: #666;
    opacity: 0.66;
    position: relative;
    top: 1px;
}

:root .ivu-tag .ivu-icon-ios-close-empty {
    font-size: 14px;
}

.ivu-tag .ivu-icon-ios-close-empty:hover {
    opacity: 1;
}

.ivu-tag-blue,
.ivu-tag-green,
.ivu-tag-yellow,
.ivu-tag-red {
    border: 0;
}

.ivu-tag-blue,
.ivu-tag-green,
.ivu-tag-yellow,
.ivu-tag-red,
.ivu-tag-blue a,
.ivu-tag-green a,
.ivu-tag-yellow a,
.ivu-tag-red a,
.ivu-tag-blue a:hover,
.ivu-tag-green a:hover,
.ivu-tag-yellow a:hover,
.ivu-tag-red a:hover,
.ivu-tag-blue .ivu-icon-ios-close-empty,
.ivu-tag-green .ivu-icon-ios-close-empty,
.ivu-tag-yellow .ivu-icon-ios-close-empty,
.ivu-tag-red .ivu-icon-ios-close-empty,
.ivu-tag-blue .ivu-icon-ios-close-empty:hover,
.ivu-tag-green .ivu-icon-ios-close-empty:hover,
.ivu-tag-yellow .ivu-icon-ios-close-empty:hover,
.ivu-tag-red .ivu-icon-ios-close-empty:hover {
    color: #fff;
}

.ivu-tag-blue,
.ivu-tag-blue.ivu-tag-dot .ivu-tag-dot-inner {
    background: #3399ff;
}

.ivu-tag-green,
.ivu-tag-green.ivu-tag-dot .ivu-tag-dot-inner {
    background: #00cc66;
}

.ivu-tag-yellow,
.ivu-tag-yellow.ivu-tag-dot .ivu-tag-dot-inner {
    background: #ff9900;
}

.ivu-tag-red,
.ivu-tag-red.ivu-tag-dot .ivu-tag-dot-inner {
    background: #ff3300;
}

.ivu-loading-bar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
}

.ivu-loading-bar-inner {
    transition: width 0.2s linear;
}

.ivu-loading-bar-inner-color-primary {
    background-color: #3399ff;
}

.ivu-loading-bar-inner-failed-color-error {
    background-color: #ff3300;
}

.ivu-progress {
    display: inline-block;
    width: 100%;
    font-size: 12px;
    position: relative;
}

.ivu-progress-outer {
    display: inline-block;
    width: 100%;
    margin-right: 0;
    padding-right: 0;
}

.ivu-progress-show-info .ivu-progress-outer {
    padding-right: 55px;
    margin-right: -55px;
}

.ivu-progress-inner {
    display: inline-block;
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 100px;
    vertical-align: middle;
}

.ivu-progress-bg {
    border-radius: 100px;
    background-color: #2db7f5;
    transition: all 0.2s linear;
    position: relative;
}

.ivu-progress-text {
    display: inline-block;
    margin-left: 5px;
    text-align: left;
    font-size: 1em;
    vertical-align: middle;
}

.ivu-progress-active .ivu-progress-bg:before {
    content: '';
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 10px;
    animation: ivu-progress-active 2s ease-in-out infinite;
}

.ivu-progress-wrong .ivu-progress-bg {
    background-color: #ff3300;
}

.ivu-progress-wrong .ivu-progress-text {
    color: #ff3300;
}

.ivu-progress-success .ivu-progress-bg {
    background-color: #00cc66;
}

.ivu-progress-success .ivu-progress-text {
    color: #00cc66;
}

@keyframes ivu-progress-active {
    0% {
        opacity: .3;
        width: 0;
    }
    100% {
        opacity: 0;
        width: 100%;
    }
}

.ivu-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ivu-timeline-item {
    margin: 0 !important;
    padding: 0 0 12px 0;
    list-style: none;
    position: relative;
}

.ivu-timeline-item-tail {
    height: 100%;
    border-left: 1px solid #e3e8ee;
    position: absolute;
    left: 6px;
    top: 0;
}

.ivu-timeline-item-pending .ivu-timeline-item-tail {
    display: none;
}

.ivu-timeline-item-head {
    width: 13px;
    height: 13px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid transparent;
    position: absolute;
}

.ivu-timeline-item-head-blue {
    border-color: #3399ff;
    color: #3399ff;
}

.ivu-timeline-item-head-red {
    border-color: #ff3300;
    color: #ff3300;
}

.ivu-timeline-item-head-green {
    border-color: #00cc66;
    color: #00cc66;
}

.ivu-timeline-item-head-custom {
    width: 40px;
    height: auto;
    margin-top: 6px;
    padding: 3px 0;
    text-align: center;
    line-height: 1;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    position: absolute;
    left: -13px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ivu-timeline-item-content {
    padding: 1px 1px 10px 24px;
    font-size: 12px;
    position: relative;
    top: -3px;
}

.ivu-timeline-item:last-child .ivu-timeline-item-tail {
    display: none;
}

.ivu-timeline.ivu-timeline-pending .ivu-timeline-item:nth-last-of-type(2) .ivu-timeline-item-tail {
    border-left: 1px dotted #e3e8ee;
}

.ivu-timeline.ivu-timeline-pending .ivu-timeline-item:nth-last-of-type(2) .ivu-timeline-item-content {
    min-height: 48px;
}

.ivu-page:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.ivu-page-item {
    float: left;
    min-width: 32px;
    height: 32px;
    line-height: 30px;
    margin-right: 4px;
    text-align: center;
    list-style: none;
    background-color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    font-family: Arial;
    border: 1px solid #d7dde4;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.ivu-page-item a {
    margin: 0 6px;
    text-decoration: none;
    color: #657180;
}

.ivu-page-item:hover {
    border-color: #3399ff;
}

.ivu-page-item:hover a {
    color: #3399ff;
}

.ivu-page-item-active {
    background-color: #3399ff;
    border-color: #3399ff;
}

.ivu-page-item-active a,
.ivu-page-item-active:hover a {
    color: #fff;
}

.ivu-page-item-jump-prev:after,
.ivu-page-item-jump-next:after {
    content: "•••";
    display: block;
    letter-spacing: 1px;
    color: #ccc;
    text-align: center;
}

.ivu-page-item-jump-prev i,
.ivu-page-item-jump-next i {
    display: none;
}

.ivu-page-item-jump-prev:hover:after,
.ivu-page-item-jump-next:hover:after {
    display: none;
}

.ivu-page-item-jump-prev:hover i,
.ivu-page-item-jump-next:hover i {
    display: inline;
}

.ivu-page-item-jump-prev:hover i:after {
    content: "\F3D2";
}

.ivu-page-item-jump-next:hover i:after {
    content: "\F3D3";
}

.ivu-page-prev {
    margin-right: 8px;
}

.ivu-page-item-jump-prev,
.ivu-page-item-jump-next {
    margin-right: 4px;
}

.ivu-page-next {
    margin-left: 4px;
}

.ivu-page-prev,
.ivu-page-next,
.ivu-page-item-jump-prev,
.ivu-page-item-jump-next {
    display: inline-block;
    float: left;
    min-width: 32px;
    height: 32px;
    line-height: 30px;
    list-style: none;
    text-align: center;
    cursor: pointer;
    color: #666;
    font-family: Arial;
    border: 1px solid #d7dde4;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.ivu-page-prev,
.ivu-page-next {
    background-color: #fff;
}

.ivu-page-prev a,
.ivu-page-next a {
    color: #666;
    font-size: 14px;
}

.ivu-page-prev:hover,
.ivu-page-next:hover {
    border-color: #3399ff;
}

.ivu-page-prev:hover a,
.ivu-page-next:hover a {
    color: #3399ff;
}

.ivu-page-disabled {
    cursor: not-allowed;
}

.ivu-page-disabled a {
    color: #ccc;
}

.ivu-page-disabled:hover {
    border-color: #d7dde4;
}

.ivu-page-disabled:hover a {
    color: #ccc;
    cursor: not-allowed;
}

.ivu-page-options {
    float: left;
    margin-left: 15px;
}

.ivu-page-options-sizer {
    float: left;
    margin-right: 10px;
}

.ivu-page-options-elevator {
    float: left;
    height: 32px;
    line-height: 32px;
}

.ivu-page-options-elevator input {
    display: inline-block;
    width: 100%;
    height: 32px;
    line-height: 1.5;
    padding: 4px 7px;
    font-size: 12px;
    border: 1px solid #d7dde4;
    color: #657180;
    background-color: #fff;
    background-image: none;
    position: relative;
    cursor: text;
    transition: border 0.2s ease-in-out, background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 4px;
    margin: 0 8px;
    width: 50px;
}

.ivu-page-options-elevator input::-moz-placeholder {
    color: #c3cbd6;
    opacity: 1;
}

.ivu-page-options-elevator input:-ms-input-placeholder {
    color: #c3cbd6;
}

.ivu-page-options-elevator input::-webkit-input-placeholder {
    color: #c3cbd6;
}

.ivu-page-options-elevator input:hover {
    border-color: #5cadff;
}

.ivu-page-options-elevator input:focus {
    border-color: #5cadff;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(51, 153, 255, 0.2);
}

.ivu-page-options-elevator input[disabled],
fieldset[disabled] .ivu-page-options-elevator input {
    background-color: #f3f3f3;
    opacity: 1;
    cursor: not-allowed;
    color: #ccc;
}

.ivu-page-options-elevator input[disabled]:hover,
fieldset[disabled] .ivu-page-options-elevator input:hover {
    border-color: #dfe4e9;
}

textarea.ivu-page-options-elevator input {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    font-size: 14px;
}

.ivu-page-options-elevator input-large {
    font-size: 14px;
    padding: 6px 7px;
    height: 36px;
}

.ivu-page-options-elevator input-small {
    padding: 1px 7px;
    height: 24px;
    border-radius: 3px;
}

.ivu-page-total {
    float: left;
    height: 32px;
    line-height: 32px;
    margin-right: 10px;
}

.ivu-page-simple .ivu-page-prev,
.ivu-page-simple .ivu-page-next {
    margin: 0;
    border: 0;
    height: 24px;
    line-height: 24px;
    font-size: 18px;
}

.ivu-page-simple .ivu-page-simple-pager {
    float: left;
    margin-right: 8px;
}

.ivu-page-simple .ivu-page-simple-pager input {
    width: 30px;
    height: 24px;
    margin: 0 8px;
    padding: 5px 8px;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
    outline: none;
    border: 1px solid #d7dde4;
    border-radius: 4px;
    transition: border-color 0.2s ease-in-out;
}

.ivu-page-simple .ivu-page-simple-pager input:hover {
    border-color: #3399ff;
}

.ivu-page-simple .ivu-page-simple-pager span {
    padding: 0 8px 0 2px;
}

.ivu-page.mini .ivu-page-total {
    height: 24px;
    line-height: 24px;
}

.ivu-page.mini .ivu-page-item {
    border: 0;
    margin: 0;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 3px;
}

.ivu-page.mini .ivu-page-prev,
.ivu-page.mini .ivu-page-next {
    margin: 0;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    border: 0;
}

.ivu-page.mini .ivu-page-prev a i:after,
.ivu-page.mini .ivu-page-next a i:after {
    height: 24px;
    line-height: 24px;
}

.ivu-page.mini .ivu-page-item-jump-prev,
.ivu-page.mini .ivu-page-item-jump-next {
    height: 24px;
    line-height: 24px;
    border: none;
    margin-right: 0;
}

.ivu-page.mini .ivu-page-options {
    margin-left: 8px;
}

.ivu-page.mini .ivu-page-options-elevator {
    height: 24px;
    line-height: 24px;
}

.ivu-page.mini .ivu-page-options-elevator input {
    padding: 1px 7px;
    height: 24px;
    border-radius: 3px;
    width: 44px;
}

.ivu-steps {
    font-size: 0;
    width: 100%;
    line-height: 1.5;
}

.ivu-steps-item {
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.ivu-steps-item.ivu-steps-status-wait .ivu-steps-head-inner {
    background-color: #fff;
}

.ivu-steps-item.ivu-steps-status-wait .ivu-steps-head-inner>.ivu-steps-icon,
.ivu-steps-item.ivu-steps-status-wait .ivu-steps-head-inner span {
    color: #ccc;
}

.ivu-steps-item.ivu-steps-status-wait .ivu-steps-title {
    color: #999;
}

.ivu-steps-item.ivu-steps-status-wait .ivu-steps-content {
    color: #999;
}

.ivu-steps-item.ivu-steps-status-wait .ivu-steps-tail>i {
    background-color: #e3e8ee;
}

.ivu-steps-item.ivu-steps-status-process .ivu-steps-head-inner {
    border-color: #3399ff;
    background-color: #3399ff;
}

.ivu-steps-item.ivu-steps-status-process .ivu-steps-head-inner>.ivu-steps-icon,
.ivu-steps-item.ivu-steps-status-process .ivu-steps-head-inner span {
    color: #fff;
}

.ivu-steps-item.ivu-steps-status-process .ivu-steps-title {
    color: #666;
}

.ivu-steps-item.ivu-steps-status-process .ivu-steps-content {
    color: #666;
}

.ivu-steps-item.ivu-steps-status-process .ivu-steps-tail>i {
    background-color: #e3e8ee;
}

.ivu-steps-item.ivu-steps-status-finish .ivu-steps-head-inner {
    background-color: #fff;
    border-color: #3399ff;
}

.ivu-steps-item.ivu-steps-status-finish .ivu-steps-head-inner>.ivu-steps-icon,
.ivu-steps-item.ivu-steps-status-finish .ivu-steps-head-inner span {
    color: #3399ff;
}

.ivu-steps-item.ivu-steps-status-finish .ivu-steps-tail>i:after {
    width: 100%;
    background: #3399ff;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.ivu-steps-item.ivu-steps-status-finish .ivu-steps-title {
    color: #999;
}

.ivu-steps-item.ivu-steps-status-finish .ivu-steps-content {
    color: #999;
}

.ivu-steps-item.ivu-steps-status-error .ivu-steps-head-inner {
    background-color: #fff;
    border-color: #ff3300;
}

.ivu-steps-item.ivu-steps-status-error .ivu-steps-head-inner>.ivu-steps-icon {
    color: #ff3300;
}

.ivu-steps-item.ivu-steps-status-error .ivu-steps-title {
    color: #ff3300;
}

.ivu-steps-item.ivu-steps-status-error .ivu-steps-content {
    color: #ff3300;
}

.ivu-steps-item.ivu-steps-status-error .ivu-steps-tail>i {
    background-color: #e3e8ee;
}

.ivu-steps-item.ivu-steps-next-error .ivu-steps-tail>i,
.ivu-steps-item.ivu-steps-next-error .ivu-steps-tail>i:after {
    background-color: #ff3300;
}

.ivu-steps-item.ivu-steps-custom .ivu-steps-head-inner {
    background: none;
    border: 0;
    width: auto;
    height: auto;
}

.ivu-steps-item.ivu-steps-custom .ivu-steps-head-inner>.ivu-steps-icon {
    font-size: 20px;
    top: 2px;
    width: 20px;
    height: 20px;
}

.ivu-steps-item.ivu-steps-custom.ivu-steps-status-process .ivu-steps-head-inner>.ivu-steps-icon {
    color: #3399ff;
}

.ivu-steps-item:last-child .ivu-steps-tail {
    display: none;
}

.ivu-steps .ivu-steps-head,
.ivu-steps .ivu-steps-main {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.ivu-steps .ivu-steps-head {
    background: #fff;
}

.ivu-steps .ivu-steps-head-inner {
    display: block;
    width: 26px;
    height: 26px;
    line-height: 24px;
    margin-right: 8px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 14px;
    transition: background-color 0.2s ease-in-out;
}

.ivu-steps .ivu-steps-head-inner>.ivu-steps-icon {
    line-height: 1;
    position: relative;
}

.ivu-steps .ivu-steps-head-inner>.ivu-steps-icon.ivu-icon {
    font-size: 24px;
}

.ivu-steps .ivu-steps-head-inner>.ivu-steps-icon.ivu-icon-ios-checkmark-empty,
.ivu-steps .ivu-steps-head-inner>.ivu-steps-icon.ivu-icon-ios-close-empty {
    font-weight: bold;
}

.ivu-steps .ivu-steps-main {
    margin-top: 2.5px;
    display: inline;
}

.ivu-steps .ivu-steps-custom .ivu-steps-title {
    margin-top: 2.5px;
}

.ivu-steps .ivu-steps-title {
    display: inline-block;
    margin-bottom: 4px;
    padding-right: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    background: #fff;
}

.ivu-steps .ivu-steps-title>a:first-child:last-child {
    color: #666;
}

.ivu-steps .ivu-steps-item-last .ivu-steps-title {
    padding-right: 0;
    width: 100%;
}

.ivu-steps .ivu-steps-content {
    font-size: 12px;
    color: #999;
}

.ivu-steps .ivu-steps-tail {
    width: 100%;
    padding: 0 10px;
    position: absolute;
    left: 0;
    top: 13px;
}

.ivu-steps .ivu-steps-tail>i {
    display: inline-block;
    width: 100%;
    height: 1px;
    vertical-align: top;
    background: #e3e8ee;
    border-radius: 1px;
    position: relative;
}

.ivu-steps .ivu-steps-tail>i:after {
    content: '';
    width: 0;
    height: 100%;
    background: #e3e8ee;
    opacity: 0;
    position: absolute;
    top: 0;
}

.ivu-steps.ivu-steps-small .ivu-steps-head-inner {
    width: 18px;
    height: 18px;
    line-height: 16px;
    margin-right: 10px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
}

.ivu-steps.ivu-steps-small .ivu-steps-head-inner>.ivu-steps-icon.ivu-icon {
    font-size: 16px;
    top: 0;
}

.ivu-steps.ivu-steps-small .ivu-steps-main {
    margin-top: 0;
}

.ivu-steps.ivu-steps-small .ivu-steps-title {
    margin-bottom: 4px;
    margin-top: 0;
    color: #666;
    font-size: 12px;
    font-weight: bold;
}

.ivu-steps.ivu-steps-small .ivu-steps-content {
    font-size: 12px;
    color: #999;
    padding-left: 30px;
}

.ivu-steps.ivu-steps-small .ivu-steps-tail {
    top: 8px;
    padding: 0 8px;
}

.ivu-steps.ivu-steps-small .ivu-steps-tail>i {
    height: 1px;
    width: 100%;
    border-radius: 1px;
}

.ivu-steps.ivu-steps-small .ivu-steps-item.ivu-steps-custom .ivu-steps-head-inner,
.ivu-steps .ivu-steps-item.ivu-steps-custom .ivu-steps-head-inner {
    width: inherit;
    height: inherit;
    line-height: inherit;
    border-radius: 0;
    border: 0;
    background: none;
}

.ivu-steps-vertical .ivu-steps-item {
    display: block;
}

.ivu-steps-vertical .ivu-steps-tail {
    position: absolute;
    left: 13px;
    top: 0;
    height: 100%;
    width: 1px;
    padding: 30px 0 4px 0;
}

.ivu-steps-vertical .ivu-steps-tail>i {
    height: 100%;
    width: 1px;
}

.ivu-steps-vertical .ivu-steps-tail>i:after {
    height: 0;
    width: 100%;
}

.ivu-steps-vertical .ivu-steps-status-finish .ivu-steps-tail>i:after {
    height: 100%;
}

.ivu-steps-vertical .ivu-steps-head {
    float: left;
}

.ivu-steps-vertical .ivu-steps-head-inner {
    margin-right: 16px;
}

.ivu-steps-vertical .ivu-steps-main {
    min-height: 47px;
    overflow: hidden;
    display: block;
}

.ivu-steps-vertical .ivu-steps-main .ivu-steps-title {
    line-height: 26px;
}

.ivu-steps-vertical .ivu-steps-main .ivu-steps-content {
    padding-bottom: 12px;
    padding-left: 0;
}

.ivu-steps-vertical .ivu-steps-custom .ivu-steps-icon {
    left: 4px;
}

.ivu-steps-vertical.ivu-steps-small .ivu-steps-custom .ivu-steps-icon {
    left: 0;
}

.ivu-steps-vertical.ivu-steps-small .ivu-steps-tail {
    position: absolute;
    left: 9px;
    top: 0;
    padding: 22px 0 4px 0;
}

.ivu-steps-vertical.ivu-steps-small .ivu-steps-tail>i {
    height: 100%;
}

.ivu-steps-vertical.ivu-steps-small .ivu-steps-title {
    line-height: 18px;
}

.ivu-steps-horizontal.ivu-steps-hidden {
    visibility: hidden;
}

.ivu-steps-horizontal .ivu-steps-content {
    padding-left: 35px;
}

.ivu-steps-horizontal .ivu-steps-item:not(:first-child) .ivu-steps-head {
    padding-left: 10px;
    margin-left: -10px;
}

.ivu-modal {
    width: auto;
    margin: 0 auto;
    position: relative;
    outline: none;
    top: 100px;
}

.ivu-modal-hidden {
    display: none !important;
}

.ivu-modal-wrap {
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.ivu-modal-wrap * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.ivu-modal-mask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(55, 55, 55, 0.6);
    height: 100%;
    z-index: 1000;
}

.ivu-modal-mask-hidden {
    display: none;
}

.ivu-modal-content {
    position: relative;
    background-color: #fff;
    border: 0;
    border-radius: 6px;
    background-clip: padding-box;
}

.ivu-modal-header {
    border-bottom: 1px solid #e3e8ee;
    padding: 14px 16px;
    line-height: 1;
}

.ivu-modal-header p,
.ivu-modal-header-inner {
    display: inline-block;
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #464c5b;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ivu-modal-close {
    font-size: 12px;
    position: absolute;
    right: 16px;
    top: 8px;
    overflow: hidden;
    cursor: pointer;
}

.ivu-modal-close .ivu-icon-ios-close-empty {
    font-size: 31px;
    color: #999;
    transition: color 0.2s ease;
    position: relative;
    top: 1px;
}

.ivu-modal-close .ivu-icon-ios-close-empty:hover {
    color: #444;
}

.ivu-modal-body {
    padding: 16px;
    font-size: 12px;
    line-height: 1.5;
}

.ivu-modal-footer {
    border-top: 1px solid #e3e8ee;
    padding: 12px 18px 12px 18px;
    text-align: right;
}

.ivu-modal-footer button+button {
    margin-left: 8px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ivu-modal {
        width: auto !important;
        margin: 10px;
    }
    .vertical-center-modal .ivu-modal {
        -ms-flex: 1;
        flex: 1;
    }
}

.ivu-modal-confirm {
    padding: 0 4px;
}

.ivu-modal-confirm-head-title {
    display: inline-block;
    font-size: 14px;
    color: #464c5b;
    font-weight: 700;
}

.ivu-modal-confirm-body {
    margin-top: 6px;
    padding-left: 48px;
    padding-top: 18px;
    font-size: 12px;
    color: #657180;
    position: relative;
}

.ivu-modal-confirm-body-icon {
    font-size: 36px;
    position: absolute;
    top: 0;
    left: 0;
}

.ivu-modal-confirm-body-icon-info {
    color: #3399ff;
}

.ivu-modal-confirm-body-icon-success {
    color: #00cc66;
}

.ivu-modal-confirm-body-icon-warning {
    color: #ff9900;
}

.ivu-modal-confirm-body-icon-error {
    color: #ff3300;
}

.ivu-modal-confirm-body-icon-confirm {
    color: #ff9900;
}

.ivu-modal-confirm-footer {
    margin-top: 40px;
    text-align: right;
}

.ivu-modal-confirm-footer button+button {
    margin-left: 8px;
    margin-bottom: 0;
}

.ivu-select {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    vertical-align: middle;
    color: #657180;
    font-size: 14px;
    line-height: normal;
}

.ivu-select-selection {
    display: block;
    box-sizing: border-box;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #d7dde4;
    transition: all 0.2s ease-in-out;
}

.ivu-select-selection .ivu-select-arrow:nth-of-type(1) {
    display: none;
    cursor: pointer;
}

.ivu-select-selection:hover {
    border-color: #5cadff;
}

.ivu-select-selection:hover .ivu-select-arrow:nth-of-type(1) {
    display: inline-block;
}

.ivu-select-show-clear .ivu-select-selection:hover .ivu-select-arrow:nth-of-type(2) {
    display: none;
}

.ivu-select-arrow {
    position: absolute;
    top: 50%;
    right: 8px;
    line-height: 1;
    margin-top: -7px;
    font-size: 14px;
    color: #9ea7b4;
    transition: all 0.2s ease-in-out;
}

.ivu-select-visible .ivu-select-selection {
    border-color: #5cadff;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(51, 153, 255, 0.2);
}

.ivu-select-visible .ivu-select-arrow:nth-of-type(2) {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ivu-select-disabled .ivu-select-selection {
    background-color: #f3f3f3;
    opacity: 1;
    cursor: not-allowed;
    color: #ccc;
}

.ivu-select-disabled .ivu-select-selection:hover {
    border-color: #dfe4e9;
}

.ivu-select-disabled .ivu-select-selection .ivu-select-arrow:nth-of-type(1) {
    display: none;
}

.ivu-select-disabled .ivu-select-selection:hover {
    border-color: #d7dde4;
    box-shadow: none;
}

.ivu-select-disabled .ivu-select-selection:hover .ivu-select-arrow:nth-of-type(2) {
    display: inline-block;
}

.ivu-select-single .ivu-select-selection {
    height: 32px;
    position: relative;
}

.ivu-select-single .ivu-select-selection .ivu-select-placeholder {
    color: #c3cbd6;
}

.ivu-select-single .ivu-select-selection .ivu-select-placeholder,
.ivu-select-single .ivu-select-selection .ivu-select-selected-value {
    display: block;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 8px;
    padding-right: 24px;
}

.ivu-select-large.ivu-select-single .ivu-select-selection {
    height: 36px;
}

.ivu-select-large.ivu-select-single .ivu-select-selection .ivu-select-placeholder,
.ivu-select-large.ivu-select-single .ivu-select-selection .ivu-select-selected-value {
    height: 34px;
    line-height: 34px;
    font-size: 14px;
}

.ivu-select-small.ivu-select-single .ivu-select-selection {
    height: 24px;
    border-radius: 3px;
}

.ivu-select-small.ivu-select-single .ivu-select-selection .ivu-select-placeholder,
.ivu-select-small.ivu-select-single .ivu-select-selection .ivu-select-selected-value {
    height: 22px;
    line-height: 22px;
}

.ivu-select-multiple .ivu-select-selection {
    padding: 0 24px 0 4px;
    min-height: 32px;
}

.ivu-select-multiple .ivu-select-selection .ivu-select-placeholder {
    display: block;
    height: 30px;
    line-height: 30px;
    color: #c3cbd6;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 4px;
    padding-right: 22px;
}

.ivu-select-input {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 24px 0 8px;
    font-size: 12px;
    outline: none;
    border: none;
    box-sizing: border-box;
    color: #657180;
    background-color: transparent;
    position: relative;
    cursor: pointer;
}

.ivu-select-input::-moz-placeholder {
    color: #c3cbd6;
    opacity: 1;
}

.ivu-select-input:-ms-input-placeholder {
    color: #c3cbd6;
}

.ivu-select-input::-webkit-input-placeholder {
    color: #c3cbd6;
}

.ivu-select-single .ivu-select-input {
    width: 100%;
}

.ivu-select-large .ivu-select-input {
    font-size: 14px;
    height: 36px;
}

.ivu-select-small .ivu-select-input {
    height: 24px;
}

.ivu-select-multiple .ivu-select-input {
    height: 29px;
    line-height: 32px;
    padding: 0 0 0 4px;
}

.ivu-select-not-found {
    text-align: center;
    color: #c3cbd6;
}

.ivu-select-multiple .ivu-tag {
    margin: 3px 4px 2px 0;
}

.ivu-select-item {
    margin: 0;
    padding: 7px 16px;
    clear: both;
    color: #657180;
    font-size: 12px !important;
    white-space: nowrap;
    list-style: none;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.ivu-select-item:hover {
    background: #f3f3f3;
}

.ivu-select-item-focus {
    background: #f3f3f3;
}

.ivu-select-item-disabled {
    color: #c3cbd6;
    cursor: not-allowed;
}

.ivu-select-item-disabled:hover {
    color: #c3cbd6;
    background-color: #fff;
    cursor: not-allowed;
}

.ivu-select-item-selected,
.ivu-select-item-selected:hover {
    color: #fff;
    background: rgba(51, 153, 255, 0.9);
}

.ivu-select-item-selected.ivu-select-item-focus {
    background: rgba(45, 135, 225, 0.91);
}

.ivu-select-item-divided {
    margin-top: 5px;
    border-top: 1px solid #e3e8ee;
}

.ivu-select-item-divided:before {
    content: '';
    height: 5px;
    display: block;
    margin: 0 -16px;
    background-color: #fff;
    position: relative;
    top: -7px;
}

.ivu-select-large .ivu-select-item {
    padding: 7px 16px 8px;
    font-size: 14px !important;
}

.ivu-select-multiple .ivu-select-item-selected {
    color: rgba(51, 153, 255, 0.9);
    background: #fff;
}

.ivu-select-multiple .ivu-select-item-focus,
.ivu-select-multiple .ivu-select-item-selected:hover {
    background: #f3f3f3;
}

.ivu-select-multiple .ivu-select-item-selected.ivu-select-multiple .ivu-select-item-focus {
    color: rgba(45, 135, 225, 0.91);
    background: #fff;
}

.ivu-select-multiple .ivu-select-item-selected:after {
    display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    font-size: 24px;
    content: '\F3FD';
    color: rgba(51, 153, 255, 0.9);
}

.ivu-select-group {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ivu-select-group-title {
    padding-left: 8px;
    font-size: 12px;
    color: #999;
    height: 30px;
    line-height: 30px;
}

.ivu-form-item-error .ivu-select-selection {
    border: 1px solid #ff3300;
}

.ivu-form-item-error .ivu-select-arrow {
    color: #ff3300;
}

.ivu-form-item-error .ivu-select-visible .ivu-select-selection {
    border-color: #ff3300;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(255, 51, 0, 0.2);
}

.ivu-select-dropdown {
    width: inherit;
    max-height: 200px;
    overflow: auto;
    margin: 5px 0;
    padding: 5px 0;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 900;
}

.ivu-tooltip {
    display: inline-block;
}

.ivu-tooltip-rel {
    display: inline-block;
    position: relative;
}

.ivu-tooltip-popper {
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.5;
    position: absolute;
    z-index: 1060;
}

.ivu-tooltip-popper[x-placement^="top"] {
    padding: 5px 0 8px 0;
}

.ivu-tooltip-popper[x-placement^="right"] {
    padding: 0 5px 0 8px;
}

.ivu-tooltip-popper[x-placement^="bottom"] {
    padding: 8px 0 5px 0;
}

.ivu-tooltip-popper[x-placement^="left"] {
    padding: 0 8px 0 5px;
}

.ivu-tooltip-popper[x-placement^="top"] .ivu-tooltip-arrow {
    bottom: 3px;
    border-width: 5px 5px 0;
    border-top-color: rgba(70, 76, 91, 0.9);
}

.ivu-tooltip-popper[x-placement="top"] .ivu-tooltip-arrow {
    left: 50%;
    margin-left: -5px;
}

.ivu-tooltip-popper[x-placement="top-start"] .ivu-tooltip-arrow {
    left: 16px;
}

.ivu-tooltip-popper[x-placement="top-end"] .ivu-tooltip-arrow {
    right: 16px;
}

.ivu-tooltip-popper[x-placement^="right"] .ivu-tooltip-arrow {
    left: 3px;
    border-width: 5px 5px 5px 0;
    border-right-color: rgba(70, 76, 91, 0.9);
}

.ivu-tooltip-popper[x-placement="right"] .ivu-tooltip-arrow {
    top: 50%;
    margin-top: -5px;
}

.ivu-tooltip-popper[x-placement="right-start"] .ivu-tooltip-arrow {
    top: 8px;
}

.ivu-tooltip-popper[x-placement="right-end"] .ivu-tooltip-arrow {
    bottom: 8px;
}

.ivu-tooltip-popper[x-placement^="left"] .ivu-tooltip-arrow {
    right: 3px;
    border-width: 5px 0 5px 5px;
    border-left-color: rgba(70, 76, 91, 0.9);
}

.ivu-tooltip-popper[x-placement="left"] .ivu-tooltip-arrow {
    top: 50%;
    margin-top: -5px;
}

.ivu-tooltip-popper[x-placement="left-start"] .ivu-tooltip-arrow {
    top: 8px;
}

.ivu-tooltip-popper[x-placement="left-end"] .ivu-tooltip-arrow {
    bottom: 8px;
}

.ivu-tooltip-popper[x-placement^="bottom"] .ivu-tooltip-arrow {
    top: 3px;
    border-width: 0 5px 5px;
    border-bottom-color: rgba(70, 76, 91, 0.9);
}

.ivu-tooltip-popper[x-placement="bottom"] .ivu-tooltip-arrow {
    left: 50%;
    margin-left: -5px;
}

.ivu-tooltip-popper[x-placement="bottom-start"] .ivu-tooltip-arrow {
    left: 16px;
}

.ivu-tooltip-popper[x-placement="bottom-end"] .ivu-tooltip-arrow {
    right: 16px;
}

.ivu-tooltip-inner {
    max-width: 250px;
    min-height: 34px;
    padding: 8px 12px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    background-color: rgba(70, 76, 91, 0.9);
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.ivu-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.ivu-poptip {
    display: inline-block;
}

.ivu-poptip-rel {
    display: inline-block;
    position: relative;
}

.ivu-poptip-title {
    margin: 0;
    padding: 8px 16px;
    position: relative;
}

.ivu-poptip-title:after {
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    background-color: #e3e8ee;
}

.ivu-poptip-title-inner {
    color: #464c5b;
    font-size: 14px;
}

.ivu-poptip-body {
    padding: 8px 16px;
}

.ivu-poptip-body-content {
    overflow: auto;
}

.ivu-poptip-body-content-inner {
    color: #657180;
}

.ivu-poptip-inner {
    width: 100%;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.ivu-poptip-popper {
    min-width: 150px;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.5;
    position: absolute;
    z-index: 1060;
}

.ivu-poptip-popper[x-placement^="top"] {
    padding: 5px 0 8px 0;
}

.ivu-poptip-popper[x-placement^="right"] {
    padding: 0 5px 0 8px;
}

.ivu-poptip-popper[x-placement^="bottom"] {
    padding: 8px 0 5px 0;
}

.ivu-poptip-popper[x-placement^="left"] {
    padding: 0 8px 0 5px;
}

.ivu-poptip-popper[x-placement^="top"] .ivu-poptip-arrow {
    bottom: 3px;
    border-width: 5px 5px 0;
    border-top-color: rgba(217, 217, 217, 0.5);
}

.ivu-poptip-popper[x-placement="top"] .ivu-poptip-arrow {
    left: 50%;
    margin-left: -5px;
}

.ivu-poptip-popper[x-placement="top-start"] .ivu-poptip-arrow {
    left: 16px;
}

.ivu-poptip-popper[x-placement="top-end"] .ivu-poptip-arrow {
    right: 16px;
}

.ivu-poptip-popper[x-placement^="right"] .ivu-poptip-arrow {
    left: 3px;
    border-width: 5px 5px 5px 0;
    border-right-color: rgba(217, 217, 217, 0.5);
}

.ivu-poptip-popper[x-placement="right"] .ivu-poptip-arrow {
    top: 50%;
    margin-top: -5px;
}

.ivu-poptip-popper[x-placement="right-start"] .ivu-poptip-arrow {
    top: 8px;
}

.ivu-poptip-popper[x-placement="right-end"] .ivu-poptip-arrow {
    bottom: 8px;
}

.ivu-poptip-popper[x-placement^="left"] .ivu-poptip-arrow {
    right: 3px;
    border-width: 5px 0 5px 5px;
    border-left-color: rgba(217, 217, 217, 0.5);
}

.ivu-poptip-popper[x-placement="left"] .ivu-poptip-arrow {
    top: 50%;
    margin-top: -5px;
}

.ivu-poptip-popper[x-placement="left-start"] .ivu-poptip-arrow {
    top: 8px;
}

.ivu-poptip-popper[x-placement="left-end"] .ivu-poptip-arrow {
    bottom: 8px;
}

.ivu-poptip-popper[x-placement^="bottom"] .ivu-poptip-arrow {
    top: 3px;
    border-width: 0 5px 5px;
    border-bottom-color: rgba(217, 217, 217, 0.5);
}

.ivu-poptip-popper[x-placement="bottom"] .ivu-poptip-arrow {
    left: 50%;
    margin-left: -5px;
}

.ivu-poptip-popper[x-placement="bottom-start"] .ivu-poptip-arrow {
    left: 16px;
}

.ivu-poptip-popper[x-placement="bottom-end"] .ivu-poptip-arrow {
    right: 16px;
}

.ivu-poptip-popper[x-placement^="top"] .ivu-poptip-arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -5px;
    border-bottom-width: 0;
    border-top-color: #fff;
}

.ivu-poptip-popper[x-placement^="right"] .ivu-poptip-arrow:after {
    content: " ";
    left: 1px;
    bottom: -5px;
    border-left-width: 0;
    border-right-color: #fff;
}

.ivu-poptip-popper[x-placement^="bottom"] .ivu-poptip-arrow:after {
    content: " ";
    top: 1px;
    margin-left: -5px;
    border-top-width: 0;
    border-bottom-color: #fff;
}

.ivu-poptip-popper[x-placement^="left"] .ivu-poptip-arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -5px;
}

.ivu-poptip-arrow,
.ivu-poptip-arrow:after {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-color: transparent;
    border-style: solid;
}

.ivu-poptip-arrow {
    border-width: 6px;
}

.ivu-poptip-arrow:after {
    content: "";
    border-width: 5px;
}

.ivu-poptip-confirm .ivu-poptip-popper {
    max-width: 300px;
}

.ivu-poptip-confirm .ivu-poptip-inner {
    white-space: normal;
}

.ivu-poptip-confirm .ivu-poptip-body {
    padding: 16px 16px 8px;
}

.ivu-poptip-confirm .ivu-poptip-body .ivu-icon {
    font-size: 16px;
    color: #ff9900;
    line-height: 18px;
    position: absolute;
}

.ivu-poptip-confirm .ivu-poptip-body-message {
    padding-left: 20px;
}

.ivu-poptip-confirm .ivu-poptip-footer {
    text-align: right;
    padding: 8px 16px 16px;
}

.ivu-poptip-confirm .ivu-poptip-footer button {
    margin-left: 4px;
}

.ivu-input {
    display: inline-block;
    width: 100%;
    height: 32px;
    line-height: 1.5;
    padding: 4px 7px;
    font-size: 12px;
    border: 1px solid #d7dde4;
    border-radius: 4px;
    color: #657180;
    background-color: #fff;
    background-image: none;
    position: relative;
    cursor: text;
    transition: border 0.2s ease-in-out, background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.ivu-input::-moz-placeholder {
    color: #c3cbd6;
    opacity: 1;
}

.ivu-input:-ms-input-placeholder {
    color: #c3cbd6;
}

.ivu-input::-webkit-input-placeholder {
    color: #c3cbd6;
}

.ivu-input:hover {
    border-color: #5cadff;
}

.ivu-input:focus {
    border-color: #5cadff;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(51, 153, 255, 0.2);
}

.ivu-input[disabled],
fieldset[disabled] .ivu-input {
    background-color: #f3f3f3;
    opacity: 1;
    cursor: not-allowed;
    color: #ccc;
}

.ivu-input[disabled]:hover,
fieldset[disabled] .ivu-input:hover {
    border-color: #dfe4e9;
}

textarea.ivu-input {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    font-size: 14px;
}

.ivu-input-large {
    font-size: 14px;
    padding: 6px 7px;
    height: 36px;
}

.ivu-input-small {
    padding: 1px 7px;
    height: 24px;
    border-radius: 3px;
}

.ivu-input-wrapper {
    display: inline-block;
    width: 100%;
    position: relative;
    vertical-align: middle;
}

.ivu-input-icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    color: #9ea7b4;
    position: absolute;
    right: 0;
    z-index: 1;
}

.ivu-input-icon-validate {
    display: none;
}

.ivu-input-icon+.ivu-input {
    padding-right: 32px;
}

.ivu-input-wrapper-large .ivu-input-icon {
    font-size: 18px;
    height: 36px;
    line-height: 36px;
}

.ivu-input-wrapper-small .ivu-input-icon {
    width: 24px;
    font-size: 14px;
    height: 24px;
    line-height: 24px;
}

.ivu-input-wrapper-small .ivu-input-icon+.ivu-input {
    padding-right: 24px;
}

.ivu-input-group {
    display: table;
    width: 100%;
    border-collapse: separate;
    position: relative;
    font-size: 12px;
    top: 1px;
}

.ivu-input-group-large {
    font-size: 14px;
}

.ivu-input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0;
}

.ivu-input-group>[class*="col-"] {
    padding-right: 8px;
}

.ivu-input-group-prepend,
.ivu-input-group-append,
.ivu-input-group>.ivu-input {
    display: table-cell;
}

.ivu-input-group-prepend:not(:first-child):not(:last-child),
.ivu-input-group-append:not(:first-child):not(:last-child),
.ivu-input-group>.ivu-input:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.ivu-input-group-prepend .ivu-btn,
.ivu-input-group-append .ivu-btn {
    border-color: transparent;
    background-color: transparent;
    color: inherit;
    margin: -5px -7px;
}

.ivu-input-group-prepend,
.ivu-input-group-append {
    width: 1px;
    white-space: nowrap;
    vertical-align: middle;
}

.ivu-input-group .ivu-input {
    width: 100%;
    float: left;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.ivu-input-group-prepend,
.ivu-input-group-append {
    padding: 4px 7px;
    font-size: inherit;
    font-weight: normal;
    line-height: 1;
    color: #657180;
    text-align: center;
    background-color: #eee;
    border: 1px solid #d7dde4;
    border-radius: 6px;
}

.ivu-input-group-prepend .ivu-select,
.ivu-input-group-append .ivu-select {
    margin: -5px -7px;
}

.ivu-input-group-prepend .ivu-select-selection,
.ivu-input-group-append .ivu-select-selection {
    background-color: inherit;
    margin: -1px;
    border: 1px solid transparent;
}

.ivu-input-group-prepend .ivu-select-visible .ivu-select-selection,
.ivu-input-group-append .ivu-select-visible .ivu-select-selection {
    box-shadow: none;
}

.ivu-input-group>span>.ivu-input:first-child,
.ivu-input-group>.ivu-input:first-child,
.ivu-input-group-prepend {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.ivu-input-group>span>.ivu-input:first-child .ivu--select .ivu--select-selection,
.ivu-input-group>.ivu-input:first-child .ivu--select .ivu--select-selection,
.ivu-input-group-prepend .ivu--select .ivu--select-selection {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.ivu-input-group-prepend {
    border-right: 0;
}

.ivu-input-group-append {
    border-left: 0;
}

.ivu-input-group>.ivu-input:last-child,
.ivu-input-group-append {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.ivu-input-group>.ivu-input:last-child .ivu--select .ivu--select-selection,
.ivu-input-group-append .ivu--select .ivu--select-selection {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.ivu-input-group-large .ivu-input,
.ivu-input-group-large>.ivu-input-group-prepend,
.ivu-input-group-large>.ivu-input-group-append {
    font-size: 14px;
    padding: 6px 7px;
    height: 36px;
}

.ivu-input-group-small .ivu-input,
.ivu-input-group-small>.ivu-input-group-prepend,
.ivu-input-group-small>.ivu-input-group-append {
    padding: 1px 7px;
    height: 24px;
    border-radius: 3px;
}

.ivu-form-item-error .ivu-input {
    border: 1px solid #ff3300;
}

.ivu-form-item-error .ivu-input:hover {
    border-color: #ff3300;
}

.ivu-form-item-error .ivu-input:focus {
    border-color: #ff3300;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(255, 51, 0, 0.2);
}

.ivu-form-item-error .ivu-input-icon {
    color: #ff3300;
}

.ivu-form-item-error .ivu-input-group-prepend,
.ivu-form-item-error .ivu-input-group-append {
    background-color: #fff;
    border: 1px solid #ff3300;
}

.ivu-form-item-error .ivu-input-group-prepend .ivu-select-selection,
.ivu-form-item-error .ivu-input-group-append .ivu-select-selection {
    background-color: inherit;
    border: 1px solid transparent;
}

.ivu-form-item-error .ivu-input-group-prepend {
    border-right: 0;
}

.ivu-form-item-error .ivu-input-group-append {
    border-left: 0;
}

.ivu-form-item-validating .ivu-input-icon-validate {
    display: inline-block;
}

.ivu-slider {
    line-height: normal;
}

.ivu-slider-wrap {
    width: 100%;
    height: 4px;
    margin: 16px 0;
    background-color: #e3e8ee;
    border-radius: 3px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.ivu-slider-button-wrap {
    width: 18px;
    height: 18px;
    text-align: center;
    background-color: transparent;
    position: absolute;
    top: -4px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ivu-slider-button-wrap .ivu-tooltip {
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ivu-slider-button {
    width: 12px;
    height: 12px;
    border: 2px solid #5cadff;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.2s linear;
}

.ivu-slider-button:hover,
.ivu-slider-button-dragging {
    border-color: #3399ff;
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

.ivu-slider-button:hover {
    cursor: -webkit-grab;
    cursor: grab;
}

.ivu-slider-button-dragging,
.ivu-slider-button-dragging:hover {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.ivu-slider-bar {
    height: 4px;
    background: #5cadff;
    border-radius: 3px;
    position: absolute;
}

.ivu-slider-stop {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ccc;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ivu-slider-disabled {
    cursor: not-allowed;
}

.ivu-slider-disabled .ivu-slider-wrap {
    background-color: #ccc;
    cursor: not-allowed;
}

.ivu-slider-disabled .ivu-slider-bar {
    background-color: #ccc;
}

.ivu-slider-disabled .ivu-slider-button {
    border-color: #ccc;
}

.ivu-slider-disabled .ivu-slider-button:hover,
.ivu-slider-disabled .ivu-slider-button-dragging {
    border-color: #ccc;
}

.ivu-slider-disabled .ivu-slider-button:hover {
    cursor: not-allowed;
}

.ivu-slider-disabled .ivu-slider-button-dragging,
.ivu-slider-disabled .ivu-slider-button-dragging:hover {
    cursor: not-allowed;
}

.ivu-slider-input .ivu-slider-wrap {
    width: auto;
    margin-right: 100px;
}

.ivu-slider-input .ivu-input-number {
    float: right;
    margin-top: -14px;
}

.ivu-cascader {
    line-height: normal;
}

.ivu-cascader-rel {
    position: relative;
}

.ivu-cascader .ivu-input {
    display: block;
    cursor: pointer;
}

.ivu-cascader-disabled .ivu-input {
    cursor: not-allowed;
}

.ivu-cascader .ivu-cascader-arrow:nth-of-type(1) {
    display: none;
    cursor: pointer;
}

.ivu-cascader:hover .ivu-cascader-arrow:nth-of-type(1) {
    display: inline-block;
}

.ivu-cascader-show-clear:hover .ivu-cascader-arrow:nth-of-type(2) {
    display: none;
}

.ivu-cascader-arrow {
    position: absolute;
    top: 50%;
    right: 8px;
    line-height: 1;
    margin-top: -7px;
    font-size: 14px;
    color: #9ea7b4;
    transition: all 0.2s ease-in-out;
}

.ivu-cascader-visible .ivu-cascader-arrow:nth-of-type(2) {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ivu-cascader .ivu-select-dropdown {
    width: auto;
    padding: 0;
    white-space: nowrap;
    overflow: visible;
}

.ivu-cascader .ivu-cascader-menu-item {
    margin: 0;
    padding: 7px 16px;
    clear: both;
    color: #657180;
    font-size: 12px !important;
    white-space: nowrap;
    list-style: none;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.ivu-cascader .ivu-cascader-menu-item:hover {
    background: #f3f3f3;
}

.ivu-cascader .ivu-cascader-menu-item-focus {
    background: #f3f3f3;
}

.ivu-cascader .ivu-cascader-menu-item-disabled {
    color: #c3cbd6;
    cursor: not-allowed;
}

.ivu-cascader .ivu-cascader-menu-item-disabled:hover {
    color: #c3cbd6;
    background-color: #fff;
    cursor: not-allowed;
}

.ivu-cascader .ivu-cascader-menu-item-selected,
.ivu-cascader .ivu-cascader-menu-item-selected:hover {
    color: #fff;
    background: rgba(51, 153, 255, 0.9);
}

.ivu-cascader .ivu-cascader-menu-item-selected.ivu-cascader .ivu-cascader-menu-item-focus {
    background: rgba(45, 135, 225, 0.91);
}

.ivu-cascader .ivu-cascader-menu-item-divided {
    margin-top: 5px;
    border-top: 1px solid #e3e8ee;
}

.ivu-cascader .ivu-cascader-menu-item-divided:before {
    content: '';
    height: 5px;
    display: block;
    margin: 0 -16px;
    background-color: #fff;
    position: relative;
    top: -7px;
}

.ivu-cascader .ivu-cascader-large .ivu-cascader-menu-item {
    padding: 7px 16px 8px;
    font-size: 14px !important;
}

.ivu-cascader-menu {
    display: inline-block;
    min-width: 100px;
    height: 180px;
    margin: 0;
    padding: 5px 0 !important;
    vertical-align: top;
    list-style: none;
    border-right: 1px solid #e3e8ee;
    overflow: auto;
}

.ivu-cascader-menu:last-child {
    border-right-color: transparent;
    margin-right: -1px;
}

.ivu-cascader-menu .ivu-cascader-menu-item {
    position: relative;
    padding-right: 24px;
    transition: all 0.2s ease-in-out;
}

.ivu-cascader-menu .ivu-cascader-menu-item i {
    font-size: 12px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -6px;
}

.ivu-cascader-menu .ivu-cascader-menu-item-active {
    background-color: #f3f3f3;
    color: #3399ff;
}

.ivu-form-item-error .ivu-cascader-arrow {
    color: #ff3300;
}

.ivu-transfer {
    position: relative;
    line-height: 1.5;
}

.ivu-transfer-list {
    display: inline-block;
    width: 180px;
    height: 210px;
    font-size: 12px;
    vertical-align: middle;
    position: relative;
    padding-top: 35px;
}

.ivu-transfer-list-with-footer {
    padding-bottom: 35px;
}

.ivu-transfer-list-header {
    padding: 8px 16px;
    background: #f9fafc;
    color: #657180;
    border: 1px solid #d7dde4;
    border-bottom: 1px solid #e3e8ee;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.ivu-transfer-list-header>span {
    padding-left: 4px;
}

.ivu-transfer-list-header-count {
    margin: 0 !important;
    float: right;
}

.ivu-transfer-list-body {
    height: 100%;
    border: 1px solid #d7dde4;
    border-top: none;
    border-radius: 0 0 6px 6px;
    position: relative;
    overflow: hidden;
}

.ivu-transfer-list-body-with-search {
    padding-top: 34px;
}

.ivu-transfer-list-body-with-footer {
    border-radius: 0;
}

.ivu-transfer-list-content {
    height: 100%;
    padding: 4px 0;
    overflow: auto;
}

.ivu-transfer-list-content-item {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ivu-transfer-list-content-item>span {
    padding-left: 4px;
}

.ivu-transfer-list-content-not-found {
    display: none;
    text-align: center;
    color: #c3cbd6;
}

li.ivu-transfer-list-content-not-found:only-child {
    display: block;
}

.ivu-transfer-list-body-with-search .ivu-transfer-list-content {
    padding: 6px 0 0;
}

.ivu-transfer-list-body-search-wrapper {
    padding: 8px 8px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.ivu-transfer-list-search {
    position: relative;
}

.ivu-transfer-list-footer {
    border: 1px solid #d7dde4;
    border-top: none;
    border-radius: 0 0 6px 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    zoom: 1;
}

.ivu-transfer-list-footer:before,
.ivu-transfer-list-footer:after {
    content: "";
    display: table;
}

.ivu-transfer-list-footer:after {
    clear: both;
    visibility: hidden;
    font-size: 0;
    height: 0;
}

.ivu-transfer-operation {
    display: inline-block;
    overflow: hidden;
    margin: 0 16px;
    vertical-align: middle;
}

.ivu-transfer-operation .ivu-btn {
    display: block;
    min-width: 24px;
}

.ivu-transfer-operation .ivu-btn:first-child {
    margin-bottom: 12px;
}

.ivu-transfer-list-content-item {
    margin: 0;
    padding: 7px 16px;
    clear: both;
    color: #657180;
    font-size: 12px !important;
    white-space: nowrap;
    list-style: none;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.ivu-transfer-list-content-item:hover {
    background: #f3f3f3;
}

.ivu-transfer-list-content-item-focus {
    background: #f3f3f3;
}

.ivu-transfer-list-content-item-disabled {
    color: #c3cbd6;
    cursor: not-allowed;
}

.ivu-transfer-list-content-item-disabled:hover {
    color: #c3cbd6;
    background-color: #fff;
    cursor: not-allowed;
}

.ivu-transfer-list-content-item-selected,
.ivu-transfer-list-content-item-selected:hover {
    color: #fff;
    background: rgba(51, 153, 255, 0.9);
}

.ivu-transfer-list-content-item-selected.ivu-transfer-list-content-item-focus {
    background: rgba(45, 135, 225, 0.91);
}

.ivu-transfer-list-content-item-divided {
    margin-top: 5px;
    border-top: 1px solid #e3e8ee;
}

.ivu-transfer-list-content-item-divided:before {
    content: '';
    height: 5px;
    display: block;
    margin: 0 -16px;
    background-color: #fff;
    position: relative;
    top: -7px;
}

.ivu-transfer-large .ivu-transfer-list-content-item {
    padding: 7px 16px 8px;
    font-size: 14px !important;
}

.ivu-table {
    width: inherit;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    color: #657180;
    font-size: 12px;
    background-color: #fff;
    box-sizing: border-box;
}

.ivu-table-wrapper {
    position: relative;
    border: 1px solid #d7dde4;
    border-bottom: 0;
    border-right: 0;
}

.ivu-table-hide {
    opacity: 0;
}

.ivu-table:before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #d7dde4;
    z-index: 1;
}

.ivu-table:after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #d7dde4;
    z-index: 3;
}

.ivu-table-title,
.ivu-table-footer {
    height: 48px;
    line-height: 48px;
    border-bottom: 1px solid #e3e8ee;
}

.ivu-table-footer {
    border-bottom: none;
}

.ivu-table-header {
    overflow: hidden;
}

.ivu-table-body {
    overflow: auto;
}

.ivu-table-with-fixed-top.ivu-table-with-footer .ivu-table-footer {
    border-top: 1px solid #d7dde4;
}

.ivu-table-with-fixed-top.ivu-table-with-footer tbody tr:last-child td {
    border-bottom: none;
}

.ivu-table th,
.ivu-table td {
    min-width: 0;
    height: 48px;
    box-sizing: border-box;
    text-align: left;
    text-overflow: ellipsis;
    vertical-align: middle;
    border-bottom: 1px solid #e3e8ee;
}

.ivu-table th {
    height: 40px;
    white-space: nowrap;
    overflow: hidden;
    background-color: #f5f7f9;
}

.ivu-table td {
    background-color: #fff;
    transition: background-color 0.2s ease-in-out;
}

th.ivu-table-column-left,
td.ivu-table-column-left {
    text-align: left;
}

th.ivu-table-column-center,
td.ivu-table-column-center {
    text-align: center;
}

th.ivu-table-column-right,
td.ivu-table-column-right {
    text-align: right;
}

.ivu-table table {
    table-layout: fixed;
}

.ivu-table-border th,
.ivu-table-border td {
    border-right: 1px solid #e3e8ee;
}

.ivu-table-cell {
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    box-sizing: border-box;
}

.ivu-table-cell-ellipsis {
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ivu-table-hidden {
    visibility: hidden;
}

th .ivu-table-cell {
    display: inline-block;
    word-wrap: normal;
    vertical-align: middle;
}

.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td,
.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td {
    background-color: #f5f7f9;
}

tr.ivu-table-row-hover td {
    background-color: #ebf7ff;
}

.ivu-table-large {
    font-size: 14px;
}

.ivu-table-large th {
    height: 48px;
}

.ivu-table-large td {
    height: 60px;
}

.ivu-table-large-title,
.ivu-table-large-footer {
    height: 60px;
    line-height: 60px;
}

.ivu-table-small th {
    height: 32px;
}

.ivu-table-small td {
    height: 40px;
}

.ivu-table-small-title,
.ivu-table-small-footer {
    height: 40px;
    line-height: 40px;
}

.ivu-table-row-highlight td,
tr.ivu-table-row-highlight.ivu-table-row-hover td,
.ivu-table-stripe .ivu-table-body tr.ivu-table-row-highlight:nth-child(2n) td,
.ivu-table-stripe .ivu-table-fixed-body tr.ivu-table-row-highlight:nth-child(2n) td {
    background-color: #ebf7ff;
}

.ivu-table-fixed,
.ivu-table-fixed-right {
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 2px 0 6px -2px rgba(0, 0, 0, 0.2);
}

.ivu-table-fixed::before,
.ivu-table-fixed-right::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #d7dde4;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
}

.ivu-table-fixed-right {
    top: 0;
    left: auto;
    right: 0;
    box-shadow: -2px 0 6px -2px rgba(0, 0, 0, 0.2);
}

.ivu-table-fixed-header {
    overflow: hidden;
}

.ivu-table-fixed-body {
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.ivu-table-fixed-shadow {
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
}

.ivu-table-sort {
    display: inline-block;
    width: 9px;
    height: 12px;
    margin-left: 4px;
    margin-top: -1px;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.ivu-table-sort i {
    display: block;
    height: 6px;
    line-height: 6px;
    overflow: hidden;
    position: absolute;
    color: #c3cbd6;
    transition: color 0.2s ease-in-out;
}

.ivu-table-sort i:hover {
    color: inherit;
}

.ivu-table-sort i.on {
    color: #3399ff;
}

.ivu-table-sort i:first-child {
    top: 0;
}

.ivu-table-sort i:last-child {
    bottom: 0;
}

.ivu-table-filter {
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.ivu-table-filter i {
    color: #c3cbd6;
    transition: color 0.2s ease-in-out;
}

.ivu-table-filter i:hover {
    color: inherit;
}

.ivu-table-filter i.on {
    color: #3399ff;
}

.ivu-table-filter-list {
    padding: 8px 0 0;
}

.ivu-table-filter-list-item {
    padding: 0 12px 8px;
}

.ivu-table-filter-list-item .ivu-checkbox-wrapper+.ivu-checkbox-wrapper {
    margin: 0;
}

.ivu-table-filter-list-item label {
    display: block;
    margin-bottom: 4px;
}

.ivu-table-filter-list-item label>span {
    margin-right: 4px;
}

.ivu-table-filter-list ul {
    padding-bottom: 8px;
}

.ivu-table-filter-list .ivu-table-filter-select-item {
    margin: 0;
    padding: 7px 16px;
    clear: both;
    color: #657180;
    font-size: 12px !important;
    white-space: nowrap;
    list-style: none;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.ivu-table-filter-list .ivu-table-filter-select-item:hover {
    background: #f3f3f3;
}

.ivu-table-filter-list .ivu-table-filter-select-item-focus {
    background: #f3f3f3;
}

.ivu-table-filter-list .ivu-table-filter-select-item-disabled {
    color: #c3cbd6;
    cursor: not-allowed;
}

.ivu-table-filter-list .ivu-table-filter-select-item-disabled:hover {
    color: #c3cbd6;
    background-color: #fff;
    cursor: not-allowed;
}

.ivu-table-filter-list .ivu-table-filter-select-item-selected,
.ivu-table-filter-list .ivu-table-filter-select-item-selected:hover {
    color: #fff;
    background: rgba(51, 153, 255, 0.9);
}

.ivu-table-filter-list .ivu-table-filter-select-item-selected.ivu-table-filter-list .ivu-table-filter-select-item-focus {
    background: rgba(45, 135, 225, 0.91);
}

.ivu-table-filter-list .ivu-table-filter-select-item-divided {
    margin-top: 5px;
    border-top: 1px solid #e3e8ee;
}

.ivu-table-filter-list .ivu-table-filter-select-item-divided:before {
    content: '';
    height: 5px;
    display: block;
    margin: 0 -16px;
    background-color: #fff;
    position: relative;
    top: -7px;
}

.ivu-table-filter-list .ivu-table-large .ivu-table-filter-select-item {
    padding: 7px 16px 8px;
    font-size: 14px !important;
}

.ivu-table-filter-footer {
    padding: 4px;
    border-top: 1px solid #e3e8ee;
}

.ivu-table .ivu-poptip-popper {
    min-width: 0;
    text-align: left;
}

.ivu-table thead .ivu-poptip-popper .ivu-poptip-body {
    padding: 0;
}

.ivu-table-tip table {
    width: 100%;
}

.ivu-table-tip table td {
    text-align: center;
}

.ivu-dropdown {
    display: inline-block;
}

.ivu-dropdown .ivu-select-dropdown {
    overflow: visible;
    max-height: none;
}

.ivu-dropdown .ivu-dropdown {
    width: 100%;
}

.ivu-dropdown-rel {
    position: relative;
}

.ivu-dropdown-menu {
    min-width: 100px;
}

.ivu-dropdown-item {
    margin: 0;
    padding: 7px 16px;
    clear: both;
    color: #657180;
    font-size: 12px !important;
    white-space: nowrap;
    list-style: none;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.ivu-dropdown-item:hover {
    background: #f3f3f3;
}

.ivu-dropdown-item-focus {
    background: #f3f3f3;
}

.ivu-dropdown-item-disabled {
    color: #c3cbd6;
    cursor: not-allowed;
}

.ivu-dropdown-item-disabled:hover {
    color: #c3cbd6;
    background-color: #fff;
    cursor: not-allowed;
}

.ivu-dropdown-item-selected,
.ivu-dropdown-item-selected:hover {
    color: #fff;
    background: rgba(51, 153, 255, 0.9);
}

.ivu-dropdown-item-selected.ivu-dropdown-item-focus {
    background: rgba(45, 135, 225, 0.91);
}

.ivu-dropdown-item-divided {
    margin-top: 5px;
    border-top: 1px solid #e3e8ee;
}

.ivu-dropdown-item-divided:before {
    content: '';
    height: 5px;
    display: block;
    margin: 0 -16px;
    background-color: #fff;
    position: relative;
    top: -7px;
}

.ivu-dropdown-large .ivu-dropdown-item {
    padding: 7px 16px 8px;
    font-size: 14px !important;
}

.ivu-tabs {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    color: #657180;
    zoom: 1;
}

.ivu-tabs:before,
.ivu-tabs:after {
    content: "";
    display: table;
}

.ivu-tabs:after {
    clear: both;
    visibility: hidden;
    font-size: 0;
    height: 0;
}

.ivu-tabs-bar {
    outline: none;
}

.ivu-tabs-ink-bar {
    height: 2px;
    box-sizing: border-box;
    background-color: #3399ff;
    position: absolute;
    left: 0;
    bottom: 1px;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.ivu-tabs-bar {
    border-bottom: 1px solid #d7dde4;
    margin-bottom: 16px;
}

.ivu-tabs-nav-container {
    margin-bottom: -1px;
    line-height: 1.5;
    font-size: 14px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    zoom: 1;
}

.ivu-tabs-nav-container:before,
.ivu-tabs-nav-container:after {
    content: "";
    display: table;
}

.ivu-tabs-nav-container:after {
    clear: both;
    visibility: hidden;
    font-size: 0;
    height: 0;
}

.ivu-tabs-nav-container-scrolling {
    padding-left: 32px;
    padding-right: 32px;
}

.ivu-tabs-nav-wrap {
    overflow: hidden;
    margin-bottom: -1px;
}

.ivu-tabs-nav-scroll {
    overflow: hidden;
    white-space: nowrap;
}

.ivu-tabs-nav {
    padding-left: 0;
    margin: 0;
    float: left;
    list-style: none;
    box-sizing: border-box;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.ivu-tabs-nav:before,
.ivu-tabs-nav:after {
    display: table;
    content: " ";
}

.ivu-tabs-nav:after {
    clear: both;
}

.ivu-tabs-nav .ivu-tabs-tab-disabled {
    pointer-events: none;
    cursor: default;
    color: #ccc;
}

.ivu-tabs-nav .ivu-tabs-tab {
    display: inline-block;
    height: 100%;
    padding: 8px 16px;
    margin-right: 16px;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.ivu-tabs-nav .ivu-tabs-tab:hover {
    color: #5cadff;
}

.ivu-tabs-nav .ivu-tabs-tab:active {
    color: #3091f2;
}

.ivu-tabs-nav .ivu-tabs-tab .ivu-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

.ivu-tabs-nav .ivu-tabs-tab-active {
    color: #3399ff;
}

.ivu-tabs-mini .ivu-tabs-nav-container {
    font-size: 14px;
}

.ivu-tabs-mini .ivu-tabs-tab {
    margin-right: 0;
    padding: 8px 16px;
    font-size: 12px;
}

.ivu-tabs .ivu-tabs-content-animated {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    will-change: transform;
    transition: transform 0.3s ease-in-out;
}

.ivu-tabs .ivu-tabs-tabpane {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    transition: opacity .3s;
    opacity: 1;
}

.ivu-tabs .ivu-tabs-tabpane-inactive {
    opacity: 0;
    height: 0;
}

.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-nav-container {
    height: 32px;
}

.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-ink-bar {
    visibility: hidden;
}

.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-tab {
    margin: 0;
    margin-right: 4px;
    height: 31px;
    padding: 5px 16px 4px;
    border: 1px solid #d7dde4;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease-in-out;
    background: #f5f7f9;
}

.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-tab-active {
    height: 32px;
    padding-bottom: 5px;
    background: #fff;
    transform: translateZ(0);
    border-color: #d7dde4;
    color: #3399ff;
}

.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-nav-wrap {
    margin-bottom: 0;
}

.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-tab .ivu-icon-ios-close-empty {
    width: 0;
    height: 22px;
    font-size: 22px;
    margin-right: 0;
    color: #999;
    text-align: right;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
    top: -1px;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    transition: all 0.3s ease-in-out;
}

.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-tab .ivu-icon-ios-close-empty:hover {
    color: #444;
}

.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-tab-active .ivu-icon-ios-close-empty,
.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-tab:hover .ivu-icon-ios-close-empty {
    width: 14px;
    transform: translateZ(0);
}

.ivu-tabs-no-animation .ivu-tabs-content {
    -ms-transform: none!important;
    transform: none!important;
}

.ivu-tabs-no-animation .ivu-tabs-content>.ivu-tabs-tabpane-inactive {
    display: none;
}

.ivu-menu {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
    color: #657180;
    font-size: 14px;
    position: relative;
}

.ivu-menu-horizontal {
    height: 60px;
    line-height: 60px;
}

.ivu-menu-horizontal.ivu-menu-light:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #d7dde4;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ivu-menu-vertical.ivu-menu-light:after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #d7dde4;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.ivu-menu-light {
    background: #fff;
}

.ivu-menu-dark {
    background: #464c5b;
}

.ivu-menu-primary {
    background: #3399ff;
}

.ivu-menu-item {
    display: block;
    outline: none;
    list-style: none;
    font-size: 14px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.ivu-menu-item>i {
    margin-right: 6px;
}

.ivu-menu-submenu-title>i,
.ivu-menu-submenu-title span>i {
    margin-right: 8px;
}

.ivu-menu-horizontal .ivu-menu-item,
.ivu-menu-horizontal .ivu-menu-submenu {
    float: left;
    padding: 0 20px;
    position: relative;
    cursor: pointer;
    z-index: 3;
    transition: all 0.2s ease-in-out;
}

.ivu-menu-light.ivu-menu-horizontal .ivu-menu-item,
.ivu-menu-light.ivu-menu-horizontal .ivu-menu-submenu {
    height: inherit;
    line-height: inherit;
    border-bottom: 2px solid transparent;
    color: #657180;
}

.ivu-menu-light.ivu-menu-horizontal .ivu-menu-item-active,
.ivu-menu-light.ivu-menu-horizontal .ivu-menu-submenu-active,
.ivu-menu-light.ivu-menu-horizontal .ivu-menu-item:hover,
.ivu-menu-light.ivu-menu-horizontal .ivu-menu-submenu:hover {
    color: #3399ff;
    border-bottom: 2px solid #3399ff;
}

.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-item,
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-submenu {
    color: #9ea7b4;
}

.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-item-active,
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-submenu-active,
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-item:hover,
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-submenu:hover {
    color: #fff;
}

.ivu-menu-primary.ivu-menu-horizontal .ivu-menu-item,
.ivu-menu-primary.ivu-menu-horizontal .ivu-menu-submenu {
    color: #fff;
}

.ivu-menu-primary.ivu-menu-horizontal .ivu-menu-item-active,
.ivu-menu-primary.ivu-menu-horizontal .ivu-menu-submenu-active,
.ivu-menu-primary.ivu-menu-horizontal .ivu-menu-item:hover,
.ivu-menu-primary.ivu-menu-horizontal .ivu-menu-submenu:hover {
    background: #3091f2;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown {
    min-width: 100%;
    width: auto;
    max-height: none;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item {
    height: auto;
    line-height: normal;
    border-bottom: 0;
    float: none;
}

.ivu-menu-item-group {
    line-height: normal;
}

.ivu-menu-item-group-title {
    height: 30px;
    line-height: 30px;
    padding-left: 8px;
    font-size: 12px;
    color: #999;
}

.ivu-menu-item-group>ul {
    padding: 0 !important;
    list-style: none !important;
}

.ivu-menu-vertical .ivu-menu-item,
.ivu-menu-vertical .ivu-menu-submenu-title {
    padding: 14px 24px;
    position: relative;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.ivu-menu-vertical .ivu-menu-item:hover,
.ivu-menu-vertical .ivu-menu-submenu-title:hover {
    background: #f3f3f3;
}

.ivu-menu-vertical .ivu-menu-submenu-title-icon {
    float: right;
    position: relative;
    top: 4px;
}

.ivu-menu-submenu-title-icon {
    transition: transform 0.2s ease-in-out;
}

.ivu-menu-opened .ivu-menu-submenu-title-icon {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item {
    padding-left: 43px;
}

.ivu-menu-vertical .ivu-menu-item-group-title {
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    padding-left: 28px;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item-group-title {
    color: #657180;
}

.ivu-menu-light.ivu-menu-vertical .ivu-menu-item {
    border-right: 2px solid transparent;
}

.ivu-menu-light.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu) {
    color: #3399ff;
    border-right: 2px solid #3399ff;
    z-index: 2;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title {
    color: #9ea7b4;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu),
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title-active:not(.ivu-menu-submenu),
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu):hover,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title-active:not(.ivu-menu-submenu):hover {
    background: #313540;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item:hover,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title:hover {
    color: #fff;
    background: #464c5b;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu),
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title-active:not(.ivu-menu-submenu) {
    color: #3399ff;
    border-right: 2px solid #3399ff;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item:hover {
    color: #fff;
    background: transparent !important;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item-active,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item-active:hover {
    border-right: none;
    color: #fff;
    background: #3399ff !important;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item-active .ivu-menu-submenu-title {
    color: #fff;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened {
    background: #313540;
}

.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened .ivu-menu-submenu-title {
    background: #464c5b;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item {
    margin: 0;
    padding: 7px 16px;
    clear: both;
    color: #657180;
    font-size: 12px !important;
    white-space: nowrap;
    list-style: none;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item:hover {
    background: #f3f3f3;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item-focus {
    background: #f3f3f3;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item-disabled {
    color: #c3cbd6;
    cursor: not-allowed;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item-disabled:hover {
    color: #c3cbd6;
    background-color: #fff;
    cursor: not-allowed;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item-selected,
.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item-selected:hover {
    color: #fff;
    background: rgba(51, 153, 255, 0.9);
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item-selected.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item-focus {
    background: rgba(45, 135, 225, 0.91);
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item-divided {
    margin-top: 5px;
    border-top: 1px solid #e3e8ee;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item-divided:before {
    content: '';
    height: 5px;
    display: block;
    margin: 0 -16px;
    background-color: #fff;
    position: relative;
    top: -7px;
}

.ivu-menu-large .ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item {
    padding: 7px 16px 8px;
    font-size: 14px !important;
}

.ivu-menu-horizontal .ivu-menu-submenu .ivu-select-dropdown .ivu-menu-item {
    padding: 7px 16px 8px;
    font-size: 14px !important;
}

.ivu-date-picker {
    line-height: normal;
}

.ivu-date-picker-rel {
    position: relative;
}

.ivu-date-picker .ivu-select-dropdown {
    width: auto;
    padding: 0;
    overflow: visible;
    max-height: none;
}

.ivu-date-picker-cells {
    width: 196px;
    margin: 10px;
}

.ivu-date-picker-cells span {
    display: inline-block;
    width: 24px;
    height: 24px;
}

.ivu-date-picker-cells span em {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin: 2px;
    font-style: normal;
    border-radius: 3px;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.ivu-date-picker-cells-header span {
    line-height: 24px;
    text-align: center;
    margin: 2px;
    color: #c3cbd6;
}

span.ivu-date-picker-cells-cell {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.ivu-date-picker-cells-cell:hover em {
    background: #e1f0fe;
}

.ivu-date-picker-cells-cell-prev-month em,
.ivu-date-picker-cells-cell-next-month em {
    color: #c3cbd6;
}

.ivu-date-picker-cells-cell-prev-month:hover em,
.ivu-date-picker-cells-cell-next-month:hover em {
    background: transparent;
}

span.ivu-date-picker-cells-cell-disabled,
span.ivu-date-picker-cells-cell-disabled:hover {
    cursor: not-allowed;
    background: #f7f7f7;
    color: #c3cbd6;
}

span.ivu-date-picker-cells-cell-disabled em,
span.ivu-date-picker-cells-cell-disabled:hover em {
    color: inherit;
    background: inherit;
}

.ivu-date-picker-cells-cell-today em {
    position: relative;
}

.ivu-date-picker-cells-cell-today em:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3399ff;
    position: absolute;
    top: 1px;
    right: 1px;
}

.ivu-date-picker-cells-cell-range {
    position: relative;
}

.ivu-date-picker-cells-cell-range em {
    position: relative;
    z-index: 1;
}

.ivu-date-picker-cells-cell-range:before {
    content: '';
    display: block;
    background: #e1f0fe;
    border-radius: 0;
    border: 0;
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    right: 0;
}

.ivu-date-picker-cells-cell-selected em,
.ivu-date-picker-cells-cell-selected:hover em {
    background: #3399ff;
    color: #fff;
}

span.ivu-date-picker-cells-cell-disabled.ivu-date-picker-cells-cell-selected em {
    background: #c3cbd6;
    color: #f7f7f7;
}

.ivu-date-picker-cells-cell-today.ivu-date-picker-cells-cell-selected em:after {
    background: #fff;
}

.ivu-date-picker-cells-year,
.ivu-date-picker-cells-month {
    margin-top: 14px;
}

.ivu-date-picker-cells-year span,
.ivu-date-picker-cells-month span {
    width: 40px;
    height: 28px;
    line-height: 28px;
    margin: 10px 12px;
    border-radius: 3px;
}

.ivu-date-picker-cells-year span em,
.ivu-date-picker-cells-month span em {
    width: 40px;
    height: 28px;
    line-height: 28px;
    margin: 0;
}

.ivu-date-picker-header {
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-bottom: 1px solid #e3e8ee;
}

.ivu-date-picker-header-label {
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.ivu-date-picker-header-label:hover {
    color: #3399ff;
}

.ivu-date-picker-prev-btn {
    float: left;
}

.ivu-date-picker-prev-btn-arrow-double {
    margin-left: 10px;
}

.ivu-date-picker-prev-btn-arrow-double i:after {
    content: "\F3D2";
}

.ivu-date-picker-next-btn {
    float: right;
}

.ivu-date-picker-next-btn-arrow-double {
    margin-right: 10px;
}

.ivu-date-picker-next-btn-arrow-double i:after {
    content: "\F3D3";
}

.ivu-date-picker-with-range .ivu-picker-panel-body {
    min-width: 432px;
}

.ivu-date-picker-with-range .ivu-picker-panel-content {
    float: left;
}

.ivu-picker-panel-icon-btn {
    display: inline-block;
    width: 20px;
    height: 24px;
    line-height: 26px;
    margin-top: 4px;
    text-align: center;
    cursor: pointer;
    color: #c3cbd6;
    transition: color 0.2s ease-in-out;
}

.ivu-picker-panel-icon-btn:hover {
    color: #3399ff;
}

.ivu-picker-panel-icon-btn i {
    font-size: 14px;
}

.ivu-picker-panel-body-wrapper.ivu-picker-panel-with-sidebar {
    padding-left: 92px;
}

.ivu-picker-panel-sidebar {
    width: 92px;
    float: left;
    margin-left: -92px;
    position: absolute;
    top: 0;
    bottom: 0;
    background: #f5f7f9;
    border-right: 1px solid #e3e8ee;
    border-radius: 4px 0 0 4px;
    overflow: auto;
}

.ivu-picker-panel-shortcut {
    padding: 6px 15px 7px 15px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ivu-picker-panel-shortcut:hover {
    background: #e3e8ee;
}

.ivu-picker-panel-body {
    float: left;
}

.ivu-picker-confirm {
    border-top: 1px solid #e3e8ee;
    text-align: right;
    padding: 8px;
    clear: both;
}

.ivu-picker-confirm>span {
    color: #3399ff;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: left;
    padding: 2px 0;
    transition: all 0.2s ease-in-out;
}

.ivu-picker-confirm>span:hover {
    color: #5cadff;
}

.ivu-picker-confirm>span:active {
    color: #3091f2;
}

.ivu-picker-confirm>span.ivu-picker-confirm-time-disabled {
    color: #c3cbd6;
    cursor: not-allowed;
}

.ivu-time-picker-cells {
    min-width: 112px;
}

.ivu-time-picker-cells-with-seconds {
    min-width: 168px;
}

.ivu-time-picker-cells-list {
    width: 56px;
    max-height: 144px;
    float: left;
    overflow: hidden;
    border-left: 1px solid #e3e8ee;
    position: relative;
}

.ivu-time-picker-cells-list:hover {
    overflow-y: auto;
}

.ivu-time-picker-cells-list:first-child {
    border-left: none;
    border-radius: 4px 0 0 4px;
}

.ivu-time-picker-cells-list:last-child {
    border-radius: 0 4px 4px 0;
}

.ivu-time-picker-cells-list ul {
    width: 100%;
    margin: 0;
    padding: 0 0 120px 0;
    list-style: none;
}

.ivu-time-picker-cells-list ul li {
    width: 100%;
    height: 24px;
    line-height: 24px;
    margin: 0;
    padding: 0 0 0 16px;
    box-sizing: content-box;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s ease-in-out;
}

.ivu-time-picker-cells-cell:hover {
    background: #f3f3f3;
}

.ivu-time-picker-cells-cell-disabled {
    color: #c3cbd6;
    cursor: not-allowed;
}

.ivu-time-picker-cells-cell-disabled:hover {
    color: #c3cbd6;
    background-color: #fff;
    cursor: not-allowed;
}

.ivu-time-picker-cells-cell-selected,
.ivu-time-picker-cells-cell-selected:hover {
    color: #3399ff;
    background: #f3f3f3;
}

.ivu-time-picker-header {
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-bottom: 1px solid #e3e8ee;
}

.ivu-time-picker-with-range .ivu-picker-panel-body {
    min-width: 228px;
}

.ivu-time-picker-with-range .ivu-picker-panel-content {
    float: left;
    position: relative;
}

.ivu-time-picker-with-range .ivu-picker-panel-content:after {
    content: '';
    display: block;
    width: 2px;
    position: absolute;
    top: 31px;
    bottom: 0;
    right: -2px;
    background: #e3e8ee;
    z-index: 1;
}

.ivu-time-picker-with-range .ivu-picker-panel-content-right {
    float: right;
}

.ivu-time-picker-with-range .ivu-picker-panel-content-right:after {
    right: auto;
    left: -2px;
}

.ivu-time-picker-with-range .ivu-time-picker-cells-list:first-child {
    border-radius: 0;
}

.ivu-time-picker-with-range .ivu-time-picker-cells-list:last-child {
    border-radius: 0;
}

.ivu-time-picker-with-range.ivu-time-picker-with-seconds .ivu-picker-panel-body {
    min-width: 340px;
}

.ivu-picker-panel-content .ivu-picker-panel-content .ivu-time-picker-cells {
    min-width: 216px;
}

.ivu-picker-panel-content .ivu-picker-panel-content .ivu-time-picker-cells-with-seconds {
    min-width: 216px;
}

.ivu-picker-panel-content .ivu-picker-panel-content .ivu-time-picker-cells-with-seconds .ivu-time-picker-cells-list {
    width: 72px;
}

.ivu-picker-panel-content .ivu-picker-panel-content .ivu-time-picker-cells-with-seconds .ivu-time-picker-cells-list ul li {
    padding: 0 0 0 28px;
}

.ivu-picker-panel-content .ivu-picker-panel-content .ivu-time-picker-cells-list {
    width: 108px;
    max-height: 216px;
}

.ivu-picker-panel-content .ivu-picker-panel-content .ivu-time-picker-cells-list:first-child {
    border-radius: 0;
}

.ivu-picker-panel-content .ivu-picker-panel-content .ivu-time-picker-cells-list:last-child {
    border-radius: 0;
}

.ivu-picker-panel-content .ivu-picker-panel-content .ivu-time-picker-cells-list ul {
    padding: 0 0 192px 0;
}

.ivu-picker-panel-content .ivu-picker-panel-content .ivu-time-picker-cells-list ul li {
    padding: 0 0 0 46px;
}

.ivu-form .ivu-form-item-label {
    text-align: right;
    vertical-align: middle;
    float: left;
    font-size: 12px;
    color: #657180;
    line-height: 1;
    padding: 10px 12px 10px 0;
    box-sizing: border-box;
}

.ivu-form-label-left .ivu-form-item-label {
    text-align: left;
}

.ivu-form-label-top .ivu-form-item-label {
    float: none;
    display: inline-block;
    padding: 0 0 10px 0;
}

.ivu-form-inline .ivu-form-item {
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
}

.ivu-form-item {
    margin-bottom: 24px;
    vertical-align: top;
    zoom: 1;
}

.ivu-form-item:before,
.ivu-form-item:after {
    content: "";
    display: table;
}

.ivu-form-item:after {
    clear: both;
    visibility: hidden;
    font-size: 0;
    height: 0;
}

.ivu-form-item-content {
    position: relative;
    line-height: 32px;
    font-size: 12px;
}

.ivu-form-item .ivu-form-item {
    margin-bottom: 0;
}

.ivu-form-item .ivu-form-item .ivu-form-item-content {
    margin-left: 0!important;
}

.ivu-form-item-error-tip {
    position: absolute;
    top: 100%;
    left: 0;
    line-height: 1;
    padding-top: 6px;
    color: #ff3300;
}

.ivu-form-item-required .ivu-form-item-label:before {
    content: '*';
    display: inline-block;
    margin-right: 4px;
    line-height: 1;
    font-family: SimSun;
    font-size: 12px;
    color: #ff3300;
}

.ivu-carousel {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.ivu-carousel-track,
.ivu-carousel-list {
    transform: translate3d(0, 0, 0);
}

.ivu-carousel-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.ivu-carousel-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.ivu-carousel-item {
    float: left;
    height: 100%;
    min-height: 1px;
    display: block;
}

.ivu-carousel-arrow {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 50%;
    z-index: 10;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: 0.2s;
    background-color: rgba(31, 45, 61, 0.11);
    color: #fff;
    text-align: center;
    font-size: 1em;
    font-family: inherit;
    line-height: inherit;
}

.ivu-carousel-arrow:hover {
    background-color: rgba(31, 45, 61, 0.5);
}

.ivu-carousel-arrow>* {
    vertical-align: baseline;
}

.ivu-carousel-arrow.left {
    left: 16px;
}

.ivu-carousel-arrow.right {
    right: 16px;
}

.ivu-carousel-arrow-always {
    display: inherit;
}

.ivu-carousel-arrow-hover {
    display: inherit;
    opacity: 0;
}

.ivu-carousel:hover .ivu-carousel-arrow-hover {
    opacity: 1;
}

.ivu-carousel-dots {
    z-index: 10;
    display: none;
    position: relative;
    list-style: none;
    text-align: center;
    padding: 0;
    width: 100%;
    height: 17px;
}

.ivu-carousel-dots-inside {
    display: block;
    position: absolute;
    bottom: 3px;
}

.ivu-carousel-dots-outside {
    display: block;
    margin-top: 3px;
}

.ivu-carousel-dots li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 0 2px;
    padding: 7px 0;
    cursor: pointer;
}

.ivu-carousel-dots li button {
    border: 0;
    cursor: pointer;
    background: #8391a5;
    opacity: 0.3;
    display: block;
    width: 16px;
    height: 3px;
    border-radius: 1px;
    outline: none;
    font-size: 0;
    color: transparent;
    transition: all .5s;
}

.ivu-carousel-dots li:hover>button {
    opacity: 0.7;
}

.ivu-carousel-dots li.ivu-carousel-active>button {
    opacity: 1;
    width: 24px;
}

.ivu-rate {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 20px;
    vertical-align: middle;
    font-weight: normal;
    font-style: normal;
}

.ivu-rate-disabled .ivu-rate-star:before,
.ivu-rate-disabled .ivu-rate-star-content:before {
    cursor: default;
}

.ivu-rate-disabled .ivu-rate-star:hover {
    -ms-transform: scale(1);
    transform: scale(1);
}

.ivu-rate-star {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-right: 8px;
    position: relative;
    font-family: 'Ionicons';
    transition: all 0.3s ease;
}

.ivu-rate-star:hover {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.ivu-rate-star:before,
.ivu-rate-star-content:before {
    color: #e9e9e9;
    cursor: pointer;
    content: "\F4B3";
    transition: all 0.2s ease-in-out;
    display: block;
}

.ivu-rate-star-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ivu-rate-star-content:before {
    color: transparent;
}

.ivu-rate-star-half .ivu-rate-star-content:before,
.ivu-rate-star-full:before {
    color: #f5a623;
}

.ivu-rate-star-half:hover .ivu-rate-star-content:before,
.ivu-rate-star-full:hover:before {
    color: #f7b84f;
}

.ivu-rate-text {
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
    font-size: 12px;
}

.ivu-upload input[type="file"] {
    display: none;
}

.ivu-upload-list {
    margin-top: 8px;
}

.ivu-upload-list-file {
    padding: 4px;
    color: #657180;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
    overflow: hidden;
    position: relative;
}

.ivu-upload-list-file>span {
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.ivu-upload-list-file>span i {
    display: inline-block;
    width: 12px;
    height: 12px;
    color: #657180;
    text-align: center;
}

.ivu-upload-list-file:hover {
    background: #f3f3f3;
}

.ivu-upload-list-file:hover>span {
    color: #3399ff;
}

.ivu-upload-list-file:hover>span i {
    color: #657180;
}

.ivu-upload-list-file:hover .ivu-upload-list-remove {
    opacity: 1;
}

.ivu-upload-list-remove {
    opacity: 0;
    font-size: 18px;
    cursor: pointer;
    float: right;
    margin-right: 4px;
    color: #999;
    transition: all 0.2s ease;
}

.ivu-upload-list-remove:hover {
    color: #444;
}

.ivu-upload-drag {
    background: #fff;
    border: 1px dashed #d7dde4;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.ivu-upload-drag:hover {
    border: 1px dashed #3399ff;
}

.ivu-upload-dragOver {
    border: 2px dashed #3399ff;
}

.ivu-tree {
    margin: 0;
    padding: 5px;
    font-size: 12px;
}

.ivu-tree li {
    padding: 0;
    margin: 8px 0;
    list-style: none;
    white-space: nowrap;
    outline: 0;
}

.ivu-tree li a[draggable],
.ivu-tree li a[draggable="true"] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Required to make elements draggable in old WebKit */
    -khtml-user-drag: element;
    -webkit-user-drag: element;
}

.ivu-tree li.drag-over>a[draggable] {
    background-color: #3399ff;
    color: white;
    opacity: 0.8;
}

.ivu-tree li.drag-over-gap-top>a[draggable] {
    border-top: 2px #3399ff solid;
}

.ivu-tree li.drag-over-gap-bottom>a[draggable] {
    border-bottom: 2px #3399ff solid;
}

.ivu-tree li.filter-node>a {
    color: #ff3300 !important;
    font-weight: bold!important;
}

.ivu-tree li ul {
    margin: 0;
    padding: 0 0 0 18px;
}

.ivu-tree li a {
    display: inline-block;
    margin: 0;
    padding: 0 4px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    vertical-align: top;
    color: #657180;
    transition: all 0.2s ease-in-out;
}

.ivu-tree li a:hover {
    background-color: #ebf5ff;
}

.ivu-tree li a.ivu-tree-node-selected {
    background-color: #d6ebff;
}

.ivu-tree li .ivu-checkbox-wrapper {
    margin-right: 4px;
}

.ivu-tree li span.ivu-tree-switcher,
.ivu-tree li span.ivu-tree-iconEle {
    display: inline-block;
    text-align: center;
    width: 16px;
    height: 16px;
    line-height: 16px;
    margin: 0;
    vertical-align: middle;
    border: 0 none;
    cursor: pointer;
    outline: none;
}

.ivu-tree li span.ivu-tree-switcher i {
    transition: all 0.2s ease-in-out;
}

.ivu-tree li span.ivu-tree-switcher.ivu-tree-switcher-noop {
    cursor: auto;
}

.ivu-tree li span.ivu-tree-switcher.ivu-tree-switcher-noop i {
    display: none;
}

.ivu-tree li span.ivu-tree-switcher.ivu-tree-roots_open i,
.ivu-tree li span.ivu-tree-switcher.ivu-tree-center_open i,
.ivu-tree li span.ivu-tree-switcher.ivu-tree-bottom_open i,
.ivu-tree li span.ivu-tree-switcher.ivu-tree-noline_open i {
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.ivu-tree-child-tree {
    display: none;
}

.ivu-tree-child-tree-open {
    display: block;
}

.ivu-tree-treenode-disabled>span,
.ivu-tree-treenode-disabled>a,
.ivu-tree-treenode-disabled>a span {
    color: #f3f3f3;
    cursor: not-allowed;
}

.ivu-tree-icon__open {
    margin-right: 2px;
    vertical-align: top;
}

.ivu-tree-icon__close {
    margin-right: 2px;
    vertical-align: top;
}


/*-- Chart --*/

.c3 svg {
    font: 10px sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.c3 path,
.c3 line {
    fill: none;
    stroke: #000;
}

.c3 text {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
    shape-rendering: crispEdges;
}

.c3-chart-arc path {
    stroke: #fff;
}

.c3-chart-arc text {
    fill: #fff;
    font-size: 13px;
}


/*-- Axis --*/


/*-- Grid --*/

.c3-grid line {
    stroke: #aaa;
}

.c3-grid text {
    fill: #aaa;
}

.c3-xgrid,
.c3-ygrid {
    stroke-dasharray: 3 3;
}


/*-- Text on Chart --*/

.c3-text.c3-empty {
    fill: #808080;
    font-size: 2em;
}


/*-- Line --*/

.c3-line {
    stroke-width: 1px;
}


/*-- Point --*/

.c3-circle._expanded_ {
    stroke-width: 1px;
    stroke: white;
}

.c3-selected-circle {
    fill: white;
    stroke-width: 2px;
}


/*-- Bar --*/

.c3-bar {
    stroke-width: 0;
}

.c3-bar._expanded_ {
    fill-opacity: 0.75;
}


/*-- Focus --*/

.c3-target.c3-focused {
    opacity: 1;
}

.c3-target.c3-focused path.c3-line,
.c3-target.c3-focused path.c3-step {
    stroke-width: 2px;
}

.c3-target.c3-defocused {
    opacity: 0.3 !important;
}


/*-- Region --*/

.c3-region {
    fill: steelblue;
    fill-opacity: .1;
}


/*-- Brush --*/

.c3-brush .extent {
    fill-opacity: .1;
}


/*-- Select - Drag --*/


/*-- Legend --*/

.c3-legend-item {
    font-size: 12px;
}

.c3-legend-item-hidden {
    opacity: 0.15;
}

.c3-legend-background {
    opacity: 0.75;
    fill: white;
    stroke: lightgray;
    stroke-width: 1;
}


/*-- Title --*/

.c3-title {
    font: 14px sans-serif;
}


/*-- Tooltip --*/

.c3-tooltip-container {
    z-index: 10;
}

.c3-tooltip {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #fff;
    empty-cells: show;
    -webkit-box-shadow: 7px 7px 12px -9px #777777;
    -moz-box-shadow: 7px 7px 12px -9px #777777;
    box-shadow: 7px 7px 12px -9px #777777;
    opacity: 0.9;
}

.c3-tooltip tr {
    border: 1px solid #CCC;
}

.c3-tooltip th {
    background-color: #aaa;
    font-size: 14px;
    padding: 2px 5px;
    text-align: left;
    color: #FFF;
}

.c3-tooltip td {
    font-size: 13px;
    padding: 3px 6px;
    background-color: #fff;
    border-left: 1px dotted #999;
}

.c3-tooltip td>span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
}

.c3-tooltip td.value {
    text-align: right;
}


/*-- Area --*/

.c3-area {
    stroke-width: 0;
    opacity: 0.2;
}


/*-- Arc --*/

.c3-chart-arcs-title {
    dominant-baseline: middle;
    font-size: 1.3em;
}

.c3-chart-arcs .c3-chart-arcs-background {
    fill: #e0e0e0;
    stroke: none;
}

.c3-chart-arcs .c3-chart-arcs-gauge-unit {
    fill: #000;
    font-size: 16px;
}

.c3-chart-arcs .c3-chart-arcs-gauge-max {
    fill: #777;
}

.c3-chart-arcs .c3-chart-arcs-gauge-min {
    fill: #777;
}

.c3-chart-arc .c3-gauge-value {
    fill: #000;
    /*  font-size: 28px !important;*/
}


/**
* CSS themes for simplePagination.js
* Author: Flavius Matis - http://flaviusmatis.github.com/
* URL: https://github.com/flaviusmatis/simplePagination.js
*/

ul.simple-pagination {
    list-style: none;
}

.simple-pagination {
    display: block;
    overflow: hidden;
    padding: 0 5px 5px 0;
    margin: 0;
}

.simple-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.simple-pagination li {
    list-style: none;
    padding: 0;
    margin: 0;
    /* float: left; */
    display: inline-block;
}

span.ellipse.clickable {
    cursor: pointer;
}

.ellipse input {
    width: 3em;
}


/*------------------------------------*\
	Compact Theme Styles
\*------------------------------------*/

.compact-theme a,
.compact-theme span {
    float: left;
    color: #333;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
    border: 1px solid #AAA;
    border-left: none;
    min-width: 14px;
    padding: 0 7px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    background: #efefef;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #efefef));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* Opera11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* IE10+ */
    background: linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* W3C */
}

.compact-theme a:hover {
    text-decoration: none;
    background: #efefef;
    /* Old browsers */
    background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #efefef), color-stop(100%, #bbbbbb));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
    /* Opera11.10+ */
    background: -ms-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
    /* IE10+ */
    background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
    /* W3C */
}

.compact-theme li:first-child a,
.compact-theme li:first-child span {
    border-left: 1px solid #AAA;
    border-radius: 3px 0 0 3px;
}

.compact-theme li:last-child a,
.compact-theme li:last-child span {
    border-radius: 0 3px 3px 0;
}

.compact-theme .current {
    background: #bbbbbb;
    /* Old browsers */
    background: -moz-linear-gradient(top, #bbbbbb 0%, #efefef 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbbbbb), color-stop(100%, #efefef));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #bbbbbb 0%, #efefef 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #bbbbbb 0%, #efefef 100%);
    /* Opera11.10+ */
    background: -ms-linear-gradient(top, #bbbbbb 0%, #efefef 100%);
    /* IE10+ */
    background: linear-gradient(top, #bbbbbb 0%, #efefef 100%);
    /* W3C */
    cursor: default;
}

.compact-theme .ellipse {
    background: #EAEAEA;
    padding: 0 10px;
    cursor: default;
}


/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/

.light-theme a,
.light-theme span {
    float: left;
    color: #666;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
    border: 1px solid #BBB;
    min-width: 14px;
    padding: 0 7px;
    margin: 0 5px 0 0;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background: #efefef;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #efefef));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* Opera11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* IE10+ */
    background: linear-gradient(top, #ffffff 0%, #efefef 100%);
    /* W3C */
}

.light-theme a:hover {
    text-decoration: none;
    background: #FCFCFC;
}

.light-theme .current {
    background: #666;
    color: #FFF;
    border-color: #444;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 1), 0 0 2px rgba(0, 0, 0, 0.3) inset;
    cursor: default;
}

.light-theme .ellipse {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-weight: bold;
    cursor: default;
}


/*------------------------------------*\
	Dark Theme Styles
\*------------------------------------*/

.dark-theme a,
.dark-theme span {
    float: left;
    color: #CCC;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
    border: 1px solid #222;
    min-width: 14px;
    padding: 0 7px;
    margin: 0 5px 0 0;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background: #555;
    /* Old browsers */
    background: -moz-linear-gradient(top, #555 0%, #333 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #555), color-stop(100%, #333));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #555 0%, #333 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #555 0%, #333 100%);
    /* Opera11.10+ */
    background: -ms-linear-gradient(top, #555 0%, #333 100%);
    /* IE10+ */
    background: linear-gradient(top, #555 0%, #333 100%);
    /* W3C */
}

.dark-theme a:hover {
    text-decoration: none;
    background: #444;
}

.dark-theme .current {
    background: #222;
    color: #FFF;
    border-color: #000;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    cursor: default;
}

.dark-theme .ellipse {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-weight: bold;
    cursor: default;
}


/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}


/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-transition-property: -webkit-transform, height;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform, height;
}


/* a11y */

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}


/* IE10 Windows Phone 8 Fixes */

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}


/* Arrows */

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}


/* Pagination Styles */

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}


/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 20px;
    left: 0;
    width: 100%;
}


/* Bullets */

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000;
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    -moz-transform: translate3d(0px, -50%, 0);
    -o-transform: translate(0px, -50%);
    -ms-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}


/* Progress */

.swiper-pagination-progress {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progress {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical>.swiper-pagination-progress {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000;
}


/* 3D Container */

.swiper-container-3d {
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    /* Safari 4+, Chrome */
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 3.6-15 */
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    /* Safari 4+, Chrome */
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 3.6-15 */
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    /* Safari 4+, Chrome */
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 3.6-15 */
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    /* Safari 4+, Chrome */
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 3.6-15 */
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Firefox 16+, IE10, Opera 12.50+ */
}


/* Coverflow */

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}


/* Cube + Flip */

.swiper-container-cube,
.swiper-container-flip {
    overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* Cube */

.swiper-container-cube .swiper-slide {
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}


/* Fade */

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Scrollbar */

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}


/* Preloader */

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -moz-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}